
    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_d56dda5142fe956e933ae323.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.402354;font-style:normal;font-weight:normal;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_5d849d7970d42444868d9e4c.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.311035;font-style:normal;font-weight: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_22473212f5b6ea260e517484.woff2')format("woff");}.ff3_c00000{font-family:ff3_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:ff4_c00000;src:url('chunks/assets/font_76c7c1e053b3178eeec47832.woff2')format("woff");}.ff4_c00000{font-family:ff4_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:ff5_c00000;src:url('chunks/assets/font_d85380b0f9f2179968790898.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.311035;font-style:normal;font-weight: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_3849634f6d86b2c74b6fcd46.woff2')format("woff");}.ff6_c00000{font-family:ff6_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:ff7_c00000;src:url('chunks/assets/font_6f39bf92caef3bf1d7e3bfbd.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:1.112305;font-style:normal;font-weight: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_646b7b4cf54ea3a0962848cd.woff2')format("woff");}.ff8_c00000{font-family:ff8_c00000;line-height:1.284180;font-style:normal;font-weight: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_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff9_c00000{font-family:ff9_c00000;line-height:0.863770;font-style:normal;font-weight: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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ffa_c00000{font-family:ffa_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00000;src:url('chunks/assets/font_13433e2e0a452ddc13a2c4f3.woff2')format("woff");}.ffb_c00000{font-family:ffb_c00000;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00000;src:url('chunks/assets/font_598a844cba9d71cdb8ff7c3e.woff2')format("woff");}.ffc_c00000{font-family:ffc_c00000;line-height:0.902344;font-style:normal;font-weight: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_8d9baed36d687c50489a5061.woff2')format("woff");}.ffd_c00000{font-family:ffd_c00000;line-height:1.284180;font-style:normal;font-weight: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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffe_c00000{font-family:ffe_c00000;line-height:0.690918;font-style: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);}
.m1_c00000{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8_c00000{vertical-align:-128.160000px;}
.v3_c00000{vertical-align:-118.080000px;}
.v1_c00000{vertical-align:-96.660000px;}
.v7_c00000{vertical-align:-84.240000px;}
.v2_c00000{vertical-align:-82.800000px;}
.vd_c00000{vertical-align:-77.736000px;}
.va_c00000{vertical-align:-76.320000px;}
.vb_c00000{vertical-align:-72.720000px;}
.vc_c00000{vertical-align:-69.120000px;}
.vf_c00000{vertical-align:-30.240000px;}
.v6_c00000{vertical-align:-27.360000px;}
.v4_c00000{vertical-align:-2.160000px;}
.v0_c00000{vertical-align:0.000000px;}
.ve_c00000{vertical-align:30.240000px;}
.v9_c00000{vertical-align:33.300000px;}
.v5_c00000{vertical-align:48.240000px;}
.ls76_c00000{letter-spacing:-2.160000px;}
.lsd_c00000{letter-spacing:-1.440000px;}
.ls43_c00000{letter-spacing:-1.272000px;}
.ls3c_c00000{letter-spacing:-1.134000px;}
.ls79_c00000{letter-spacing:-1.080000px;}
.ls63_c00000{letter-spacing:-1.008000px;}
.ls6b_c00000{letter-spacing:-0.936000px;}
.ls39_c00000{letter-spacing:-0.720000px;}
.lsa_c00000{letter-spacing:-0.657360px;}
.ls5e_c00000{letter-spacing:-0.648000px;}
.ls37_c00000{letter-spacing:-0.612000px;}
.ls1d_c00000{letter-spacing:-0.576000px;}
.ls7e_c00000{letter-spacing:-0.567600px;}
.ls4c_c00000{letter-spacing:-0.540000px;}
.ls5f_c00000{letter-spacing:-0.504000px;}
.ls55_c00000{letter-spacing:-0.463800px;}
.lsa0_c00000{letter-spacing:-0.460200px;}
.ls15_c00000{letter-spacing:-0.449400px;}
.ls91_c00000{letter-spacing:-0.385800px;}
.ls52_c00000{letter-spacing:-0.360000px;}
.ls45_c00000{letter-spacing:-0.334200px;}
.ls7b_c00000{letter-spacing:-0.305400px;}
.ls11_c00000{letter-spacing:-0.288000px;}
.ls42_c00000{letter-spacing:-0.219000px;}
.ls27_c00000{letter-spacing:-0.216000px;}
.ls7a_c00000{letter-spacing:-0.206400px;}
.ls16_c00000{letter-spacing:-0.180000px;}
.ls46_c00000{letter-spacing:-0.166800px;}
.lsc_c00000{letter-spacing:-0.144000px;}
.ls35_c00000{letter-spacing:-0.072000px;}
.ls36_c00000{letter-spacing:-0.053400px;}
.ls3f_c00000{letter-spacing:-0.051600px;}
.ls4_c00000{letter-spacing:-0.036000px;}
.ls5_c00000{letter-spacing:-0.028200px;}
.ls3_c00000{letter-spacing:0.000000px;}
.ls17_c00000{letter-spacing:0.036000px;}
.ls3e_c00000{letter-spacing:0.051600px;}
.ls99_c00000{letter-spacing:0.053280px;}
.lsa2_c00000{letter-spacing:0.053400px;}
.ls8_c00000{letter-spacing:0.059760px;}
.ls4b_c00000{letter-spacing:0.072000px;}
.ls81_c00000{letter-spacing:0.106560px;}
.ls19_c00000{letter-spacing:0.106800px;}
.ls13_c00000{letter-spacing:0.120000px;}
.ls9_c00000{letter-spacing:0.132480px;}
.ls1b_c00000{letter-spacing:0.144000px;}
.ls18_c00000{letter-spacing:0.150000px;}
.ls41_c00000{letter-spacing:0.166800px;}
.ls6_c00000{letter-spacing:0.173520px;}
.ls7_c00000{letter-spacing:0.179280px;}
.ls9c_c00000{letter-spacing:0.179997px;}
.ls12_c00000{letter-spacing:0.180000px;}
.ls9e_c00000{letter-spacing:0.206400px;}
.ls84_c00000{letter-spacing:0.216000px;}
.ls40_c00000{letter-spacing:0.219000px;}
.ls14_c00000{letter-spacing:0.224400px;}
.ls1a_c00000{letter-spacing:0.256200px;}
.ls54_c00000{letter-spacing:0.256320px;}
.ls25_c00000{letter-spacing:0.259920px;}
.ls5a_c00000{letter-spacing:0.262080px;}
.ls57_c00000{letter-spacing:0.262200px;}
.ls9f_c00000{letter-spacing:0.286560px;}
.ls10_c00000{letter-spacing:0.288000px;}
.ls3b_c00000{letter-spacing:0.298800px;}
.ls8b_c00000{letter-spacing:0.305400px;}
.lsb_c00000{letter-spacing:0.331200px;}
.ls3d_c00000{letter-spacing:0.334200px;}
.ls21_c00000{letter-spacing:0.360000px;}
.ls85_c00000{letter-spacing:0.408000px;}
.ls1e_c00000{letter-spacing:0.432000px;}
.ls98_c00000{letter-spacing:0.460080px;}
.ls9d_c00000{letter-spacing:0.460200px;}
.ls4d_c00000{letter-spacing:0.504000px;}
.ls80_c00000{letter-spacing:0.552000px;}
.ls32_c00000{letter-spacing:0.666000px;}
.ls71_c00000{letter-spacing:0.696000px;}
.lsf_c00000{letter-spacing:0.720000px;}
.ls44_c00000{letter-spacing:0.774000px;}
.ls5c_c00000{letter-spacing:0.864000px;}
.ls33_c00000{letter-spacing:0.900000px;}
.ls34_c00000{letter-spacing:1.080000px;}
.ls24_c00000{letter-spacing:1.440000px;}
.ls6e_c00000{letter-spacing:1.560000px;}
.ls31_c00000{letter-spacing:1.800000px;}
.ls53_c00000{letter-spacing:2.160000px;}
.ls47_c00000{letter-spacing:2.880000px;}
.ls51_c00000{letter-spacing:3.060000px;}
.ls4a_c00000{letter-spacing:3.600000px;}
.ls6f_c00000{letter-spacing:3.720000px;}
.ls96_c00000{letter-spacing:4.320000px;}
.ls7f_c00000{letter-spacing:5.040000px;}
.ls67_c00000{letter-spacing:5.736000px;}
.ls7c_c00000{letter-spacing:5.760000px;}
.lsa1_c00000{letter-spacing:5.940000px;}
.ls49_c00000{letter-spacing:6.480000px;}
.ls22_c00000{letter-spacing:7.200000px;}
.ls5d_c00000{letter-spacing:7.920000px;}
.ls3a_c00000{letter-spacing:8.640000px;}
.ls4e_c00000{letter-spacing:9.360000px;}
.ls73_c00000{letter-spacing:10.080000px;}
.ls2d_c00000{letter-spacing:10.800000px;}
.ls77_c00000{letter-spacing:11.496000px;}
.ls78_c00000{letter-spacing:11.520000px;}
.ls26_c00000{letter-spacing:12.960000px;}
.ls69_c00000{letter-spacing:13.680000px;}
.ls2b_c00000{letter-spacing:14.400000px;}
.ls7d_c00000{letter-spacing:14.580000px;}
.ls2e_c00000{letter-spacing:15.120000px;}
.ls23_c00000{letter-spacing:15.840000px;}
.ls30_c00000{letter-spacing:16.560000px;}
.ls58_c00000{letter-spacing:17.280000px;}
.ls62_c00000{letter-spacing:18.000000px;}
.ls29_c00000{letter-spacing:18.720000px;}
.ls56_c00000{letter-spacing:18.900000px;}
.ls72_c00000{letter-spacing:19.440000px;}
.ls50_c00000{letter-spacing:20.856000px;}
.ls59_c00000{letter-spacing:20.880000px;}
.ls61_c00000{letter-spacing:21.024000px;}
.ls2a_c00000{letter-spacing:21.600000px;}
.ls74_c00000{letter-spacing:22.320000px;}
.ls28_c00000{letter-spacing:23.040000px;}
.ls20_c00000{letter-spacing:24.480000px;}
.ls48_c00000{letter-spacing:24.624000px;}
.ls4f_c00000{letter-spacing:25.920000px;}
.ls65_c00000{letter-spacing:26.784000px;}
.ls2c_c00000{letter-spacing:30.384000px;}
.ls68_c00000{letter-spacing:30.936000px;}
.ls70_c00000{letter-spacing:30.960000px;}
.ls64_c00000{letter-spacing:31.104000px;}
.ls8f_c00000{letter-spacing:35.280000px;}
.lsa3_c00000{letter-spacing:36.180000px;}
.lsa5_c00000{letter-spacing:38.160000px;}
.ls8d_c00000{letter-spacing:38.880000px;}
.ls2f_c00000{letter-spacing:46.800000px;}
.ls6a_c00000{letter-spacing:47.520000px;}
.ls83_c00000{letter-spacing:51.264000px;}
.ls60_c00000{letter-spacing:53.424000px;}
.ls0_c00000{letter-spacing:56.844000px;}
.ls92_c00000{letter-spacing:57.024000px;}
.ls5b_c00000{letter-spacing:60.065280px;}
.ls9a_c00000{letter-spacing:60.121920px;}
.ls8e_c00000{letter-spacing:60.145920px;}
.ls9b_c00000{letter-spacing:60.265920px;}
.ls1c_c00000{letter-spacing:60.624000px;}
.lsa4_c00000{letter-spacing:62.784000px;}
.ls75_c00000{letter-spacing:63.665280px;}
.ls6c_c00000{letter-spacing:64.224000px;}
.ls94_c00000{letter-spacing:67.626720px;}
.ls82_c00000{letter-spacing:78.749280px;}
.lse_c00000{letter-spacing:84.360000px;}
.ls66_c00000{letter-spacing:89.976000px;}
.ls86_c00000{letter-spacing:92.136000px;}
.ls93_c00000{letter-spacing:93.036000px;}
.ls8a_c00000{letter-spacing:107.976000px;}
.ls88_c00000{letter-spacing:118.056000px;}
.ls89_c00000{letter-spacing:122.376000px;}
.ls90_c00000{letter-spacing:164.160000px;}
.ls38_c00000{letter-spacing:194.376000px;}
.ls8c_c00000{letter-spacing:195.960000px;}
.ls87_c00000{letter-spacing:198.696000px;}
.ls95_c00000{letter-spacing:237.576000px;}
.ls97_c00000{letter-spacing:405.336000px;}
.ls6d_c00000{letter-spacing:449.976000px;}
.ls2_c00000{letter-spacing:998.940000px;}
.ls1f_c00000{letter-spacing:1203.300000px;}
.ls1_c00000{letter-spacing:1477.740000px;}
.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;}
}
.ws33_c00000{word-spacing:-72.000000px;}
.ws35_c00000{word-spacing:-63.360000px;}
.wsf_c00000{word-spacing:-27.036000px;}
.ws0_c00000{word-spacing:-21.060000px;}
.wsa_c00000{word-spacing:-18.720000px;}
.ws29_c00000{word-spacing:-18.504000px;}
.ws2d_c00000{word-spacing:-18.432000px;}
.wsb_c00000{word-spacing:-18.288000px;}
.ws34_c00000{word-spacing:-18.216000px;}
.ws13_c00000{word-spacing:-18.144000px;}
.ws28_c00000{word-spacing:-18.072000px;}
.ws9_c00000{word-spacing:-18.000000px;}
.ws17_c00000{word-spacing:-17.928000px;}
.ws2b_c00000{word-spacing:-17.856000px;}
.ws18_c00000{word-spacing:-17.784000px;}
.wsc_c00000{word-spacing:-17.712000px;}
.wsd_c00000{word-spacing:-17.504400px;}
.ws2e_c00000{word-spacing:-17.496000px;}
.wse_c00000{word-spacing:-17.280000px;}
.ws5_c00000{word-spacing:-16.891200px;}
.ws2c_c00000{word-spacing:-16.822200px;}
.ws15_c00000{word-spacing:-16.740000px;}
.ws4_c00000{word-spacing:-16.692480px;}
.ws25_c00000{word-spacing:-16.614000px;}
.ws3_c00000{word-spacing:-16.560000px;}
.ws1d_c00000{word-spacing:-16.506000px;}
.ws30_c00000{word-spacing:-16.254600px;}
.ws1b_c00000{word-spacing:-16.174200px;}
.ws1e_c00000{word-spacing:-16.059000px;}
.ws21_c00000{word-spacing:-16.006800px;}
.ws1f_c00000{word-spacing:-15.891600px;}
.ws1c_c00000{word-spacing:-15.840000px;}
.ws20_c00000{word-spacing:-15.788400px;}
.ws27_c00000{word-spacing:-15.673200px;}
.ws23_c00000{word-spacing:-15.621000px;}
.ws26_c00000{word-spacing:-15.505800px;}
.ws36_c00000{word-spacing:-15.454200px;}
.ws1a_c00000{word-spacing:-15.426000px;}
.ws37_c00000{word-spacing:-15.400200px;}
.ws16_c00000{word-spacing:-15.300000px;}
.ws12_c00000{word-spacing:-15.226440px;}
.ws38_c00000{word-spacing:-15.146400px;}
.ws22_c00000{word-spacing:-15.120000px;}
.ws11_c00000{word-spacing:-15.046800px;}
.ws2_c00000{word-spacing:-14.999760px;}
.ws14_c00000{word-spacing:-14.940000px;}
.ws2f_c00000{word-spacing:-14.904000px;}
.ws19_c00000{word-spacing:-14.886600px;}
.ws24_c00000{word-spacing:-14.568000px;}
.ws2a_c00000{word-spacing:-14.506440px;}
.ws31_c00000{word-spacing:-12.420000px;}
.ws32_c00000{word-spacing:-12.060000px;}
.ws39_c00000{word-spacing:-10.440000px;}
.ws10_c00000{word-spacing:-9.720000px;}
.ws8_c00000{word-spacing:-0.728640px;}
.ws6_c00000{word-spacing:-0.132480px;}
.ws1_c00000{word-spacing:0.000000px;}
.ws7_c00000{word-spacing:0.657360px;}
._1b_c00000{margin-left:-12.817920px;}
._28_c00000{margin-left:-8.946240px;}
._3_c00000{margin-left:-6.990576px;}
._2_c00000{margin-left:-2.122549px;}
._0_c00000{margin-left:-1.095036px;}
._1_c00000{width:1.500012px;}
._15_c00000{width:2.633514px;}
._9_c00000{width:3.816000px;}
._a_c00000{width:4.979988px;}
._b_c00000{width:6.192000px;}
._c_c00000{width:7.428024px;}
._f_c00000{width:8.677212px;}
._12_c00000{width:9.816948px;}
._18_c00000{width:11.413041px;}
._4_c00000{width:13.032000px;}
._13_c00000{width:14.051586px;}
._10_c00000{width:15.068367px;}
._17_c00000{width:16.134890px;}
._27_c00000{width:17.550283px;}
._19_c00000{width:18.662400px;}
._11_c00000{width:20.597967px;}
._1a_c00000{width:21.655757px;}
._5_c00000{width:23.448024px;}
._6_c00000{width:24.610525px;}
._7_c00000{width:25.979820px;}
._1d_c00000{width:27.288000px;}
._1e_c00000{width:28.416336px;}
._20_c00000{width:29.963328px;}
._21_c00000{width:31.026673px;}
._14_c00000{width:32.140731px;}
._16_c00000{width:33.246582px;}
._23_c00000{width:34.258483px;}
._2d_c00000{width:36.154573px;}
._24_c00000{width:37.332000px;}
._22_c00000{width:38.736000px;}
._8_c00000{width:39.792024px;}
._1f_c00000{width:41.495976px;}
._32_c00000{width:42.542458px;}
._29_c00000{width:43.560000px;}
._2a_c00000{width:44.651988px;}
._2c_c00000{width:45.720000px;}
._2b_c00000{width:46.788012px;}
._2e_c00000{width:48.024000px;}
._25_c00000{width:49.104000px;}
._26_c00000{width:51.048000px;}
._2f_c00000{width:52.056000px;}
._30_c00000{width:53.136000px;}
._36_c00000{width:54.432000px;}
._37_c00000{width:55.883988px;}
._1c_c00000{width:58.027139px;}
._3a_c00000{width:59.146549px;}
._3e_c00000{width:61.128000px;}
._35_c00000{width:62.352000px;}
._34_c00000{width:63.478537px;}
._3d_c00000{width:64.512000px;}
._33_c00000{width:66.312000px;}
._3c_c00000{width:67.896000px;}
._3b_c00000{width:75.337920px;}
._38_c00000{width:95.184000px;}
._39_c00000{width:96.263964px;}
._d_c00000{width:152.148024px;}
._e_c00000{width:194.400000px;}
._31_c00000{width:1753.476000px;}
.fca_c00000{color:rgb(26,24,24);}
.fc8_c00000{color:rgb(20,20,19);}
.fc9_c00000{color:rgb(192,80,77);}
.fc1_c00000{color:rgb(0,0,255);}
.fcc_c00000{color:rgb(34,30,31);}
.fcb_c00000{color:rgb(28,28,28);}
.fc7_c00000{color:rgb(37,37,37);}
.fc6_c00000{color:rgb(2,2,2);}
.fc5_c00000{color:rgb(255,255,255);}
.fc4_c00000{color:rgb(35,31,32);}
.fc3_c00000{color:rgb(17,17,17);}
.fc2_c00000{color:rgb(237,125,49);}
.fc0_c00000{color:rgb(0,0,0);}
.fs9_c00000{font-size:38.880000px;}
.fsc_c00000{font-size:41.760000px;}
.fsb_c00000{font-size:48.240000px;}
.fs6_c00000{font-size:54.000000px;}
.fs5_c00000{font-size:59.760000px;}
.fs4_c00000{font-size:63.360000px;}
.fs0_c00000{font-size:66.240000px;}
.fs8_c00000{font-size:69.120000px;}
.fs2_c00000{font-size:72.000000px;}
.fs1_c00000{font-size:84.240000px;}
.fs7_c00000{font-size:95.760000px;}
.fs3_c00000{font-size:108.000000px;}
.fsa_c00000{font-size:120.240000px;}
.y0_c00000{bottom:0.000000px;}
.y764_c00000{bottom:3.600000px;}
.y348_c00000{bottom:3.774000px;}
.y1e4_c00000{bottom:3.780000px;}
.y335_c00000{bottom:3.810000px;}
.y305_c00000{bottom:3.954000px;}
.y1e1_c00000{bottom:3.960000px;}
.y30c_c00000{bottom:3.990000px;}
.y94_c00000{bottom:4.680000px;}
.y2e3_c00000{bottom:4.860000px;}
.ya2f_c00000{bottom:5.400000px;}
.y8ff_c00000{bottom:5.580000px;}
.ya39_c00000{bottom:6.120000px;}
.ya22_c00000{bottom:7.020000px;}
.ya20_c00000{bottom:7.200000px;}
.y90c_c00000{bottom:7.425000px;}
.y97d_c00000{bottom:7.560000px;}
.ya46_c00000{bottom:9.180000px;}
.y98b_c00000{bottom:9.540000px;}
.y8c6_c00000{bottom:9.720000px;}
.y9c8_c00000{bottom:10.305000px;}
.y8de_c00000{bottom:11.880000px;}
.y92e_c00000{bottom:12.420000px;}
.y999_c00000{bottom:12.600000px;}
.y8cf_c00000{bottom:12.780000px;}
.y96b_c00000{bottom:12.960000px;}
.y987_c00000{bottom:14.220000px;}
.y8db_c00000{bottom:14.265000px;}
.y924_c00000{bottom:15.120000px;}
.y951_c00000{bottom:16.020000px;}
.y94a_c00000{bottom:16.050000px;}
.y918_c00000{bottom:16.380000px;}
.y8bc_c00000{bottom:16.560000px;}
.y93a_c00000{bottom:16.740000px;}
.y9d2_c00000{bottom:16.920000px;}
.y915_c00000{bottom:17.280000px;}
.y9cc_c00000{bottom:18.210000px;}
.y9fb_c00000{bottom:18.720000px;}
.y9fa_c00000{bottom:18.900000px;}
.ya4b_c00000{bottom:19.440000px;}
.y962_c00000{bottom:20.700000px;}
.y9d7_c00000{bottom:21.060000px;}
.y971_c00000{bottom:21.105000px;}
.y1f4_c00000{bottom:21.954000px;}
.y1e0_c00000{bottom:21.960000px;}
.y30b_c00000{bottom:21.990000px;}
.y303_c00000{bottom:22.005000px;}
.y31b_c00000{bottom:22.134000px;}
.y2f3_c00000{bottom:22.140000px;}
.y2ff_c00000{bottom:22.170000px;}
.y346_c00000{bottom:22.185000px;}
.y974_c00000{bottom:22.320000px;}
.y8d8_c00000{bottom:22.860000px;}
.yb26_c00000{bottom:23.040000px;}
.y890_c00000{bottom:23.214000px;}
.y899_c00000{bottom:23.220000px;}
.y881_c00000{bottom:23.265000px;}
.y94d_c00000{bottom:23.580000px;}
.y8fe_c00000{bottom:23.790000px;}
.ya38_c00000{bottom:24.294000px;}
.y9ce_c00000{bottom:25.020000px;}
.y8f4_c00000{bottom:25.200000px;}
.ya25_c00000{bottom:25.245000px;}
.y90b_c00000{bottom:25.425000px;}
.y97c_c00000{bottom:25.740000px;}
.ya45_c00000{bottom:27.210000px;}
.y98a_c00000{bottom:27.540000px;}
.y8c5_c00000{bottom:27.720000px;}
.y9c7_c00000{bottom:28.305000px;}
.y8e3_c00000{bottom:29.880000px;}
.y8eb_c00000{bottom:29.910000px;}
.y8e7_c00000{bottom:29.925000px;}
.y8dd_c00000{bottom:30.060000px;}
.y92d_c00000{bottom:30.600000px;}
.y998_c00000{bottom:30.780000px;}
.y8ce_c00000{bottom:30.960000px;}
.y96a_c00000{bottom:31.140000px;}
.y8d2_c00000{bottom:32.220000px;}
.y8da_c00000{bottom:32.265000px;}
.y9a3_c00000{bottom:32.400000px;}
.y923_c00000{bottom:33.300000px;}
.y9f1_c00000{bottom:33.480000px;}
.y950_c00000{bottom:34.200000px;}
.y949_c00000{bottom:34.230000px;}
.y917_c00000{bottom:34.560000px;}
.y8bb_c00000{bottom:34.740000px;}
.y9d1_c00000{bottom:35.100000px;}
.y914_c00000{bottom:35.454000px;}
.y8b9_c00000{bottom:35.460000px;}
.y9e3_c00000{bottom:35.820000px;}
.y9cb_c00000{bottom:36.390000px;}
.y9fe_c00000{bottom:36.720000px;}
.y9f9_c00000{bottom:36.900000px;}
.ya65_c00000{bottom:38.340000px;}
.y961_c00000{bottom:38.880000px;}
.y970_c00000{bottom:39.285000px;}
.y1f3_c00000{bottom:39.954000px;}
.y2ef_c00000{bottom:39.960000px;}
.y321_c00000{bottom:39.990000px;}
.y302_c00000{bottom:40.005000px;}
.y2f5_c00000{bottom:40.134000px;}
.y1e3_c00000{bottom:40.140000px;}
.y2fe_c00000{bottom:40.170000px;}
.y2fa_c00000{bottom:40.185000px;}
.y9d8_c00000{bottom:40.320000px;}
.y973_c00000{bottom:40.500000px;}
.y8d7_c00000{bottom:41.040000px;}
.y88f_c00000{bottom:41.214000px;}
.y898_c00000{bottom:41.220000px;}
.y880_c00000{bottom:41.265000px;}
.y83c_c00000{bottom:41.394000px;}
.y8a0_c00000{bottom:41.400000px;}
.y94c_c00000{bottom:41.580000px;}
.ya3a_c00000{bottom:41.625000px;}
.ya2e_c00000{bottom:41.760000px;}
.y8fd_c00000{bottom:41.790000px;}
.y93_c00000{bottom:41.796000px;}
.y953_c00000{bottom:41.805000px;}
.ya37_c00000{bottom:42.294000px;}
.y981_c00000{bottom:43.020000px;}
.y8f3_c00000{bottom:43.200000px;}
.ya21_c00000{bottom:43.230000px;}
.ya1f_c00000{bottom:43.380000px;}
.ya24_c00000{bottom:43.425000px;}
.y90a_c00000{bottom:43.605000px;}
.y97b_c00000{bottom:43.740000px;}
.y9d5_c00000{bottom:44.280000px;}
.y9ee_c00000{bottom:44.850000px;}
.ya44_c00000{bottom:45.390000px;}
.y989_c00000{bottom:45.720000px;}
.y8c4_c00000{bottom:45.900000px;}
.y9c6_c00000{bottom:46.485000px;}
.y8c2_c00000{bottom:46.620000px;}
.y95b_c00000{bottom:46.980000px;}
.y9c4_c00000{bottom:47.874000px;}
.y8dc_c00000{bottom:48.060000px;}
.y8ea_c00000{bottom:48.090000px;}
.y8e6_c00000{bottom:48.105000px;}
.y938_c00000{bottom:48.420000px;}
.y997_c00000{bottom:48.780000px;}
.y92c_c00000{bottom:48.825000px;}
.y8cd_c00000{bottom:49.140000px;}
.y8d1_c00000{bottom:50.400000px;}
.y8d9_c00000{bottom:50.445000px;}
.y922_c00000{bottom:51.330000px;}
.y9f0_c00000{bottom:51.660000px;}
.ya13_c00000{bottom:52.200000px;}
.y948_c00000{bottom:52.230000px;}
.y94f_c00000{bottom:52.380000px;}
.y2e2_c00000{bottom:52.416000px;}
.y9f6_c00000{bottom:52.560000px;}
.ya55_c00000{bottom:52.605000px;}
.y916_c00000{bottom:52.740000px;}
.y8ba_c00000{bottom:52.920000px;}
.y9d0_c00000{bottom:53.280000px;}
.y913_c00000{bottom:53.454000px;}
.y8b8_c00000{bottom:53.640000px;}
.y9ba_c00000{bottom:53.820000px;}
.y9e2_c00000{bottom:54.045000px;}
.ya73_c00000{bottom:54.360000px;}
.y9ca_c00000{bottom:54.570000px;}
.y9fd_c00000{bottom:54.900000px;}
.y9f8_c00000{bottom:55.080000px;}
.ya64_c00000{bottom:56.340000px;}
.y960_c00000{bottom:57.060000px;}
.y96f_c00000{bottom:57.285000px;}
.y1f2_c00000{bottom:58.134000px;}
.y1ec_c00000{bottom:58.140000px;}
.y34a_c00000{bottom:58.170000px;}
.y2f9_c00000{bottom:58.185000px;}
.y2f4_c00000{bottom:58.314000px;}
.y1e6_c00000{bottom:58.320000px;}
.y315_c00000{bottom:58.350000px;}
.y318_c00000{bottom:58.365000px;}
.y972_c00000{bottom:58.500000px;}
.y8d6_c00000{bottom:59.040000px;}
.y83a_c00000{bottom:59.394000px;}
.y897_c00000{bottom:59.400000px;}
.y87f_c00000{bottom:59.445000px;}
.y94b_c00000{bottom:59.760000px;}
.y952_c00000{bottom:59.805000px;}
.y8cb_c00000{bottom:60.120000px;}
.ya36_c00000{bottom:60.474000px;}
.yb25_c00000{bottom:60.480000px;}
.y9cd_c00000{bottom:61.200000px;}
.y980_c00000{bottom:61.230000px;}
.y8f2_c00000{bottom:61.380000px;}
.y968_c00000{bottom:61.605000px;}
.y97a_c00000{bottom:61.950000px;}
.y9d4_c00000{bottom:62.505000px;}
.y9ed_c00000{bottom:63.030000px;}
.y8c1_c00000{bottom:64.800000px;}
.y95a_c00000{bottom:65.160000px;}
.y9c3_c00000{bottom:66.054000px;}
.ya09_c00000{bottom:66.060000px;}
.y937_c00000{bottom:66.420000px;}
.y8d0_c00000{bottom:68.400000px;}
.y9df_c00000{bottom:68.580000px;}
.y995_c00000{bottom:69.300000px;}
.y9ef_c00000{bottom:69.660000px;}
.y9f5_c00000{bottom:70.785000px;}
.y912_c00000{bottom:71.634000px;}
.y8b7_c00000{bottom:71.685000px;}
.y9b9_c00000{bottom:72.000000px;}
.y9e1_c00000{bottom:72.225000px;}
.ya12_c00000{bottom:72.540000px;}
.ya63_c00000{bottom:74.520000px;}
.y9ea_c00000{bottom:75.060000px;}
.y95f_c00000{bottom:75.090000px;}
.y92_c00000{bottom:75.456000px;}
.y96e_c00000{bottom:75.465000px;}
.y1f1_c00000{bottom:76.314000px;}
.y1eb_c00000{bottom:76.320000px;}
.y314_c00000{bottom:76.350000px;}
.y30e_c00000{bottom:76.365000px;}
.y353_c00000{bottom:76.500000px;}
.y32a_c00000{bottom:76.530000px;}
.y380_c00000{bottom:77.040000px;}
.y8d5_c00000{bottom:77.265000px;}
.y88e_c00000{bottom:77.394000px;}
.yb23_c00000{bottom:77.400000px;}
.y839_c00000{bottom:77.574000px;}
.yb1e_c00000{bottom:77.580000px;}
.y896_c00000{bottom:77.625000px;}
.y8ca_c00000{bottom:78.300000px;}
.ya35_c00000{bottom:78.654000px;}
.y89f_c00000{bottom:78.690000px;}
.y87e_c00000{bottom:78.705000px;}
.ya7b_c00000{bottom:78.885000px;}
.y97f_c00000{bottom:79.230000px;}
.y985_c00000{bottom:79.560000px;}
.y967_c00000{bottom:79.785000px;}
.y979_c00000{bottom:80.130000px;}
.y9d3_c00000{bottom:80.505000px;}
.y9ec_c00000{bottom:81.210000px;}
.y8c0_c00000{bottom:82.800000px;}
.y959_c00000{bottom:83.160000px;}
.ya08_c00000{bottom:84.240000px;}
.y9c2_c00000{bottom:84.279000px;}
.y936_c00000{bottom:84.600000px;}
.y9de_c00000{bottom:86.580000px;}
.y994_c00000{bottom:87.300000px;}
.y9f4_c00000{bottom:88.965000px;}
.y911_c00000{bottom:89.814000px;}
.y8b6_c00000{bottom:89.865000px;}
.y9b8_c00000{bottom:90.000000px;}
.ya72_c00000{bottom:90.540000px;}
.ya11_c00000{bottom:90.765000px;}
.y9e9_c00000{bottom:93.240000px;}
.y95e_c00000{bottom:93.270000px;}
.y1f0_c00000{bottom:94.314000px;}
.y1ea_c00000{bottom:94.320000px;}
.y359_c00000{bottom:94.350000px;}
.y341_c00000{bottom:94.365000px;}
.y360_c00000{bottom:94.494000px;}
.y33c_c00000{bottom:94.500000px;}
.y329_c00000{bottom:94.530000px;}
.y384_c00000{bottom:94.539000px;}
.y388_c00000{bottom:94.545000px;}
.ya6f_c00000{bottom:94.860000px;}
.y8d4_c00000{bottom:95.265000px;}
.y838_c00000{bottom:95.619000px;}
.y895_c00000{bottom:95.625000px;}
.y8c9_c00000{bottom:96.300000px;}
.yb1d_c00000{bottom:96.660000px;}
.ya34_c00000{bottom:96.699000px;}
.y87d_c00000{bottom:96.705000px;}
.y89e_c00000{bottom:96.870000px;}
.ya7a_c00000{bottom:97.065000px;}
.y984_c00000{bottom:97.560000px;}
.y966_c00000{bottom:97.785000px;}
.ya71_c00000{bottom:97.950000px;}
.y978_c00000{bottom:98.130000px;}
.y8bf_c00000{bottom:100.980000px;}
.y958_c00000{bottom:101.340000px;}
.y9c1_c00000{bottom:102.279000px;}
.ya07_c00000{bottom:102.465000px;}
.y935_c00000{bottom:102.600000px;}
.ya62_c00000{bottom:103.005000px;}
.ya69_c00000{bottom:104.085000px;}
.y9dd_c00000{bottom:104.760000px;}
.y993_c00000{bottom:105.480000px;}
.y9f3_c00000{bottom:106.965000px;}
.y9a2_c00000{bottom:107.139000px;}
.y8b5_c00000{bottom:108.045000px;}
.ya10_c00000{bottom:108.945000px;}
.y15a_c00000{bottom:109.836000px;}
.y606_c00000{bottom:110.016000px;}
.y595_c00000{bottom:110.556000px;}
.y3d4_c00000{bottom:110.736000px;}
.y95d_c00000{bottom:111.270000px;}
.y605_c00000{bottom:111.276000px;}
.y9e8_c00000{bottom:111.420000px;}
.y1ae_c00000{bottom:111.636000px;}
.y707_c00000{bottom:111.816000px;}
.y1ef_c00000{bottom:112.494000px;}
.y1e9_c00000{bottom:112.500000px;}
.y358_c00000{bottom:112.530000px;}
.y383_c00000{bottom:112.539000px;}
.y356_c00000{bottom:112.545000px;}
.y352_c00000{bottom:112.680000px;}
.y4e2_c00000{bottom:112.716000px;}
.y755_c00000{bottom:112.719000px;}
.y33b_c00000{bottom:112.725000px;}
.ya6e_c00000{bottom:113.040000px;}
.y492_c00000{bottom:113.076000px;}
.y8d3_c00000{bottom:113.445000px;}
.y859_c00000{bottom:113.619000px;}
.y803_c00000{bottom:113.796000px;}
.y837_c00000{bottom:113.799000px;}
.y7cd_c00000{bottom:114.336000px;}
.y8c8_c00000{bottom:114.480000px;}
.yafa_c00000{bottom:114.516000px;}
.yb1c_c00000{bottom:114.840000px;}
.ya33_c00000{bottom:114.879000px;}
.y87c_c00000{bottom:114.885000px;}
.y89d_c00000{bottom:115.050000px;}
.ya79_c00000{bottom:115.065000px;}
.yb56_c00000{bottom:115.416000px;}
.y6f0_c00000{bottom:115.596000px;}
.y983_c00000{bottom:115.740000px;}
.y398_c00000{bottom:115.776000px;}
.ya70_c00000{bottom:115.950000px;}
.y965_c00000{bottom:115.965000px;}
.y90_c00000{bottom:116.136000px;}
.y977_c00000{bottom:116.310000px;}
.y770_c00000{bottom:116.496000px;}
.y6f8_c00000{bottom:116.856000px;}
.y422_c00000{bottom:117.216000px;}
.y565_c00000{bottom:117.756000px;}
.y64b_c00000{bottom:118.116000px;}
.y57e_c00000{bottom:118.296000px;}
.y80c_c00000{bottom:119.016000px;}
.y8be_c00000{bottom:119.160000px;}
.yb0f_c00000{bottom:119.196000px;}
.y957_c00000{bottom:119.340000px;}
.yad0_c00000{bottom:119.556000px;}
.y2c7_c00000{bottom:119.736000px;}
.y4fe_c00000{bottom:119.916000px;}
.y9c0_c00000{bottom:120.459000px;}
.yfc_c00000{bottom:120.636000px;}
.y934_c00000{bottom:120.780000px;}
.y703_c00000{bottom:120.816000px;}
.ya06_c00000{bottom:121.170000px;}
.yb76_c00000{bottom:121.176000px;}
.ya61_c00000{bottom:121.185000px;}
.y56c_c00000{bottom:121.356000px;}
.yc9_c00000{bottom:121.896000px;}
.ya68_c00000{bottom:122.265000px;}
.y9dc_c00000{bottom:122.760000px;}
.y6e4_c00000{bottom:123.336000px;}
.y992_c00000{bottom:123.480000px;}
.y240_c00000{bottom:123.516000px;}
.y3f3_c00000{bottom:123.876000px;}
.y477_c00000{bottom:124.056000px;}
.y946_c00000{bottom:124.245000px;}
.yad_c00000{bottom:125.136000px;}
.y9a1_c00000{bottom:125.139000px;}
.y9f2_c00000{bottom:125.145000px;}
.y4aa_c00000{bottom:125.496000px;}
.y22f_c00000{bottom:125.676000px;}
.y8ac_c00000{bottom:125.856000px;}
.y1d9_c00000{bottom:126.036000px;}
.y8b4_c00000{bottom:126.045000px;}
.y26a_c00000{bottom:126.576000px;}
.y144_c00000{bottom:126.756000px;}
.y70a_c00000{bottom:126.936000px;}
.ya0f_c00000{bottom:126.945000px;}
.y159_c00000{bottom:127.116000px;}
.y51b_c00000{bottom:127.296000px;}
.y2bd_c00000{bottom:127.656000px;}
.ya87_c00000{bottom:128.016000px;}
.y41_c00000{bottom:128.172960px;}
.y8f7_c00000{bottom:128.376000px;}
.yb89_c00000{bottom:128.556000px;}
.ye4_c00000{bottom:128.736000px;}
.yb30_c00000{bottom:129.096000px;}
.y33a_c00000{bottom:129.276000px;}
.y9e7_c00000{bottom:129.450000px;}
.y285_c00000{bottom:129.636000px;}
.y45c_c00000{bottom:129.816000px;}
.y306_c00000{bottom:129.996000px;}
.y50d_c00000{bottom:130.356000px;}
.y85c_c00000{bottom:130.500000px;}
.y748_c00000{bottom:130.545000px;}
.y34c_c00000{bottom:130.680000px;}
.y357_c00000{bottom:130.710000px;}
.y31a_c00000{bottom:130.716000px;}
.y1ee_c00000{bottom:130.719000px;}
.y366_c00000{bottom:130.725000px;}
.y706_c00000{bottom:130.896000px;}
.ya6d_c00000{bottom:131.040000px;}
.y910_c00000{bottom:131.256000px;}
.y7d7_c00000{bottom:131.436000px;}
.y32d_c00000{bottom:131.616000px;}
.y4e1_c00000{bottom:131.796000px;}
.y858_c00000{bottom:131.799000px;}
.y3d7_c00000{bottom:131.976000px;}
.y83b_c00000{bottom:131.979000px;}
.y34e_c00000{bottom:132.336000px;}
.y8c7_c00000{bottom:132.660000px;}
.y6e3_c00000{bottom:132.876000px;}
.yb22_c00000{bottom:133.020000px;}
.y88d_c00000{bottom:133.059000px;}
.y87b_c00000{bottom:133.065000px;}
.ya78_c00000{bottom:133.245000px;}
.y64d_c00000{bottom:133.416000px;}
.y192_c00000{bottom:133.776000px;}
.y597_c00000{bottom:133.956000px;}
.y964_c00000{bottom:133.965000px;}
.yb1b_c00000{bottom:134.100000px;}
.y89c_c00000{bottom:134.130000px;}
.yb55_c00000{bottom:134.316000px;}
.y976_c00000{bottom:134.490000px;}
.y8df_c00000{bottom:134.496000px;}
.y50e_c00000{bottom:135.216000px;}
.y10e_c00000{bottom:135.576000px;}
.y6c1_c00000{bottom:135.756000px;}
.y4bf_c00000{bottom:136.296000px;}
.y46c_c00000{bottom:136.476000px;}
.ya1c_c00000{bottom:136.980000px;}
.yb9c_c00000{bottom:137.016000px;}
.y8f_c00000{bottom:137.196000px;}
.y956_c00000{bottom:137.565000px;}
.y9a5_c00000{bottom:138.276000px;}
.y821_c00000{bottom:138.456000px;}
.y2c6_c00000{bottom:138.636000px;}
.y67b_c00000{bottom:138.816000px;}
.yb75_c00000{bottom:139.176000px;}
.ya60_c00000{bottom:139.185000px;}
.ya05_c00000{bottom:139.350000px;}
.y65f_c00000{bottom:139.896000px;}
.ya67_c00000{bottom:140.265000px;}
.y2e0_c00000{bottom:140.436000px;}
.y9db_c00000{bottom:140.985000px;}
.y594_c00000{bottom:141.516000px;}
.y3d3_c00000{bottom:141.696000px;}
.y991_c00000{bottom:141.705000px;}
.y2e8_c00000{bottom:141.876000px;}
.y69a_c00000{bottom:142.056000px;}
.y724_c00000{bottom:142.236000px;}
.y433_c00000{bottom:142.416000px;}
.y945_c00000{bottom:142.425000px;}
.y835_c00000{bottom:142.596000px;}
.y476_c00000{bottom:142.956000px;}
.y1ed_c00000{bottom:143.136000px;}
.y5fa_c00000{bottom:143.316000px;}
.y9a0_c00000{bottom:143.319000px;}
.y1e_c00000{bottom:143.496000px;}
.y196_c00000{bottom:144.036000px;}
.y569_c00000{bottom:144.216000px;}
.y158_c00000{bottom:144.396000px;}
.y176_c00000{bottom:144.576000px;}
.y397_c00000{bottom:144.756000px;}
.y802_c00000{bottom:144.936000px;}
.ya0e_c00000{bottom:145.125000px;}
.y1c9_c00000{bottom:145.296000px;}
.y9bf_c00000{bottom:145.476000px;}
.y269_c00000{bottom:145.656000px;}
.y882_c00000{bottom:145.836000px;}
.y4b4_c00000{bottom:146.196000px;}
.y564_c00000{bottom:146.376000px;}
.y3b4_c00000{bottom:146.556000px;}
.y5bf_c00000{bottom:146.736000px;}
.y40_c00000{bottom:147.067920px;}
.y99b_c00000{bottom:147.276000px;}
.y76f_c00000{bottom:147.456000px;}
.y9e6_c00000{bottom:147.630000px;}
.y709_c00000{bottom:147.636000px;}
.y347_c00000{bottom:148.176000px;}
.y421_c00000{bottom:148.356000px;}
.y85b_c00000{bottom:148.680000px;}
.y371_c00000{bottom:148.710000px;}
.y284_c00000{bottom:148.716000px;}
.y365_c00000{bottom:148.725000px;}
.y351_c00000{bottom:148.860000px;}
.y34b_c00000{bottom:148.890000px;}
.y304_c00000{bottom:148.896000px;}
.y754_c00000{bottom:148.899000px;}
.y378_c00000{bottom:148.905000px;}
.ya6c_c00000{bottom:149.220000px;}
.y57d_c00000{bottom:149.256000px;}
.y5e6_c00000{bottom:149.436000px;}
.y1ad_c00000{bottom:149.616000px;}
.y705_c00000{bottom:149.796000px;}
.y80b_c00000{bottom:149.976000px;}
.y836_c00000{bottom:149.979000px;}
.y143_c00000{bottom:150.510000px;}
.y4e0_c00000{bottom:150.690000px;}
.y44e_c00000{bottom:150.870000px;}
.y491_c00000{bottom:151.050000px;}
.y857_c00000{bottom:151.059000px;}
.y87a_c00000{bottom:151.065000px;}
.y215_c00000{bottom:151.230000px;}
.ya77_c00000{bottom:151.245000px;}
.y533_c00000{bottom:151.770000px;}
.yb21_c00000{bottom:152.145000px;}
.y89b_c00000{bottom:152.310000px;}
.y975_c00000{bottom:152.490000px;}
.y969_c00000{bottom:152.670000px;}
.yc8_c00000{bottom:152.850000px;}
.yb54_c00000{bottom:153.390000px;}
.yb07_c00000{bottom:153.570000px;}
.y124_c00000{bottom:153.930000px;}
.y928_c00000{bottom:154.290000px;}
.y23f_c00000{bottom:154.470000px;}
.yb0e_c00000{bottom:154.650000px;}
.y3f2_c00000{bottom:154.830000px;}
.ya1b_c00000{bottom:155.190000px;}
.yb60_c00000{bottom:155.370000px;}
.yb9b_c00000{bottom:155.910000px;}
.yac_c00000{bottom:156.090000px;}
.yae9_c00000{bottom:156.270000px;}
.yac3_c00000{bottom:156.450000px;}
.y4a9_c00000{bottom:156.630000px;}
.y1d8_c00000{bottom:156.990000px;}
.ya5f_c00000{bottom:157.365000px;}
.ya04_c00000{bottom:157.530000px;}
.y2c5_c00000{bottom:157.710000px;}
.y8e_c00000{bottom:157.890000px;}
.y51a_c00000{bottom:158.250000px;}
.ya66_c00000{bottom:158.445000px;}
.y2bc_c00000{bottom:158.790000px;}
.y9da_c00000{bottom:159.165000px;}
.y56b_c00000{bottom:159.330000px;}
.y8a4_c00000{bottom:159.510000px;}
.y7ed_c00000{bottom:159.690000px;}
.y990_c00000{bottom:159.885000px;}
.y6b9_c00000{bottom:160.050000px;}
.y4d5_c00000{bottom:160.590000px;}
.y944_c00000{bottom:160.605000px;}
.y45b_c00000{bottom:160.770000px;}
.y699_c00000{bottom:160.950000px;}
.y749_c00000{bottom:161.130000px;}
.y50c_c00000{bottom:161.310000px;}
.y99f_c00000{bottom:161.319000px;}
.ye3_c00000{bottom:161.490000px;}
.y157_c00000{bottom:161.670000px;}
.y475_c00000{bottom:162.030000px;}
.y7d6_c00000{bottom:162.390000px;}
.y2a1_c00000{bottom:162.570000px;}
.y5b0_c00000{bottom:163.110000px;}
.ya0d_c00000{bottom:163.125000px;}
.y7ae_c00000{bottom:163.290000px;}
.y6e2_c00000{bottom:163.830000px;}
.y40c_c00000{bottom:164.190000px;}
.y67c_c00000{bottom:164.370000px;}
.y268_c00000{bottom:164.550000px;}
.y195_c00000{bottom:164.730000px;}
.y191_c00000{bottom:164.910000px;}
.y57f_c00000{bottom:165.090000px;}
.y9e5_c00000{bottom:165.810000px;}
.y3f_c00000{bottom:166.145040px;}
.yaa7_c00000{bottom:166.350000px;}
.yab9_c00000{bottom:166.530000px;}
.yfb_c00000{bottom:166.710000px;}
.y751_c00000{bottom:166.860000px;}
.y364_c00000{bottom:166.905000px;}
.y833_c00000{bottom:167.040000px;}
.y22e_c00000{bottom:167.070000px;}
.y753_c00000{bottom:167.079000px;}
.y62f_c00000{bottom:167.250000px;}
.y46b_c00000{bottom:167.430000px;}
.y1d_c00000{bottom:167.610000px;}
.y319_c00000{bottom:167.790000px;}
.y4b3_c00000{bottom:167.970000px;}
.y616_c00000{bottom:168.150000px;}
.y10d_c00000{bottom:168.330000px;}
.y382_c00000{bottom:168.339000px;}
.y1d4_c00000{bottom:168.510000px;}
.y704_c00000{bottom:168.690000px;}
.y3d6_c00000{bottom:168.870000px;}
.y36c_c00000{bottom:169.230000px;}
.y856_c00000{bottom:169.239000px;}
.y879_c00000{bottom:169.245000px;}
.ya86_c00000{bottom:169.410000px;}
.ya76_c00000{bottom:169.425000px;}
.y4df_c00000{bottom:169.770000px;}
.y490_c00000{bottom:169.950000px;}
.y5e5_c00000{bottom:170.130000px;}
.y142_c00000{bottom:170.310000px;}
.yb06_c00000{bottom:170.850000px;}
.yb37_c00000{bottom:171.390000px;}
.y2df_c00000{bottom:171.570000px;}
.yabc_c00000{bottom:171.750000px;}
.y8f1_c00000{bottom:172.299000px;}
.y593_c00000{bottom:172.650000px;}
.y3d2_c00000{bottom:172.830000px;}
.y71a_c00000{bottom:173.010000px;}
.ya1a_c00000{bottom:173.190000px;}
.y5a8_c00000{bottom:173.370000px;}
.y77f_c00000{bottom:173.910000px;}
.y5f9_c00000{bottom:174.270000px;}
.yb9a_c00000{bottom:174.810000px;}
.y568_c00000{bottom:175.170000px;}
.y9b0_c00000{bottom:175.350000px;}
.ya03_c00000{bottom:175.530000px;}
.ya5e_c00000{bottom:175.545000px;}
.y175_c00000{bottom:175.710000px;}
.y801_c00000{bottom:175.890000px;}
.ya43_c00000{bottom:176.079000px;}
.y3b3_c00000{bottom:176.250000px;}
.y988_c00000{bottom:176.430000px;}
.y2c4_c00000{bottom:176.610000px;}
.y54b_c00000{bottom:176.790000px;}
.yb6c_c00000{bottom:176.970000px;}
.y5be_c00000{bottom:177.690000px;}
.y98f_c00000{bottom:177.885000px;}
.y65e_c00000{bottom:178.230000px;}
.y56a_c00000{bottom:178.410000px;}
.y8d_c00000{bottom:178.590000px;}
.y943_c00000{bottom:178.605000px;}
.y1c8_c00000{bottom:178.950000px;}
.y6c0_c00000{bottom:179.130000px;}
.y396_c00000{bottom:179.310000px;}
.y99e_c00000{bottom:179.499000px;}
.y820_c00000{bottom:179.670000px;}
.y40f_c00000{bottom:179.850000px;}
.y698_c00000{bottom:180.030000px;}
.y622_c00000{bottom:180.210000px;}
.y57c_c00000{bottom:180.390000px;}
.y474_c00000{bottom:180.930000px;}
.y79c_c00000{bottom:181.110000px;}
.ya0c_c00000{bottom:181.305000px;}
.y4c3_c00000{bottom:181.470000px;}
.yacf_c00000{bottom:181.650000px;}
.y44d_c00000{bottom:181.830000px;}
.y4fd_c00000{bottom:182.010000px;}
.y532_c00000{bottom:182.910000px;}
.y267_c00000{bottom:183.450000px;}
.yb92_c00000{bottom:183.810000px;}
.yc7_c00000{bottom:183.990000px;}
.y339_c00000{bottom:184.350000px;}
.yb0d_c00000{bottom:184.710000px;}
.y363_c00000{bottom:184.905000px;}
.y3e_c00000{bottom:185.040000px;}
.y311_c00000{bottom:185.070000px;}
.y377_c00000{bottom:185.085000px;}
.y194_c00000{bottom:185.250000px;}
.y23e_c00000{bottom:185.430000px;}
.y156_c00000{bottom:185.790000px;}
.y3f1_c00000{bottom:185.970000px;}
.y381_c00000{bottom:186.519000px;}
.y283_c00000{bottom:186.690000px;}
.ya74_c00000{bottom:187.050000px;}
.yab_c00000{bottom:187.230000px;}
.y34d_c00000{bottom:187.410000px;}
.y877_c00000{bottom:187.419000px;}
.y4a8_c00000{bottom:187.590000px;}
.y61a_c00000{bottom:187.950000px;}
.y1d7_c00000{bottom:188.130000px;}
.y855_c00000{bottom:188.319000px;}
.y89a_c00000{bottom:188.490000px;}
.y894_c00000{bottom:188.505000px;}
.y4de_c00000{bottom:188.670000px;}
.y6a6_c00000{bottom:188.850000px;}
.y48f_c00000{bottom:189.030000px;}
.y519_c00000{bottom:189.390000px;}
.y8f6_c00000{bottom:189.570000px;}
.y2bb_c00000{bottom:189.750000px;}
.y141_c00000{bottom:190.110000px;}
.yb36_c00000{bottom:190.470000px;}
.y8f0_c00000{bottom:190.479000px;}
.y7ec_c00000{bottom:190.650000px;}
.y5e4_c00000{bottom:190.830000px;}
.yb2f_c00000{bottom:191.190000px;}
.ya19_c00000{bottom:191.370000px;}
.y4d4_c00000{bottom:191.550000px;}
.y1c_c00000{bottom:191.730000px;}
.y45a_c00000{bottom:191.910000px;}
.yad9_c00000{bottom:192.090000px;}
.y50b_c00000{bottom:192.450000px;}
.ya4e_c00000{bottom:192.630000px;}
.y1ac_c00000{bottom:192.990000px;}
.y93d_c00000{bottom:193.170000px;}
.y7d5_c00000{bottom:193.530000px;}
.ya5d_c00000{bottom:193.545000px;}
.ya02_c00000{bottom:193.710000px;}
.y929_c00000{bottom:193.890000px;}
.y5af_c00000{bottom:194.070000px;}
.ya42_c00000{bottom:194.079000px;}
.ye2_c00000{bottom:194.430000px;}
.y6b8_c00000{bottom:194.610000px;}
.y6e1_c00000{bottom:194.970000px;}
.y40b_c00000{bottom:195.150000px;}
.y2c3_c00000{bottom:195.510000px;}
.y7b7_c00000{bottom:195.690000px;}
.y190_c00000{bottom:195.870000px;}
.y1d3_c00000{bottom:196.050000px;}
.y98e_c00000{bottom:196.065000px;}
.y6c7_c00000{bottom:196.230000px;}
.y81a_c00000{bottom:196.590000px;}
.y942_c00000{bottom:196.785000px;}
.y155_c00000{bottom:196.950000px;}
.y6a7_c00000{bottom:197.130000px;}
.y3d5_c00000{bottom:197.310000px;}
.yab8_c00000{bottom:197.670000px;}
.y99d_c00000{bottom:197.679000px;}
.y73c_c00000{bottom:198.210000px;}
.y4be_c00000{bottom:198.390000px;}
.y46a_c00000{bottom:198.570000px;}
.y697_c00000{bottom:198.930000px;}
.y8c_c00000{bottom:199.290000px;}
.ya0b_c00000{bottom:199.485000px;}
.y473_c00000{bottom:199.830000px;}
.y123_c00000{bottom:200.010000px;}
.yb74_c00000{bottom:200.370000px;}
.y67a_c00000{bottom:200.550000px;}
.y10c_c00000{bottom:201.090000px;}
.y9a4_c00000{bottom:202.350000px;}
.y266_c00000{bottom:202.530000px;}
.yac0_c00000{bottom:202.710000px;}
.y1c7_c00000{bottom:202.890000px;}
.y6c3_c00000{bottom:203.070000px;}
.y362_c00000{bottom:203.085000px;}
.y788_c00000{bottom:203.250000px;}
.y750_c00000{bottom:203.265000px;}
.y592_c00000{bottom:203.610000px;}
.y3d1_c00000{bottom:203.790000px;}
.y3d_c00000{bottom:203.958720px;}
.y34f_c00000{bottom:203.970000px;}
.y719_c00000{bottom:204.150000px;}
.y604_c00000{bottom:204.330000px;}
.y5a7_c00000{bottom:204.510000px;}
.y317_c00000{bottom:204.690000px;}
.y77e_c00000{bottom:205.050000px;}
.y5f8_c00000{bottom:205.230000px;}
.yb05_c00000{bottom:205.410000px;}
.y876_c00000{bottom:205.419000px;}
.y282_c00000{bottom:205.590000px;}
.y2a0_c00000{bottom:206.130000px;}
.y35e_c00000{bottom:206.310000px;}
.y854_c00000{bottom:206.499000px;}
.y893_c00000{bottom:206.505000px;}
.y174_c00000{bottom:206.670000px;}
.y800_c00000{bottom:207.030000px;}
.y3b2_c00000{bottom:207.210000px;}
.y4dd_c00000{bottom:207.570000px;}
.y54a_c00000{bottom:207.750000px;}
.y432_c00000{bottom:207.930000px;}
.y22d_c00000{bottom:208.470000px;}
.y8ef_c00000{bottom:208.479000px;}
.y6ef_c00000{bottom:208.650000px;}
.y5bd_c00000{bottom:208.830000px;}
.y927_c00000{bottom:209.370000px;}
.y76e_c00000{bottom:209.550000px;}
.ya15_c00000{bottom:209.910000px;}
.y420_c00000{bottom:210.450000px;}
.ya85_c00000{bottom:210.810000px;}
.y57b_c00000{bottom:211.350000px;}
.yfa_c00000{bottom:211.530000px;}
.y4b2_c00000{bottom:211.710000px;}
.ya5c_c00000{bottom:211.725000px;}
.y80a_c00000{bottom:212.070000px;}
.y79b_c00000{bottom:212.250000px;}
.ya41_c00000{bottom:212.259000px;}
.yace_c00000{bottom:212.790000px;}
.y44c_c00000{bottom:212.970000px;}
.y4fc_c00000{bottom:213.150000px;}
.y1f8_c00000{bottom:213.330000px;}
.y6c6_c00000{bottom:213.510000px;}
.y531_c00000{bottom:213.870000px;}
.yb53_c00000{bottom:214.050000px;}
.y98d_c00000{bottom:214.065000px;}
.y1c6_c00000{bottom:214.230000px;}
.y6c2_c00000{bottom:214.410000px;}
.y2c2_c00000{bottom:214.590000px;}
.ya23_c00000{bottom:214.770000px;}
.yc6_c00000{bottom:214.950000px;}
.y941_c00000{bottom:214.965000px;}
.y563_c00000{bottom:215.310000px;}
.y99c_c00000{bottom:215.679000px;}
.y1b_c00000{bottom:215.850000px;}
.y65d_c00000{bottom:216.210000px;}
.y23d_c00000{bottom:216.570000px;}
.y963_c00000{bottom:216.750000px;}
.y3f0_c00000{bottom:216.930000px;}
.ya0a_c00000{bottom:217.485000px;}
.y7cc_c00000{bottom:217.830000px;}
.y696_c00000{bottom:218.010000px;}
.yaa_c00000{bottom:218.190000px;}
.y4c2_c00000{bottom:218.370000px;}
.y4a7_c00000{bottom:218.730000px;}
.y1d6_c00000{bottom:219.090000px;}
.y9c5_c00000{bottom:219.450000px;}
.y140_c00000{bottom:219.810000px;}
.y8b_c00000{bottom:219.990000px;}
.y1d2_c00000{bottom:220.170000px;}
.y518_c00000{bottom:220.350000px;}
.y2ba_c00000{bottom:220.890000px;}
.y81f_c00000{bottom:221.070000px;}
.y345_c00000{bottom:221.250000px;}
.y747_c00000{bottom:221.265000px;}
.y265_c00000{bottom:221.430000px;}
.y832_c00000{bottom:221.445000px;}
.ya6b_c00000{bottom:221.610000px;}
.y7eb_c00000{bottom:221.790000px;}
.y301_c00000{bottom:222.150000px;}
.y787_c00000{bottom:222.330000px;}
.yb04_c00000{bottom:222.510000px;}
.y395_c00000{bottom:222.690000px;}
.y33f_c00000{bottom:222.870000px;}
.y3c_c00000{bottom:223.035840px;}
.y80f_c00000{bottom:223.050000px;}
.yaa6_c00000{bottom:223.230000px;}
.y50a_c00000{bottom:223.410000px;}
.y372_c00000{bottom:223.590000px;}
.y875_c00000{bottom:223.599000px;}
.yb5f_c00000{bottom:224.310000px;}
.y281_c00000{bottom:224.490000px;}
.y853_c00000{bottom:224.679000px;}
.y892_c00000{bottom:224.685000px;}
.y5ae_c00000{bottom:225.210000px;}
.ye1_c00000{bottom:225.390000px;}
.y6e0_c00000{bottom:225.930000px;}
.y40a_c00000{bottom:226.290000px;}
.y5b_c00000{bottom:226.470000px;}
.y4dc_c00000{bottom:226.650000px;}
.y8ee_c00000{bottom:226.659000px;}
.y18f_c00000{bottom:226.830000px;}
.y193_c00000{bottom:227.010000px;}
.ya18_c00000{bottom:227.550000px;}
.y472_c00000{bottom:228.270000px;}
.yab7_c00000{bottom:228.630000px;}
.y6b7_c00000{bottom:229.170000px;}
.y62e_c00000{bottom:229.350000px;}
.y469_c00000{bottom:229.530000px;}
.y431_c00000{bottom:229.710000px;}
.ya5b_c00000{bottom:229.725000px;}
.ya01_c00000{bottom:229.890000px;}
.y615_c00000{bottom:230.250000px;}
.y7c0_c00000{bottom:230.295000px;}
.y830_c00000{bottom:230.430000px;}
.ya40_c00000{bottom:230.439000px;}
.y9af_c00000{bottom:230.475000px;}
.y1d1_c00000{bottom:230.610000px;}
.y29e_c00000{bottom:231.510000px;}
.yb99_c00000{bottom:231.870000px;}
.y679_c00000{bottom:232.050000px;}
.y940_c00000{bottom:232.995000px;}
.y2f2_c00000{bottom:233.175000px;}
.y2c1_c00000{bottom:233.490000px;}
.yb35_c00000{bottom:233.850000px;}
.y10b_c00000{bottom:234.030000px;}
.ya49_c00000{bottom:234.255000px;}
.y591_c00000{bottom:234.750000px;}
.y3d0_c00000{bottom:234.930000px;}
.y65c_c00000{bottom:235.110000px;}
.y5a6_c00000{bottom:235.470000px;}
.y77d_c00000{bottom:236.010000px;}
.y920_c00000{bottom:236.019000px;}
.y902_c00000{bottom:236.055000px;}
.y5f7_c00000{bottom:236.370000px;}
.y1ab_c00000{bottom:236.550000px;}
.y695_c00000{bottom:236.910000px;}
.y982_c00000{bottom:237.135000px;}
.y29f_c00000{bottom:237.270000px;}
.y781_c00000{bottom:237.450000px;}
.y173_c00000{bottom:237.810000px;}
.y7ff_c00000{bottom:237.990000px;}
.y9f7_c00000{bottom:238.035000px;}
.y3b1_c00000{bottom:238.350000px;}
.yaf9_c00000{bottom:238.530000px;}
.y901_c00000{bottom:238.575000px;}
.y549_c00000{bottom:238.890000px;}
.y757_c00000{bottom:239.265000px;}
.y746_c00000{bottom:239.295000px;}
.y74f_c00000{bottom:239.445000px;}
.y338_c00000{bottom:239.475000px;}
.y5bc_c00000{bottom:239.790000px;}
.y1a_c00000{bottom:239.970000px;}
.y4c1_c00000{bottom:240.150000px;}
.y310_c00000{bottom:240.195000px;}
.y264_c00000{bottom:240.510000px;}
.y8a_c00000{bottom:240.690000px;}
.y33d_c00000{bottom:240.915000px;}
.y786_c00000{bottom:241.230000px;}
.y41f_c00000{bottom:241.410000px;}
.yb5e_c00000{bottom:241.590000px;}
.y7d4_c00000{bottom:241.770000px;}
.y374_c00000{bottom:241.815000px;}
.y3b_c00000{bottom:241.930800px;}
.y154_c00000{bottom:242.130000px;}
.y5e3_c00000{bottom:242.310000px;}
.y36b_c00000{bottom:242.535000px;}
.y874_c00000{bottom:242.859000px;}
.yf9_c00000{bottom:243.030000px;}
.y79a_c00000{bottom:243.210000px;}
.yacd_c00000{bottom:243.750000px;}
.y852_c00000{bottom:243.759000px;}
.y44b_c00000{bottom:243.930000px;}
.y4fb_c00000{bottom:244.110000px;}
.y8ed_c00000{bottom:244.659000px;}
.y8fb_c00000{bottom:244.839000px;}
.y530_c00000{bottom:245.010000px;}
.y4db_c00000{bottom:245.550000px;}
.ya17_c00000{bottom:245.730000px;}
.y48e_c00000{bottom:245.910000px;}
.y122_c00000{bottom:246.090000px;}
.yb0c_c00000{bottom:246.810000px;}
.y23c_c00000{bottom:247.530000px;}
.yc5_c00000{bottom:247.710000px;}
.ya58_c00000{bottom:247.755000px;}
.y1d0_c00000{bottom:247.890000px;}
.ya5a_c00000{bottom:247.905000px;}
.y3ef_c00000{bottom:248.070000px;}
.ya00_c00000{bottom:248.115000px;}
.ya3f_c00000{bottom:248.439000px;}
.y780_c00000{bottom:248.790000px;}
.y932_c00000{bottom:249.015000px;}
.y6f7_c00000{bottom:249.150000px;}
.ya9_c00000{bottom:249.330000px;}
.y13f_c00000{bottom:249.690000px;}
.y562_c00000{bottom:249.870000px;}
.y619_c00000{bottom:250.050000px;}
.y576_c00000{bottom:250.230000px;}
.yb98_c00000{bottom:250.770000px;}
.y819_c00000{bottom:250.815000px;}
.y6a5_c00000{bottom:250.950000px;}
.yb34_c00000{bottom:251.130000px;}
.y93f_c00000{bottom:251.175000px;}
.y517_c00000{bottom:251.490000px;}
.y2b9_c00000{bottom:251.850000px;}
.ya84_c00000{bottom:252.210000px;}
.y7cb_c00000{bottom:252.390000px;}
.y2c0_c00000{bottom:252.570000px;}
.y7ea_c00000{bottom:252.750000px;}
.yb2e_c00000{bottom:253.290000px;}
.y4d3_c00000{bottom:253.650000px;}
.y65b_c00000{bottom:253.830000px;}
.y459_c00000{bottom:254.010000px;}
.y280_c00000{bottom:254.190000px;}
.y91f_c00000{bottom:254.199000px;}
.y509_c00000{bottom:254.550000px;}
.y736_c00000{bottom:254.730000px;}
.y4b1_c00000{bottom:255.270000px;}
.y694_c00000{bottom:255.810000px;}
.y5ad_c00000{bottom:256.170000px;}
.ye0_c00000{bottom:256.530000px;}
.y6df_c00000{bottom:257.070000px;}
.y409_c00000{bottom:257.250000px;}
.y74e_c00000{bottom:257.445000px;}
.y745_c00000{bottom:257.475000px;}
.y1d5_c00000{bottom:257.610000px;}
.y7b6_c00000{bottom:257.790000px;}
.y18e_c00000{bottom:257.970000px;}
.y430_c00000{bottom:258.150000px;}
.y323_c00000{bottom:258.375000px;}
.y67_c00000{bottom:258.870000px;}
.y37c_c00000{bottom:259.095000px;}
.y263_c00000{bottom:259.410000px;}
.yab6_c00000{bottom:259.770000px;}
.y32c_c00000{bottom:259.815000px;}
.y62d_c00000{bottom:260.130000px;}
.y22c_c00000{bottom:260.310000px;}
.y4bd_c00000{bottom:260.490000px;}
.y468_c00000{bottom:260.670000px;}
.y873_c00000{bottom:260.859000px;}
.y3a_c00000{bottom:261.007920px;}
.yaa5_c00000{bottom:261.210000px;}
.y89_c00000{bottom:261.390000px;}
.y4c0_c00000{bottom:261.930000px;}
.y851_c00000{bottom:261.939000px;}
.y81e_c00000{bottom:262.470000px;}
.y8ec_c00000{bottom:262.839000px;}
.y8f5_c00000{bottom:262.875000px;}
.y678_c00000{bottom:263.010000px;}
.yb6b_c00000{bottom:263.190000px;}
.y6b6_c00000{bottom:263.550000px;}
.y1c5_c00000{bottom:263.730000px;}
.y9cf_c00000{bottom:264.135000px;}
.y19_c00000{bottom:264.270000px;}
.y926_c00000{bottom:264.495000px;}
.y2de_c00000{bottom:264.630000px;}
.y48d_c00000{bottom:264.810000px;}
.ya14_c00000{bottom:265.035000px;}
.y1cf_c00000{bottom:265.170000px;}
.y590_c00000{bottom:265.710000px;}
.y3cf_c00000{bottom:265.890000px;}
.y219_c00000{bottom:266.070000px;}
.y394_c00000{bottom:266.250000px;}
.y603_c00000{bottom:266.430000px;}
.y5a5_c00000{bottom:266.610000px;}
.ya3e_c00000{bottom:266.619000px;}
.yf8_c00000{bottom:266.790000px;}
.y77c_c00000{bottom:267.150000px;}
.y7bf_c00000{bottom:267.195000px;}
.y5f6_c00000{bottom:267.330000px;}
.y94e_c00000{bottom:268.095000px;}
.y29d_c00000{bottom:268.230000px;}
.y172_c00000{bottom:268.770000px;}
.y7fe_c00000{bottom:269.130000px;}
.y93e_c00000{bottom:269.175000px;}
.y3b0_c00000{bottom:269.310000px;}
.yaf8_c00000{bottom:269.670000px;}
.y548_c00000{bottom:269.850000px;}
.yb94_c00000{bottom:270.030000px;}
.y6ee_c00000{bottom:270.750000px;}
.y5bb_c00000{bottom:270.930000px;}
.y2bf_c00000{bottom:271.515000px;}
.y76d_c00000{bottom:271.695000px;}
.yabf_c00000{bottom:271.875000px;}
.y471_c00000{bottom:272.055000px;}
.y91e_c00000{bottom:272.379000px;}
.y41e_c00000{bottom:272.415000px;}
.ya6a_c00000{bottom:272.775000px;}
.y65a_c00000{bottom:273.135000px;}
.y5e2_c00000{bottom:273.495000px;}
.y809_c00000{bottom:274.215000px;}
.yb03_c00000{bottom:274.395000px;}
.y693_c00000{bottom:274.935000px;}
.y44a_c00000{bottom:275.115000px;}
.y4fa_c00000{bottom:275.295000px;}
.y744_c00000{bottom:275.475000px;}
.y74d_c00000{bottom:275.625000px;}
.y799_c00000{bottom:275.655000px;}
.y52f_c00000{bottom:276.015000px;}
.yb52_c00000{bottom:276.195000px;}
.y344_c00000{bottom:276.375000px;}
.yb91_c00000{bottom:276.915000px;}
.y4b0_c00000{bottom:277.095000px;}
.y300_c00000{bottom:277.275000px;}
.y36f_c00000{bottom:277.599000px;}
.y38c_c00000{bottom:277.995000px;}
.y262_c00000{bottom:278.355000px;}
.y23b_c00000{bottom:278.715000px;}
.y872_c00000{bottom:279.039000px;}
.y3ee_c00000{bottom:279.075000px;}
.y785_c00000{bottom:279.255000px;}
.y13e_c00000{bottom:279.435000px;}
.y8ab_c00000{bottom:279.795000px;}
.y39_c00000{bottom:279.902880px;}
.y850_c00000{bottom:280.119000px;}
.y88c_c00000{bottom:280.149000px;}
.y1aa_c00000{bottom:280.155000px;}
.ya8_c00000{bottom:280.335000px;}
.y214_c00000{bottom:280.515000px;}
.yc4_c00000{bottom:280.695000px;}
.y9b1_c00000{bottom:280.875000px;}
.y8fa_c00000{bottom:281.019000px;}
.y575_c00000{bottom:281.235000px;}
.yb93_c00000{bottom:281.415000px;}
.ya16_c00000{bottom:281.910000px;}
.y88_c00000{bottom:282.135000px;}
.y1f7_c00000{bottom:282.315000px;}
.ya2c_c00000{bottom:282.450000px;}
.y516_c00000{bottom:282.495000px;}
.y2b8_c00000{bottom:283.035000px;}
.y470_c00000{bottom:283.395000px;}
.y4da_c00000{bottom:283.575000px;}
.y6f6_c00000{bottom:283.755000px;}
.y48c_c00000{bottom:283.935000px;}
.yb2d_c00000{bottom:284.295000px;}
.y561_c00000{bottom:284.475000px;}
.ya3d_c00000{bottom:284.649000px;}
.y4d2_c00000{bottom:284.655000px;}
.y458_c00000{bottom:285.015000px;}
.y27f_c00000{bottom:285.195000px;}
.y508_c00000{bottom:285.555000px;}
.y5a_c00000{bottom:285.915000px;}
.y8a3_c00000{bottom:286.095000px;}
.y8b0_c00000{bottom:286.635000px;}
.y7ca_c00000{bottom:286.995000px;}
.y5ac_c00000{bottom:287.355000px;}
.ydf_c00000{bottom:287.535000px;}
.y42f_c00000{bottom:287.715000px;}
.y6de_c00000{bottom:288.075000px;}
.y18_c00000{bottom:288.435000px;}
.y46e_c00000{bottom:288.615000px;}
.y1e8_c00000{bottom:288.795000px;}
.y18d_c00000{bottom:288.975000px;}
.y1ce_c00000{bottom:289.155000px;}
.ya48_c00000{bottom:289.335000px;}
.yadc_c00000{bottom:289.875000px;}
.y66_c00000{bottom:290.055000px;}
.y91d_c00000{bottom:290.409000px;}
.y2be_c00000{bottom:290.415000px;}
.yab5_c00000{bottom:290.775000px;}
.y62c_c00000{bottom:291.135000px;}
.y808_c00000{bottom:291.315000px;}
.y22b_c00000{bottom:291.495000px;}
.y467_c00000{bottom:291.675000px;}
.y121_c00000{bottom:292.215000px;}
.y614_c00000{bottom:292.395000px;}
.y82f_c00000{bottom:292.575000px;}
.y153_c00000{bottom:293.295000px;}
.y743_c00000{bottom:293.655000px;}
.y74c_c00000{bottom:293.805000px;}
.y692_c00000{bottom:293.835000px;}
.y677_c00000{bottom:294.195000px;}
.y337_c00000{bottom:294.555000px;}
.y1c4_c00000{bottom:294.735000px;}
.y30f_c00000{bottom:295.275000px;}
.y2dd_c00000{bottom:295.635000px;}
.y36e_c00000{bottom:295.989000px;}
.y316_c00000{bottom:295.995000px;}
.y370_c00000{bottom:296.895000px;}
.y3ce_c00000{bottom:297.075000px;}
.y871_c00000{bottom:297.249000px;}
.y718_c00000{bottom:297.255000px;}
.y261_c00000{bottom:297.435000px;}
.y5a4_c00000{bottom:297.615000px;}
.ya94_c00000{bottom:297.795000px;}
.y218_c00000{bottom:298.155000px;}
.y88b_c00000{bottom:298.329000px;}
.y7d3_c00000{bottom:298.335000px;}
.y5f5_c00000{bottom:298.515000px;}
.y38_c00000{bottom:298.797840px;}
.y4af_c00000{bottom:298.875000px;}
.y8aa_c00000{bottom:299.055000px;}
.y8f9_c00000{bottom:299.229000px;}
.y84f_c00000{bottom:299.409000px;}
.y29c_c00000{bottom:299.415000px;}
.yf7_c00000{bottom:299.595000px;}
.y6c5_c00000{bottom:299.775000px;}
.y171_c00000{bottom:299.955000px;}
.y7fd_c00000{bottom:300.135000px;}
.ya2b_c00000{bottom:300.450000px;}
.y3af_c00000{bottom:300.495000px;}
.yaf7_c00000{bottom:300.675000px;}
.y547_c00000{bottom:301.035000px;}
.y5ba_c00000{bottom:301.935000px;}
.y986_c00000{bottom:302.475000px;}
.y4d9_c00000{bottom:302.655000px;}
.ya3c_c00000{bottom:302.829000px;}
.y87_c00000{bottom:302.835000px;}
.y41d_c00000{bottom:303.555000px;}
.y81d_c00000{bottom:303.915000px;}
.y7be_c00000{bottom:304.095000px;}
.y5e1_c00000{bottom:304.455000px;}
.yacc_c00000{bottom:305.895000px;}
.y449_c00000{bottom:306.075000px;}
.y4f9_c00000{bottom:306.255000px;}
.y2f1_c00000{bottom:306.435000px;}
.y798_c00000{bottom:306.615000px;}
.y52e_c00000{bottom:307.155000px;}
.y834_c00000{bottom:307.515000px;}
.yb97_c00000{bottom:307.695000px;}
.y9e4_c00000{bottom:308.055000px;}
.yb02_c00000{bottom:308.955000px;}
.y13d_c00000{bottom:309.135000px;}
.y23a_c00000{bottom:309.675000px;}
.y393_c00000{bottom:309.855000px;}
.y3ed_c00000{bottom:310.215000px;}
.yb5d_c00000{bottom:310.575000px;}
.y659_c00000{bottom:311.115000px;}
.ya7_c00000{bottom:311.475000px;}
.y74b_c00000{bottom:311.805000px;}
.y4a6_c00000{bottom:311.835000px;}
.y618_c00000{bottom:312.195000px;}
.y574_c00000{bottom:312.375000px;}
.y17_c00000{bottom:312.555000px;}
.y691_c00000{bottom:312.915000px;}
.y6a4_c00000{bottom:313.095000px;}
.yb87_c00000{bottom:313.275000px;}
.yc3_c00000{bottom:313.455000px;}
.y515_c00000{bottom:313.635000px;}
.y36d_c00000{bottom:313.989000px;}
.y2b7_c00000{bottom:313.995000px;}
.y37f_c00000{bottom:314.175000px;}
.y37b_c00000{bottom:314.895000px;}
.y870_c00000{bottom:315.249000px;}
.yb2c_c00000{bottom:315.435000px;}
.ya3b_c00000{bottom:315.585000px;}
.y36a_c00000{bottom:315.615000px;}
.y4d1_c00000{bottom:315.795000px;}
.y457_c00000{bottom:316.155000px;}
.y88a_c00000{bottom:316.329000px;}
.y260_c00000{bottom:316.335000px;}
.y507_c00000{bottom:316.695000px;}
.y1cd_c00000{bottom:316.875000px;}
.y6c4_c00000{bottom:317.055000px;}
.y8f8_c00000{bottom:317.229000px;}
.y752_c00000{bottom:317.235000px;}
.y84e_c00000{bottom:317.409000px;}
.y8a2_c00000{bottom:317.415000px;}
.y8a9_c00000{bottom:317.955000px;}
.y6f5_c00000{bottom:318.135000px;}
.y5ab_c00000{bottom:318.315000px;}
.ya2a_c00000{bottom:318.630000px;}
.y7ad_c00000{bottom:318.675000px;}
.y42e_c00000{bottom:318.855000px;}
.y6dd_c00000{bottom:319.215000px;}
.y408_c00000{bottom:319.395000px;}
.y925_c00000{bottom:319.575000px;}
.y46d_c00000{bottom:319.755000px;}
.y7b5_c00000{bottom:319.935000px;}
.y18c_c00000{bottom:320.115000px;}
.yde_c00000{bottom:320.295000px;}
.y908_c00000{bottom:320.430000px;}
.y4ae_c00000{bottom:320.835000px;}
.y65_c00000{bottom:321.015000px;}
.y7c9_c00000{bottom:321.375000px;}
.y4d8_c00000{bottom:321.555000px;}
.y48b_c00000{bottom:321.735000px;}
.yab4_c00000{bottom:321.915000px;}
.y22a_c00000{bottom:322.455000px;}
.y4bc_c00000{bottom:322.635000px;}
.y466_c00000{bottom:322.815000px;}
.y86_c00000{bottom:323.535000px;}
.y1f6_c00000{bottom:323.715000px;}
.y818_c00000{bottom:324.795000px;}
.y676_c00000{bottom:325.155000px;}
.y1c3_c00000{bottom:325.875000px;}
.yb01_c00000{bottom:326.055000px;}
.y9ab_c00000{bottom:326.229000px;}
.y2dc_c00000{bottom:326.775000px;}
.yabb_c00000{bottom:326.955000px;}
.yb5c_c00000{bottom:327.855000px;}
.y3cd_c00000{bottom:328.035000px;}
.y717_c00000{bottom:328.395000px;}
.y602_c00000{bottom:328.575000px;}
.y5a3_c00000{bottom:328.755000px;}
.y807_c00000{bottom:329.115000px;}
.y77b_c00000{bottom:329.295000px;}
.y5f4_c00000{bottom:329.475000px;}
.ya53_c00000{bottom:329.655000px;}
.y742_c00000{bottom:329.835000px;}
.y658_c00000{bottom:330.015000px;}
.y217_c00000{bottom:330.195000px;}
.y29b_c00000{bottom:330.375000px;}
.y170_c00000{bottom:330.915000px;}
.y7fc_c00000{bottom:331.275000px;}
.y3ae_c00000{bottom:331.455000px;}
.y322_c00000{bottom:331.635000px;}
.y690_c00000{bottom:331.815000px;}
.y546_c00000{bottom:331.995000px;}
.yb6a_c00000{bottom:332.175000px;}
.yf6_c00000{bottom:332.355000px;}
.y6b5_c00000{bottom:332.715000px;}
.y6ed_c00000{bottom:332.895000px;}
.y32b_c00000{bottom:333.075000px;}
.y86f_c00000{bottom:333.429000px;}
.yb86_c00000{bottom:333.615000px;}
.y76c_c00000{bottom:333.795000px;}
.yb64_c00000{bottom:333.975000px;}
.y1cc_c00000{bottom:334.155000px;}
.y91a_c00000{bottom:334.485000px;}
.y889_c00000{bottom:334.509000px;}
.y35d_c00000{bottom:334.515000px;}
.y1f5_c00000{bottom:335.055000px;}
.y8b3_c00000{bottom:335.370000px;}
.y25f_c00000{bottom:335.415000px;}
.y84d_c00000{bottom:335.589000px;}
.y58f_c00000{bottom:335.595000px;}
.y7d2_c00000{bottom:335.955000px;}
.y784_c00000{bottom:336.135000px;}
.y16_c00000{bottom:336.675000px;}
.ya29_c00000{bottom:336.810000px;}
.y8a8_c00000{bottom:337.035000px;}
.y448_c00000{bottom:337.215000px;}
.y4f8_c00000{bottom:337.395000px;}
.y797_c00000{bottom:337.755000px;}
.y120_c00000{bottom:338.115000px;}
.yb51_c00000{bottom:338.295000px;}
.y907_c00000{bottom:338.610000px;}
.y5aa_c00000{bottom:338.835000px;}
.y13c_c00000{bottom:339.015000px;}
.yb0b_c00000{bottom:340.095000px;}
.yba3_c00000{bottom:340.455000px;}
.y9ae_c00000{bottom:340.635000px;}
.y59_c00000{bottom:340.815000px;}
.y3ec_c00000{bottom:341.175000px;}
.ya93_c00000{bottom:341.355000px;}
.ya6_c00000{bottom:342.435000px;}
.y213_c00000{bottom:342.615000px;}
.y4a5_c00000{bottom:342.795000px;}
.y573_c00000{bottom:343.335000px;}
.y85_c00000{bottom:344.235000px;}
.y9aa_c00000{bottom:344.409000px;}
.ya47_c00000{bottom:344.415000px;}
.y152_c00000{bottom:344.595000px;}
.y2b6_c00000{bottom:345.135000px;}
.y81c_c00000{bottom:345.315000px;}
.y456_c00000{bottom:345.675000px;}
.y7e9_c00000{bottom:345.855000px;}
.yc2_c00000{bottom:346.215000px;}
.yb2b_c00000{bottom:346.395000px;}
.y4d0_c00000{bottom:346.755000px;}
.yad8_c00000{bottom:346.935000px;}
.y525_c00000{bottom:347.115000px;}
.y27e_c00000{bottom:347.295000px;}
.y506_c00000{bottom:347.655000px;}
.y741_c00000{bottom:348.015000px;}
.y80e_c00000{bottom:348.555000px;}
.y900_c00000{bottom:348.735000px;}
.y657_c00000{bottom:349.095000px;}
.y375_c00000{bottom:349.269000px;}
.yaa0_c00000{bottom:349.455000px;}
.y343_c00000{bottom:349.635000px;}
.y42d_c00000{bottom:349.815000px;}
.y6dc_c00000{bottom:350.175000px;}
.y35f_c00000{bottom:350.355000px;}
.y407_c00000{bottom:350.535000px;}
.y51f_c00000{bottom:350.715000px;}
.y216_c00000{bottom:350.895000px;}
.y37e_c00000{bottom:351.069000px;}
.y18b_c00000{bottom:351.075000px;}
.y735_c00000{bottom:351.435000px;}
.y86e_c00000{bottom:351.609000px;}
.y64_c00000{bottom:352.155000px;}
.y2a2_c00000{bottom:352.335000px;}
.yb85_c00000{bottom:352.515000px;}
.y888_c00000{bottom:352.689000px;}
.y6f4_c00000{bottom:352.695000px;}
.yab3_c00000{bottom:352.875000px;}
.y392_c00000{bottom:353.235000px;}
.y560_c00000{bottom:353.415000px;}
.y465_c00000{bottom:353.775000px;}
.y25e_c00000{bottom:354.315000px;}
.y613_c00000{bottom:354.495000px;}
.y82e_c00000{bottom:354.675000px;}
.y84c_c00000{bottom:354.849000px;}
.y7d1_c00000{bottom:354.855000px;}
.y783_c00000{bottom:355.035000px;}
.y7c8_c00000{bottom:355.935000px;}
.yaa4_c00000{bottom:356.115000px;}
.y675_c00000{bottom:356.295000px;}
.y906_c00000{bottom:356.790000px;}
.y1c2_c00000{bottom:356.835000px;}
.y2db_c00000{bottom:357.735000px;}
.y3cc_c00000{bottom:357.915000px;}
.yabe_c00000{bottom:358.095000px;}
.y1cb_c00000{bottom:358.275000px;}
.ybab_c00000{bottom:358.995000px;}
.y931_c00000{bottom:359.175000px;}
.y716_c00000{bottom:359.355000px;}
.y723_c00000{bottom:359.535000px;}
.y48a_c00000{bottom:359.715000px;}
.y77a_c00000{bottom:360.255000px;}
.y5f3_c00000{bottom:360.615000px;}
.y15_c00000{bottom:360.795000px;}
.y37_c00000{bottom:361.080000px;}
.y829_c00000{bottom:361.335000px;}
.y29a_c00000{bottom:361.515000px;}
.y817_c00000{bottom:361.695000px;}
.y16f_c00000{bottom:362.055000px;}
.y7fb_c00000{bottom:362.235000px;}
.y9a9_c00000{bottom:362.409000px;}
.yb5b_c00000{bottom:362.415000px;}
.y3ad_c00000{bottom:362.595000px;}
.yaf6_c00000{bottom:362.775000px;}
.y545_c00000{bottom:363.135000px;}
.y5b9_c00000{bottom:364.035000px;}
.y4ad_c00000{bottom:364.395000px;}
.yb96_c00000{bottom:364.575000px;}
.y84_c00000{bottom:364.935000px;}
.yf5_c00000{bottom:365.115000px;}
.y41c_c00000{bottom:365.655000px;}
.y95c_c00000{bottom:365.835000px;}
.y740_c00000{bottom:366.015000px;}
.ydd_c00000{bottom:366.375000px;}
.y5e0_c00000{bottom:366.555000px;}
.y58e_c00000{bottom:366.735000px;}
.y1a9_c00000{bottom:367.095000px;}
.yb69_c00000{bottom:367.635000px;}
.y336_c00000{bottom:367.815000px;}
.y656_c00000{bottom:367.995000px;}
.y447_c00000{bottom:368.175000px;}
.y4f7_c00000{bottom:368.355000px;}
.y229_c00000{bottom:368.535000px;}
.y13b_c00000{bottom:368.715000px;}
.y37d_c00000{bottom:369.069000px;}
.y313_c00000{bottom:369.255000px;}
.y1ca_c00000{bottom:369.615000px;}
.y68f_c00000{bottom:369.795000px;}
.y37a_c00000{bottom:369.975000px;}
.y8cc_c00000{bottom:370.155000px;}
.y887_c00000{bottom:370.689000px;}
.y369_c00000{bottom:370.695000px;}
.y86d_c00000{bottom:370.869000px;}
.y8b2_c00000{bottom:371.595000px;}
.y58_c00000{bottom:371.775000px;}
.y3eb_c00000{bottom:372.315000px;}
.y84b_c00000{bottom:372.849000px;}
.ya28_c00000{bottom:373.035000px;}
.y25d_c00000{bottom:373.215000px;}
.y212_c00000{bottom:373.575000px;}
.y4a4_c00000{bottom:373.935000px;}
.y617_c00000{bottom:374.295000px;}
.y572_c00000{bottom:374.475000px;}
.y921_c00000{bottom:374.655000px;}
.y905_c00000{bottom:374.790000px;}
.y8a7_c00000{bottom:375.015000px;}
.ya5_c00000{bottom:375.195000px;}
.yabd_c00000{bottom:375.375000px;}
.y514_c00000{bottom:375.735000px;}
.y2b5_c00000{bottom:376.095000px;}
.ya83_c00000{bottom:376.455000px;}
.y5a9_c00000{bottom:376.815000px;}
.y7e8_c00000{bottom:376.995000px;}
.yb2a_c00000{bottom:377.535000px;}
.y7d0_c00000{bottom:377.715000px;}
.y4cf_c00000{bottom:377.895000px;}
.y524_c00000{bottom:378.255000px;}
.y27d_c00000{bottom:378.435000px;}
.y489_c00000{bottom:378.795000px;}
.y80d_c00000{bottom:379.515000px;}
.y8a1_c00000{bottom:380.415000px;}
.y9a8_c00000{bottom:380.589000px;}
.y7ac_c00000{bottom:380.775000px;}
.y42c_c00000{bottom:380.955000px;}
.y6db_c00000{bottom:381.315000px;}
.y406_c00000{bottom:381.495000px;}
.y81b_c00000{bottom:381.855000px;}
.y5dc_c00000{bottom:382.035000px;}
.y18a_c00000{bottom:382.215000px;}
.y455_c00000{bottom:382.935000px;}
.y63_c00000{bottom:383.115000px;}
.y782_c00000{bottom:383.475000px;}
.yb95_c00000{bottom:383.655000px;}
.ya52_c00000{bottom:383.835000px;}
.y11f_c00000{bottom:384.195000px;}
.y4bb_c00000{bottom:384.735000px;}
.y14_c00000{bottom:384.915000px;}
.y9b6_c00000{bottom:385.095000px;}
.y83_c00000{bottom:385.635000px;}
.y734_c00000{bottom:385.995000px;}
.y4ac_c00000{bottom:386.175000px;}
.y320_c00000{bottom:386.715000px;}
.y655_c00000{bottom:387.075000px;}
.y674_c00000{bottom:387.255000px;}
.y349_c00000{bottom:387.435000px;}
.y1c1_c00000{bottom:387.975000px;}
.y68e_c00000{bottom:388.695000px;}
.y2da_c00000{bottom:388.875000px;}
.yb33_c00000{bottom:389.055000px;}
.y8b1_c00000{bottom:389.775000px;}
.y886_c00000{bottom:389.949000px;}
.ybaa_c00000{bottom:389.955000px;}
.y86c_c00000{bottom:390.129000px;}
.y715_c00000{bottom:390.135000px;}
.y7c7_c00000{bottom:390.495000px;}
.y601_c00000{bottom:390.675000px;}
.y5a2_c00000{bottom:390.855000px;}
.y84a_c00000{bottom:391.029000px;}
.y9be_c00000{bottom:391.035000px;}
.y779_c00000{bottom:391.395000px;}
.y5f2_c00000{bottom:391.575000px;}
.yc1_c00000{bottom:392.295000px;}
.y299_c00000{bottom:392.475000px;}
.y9eb_c00000{bottom:392.655000px;}
.y16e_c00000{bottom:393.015000px;}
.y7fa_c00000{bottom:393.375000px;}
.y3ac_c00000{bottom:393.555000px;}
.y8a6_c00000{bottom:393.915000px;}
.y544_c00000{bottom:394.095000px;}
.y3cb_c00000{bottom:394.815000px;}
.y6ec_c00000{bottom:394.995000px;}
.y5b8_c00000{bottom:395.175000px;}
.y151_c00000{bottom:395.715000px;}
.y76b_c00000{bottom:395.895000px;}
.yb00_c00000{bottom:396.075000px;}
.y7bd_c00000{bottom:396.255000px;}
.y41b_c00000{bottom:396.615000px;}
.y391_c00000{bottom:396.795000px;}
.y7cf_c00000{bottom:397.155000px;}
.yba2_c00000{bottom:397.515000px;}
.y488_c00000{bottom:397.695000px;}
.yf4_c00000{bottom:398.055000px;}
.y13a_c00000{bottom:398.415000px;}
.y9a7_c00000{bottom:398.589000px;}
.ydc_c00000{bottom:399.135000px;}
.y446_c00000{bottom:399.315000px;}
.y4f6_c00000{bottom:399.495000px;}
.y228_c00000{bottom:399.675000px;}
.y52d_c00000{bottom:400.215000px;}
.yb50_c00000{bottom:400.395000px;}
.y36_c00000{bottom:401.044500px;}
.y796_c00000{bottom:401.115000px;}
.y90f_c00000{bottom:401.295000px;}
.y6b4_c00000{bottom:401.655000px;}
.ya51_c00000{bottom:402.015000px;}
.y73f_c00000{bottom:402.375000px;}
.y57_c00000{bottom:402.735000px;}
.y239_c00000{bottom:402.915000px;}
.y3ea_c00000{bottom:403.275000px;}
.y8fc_c00000{bottom:403.815000px;}
.y211_c00000{bottom:404.535000px;}
.y355_c00000{bottom:404.715000px;}
.y4a3_c00000{bottom:404.895000px;}
.y2fd_c00000{bottom:405.435000px;}
.y654_c00000{bottom:405.975000px;}
.y328_c00000{bottom:406.155000px;}
.y82_c00000{bottom:406.335000px;}
.y513_c00000{bottom:406.695000px;}
.y2b4_c00000{bottom:407.235000px;}
.yb73_c00000{bottom:407.415000px;}
.y68d_c00000{bottom:407.775000px;}
.ya4_c00000{bottom:407.955000px;}
.y885_c00000{bottom:408.129000px;}
.y9c9_c00000{bottom:408.495000px;}
.y4ce_c00000{bottom:408.855000px;}
.y13_c00000{bottom:409.215000px;}
.y86b_c00000{bottom:409.389000px;}
.y27c_c00000{bottom:409.395000px;}
.yb84_c00000{bottom:409.575000px;}
.y505_c00000{bottom:409.755000px;}
.y947_c00000{bottom:410.115000px;}
.y849_c00000{bottom:410.289000px;}
.y1a8_c00000{bottom:410.655000px;}
.y904_c00000{bottom:411.015000px;}
.y10a_c00000{bottom:411.195000px;}
.ya9f_c00000{bottom:411.555000px;}
.y7ab_c00000{bottom:411.735000px;}
.y42b_c00000{bottom:411.915000px;}
.y6da_c00000{bottom:412.275000px;}
.y405_c00000{bottom:412.635000px;}
.y51e_c00000{bottom:412.815000px;}
.y7b4_c00000{bottom:412.995000px;}
.y189_c00000{bottom:413.175000px;}
.yaba_c00000{bottom:414.075000px;}
.y62_c00000{bottom:414.255000px;}
.y4ab_c00000{bottom:414.615000px;}
.yab2_c00000{bottom:414.975000px;}
.y464_c00000{bottom:415.875000px;}
.y1e7_c00000{bottom:416.235000px;}
.yb63_c00000{bottom:416.415000px;}
.y3ca_c00000{bottom:416.595000px;}
.y9a6_c00000{bottom:416.769000px;}
.y816_c00000{bottom:416.775000px;}
.y7ce_c00000{bottom:417.855000px;}
.yb0a_c00000{bottom:418.215000px;}
.y673_c00000{bottom:418.395000px;}
.y8a5_c00000{bottom:418.755000px;}
.y1c0_c00000{bottom:418.935000px;}
.y2d9_c00000{bottom:419.835000px;}
.ya50_c00000{bottom:420.195000px;}
.y73e_c00000{bottom:420.375000px;}
.y35_c00000{bottom:420.660000px;}
.yb5a_c00000{bottom:420.915000px;}
.y714_c00000{bottom:421.095000px;}
.y9b5_c00000{bottom:421.275000px;}
.y6f3_c00000{bottom:421.635000px;}
.y5a1_c00000{bottom:421.815000px;}
.y55f_c00000{bottom:422.355000px;}
.y5f1_c00000{bottom:422.715000px;}
.y334_c00000{bottom:422.895000px;}
.y806_c00000{bottom:423.435000px;}
.y298_c00000{bottom:423.615000px;}
.y16d_c00000{bottom:424.155000px;}
.y373_c00000{bottom:424.335000px;}
.y3ab_c00000{bottom:424.695000px;}
.y7c6_c00000{bottom:424.875000px;}
.y379_c00000{bottom:425.055000px;}
.y543_c00000{bottom:425.235000px;}
.y884_c00000{bottom:426.129000px;}
.y5b7_c00000{bottom:426.135000px;}
.y454_c00000{bottom:426.495000px;}
.y68c_c00000{bottom:426.675000px;}
.y81_c00000{bottom:427.035000px;}
.y733_c00000{bottom:427.395000px;}
.y41a_c00000{bottom:427.755000px;}
.y139_c00000{bottom:428.115000px;}
.y848_c00000{bottom:428.289000px;}
.ya92_c00000{bottom:428.295000px;}
.y86a_c00000{bottom:428.469000px;}
.yb90_c00000{bottom:428.475000px;}
.y5df_c00000{bottom:428.655000px;}
.y58d_c00000{bottom:428.835000px;}
.y722_c00000{bottom:429.015000px;}
.y903_c00000{bottom:429.195000px;}
.yacb_c00000{bottom:430.095000px;}
.ydb_c00000{bottom:430.275000px;}
.y4f5_c00000{bottom:430.455000px;}
.y227_c00000{bottom:430.635000px;}
.yf3_c00000{bottom:430.815000px;}
.y52c_c00000{bottom:431.355000px;}
.yaa3_c00000{bottom:431.895000px;}
.y795_c00000{bottom:432.075000px;}
.yb59_c00000{bottom:432.255000px;}
.y99a_c00000{bottom:433.005000px;}
.y12_c00000{bottom:433.335000px;}
.y56_c00000{bottom:433.875000px;}
.y8bd_c00000{bottom:434.265000px;}
.y3e9_c00000{bottom:434.415000px;}
.y92a_c00000{bottom:434.460000px;}
.y2f0_c00000{bottom:434.805000px;}
.yb62_c00000{bottom:435.315000px;}
.y210_c00000{bottom:435.675000px;}
.y4a2_c00000{bottom:436.035000px;}
.y62a_c00000{bottom:436.395000px;}
.y571_c00000{bottom:436.575000px;}
.ya32_c00000{bottom:436.965000px;}
.yb09_c00000{bottom:437.115000px;}
.y6a3_c00000{bottom:437.295000px;}
.y512_c00000{bottom:437.655000px;}
.y2b3_c00000{bottom:438.195000px;}
.ya4f_c00000{bottom:438.240000px;}
.yc0_c00000{bottom:438.375000px;}
.y732_c00000{bottom:438.555000px;}
.y73d_c00000{bottom:438.600000px;}
.y523_c00000{bottom:438.735000px;}
.y7e7_c00000{bottom:439.095000px;}
.yb29_c00000{bottom:439.275000px;}
.y9b4_c00000{bottom:439.455000px;}
.y4cd_c00000{bottom:439.995000px;}
.y34_c00000{bottom:440.100000px;}
.y6bf_c00000{bottom:440.175000px;}
.y390_c00000{bottom:440.355000px;}
.y27b_c00000{bottom:440.535000px;}
.ya3_c00000{bottom:440.895000px;}
.y919_c00000{bottom:440.925000px;}
.y31f_c00000{bottom:441.825000px;}
.y805_c00000{bottom:442.335000px;}
.ya9e_c00000{bottom:442.515000px;}
.y33e_c00000{bottom:442.545000px;}
.y7aa_c00000{bottom:442.875000px;}
.y42a_c00000{bottom:443.055000px;}
.y6d9_c00000{bottom:443.415000px;}
.y404_c00000{bottom:443.595000px;}
.y6e5_c00000{bottom:443.775000px;}
.y4d7_c00000{bottom:443.955000px;}
.y368_c00000{bottom:443.985000px;}
.y5db_c00000{bottom:444.135000px;}
.y883_c00000{bottom:444.309000px;}
.y188_c00000{bottom:444.315000px;}
.y74a_c00000{bottom:444.705000px;}
.y2ec_c00000{bottom:444.849000px;}
.y487_c00000{bottom:445.215000px;}
.ya27_c00000{bottom:445.395000px;}
.y68b_c00000{bottom:445.575000px;}
.yb3f_c00000{bottom:445.755000px;}
.yab1_c00000{bottom:445.935000px;}
.y9bd_c00000{bottom:446.145000px;}
.y847_c00000{bottom:446.469000px;}
.y869_c00000{bottom:446.649000px;}
.y4ba_c00000{bottom:446.835000px;}
.y150_c00000{bottom:447.015000px;}
.yb8f_c00000{bottom:447.375000px;}
.y80_c00000{bottom:447.735000px;}
.ya1e_c00000{bottom:447.945000px;}
.y453_c00000{bottom:448.275000px;}
.y25c_c00000{bottom:449.175000px;}
.y672_c00000{bottom:449.355000px;}
.y1bf_c00000{bottom:450.075000px;}
.y721_c00000{bottom:450.795000px;}
.y9ad_c00000{bottom:450.825000px;}
.y2d8_c00000{bottom:450.975000px;}
.y7bc_c00000{bottom:451.365000px;}
.yba9_c00000{bottom:452.055000px;}
.y713_c00000{bottom:452.235000px;}
.y61_c00000{bottom:452.415000px;}
.y600_c00000{bottom:452.775000px;}
.y5a0_c00000{bottom:452.955000px;}
.y831_c00000{bottom:453.165000px;}
.y778_c00000{bottom:453.315000px;}
.y5f0_c00000{bottom:453.675000px;}
.y815_c00000{bottom:453.885000px;}
.y1a7_c00000{bottom:454.035000px;}
.yb61_c00000{bottom:454.395000px;}
.y297_c00000{bottom:454.575000px;}
.yaf5_c00000{bottom:454.755000px;}
.y16c_c00000{bottom:455.115000px;}
.y7f9_c00000{bottom:455.475000px;}
.y3aa_c00000{bottom:455.655000px;}
.y542_c00000{bottom:456.195000px;}
.y90e_c00000{bottom:456.405000px;}
.y55e_c00000{bottom:456.915000px;}
.y6eb_c00000{bottom:457.095000px;}
.y109_c00000{bottom:457.275000px;}
.y11_c00000{bottom:457.455000px;}
.y9b3_c00000{bottom:457.635000px;}
.y138_c00000{bottom:457.995000px;}
.yba6_c00000{bottom:458.175000px;}
.y419_c00000{bottom:458.715000px;}
.ya82_c00000{bottom:459.255000px;}
.y7c5_c00000{bottom:459.435000px;}
.y445_c00000{bottom:459.795000px;}
.y354_c00000{bottom:459.825000px;}
.y3c9_c00000{bottom:460.155000px;}
.y33_c00000{bottom:460.256400px;}
.yb28_c00000{bottom:460.515000px;}
.y2fc_c00000{bottom:460.545000px;}
.yda_c00000{bottom:461.235000px;}
.y38b_c00000{bottom:461.265000px;}
.y6b3_c00000{bottom:461.415000px;}
.y4f4_c00000{bottom:461.595000px;}
.y97e_c00000{bottom:462.165000px;}
.y52b_c00000{bottom:462.315000px;}
.y794_c00000{bottom:463.215000px;}
.yf2_c00000{bottom:463.575000px;}
.y846_c00000{bottom:464.649000px;}
.y68a_c00000{bottom:464.655000px;}
.y55_c00000{bottom:464.835000px;}
.y238_c00000{bottom:465.015000px;}
.y3e8_c00000{bottom:465.375000px;}
.yb8e_c00000{bottom:466.455000px;}
.ya7f_c00000{bottom:466.485000px;}
.y20f_c00000{bottom:466.635000px;}
.y4a1_c00000{bottom:466.995000px;}
.y570_c00000{bottom:467.535000px;}
.y25b_c00000{bottom:468.075000px;}
.ya57_c00000{bottom:468.105000px;}
.y7f_c00000{bottom:468.435000px;}
.y511_c00000{bottom:468.795000px;}
.ybf_c00000{bottom:469.335000px;}
.y930_c00000{bottom:469.365000px;}
.yb72_c00000{bottom:469.515000px;}
.y759_c00000{bottom:469.725000px;}
.yaa2_c00000{bottom:469.875000px;}
.y7e6_c00000{bottom:470.055000px;}
.yb83_c00000{bottom:470.235000px;}
.y4cc_c00000{bottom:470.955000px;}
.y1e5_c00000{bottom:471.315000px;}
.y27a_c00000{bottom:471.495000px;}
.ya91_c00000{bottom:471.675000px;}
.y5d1_c00000{bottom:471.855000px;}
.y720_c00000{bottom:472.575000px;}
.y59f_c00000{bottom:473.295000px;}
.ya2_c00000{bottom:473.655000px;}
.y429_c00000{bottom:474.015000px;}
.y6d8_c00000{bottom:474.375000px;}
.y403_c00000{bottom:474.735000px;}
.y4d6_c00000{bottom:474.915000px;}
.y7b3_c00000{bottom:475.095000px;}
.y187_c00000{bottom:475.275000px;}
.y8e9_c00000{bottom:475.305000px;}
.yb08_c00000{bottom:475.455000px;}
.y9b2_c00000{bottom:475.635000px;}
.y522_c00000{bottom:475.995000px;}
.y11e_c00000{bottom:476.355000px;}
.y226_c00000{bottom:476.715000px;}
.y731_c00000{bottom:477.075000px;}
.yb27_c00000{bottom:477.435000px;}
.y93c_c00000{bottom:477.465000px;}
.y6ea_c00000{bottom:477.615000px;}
.y463_c00000{bottom:477.975000px;}
.y333_c00000{bottom:478.005000px;}
.y612_c00000{bottom:478.695000px;}
.y30a_c00000{bottom:478.725000px;}
.y82d_c00000{bottom:478.875000px;}
.y342_c00000{bottom:479.445000px;}
.yb18_c00000{bottom:479.775000px;}
.y376_c00000{bottom:480.165000px;}
.y504_c00000{bottom:480.315000px;}
.y32_c00000{bottom:480.420000px;}
.y671_c00000{bottom:480.495000px;}
.y2eb_c00000{bottom:480.714000px;}
.y1be_c00000{bottom:481.035000px;}
.y10_c00000{bottom:481.575000px;}
.y2d7_c00000{bottom:481.935000px;}
.y3c8_c00000{bottom:482.115000px;}
.y845_c00000{bottom:482.874000px;}
.yba8_c00000{bottom:483.015000px;}
.y689_c00000{bottom:483.555000px;}
.y38f_c00000{bottom:483.735000px;}
.y5ff_c00000{bottom:483.915000px;}
.y777_c00000{bottom:484.455000px;}
.y5ef_c00000{bottom:484.815000px;}
.yb8d_c00000{bottom:485.355000px;}
.y828_c00000{bottom:485.535000px;}
.y296_c00000{bottom:485.715000px;}
.y16b_c00000{bottom:486.255000px;}
.y7f8_c00000{bottom:486.435000px;}
.y3a9_c00000{bottom:486.795000px;}
.y25a_c00000{bottom:487.155000px;}
.y541_c00000{bottom:487.335000px;}
.y137_c00000{bottom:487.695000px;}
.y98c_c00000{bottom:488.085000px;}
.y5b6_c00000{bottom:488.235000px;}
.yaa1_c00000{bottom:488.775000px;}
.y9d9_c00000{bottom:488.805000px;}
.y7e_c00000{bottom:489.135000px;}
.y418_c00000{bottom:489.855000px;}
.y2ee_c00000{bottom:489.885000px;}
.y108_c00000{bottom:490.035000px;}
.y621_c00000{bottom:490.755000px;}
.y58c_c00000{bottom:490.935000px;}
.y55d_c00000{bottom:491.475000px;}
.ya31_c00000{bottom:492.045000px;}
.yaca_c00000{bottom:492.195000px;}
.y955_c00000{bottom:492.225000px;}
.yd9_c00000{bottom:492.375000px;}
.y4f3_c00000{bottom:492.555000px;}
.y52a_c00000{bottom:493.455000px;}
.y7c4_c00000{bottom:493.995000px;}
.y793_c00000{bottom:494.175000px;}
.y71f_c00000{bottom:494.355000px;}
.y8c3_c00000{bottom:495.105000px;}
.y864_c00000{bottom:495.114000px;}
.y54_c00000{bottom:495.975000px;}
.y91c_c00000{bottom:496.005000px;}
.yf1_c00000{bottom:496.335000px;}
.y3e7_c00000{bottom:496.515000px;}
.y350_c00000{bottom:496.905000px;}
.y444_c00000{bottom:497.055000px;}
.y1a6_c00000{bottom:497.595000px;}
.y386_c00000{bottom:497.625000px;}
.y20e_c00000{bottom:497.775000px;}
.y14f_c00000{bottom:498.135000px;}
.y35c_c00000{bottom:498.345000px;}
.y5de_c00000{bottom:498.495000px;}
.y56f_c00000{bottom:498.675000px;}
.y367_c00000{bottom:499.065000px;}
.y503_c00000{bottom:499.215000px;}
.y31_c00000{bottom:499.320000px;}
.y6a2_c00000{bottom:499.395000px;}
.y510_c00000{bottom:499.755000px;}
.y8af_c00000{bottom:499.980000px;}
.y2b2_c00000{bottom:500.295000px;}
.ybe_c00000{bottom:500.475000px;}
.ya81_c00000{bottom:500.655000px;}
.y758_c00000{bottom:500.865000px;}
.ya7e_c00000{bottom:501.045000px;}
.y868_c00000{bottom:501.054000px;}
.y7e5_c00000{bottom:501.195000px;}
.y9bc_c00000{bottom:501.225000px;}
.y844_c00000{bottom:501.954000px;}
.y4cb_c00000{bottom:502.095000px;}
.y279_c00000{bottom:502.635000px;}
.y5d0_c00000{bottom:502.815000px;}
.y428_c00000{bottom:503.535000px;}
.y3c7_c00000{bottom:503.895000px;}
.y804_c00000{bottom:504.435000px;}
.ya9d_c00000{bottom:504.615000px;}
.y7a9_c00000{bottom:504.975000px;}
.y6d7_c00000{bottom:505.515000px;}
.y402_c00000{bottom:505.695000px;}
.y486_c00000{bottom:505.875000px;}
.y9ac_c00000{bottom:505.905000px;}
.y259_c00000{bottom:506.055000px;}
.y5da_c00000{bottom:506.235000px;}
.ya1d_c00000{bottom:506.265000px;}
.y186_c00000{bottom:506.415000px;}
.y7bb_c00000{bottom:506.445000px;}
.yf_c00000{bottom:507.495000px;}
.y225_c00000{bottom:507.675000px;}
.y462_c00000{bottom:507.855000px;}
.yab0_c00000{bottom:508.035000px;}
.y730_c00000{bottom:508.215000px;}
.y4b9_c00000{bottom:508.935000px;}
.y814_c00000{bottom:508.965000px;}
.y7d_c00000{bottom:509.835000px;}
.y59e_c00000{bottom:511.275000px;}
.y670_c00000{bottom:511.455000px;}
.y90d_c00000{bottom:511.485000px;}
.y1bd_c00000{bottom:512.175000px;}
.y2d6_c00000{bottom:513.075000px;}
.y863_c00000{bottom:513.114000px;}
.yba7_c00000{bottom:514.155000px;}
.y5fe_c00000{bottom:514.515000px;}
.y712_c00000{bottom:514.695000px;}
.y6ab_c00000{bottom:514.875000px;}
.y31e_c00000{bottom:514.905000px;}
.yb7b_c00000{bottom:515.055000px;}
.ya90_c00000{bottom:515.235000px;}
.y6e9_c00000{bottom:515.595000px;}
.y327_c00000{bottom:515.625000px;}
.y5ee_c00000{bottom:515.775000px;}
.y71e_c00000{bottom:516.135000px;}
.y38a_c00000{bottom:516.525000px;}
.y2ea_c00000{bottom:516.534000px;}
.y295_c00000{bottom:516.675000px;}
.y16a_c00000{bottom:517.215000px;}
.y136_c00000{bottom:517.395000px;}
.y7f7_c00000{bottom:517.575000px;}
.y3a8_c00000{bottom:517.755000px;}
.y756_c00000{bottom:517.965000px;}
.y502_c00000{bottom:518.115000px;}
.y8ae_c00000{bottom:518.160000px;}
.y540_c00000{bottom:518.295000px;}
.y30_c00000{bottom:518.756400px;}
.y443_c00000{bottom:518.835000px;}
.y867_c00000{bottom:519.054000px;}
.y5b5_c00000{bottom:519.375000px;}
.y521_c00000{bottom:519.555000px;}
.ya1_c00000{bottom:519.735000px;}
.y76a_c00000{bottom:520.095000px;}
.y843_c00000{bottom:520.134000px;}
.yba5_c00000{bottom:520.275000px;}
.y417_c00000{bottom:520.815000px;}
.y688_c00000{bottom:521.535000px;}
.yb3e_c00000{bottom:521.715000px;}
.y58b_c00000{bottom:521.895000px;}
.y11d_c00000{bottom:522.435000px;}
.y107_c00000{bottom:522.975000px;}
.ya56_c00000{bottom:523.185000px;}
.yd8_c00000{bottom:523.335000px;}
.y6b2_c00000{bottom:523.515000px;}
.y4f2_c00000{bottom:523.695000px;}
.y702_c00000{bottom:524.415000px;}
.y92f_c00000{bottom:524.445000px;}
.y258_c00000{bottom:525.135000px;}
.y792_c00000{bottom:525.315000px;}
.y55c_c00000{bottom:525.855000px;}
.y53_c00000{bottom:526.935000px;}
.y237_c00000{bottom:527.115000px;}
.y38e_c00000{bottom:527.295000px;}
.y3e6_c00000{bottom:527.475000px;}
.ya59_c00000{bottom:527.505000px;}
.y7c3_c00000{bottom:528.375000px;}
.y20d_c00000{bottom:528.735000px;}
.y4a0_c00000{bottom:529.095000px;}
.y57a_c00000{bottom:529.635000px;}
.y59d_c00000{bottom:530.175000px;}
.y7c_c00000{bottom:530.535000px;}
.y50f_c00000{bottom:530.895000px;}
.ybd_c00000{bottom:531.435000px;}
.yb71_c00000{bottom:531.615000px;}
.yaf4_c00000{bottom:531.975000px;}
.y7e4_c00000{bottom:532.155000px;}
.y3c6_c00000{bottom:532.335000px;}
.y332_c00000{bottom:533.085000px;}
.y278_c00000{bottom:533.625000px;}
.y2fb_c00000{bottom:533.805000px;}
.y5cf_c00000{bottom:533.985000px;}
.y6e8_c00000{bottom:534.525000px;}
.y96c_c00000{bottom:535.245000px;}
.y60_c00000{bottom:535.425000px;}
.ya9c_c00000{bottom:535.785000px;}
.y7a8_c00000{bottom:536.145000px;}
.y8ad_c00000{bottom:536.160000px;}
.y6d6_c00000{bottom:536.505000px;}
.y401_c00000{bottom:536.865000px;}
.y632_c00000{bottom:537.045000px;}
.y7b2_c00000{bottom:537.225000px;}
.y866_c00000{bottom:537.234000px;}
.y185_c00000{bottom:537.405000px;}
.ye_c00000{bottom:538.125000px;}
.y8e8_c00000{bottom:538.305000px;}
.y842_c00000{bottom:538.314000px;}
.y224_c00000{bottom:538.845000px;}
.y2f_c00000{bottom:538.920000px;}
.y72f_c00000{bottom:539.205000px;}
.y4b8_c00000{bottom:540.105000px;}
.y687_c00000{bottom:540.465000px;}
.y442_c00000{bottom:540.645000px;}
.y427_c00000{bottom:540.825000px;}
.y520_c00000{bottom:541.545000px;}
.ya80_c00000{bottom:542.085000px;}
.yf0_c00000{bottom:542.445000px;}
.y66f_c00000{bottom:542.625000px;}
.y1bc_c00000{bottom:543.165000px;}
.y7ba_c00000{bottom:543.345000px;}
.y257_c00000{bottom:544.065000px;}
.yb32_c00000{bottom:544.425000px;}
.y1e2_c00000{bottom:544.605000px;}
.y461_c00000{bottom:544.785000px;}
.y93b_c00000{bottom:545.145000px;}
.y711_c00000{bottom:545.685000px;}
.y813_c00000{bottom:545.865000px;}
.y6aa_c00000{bottom:546.045000px;}
.ya30_c00000{bottom:547.125000px;}
.y135_c00000{bottom:547.305000px;}
.y776_c00000{bottom:547.665000px;}
.y294_c00000{bottom:547.845000px;}
.y169_c00000{bottom:548.385000px;}
.y3a7_c00000{bottom:548.925000px;}
.y53f_c00000{bottom:549.285000px;}
.y5b4_c00000{bottom:550.365000px;}
.y891_c00000{bottom:550.725000px;}
.yaf3_c00000{bottom:550.905000px;}
.y91b_c00000{bottom:551.085000px;}
.y7b_c00000{bottom:551.265000px;}
.y14e_c00000{bottom:551.805000px;}
.y309_c00000{bottom:551.985000px;}
.y2e9_c00000{bottom:552.354000px;}
.yb24_c00000{bottom:552.525000px;}
.y340_c00000{bottom:552.705000px;}
.y620_c00000{bottom:552.885000px;}
.yb68_c00000{bottom:553.065000px;}
.y6e7_c00000{bottom:553.425000px;}
.y5fd_c00000{bottom:554.325000px;}
.yd7_c00000{bottom:554.505000px;}
.y4f1_c00000{bottom:554.685000px;}
.y862_c00000{bottom:555.054000px;}
.y11c_c00000{bottom:555.225000px;}
.y865_c00000{bottom:555.234000px;}
.y701_c00000{bottom:555.585000px;}
.y106_c00000{bottom:555.765000px;}
.y501_c00000{bottom:556.125000px;}
.y9bb_c00000{bottom:556.305000px;}
.ya7d_c00000{bottom:557.385000px;}
.y841_c00000{bottom:557.394000px;}
.y2e_c00000{bottom:557.657280px;}
.y52_c00000{bottom:558.105000px;}
.y3e5_c00000{bottom:558.645000px;}
.ya8f_c00000{bottom:558.825000px;}
.y686_c00000{bottom:559.545000px;}
.y63e_c00000{bottom:559.725000px;}
.y20c_c00000{bottom:559.905000px;}
.y49f_c00000{bottom:560.265000px;}
.y55b_c00000{bottom:560.445000px;}
.y630_c00000{bottom:560.625000px;}
.y579_c00000{bottom:560.805000px;}
.y6a1_c00000{bottom:561.525000px;}
.y3c5_c00000{bottom:561.885000px;}
.y2b1_c00000{bottom:562.425000px;}
.ybc_c00000{bottom:562.605000px;}
.yb70_c00000{bottom:562.785000px;}
.y256_c00000{bottom:562.965000px;}
.y7e3_c00000{bottom:563.325000px;}
.y4ca_c00000{bottom:564.225000px;}
.y277_c00000{bottom:564.765000px;}
.y5ce_c00000{bottom:564.945000px;}
.yb8c_c00000{bottom:565.125000px;}
.ya0_c00000{bottom:565.845000px;}
.y460_c00000{bottom:566.565000px;}
.ya9b_c00000{bottom:566.745000px;}
.y7a7_c00000{bottom:567.105000px;}
.y6d5_c00000{bottom:567.645000px;}
.y400_c00000{bottom:567.825000px;}
.y51d_c00000{bottom:568.185000px;}
.y5d9_c00000{bottom:568.365000px;}
.y184_c00000{bottom:568.545000px;}
.yd_c00000{bottom:569.085000px;}
.y529_c00000{bottom:569.265000px;}
.y7f6_c00000{bottom:569.445000px;}
.y223_c00000{bottom:569.805000px;}
.y31d_c00000{bottom:569.985000px;}
.y72e_c00000{bottom:570.165000px;}
.y326_c00000{bottom:570.705000px;}
.y4b7_c00000{bottom:571.065000px;}
.y35b_c00000{bottom:571.605000px;}
.y7a_c00000{bottom:571.965000px;}
.y361_c00000{bottom:572.325000px;}
.y6e6_c00000{bottom:572.505000px;}
.y1a5_c00000{bottom:573.045000px;}
.y5fc_c00000{bottom:573.405000px;}
.y66e_c00000{bottom:573.585000px;}
.y1bb_c00000{bottom:574.125000px;}
.y2d5_c00000{bottom:575.205000px;}
.y840_c00000{bottom:575.574000px;}
.y9e0_c00000{bottom:575.745000px;}
.y6a9_c00000{bottom:576.645000px;}
.y710_c00000{bottom:576.825000px;}
.y134_c00000{bottom:577.005000px;}
.y2d_c00000{bottom:577.092960px;}
.yb7a_c00000{bottom:577.185000px;}
.ya54_c00000{bottom:578.265000px;}
.y685_c00000{bottom:578.445000px;}
.yb3d_c00000{bottom:578.625000px;}
.y293_c00000{bottom:578.805000px;}
.y168_c00000{bottom:579.345000px;}
.y92b_c00000{bottom:579.525000px;}
.y3a6_c00000{bottom:579.885000px;}
.y53e_c00000{bottom:580.425000px;}
.y5b3_c00000{bottom:581.505000px;}
.y71d_c00000{bottom:581.685000px;}
.y416_c00000{bottom:581.865000px;}
.y255_c00000{bottom:582.045000px;}
.y769_c00000{bottom:582.225000px;}
.y552_c00000{bottom:582.945000px;}
.y64a_c00000{bottom:584.025000px;}
.y426_c00000{bottom:584.385000px;}
.yd6_c00000{bottom:585.465000px;}
.y6b1_c00000{bottom:585.645000px;}
.y4f0_c00000{bottom:585.825000px;}
.y11b_c00000{bottom:586.185000px;}
.y700_c00000{bottom:586.545000px;}
.y59c_c00000{bottom:587.265000px;}
.y331_c00000{bottom:588.165000px;}
.y45f_c00000{bottom:588.345000px;}
.yef_c00000{bottom:588.525000px;}
.ya7c_c00000{bottom:588.705000px;}
.y2f8_c00000{bottom:588.885000px;}
.y51_c00000{bottom:589.065000px;}
.y236_c00000{bottom:589.245000px;}
.y3e4_c00000{bottom:589.605000px;}
.y20b_c00000{bottom:590.865000px;}
.y528_c00000{bottom:591.045000px;}
.y49e_c00000{bottom:591.225000px;}
.y578_c00000{bottom:591.765000px;}
.y5fb_c00000{bottom:592.305000px;}
.y79_c00000{bottom:592.665000px;}
.y3c4_c00000{bottom:593.025000px;}
.y791_c00000{bottom:593.205000px;}
.ybb_c00000{bottom:593.565000px;}
.yb6f_c00000{bottom:593.745000px;}
.y83f_c00000{bottom:593.754000px;}
.y500_c00000{bottom:594.105000px;}
.y7e2_c00000{bottom:594.285000px;}
.yb82_c00000{bottom:594.465000px;}
.y55a_c00000{bottom:595.005000px;}
.y4c9_c00000{bottom:595.185000px;}
.y276_c00000{bottom:595.725000px;}
.y5cd_c00000{bottom:596.085000px;}
.y9f_c00000{bottom:596.805000px;}
.y684_c00000{bottom:597.525000px;}
.ya9a_c00000{bottom:597.885000px;}
.y7a6_c00000{bottom:598.245000px;}
.y6d4_c00000{bottom:598.605000px;}
.y3ff_c00000{bottom:598.785000px;}
.y485_c00000{bottom:598.965000px;}
.y46f_c00000{bottom:599.145000px;}
.y585_c00000{bottom:599.325000px;}
.y183_c00000{bottom:599.505000px;}
.y1df_c00000{bottom:599.685000px;}
.yc_c00000{bottom:600.225000px;}
.y7f5_c00000{bottom:600.405000px;}
.y254_c00000{bottom:600.945000px;}
.y8e5_c00000{bottom:601.305000px;}
.y4b6_c00000{bottom:602.205000px;}
.yba4_c00000{bottom:602.745000px;}
.y611_c00000{bottom:602.925000px;}
.y71c_c00000{bottom:603.465000px;}
.y775_c00000{bottom:604.185000px;}
.y7c2_c00000{bottom:604.545000px;}
.y66d_c00000{bottom:604.725000px;}
.y878_c00000{bottom:605.085000px;}
.y1a4_c00000{bottom:605.265000px;}
.y5ed_c00000{bottom:605.445000px;}
.ya75_c00000{bottom:605.985000px;}
.y2d4_c00000{bottom:606.165000px;}
.y425_c00000{bottom:606.345000px;}
.y133_c00000{bottom:606.705000px;}
.y6ff_c00000{bottom:606.885000px;}
.y30d_c00000{bottom:607.065000px;}
.y389_c00000{bottom:607.785000px;}
.yaf2_c00000{bottom:607.965000px;}
.yb79_c00000{bottom:608.145000px;}
.y72d_c00000{bottom:608.505000px;}
.y96d_c00000{bottom:608.685000px;}
.y85d_c00000{bottom:609.405000px;}
.y292_c00000{bottom:609.945000px;}
.y45e_c00000{bottom:610.305000px;}
.y14d_c00000{bottom:610.485000px;}
.y3a5_c00000{bottom:611.025000px;}
.y61f_c00000{bottom:611.205000px;}
.y53d_c00000{bottom:611.385000px;}
.y5b2_c00000{bottom:612.105000px;}
.yaff_c00000{bottom:612.465000px;}
.y527_c00000{bottom:612.825000px;}
.y83e_c00000{bottom:612.834000px;}
.y4ff_c00000{bottom:613.005000px;}
.y78_c00000{bottom:613.365000px;}
.y551_c00000{bottom:614.085000px;}
.yad7_c00000{bottom:614.805000px;}
.y649_c00000{bottom:614.985000px;}
.yb67_c00000{bottom:615.165000px;}
.y222_c00000{bottom:615.885000px;}
.y683_c00000{bottom:616.425000px;}
.yb3c_c00000{bottom:616.605000px;}
.y4ef_c00000{bottom:616.785000px;}
.y11a_c00000{bottom:617.325000px;}
.yb4f_c00000{bottom:617.685000px;}
.y584_c00000{bottom:618.225000px;}
.yd5_c00000{bottom:618.405000px;}
.y415_c00000{bottom:618.765000px;}
.y253_c00000{bottom:620.025000px;}
.y50_c00000{bottom:620.205000px;}
.y3e3_c00000{bottom:620.745000px;}
.yee_c00000{bottom:621.285000px;}
.y909_c00000{bottom:621.645000px;}
.y63d_c00000{bottom:621.825000px;}
.y20a_c00000{bottom:622.005000px;}
.y49d_c00000{bottom:622.365000px;}
.y629_c00000{bottom:622.725000px;}
.y8e1_c00000{bottom:622.734000px;}
.y577_c00000{bottom:622.905000px;}
.y774_c00000{bottom:623.085000px;}
.y6a0_c00000{bottom:623.625000px;}
.y3c3_c00000{bottom:623.985000px;}
.y2b0_c00000{bottom:624.525000px;}
.yb6e_c00000{bottom:624.885000px;}
.y59b_c00000{bottom:625.065000px;}
.y308_c00000{bottom:625.110000px;}
.y7e1_c00000{bottom:625.425000px;}
.y387_c00000{bottom:625.830000px;}
.y6fe_c00000{bottom:625.965000px;}
.yba_c00000{bottom:626.325000px;}
.y85a_c00000{bottom:626.730000px;}
.y275_c00000{bottom:626.865000px;}
.y5cc_c00000{bottom:627.045000px;}
.yb8b_c00000{bottom:627.225000px;}
.ya8e_c00000{bottom:627.765000px;}
.y9e_c00000{bottom:627.945000px;}
.y424_c00000{bottom:628.125000px;}
.ya99_c00000{bottom:628.845000px;}
.y7a5_c00000{bottom:629.205000px;}
.y559_c00000{bottom:629.385000px;}
.y6d3_c00000{bottom:629.745000px;}
.y3fe_c00000{bottom:629.925000px;}
.y5d8_c00000{bottom:630.105000px;}
.y2c_c00000{bottom:630.188640px;}
.y51c_c00000{bottom:630.285000px;}
.y5dd_c00000{bottom:630.465000px;}
.y182_c00000{bottom:630.645000px;}
.y83d_c00000{bottom:631.014000px;}
.yb_c00000{bottom:631.185000px;}
.y7f4_c00000{bottom:631.365000px;}
.yb31_c00000{bottom:631.545000px;}
.y71b_c00000{bottom:631.905000px;}
.y45d_c00000{bottom:632.085000px;}
.yaaf_c00000{bottom:632.265000px;}
.y4b5_c00000{bottom:633.165000px;}
.yad6_c00000{bottom:633.705000px;}
.y77_c00000{bottom:634.065000px;}
.y441_c00000{bottom:634.605000px;}
.y682_c00000{bottom:635.505000px;}
.y66c_c00000{bottom:635.685000px;}
.y1ba_c00000{bottom:636.225000px;}
.y2ed_c00000{bottom:636.270000px;}
.y132_c00000{bottom:636.585000px;}
.y827_c00000{bottom:637.125000px;}
.y2d3_c00000{bottom:637.305000px;}
.y252_c00000{bottom:638.925000px;}
.yb78_c00000{bottom:639.285000px;}
.y6be_c00000{bottom:639.645000px;}
.y1a3_c00000{bottom:639.825000px;}
.y414_c00000{bottom:640.545000px;}
.yb88_c00000{bottom:640.725000px;}
.y291_c00000{bottom:640.905000px;}
.y8e0_c00000{bottom:640.914000px;}
.y1de_c00000{bottom:641.085000px;}
.y167_c00000{bottom:641.445000px;}
.y3a4_c00000{bottom:641.985000px;}
.y5b1_c00000{bottom:642.345000px;}
.y53c_c00000{bottom:642.525000px;}
.y31c_c00000{bottom:643.290000px;}
.yafe_c00000{bottom:643.605000px;}
.y325_c00000{bottom:644.010000px;}
.y59a_c00000{bottom:644.145000px;}
.y768_c00000{bottom:644.325000px;}
.y954_c00000{bottom:644.730000px;}
.y6fd_c00000{bottom:644.865000px;}
.y550_c00000{bottom:645.045000px;}
.yed_c00000{bottom:645.225000px;}
.yaf1_c00000{bottom:645.765000px;}
.ya4d_c00000{bottom:645.810000px;}
.y648_c00000{bottom:646.125000px;}
.yb20_c00000{bottom:646.845000px;}
.y221_c00000{bottom:647.025000px;}
.yac9_c00000{bottom:647.565000px;}
.y6b0_c00000{bottom:647.745000px;}
.y4ee_c00000{bottom:647.925000px;}
.y119_c00000{bottom:648.285000px;}
.yb4e_c00000{bottom:648.645000px;}
.y61e_c00000{bottom:649.185000px;}
.yac2_c00000{bottom:649.365000px;}
.y790_c00000{bottom:650.085000px;}
.y9ff_c00000{bottom:650.490000px;}
.y6f2_c00000{bottom:650.625000px;}
.y4f_c00000{bottom:651.165000px;}
.y235_c00000{bottom:651.345000px;}
.y3e2_c00000{bottom:651.705000px;}
.y73b_c00000{bottom:651.750000px;}
.y72c_c00000{bottom:652.065000px;}
.y49c_c00000{bottom:652.245000px;}
.y826_c00000{bottom:652.785000px;}
.y209_c00000{bottom:652.965000px;}
.y996_c00000{bottom:653.370000px;}
.y58a_c00000{bottom:653.865000px;}
.y105_c00000{bottom:654.225000px;}
.y7b9_c00000{bottom:654.270000px;}
.y681_c00000{bottom:654.405000px;}
.y933_c00000{bottom:654.630000px;}
.y76_c00000{bottom:654.765000px;}
.y3c2_c00000{bottom:655.125000px;}
.y2af_c00000{bottom:655.665000px;}
.yb6d_c00000{bottom:655.845000px;}
.y70f_c00000{bottom:656.025000px;}
.y812_c00000{bottom:656.070000px;}
.y583_c00000{bottom:656.205000px;}
.y7e0_c00000{bottom:656.385000px;}
.y423_c00000{bottom:656.565000px;}
.y4c8_c00000{bottom:657.285000px;}
.ya2d_c00000{bottom:657.330000px;}
.y274_c00000{bottom:657.825000px;}
.y251_c00000{bottom:658.005000px;}
.y5cb_c00000{bottom:658.185000px;}
.y9d_c00000{bottom:658.905000px;}
.y738_c00000{bottom:659.625000px;}
.ya98_c00000{bottom:659.985000px;}
.y7a4_c00000{bottom:660.345000px;}
.y5ec_c00000{bottom:660.525000px;}
.y6d2_c00000{bottom:660.705000px;}
.y3fd_c00000{bottom:660.885000px;}
.y484_c00000{bottom:661.065000px;}
.y450_c00000{bottom:661.245000px;}
.y330_c00000{bottom:661.290000px;}
.y7b1_c00000{bottom:661.425000px;}
.y181_c00000{bottom:661.605000px;}
.y1dd_c00000{bottom:661.785000px;}
.y2f7_c00000{bottom:662.190000px;}
.y413_c00000{bottom:662.325000px;}
.y7f3_c00000{bottom:662.505000px;}
.y35a_c00000{bottom:662.910000px;}
.y526_c00000{bottom:663.045000px;}
.yaae_c00000{bottom:663.405000px;}
.y82c_c00000{bottom:663.585000px;}
.y558_c00000{bottom:663.945000px;}
.y440_c00000{bottom:664.305000px;}
.y8e4_c00000{bottom:664.350000px;}
.yaf0_c00000{bottom:664.845000px;}
.y610_c00000{bottom:665.025000px;}
.y131_c00000{bottom:666.285000px;}
.y9b7_c00000{bottom:666.510000px;}
.y66b_c00000{bottom:666.825000px;}
.y1b9_c00000{bottom:667.365000px;}
.y2d2_c00000{bottom:668.265000px;}
.y78f_c00000{bottom:668.985000px;}
.yba1_c00000{bottom:670.245000px;}
.yad5_c00000{bottom:671.685000px;}
.y14c_c00000{bottom:672.045000px;}
.yb9_c00000{bottom:672.405000px;}
.y166_c00000{bottom:672.585000px;}
.y3a3_c00000{bottom:673.125000px;}
.y680_c00000{bottom:673.305000px;}
.y53b_c00000{bottom:673.485000px;}
.y72b_c00000{bottom:674.025000px;}
.y1a2_c00000{bottom:674.205000px;}
.yafd_c00000{bottom:674.565000px;}
.y582_c00000{bottom:675.105000px;}
.y75_c00000{bottom:675.465000px;}
.y54f_c00000{bottom:676.185000px;}
.y647_c00000{bottom:676.725000px;}
.y250_c00000{bottom:676.905000px;}
.yb66_c00000{bottom:677.265000px;}
.yec_c00000{bottom:677.985000px;}
.y737_c00000{bottom:678.525000px;}
.yb77_c00000{bottom:678.705000px;}
.y4ed_c00000{bottom:678.885000px;}
.y7c1_c00000{bottom:679.245000px;}
.yb4d_c00000{bottom:679.785000px;}
.y312_c00000{bottom:680.190000px;}
.ya97_c00000{bottom:680.325000px;}
.y118_c00000{bottom:681.225000px;}
.y38d_c00000{bottom:681.450000px;}
.y2b_c00000{bottom:681.668640px;}
.y69_c00000{bottom:681.945000px;}
.y4e_c00000{bottom:682.305000px;}
.y1dc_c00000{bottom:682.485000px;}
.y3e1_c00000{bottom:682.845000px;}
.y773_c00000{bottom:683.745000px;}
.yd4_c00000{bottom:683.925000px;}
.y208_c00000{bottom:684.105000px;}
.y628_c00000{bottom:684.825000px;}
.y589_c00000{bottom:685.005000px;}
.y69f_c00000{bottom:685.725000px;}
.y3c1_c00000{bottom:686.085000px;}
.y2ae_c00000{bottom:686.625000px;}
.y104_c00000{bottom:686.985000px;}
.y61d_c00000{bottom:687.165000px;}
.y78e_c00000{bottom:688.065000px;}
.y4c7_c00000{bottom:688.425000px;}
.y73a_c00000{bottom:688.830000px;}
.y273_c00000{bottom:688.965000px;}
.y5ca_c00000{bottom:689.145000px;}
.yb8a_c00000{bottom:689.325000px;}
.yad4_c00000{bottom:690.765000px;}
.y7a3_c00000{bottom:691.305000px;}
.y7b8_c00000{bottom:691.350000px;}
.y9c_c00000{bottom:691.665000px;}
.ya_c00000{bottom:691.845000px;}
.y3fc_c00000{bottom:692.025000px;}
.y631_c00000{bottom:692.205000px;}
.y599_c00000{bottom:692.385000px;}
.y5d7_c00000{bottom:692.565000px;}
.y180_c00000{bottom:692.745000px;}
.y811_c00000{bottom:692.970000px;}
.y7f2_c00000{bottom:693.465000px;}
.y6f1_c00000{bottom:694.005000px;}
.y581_c00000{bottom:694.185000px;}
.yaad_c00000{bottom:694.365000px;}
.y43f_c00000{bottom:695.265000px;}
.y24f_c00000{bottom:695.805000px;}
.y130_c00000{bottom:695.985000px;}
.y74_c00000{bottom:696.165000px;}
.y646_c00000{bottom:697.605000px;}
.y66a_c00000{bottom:697.785000px;}
.y1b8_c00000{bottom:698.325000px;}
.y307_c00000{bottom:698.370000px;}
.y557_c00000{bottom:698.505000px;}
.y385_c00000{bottom:699.090000px;}
.y2d1_c00000{bottom:699.405000px;}
.ya4c_c00000{bottom:700.890000px;}
.y2a_c00000{bottom:701.104320px;}
.yba0_c00000{bottom:701.385000px;}
.y6fc_c00000{bottom:701.745000px;}
.y82b_c00000{bottom:701.925000px;}
.yaef_c00000{bottom:702.825000px;}
.y290_c00000{bottom:703.005000px;}
.y1db_c00000{bottom:703.185000px;}
.y165_c00000{bottom:703.545000px;}
.y3a2_c00000{bottom:704.085000px;}
.y53a_c00000{bottom:704.625000px;}
.ya8d_c00000{bottom:705.705000px;}
.y412_c00000{bottom:705.885000px;}
.y61c_c00000{bottom:706.065000px;}
.yac1_c00000{bottom:706.245000px;}
.y767_c00000{bottom:706.425000px;}
.y78d_c00000{bottom:706.965000px;}
.y54e_c00000{bottom:707.145000px;}
.y825_c00000{bottom:707.865000px;}
.y1a1_c00000{bottom:708.765000px;}
.y2e7_c00000{bottom:709.350000px;}
.yac8_c00000{bottom:709.485000px;}
.yad3_c00000{bottom:709.665000px;}
.y6af_c00000{bottom:709.845000px;}
.y4ec_c00000{bottom:710.025000px;}
.yeb_c00000{bottom:710.745000px;}
.y49b_c00000{bottom:710.925000px;}
.y67f_c00000{bottom:711.285000px;}
.yb3b_c00000{bottom:711.465000px;}
.y739_c00000{bottom:712.050000px;}
.y4d_c00000{bottom:713.265000px;}
.y234_c00000{bottom:713.445000px;}
.y3e0_c00000{bottom:713.805000px;}
.y9_c00000{bottom:713.985000px;}
.y24e_c00000{bottom:714.885000px;}
.y207_c00000{bottom:715.065000px;}
.y588_c00000{bottom:715.965000px;}
.y32f_c00000{bottom:716.370000px;}
.y645_c00000{bottom:716.505000px;}
.yd3_c00000{bottom:716.685000px;}
.y73_c00000{bottom:716.865000px;}
.yb17_c00000{bottom:717.045000px;}
.y3c0_c00000{bottom:717.225000px;}
.y324_c00000{bottom:717.270000px;}
.y72a_c00000{bottom:717.585000px;}
.y2ad_c00000{bottom:717.765000px;}
.ya96_c00000{bottom:718.305000px;}
.yb8_c00000{bottom:718.485000px;}
.y861_c00000{bottom:718.530000px;}
.y4c6_c00000{bottom:719.385000px;}
.y103_c00000{bottom:719.745000px;}
.y272_c00000{bottom:719.925000px;}
.y9fc_c00000{bottom:720.510000px;}
.y29_c00000{bottom:720.540000px;}
.y6fb_c00000{bottom:720.825000px;}
.yaee_c00000{bottom:721.725000px;}
.y7a2_c00000{bottom:722.445000px;}
.y939_c00000{bottom:722.490000px;}
.y6d1_c00000{bottom:722.805000px;}
.y3fb_c00000{bottom:722.985000px;}
.y483_c00000{bottom:723.165000px;}
.y64f_c00000{bottom:723.345000px;}
.y7b0_c00000{bottom:723.525000px;}
.y17f_c00000{bottom:723.705000px;}
.y1da_c00000{bottom:723.885000px;}
.y7f1_c00000{bottom:724.605000px;}
.y61b_c00000{bottom:725.145000px;}
.yaac_c00000{bottom:725.505000px;}
.y12f_c00000{bottom:725.685000px;}
.y78c_c00000{bottom:726.045000px;}
.y43e_c00000{bottom:726.405000px;}
.y60f_c00000{bottom:727.125000px;}
.y8e2_c00000{bottom:727.350000px;}
.y411_c00000{bottom:727.845000px;}
.yad2_c00000{bottom:728.565000px;}
.y669_c00000{bottom:728.925000px;}
.y1b7_c00000{bottom:729.465000px;}
.y7df_c00000{bottom:730.185000px;}
.y2d0_c00000{bottom:730.365000px;}
.y14b_c00000{bottom:731.265000px;}
.ya26_c00000{bottom:732.030000px;}
.y49a_c00000{bottom:732.705000px;}
.y2e6_c00000{bottom:732.750000px;}
.y556_c00000{bottom:732.885000px;}
.y24d_c00000{bottom:733.785000px;}
.y810_c00000{bottom:734.010000px;}
.y28f_c00000{bottom:734.145000px;}
.y164_c00000{bottom:734.685000px;}
.y3a1_c00000{bottom:735.225000px;}
.y2f6_c00000{bottom:735.270000px;}
.y644_c00000{bottom:735.405000px;}
.y539_c00000{bottom:735.585000px;}
.ya95_c00000{bottom:737.205000px;}
.y860_c00000{bottom:737.430000px;}
.y72_c00000{bottom:737.565000px;}
.y9b_c00000{bottom:737.745000px;}
.y54d_c00000{bottom:738.285000px;}
.yb81_c00000{bottom:739.185000px;}
.y729_c00000{bottom:739.365000px;}
.y6fa_c00000{bottom:739.725000px;}
.y82a_c00000{bottom:739.905000px;}
.yac7_c00000{bottom:740.625000px;}
.y28_c00000{bottom:740.934720px;}
.y4eb_c00000{bottom:740.985000px;}
.y5c9_c00000{bottom:741.165000px;}
.yb4c_c00000{bottom:741.885000px;}
.y6bd_c00000{bottom:743.145000px;}
.y1a0_c00000{bottom:743.325000px;}
.yea_c00000{bottom:743.505000px;}
.y4c_c00000{bottom:744.405000px;}
.y772_c00000{bottom:744.585000px;}
.y3df_c00000{bottom:744.945000px;}
.y63c_c00000{bottom:746.025000px;}
.y206_c00000{bottom:746.205000px;}
.y117_c00000{bottom:746.745000px;}
.y627_c00000{bottom:746.925000px;}
.y5c1_c00000{bottom:747.105000px;}
.yad1_c00000{bottom:747.645000px;}
.yd2_c00000{bottom:747.825000px;}
.y3bf_c00000{bottom:748.185000px;}
.y2ac_c00000{bottom:748.725000px;}
.y7de_c00000{bottom:749.085000px;}
.y67e_c00000{bottom:749.265000px;}
.yb7_c00000{bottom:749.445000px;}
.y4c5_c00000{bottom:750.525000px;}
.y271_c00000{bottom:751.065000px;}
.y5eb_c00000{bottom:751.785000px;}
.y24c_c00000{bottom:752.865000px;}
.y7a1_c00000{bottom:753.405000px;}
.y2e5_c00000{bottom:753.450000px;}
.y6d0_c00000{bottom:753.945000px;}
.y482_c00000{bottom:754.125000px;}
.y62b_c00000{bottom:754.305000px;}
.y9d6_c00000{bottom:754.350000px;}
.y40e_c00000{bottom:754.485000px;}
.y5d6_c00000{bottom:754.665000px;}
.y17e_c00000{bottom:754.845000px;}
.yb65_c00000{bottom:755.025000px;}
.y12e_c00000{bottom:755.565000px;}
.ya4a_c00000{bottom:755.970000px;}
.y410_c00000{bottom:756.285000px;}
.yaab_c00000{bottom:756.465000px;}
.y85f_c00000{bottom:756.510000px;}
.y43d_c00000{bottom:757.365000px;}
.y60e_c00000{bottom:758.085000px;}
.y71_c00000{bottom:758.265000px;}
.y6f9_c00000{bottom:758.805000px;}
.y220_c00000{bottom:759.165000px;}
.yaed_c00000{bottom:759.705000px;}
.y668_c00000{bottom:759.885000px;}
.y1b6_c00000{bottom:760.425000px;}
.y27_c00000{bottom:761.088240px;}
.y3fa_c00000{bottom:761.325000px;}
.y2cf_c00000{bottom:761.505000px;}
.y5c8_c00000{bottom:761.865000px;}
.y75f_c00000{bottom:762.225000px;}
.y78b_c00000{bottom:763.845000px;}
.y8_c00000{bottom:764.205000px;}
.y28e_c00000{bottom:765.105000px;}
.y771_c00000{bottom:765.285000px;}
.y70e_c00000{bottom:765.465000px;}
.y163_c00000{bottom:765.645000px;}
.y102_c00000{bottom:765.825000px;}
.y3a0_c00000{bottom:766.185000px;}
.yae2_c00000{bottom:766.545000px;}
.y538_c00000{bottom:766.725000px;}
.y555_c00000{bottom:767.445000px;}
.y7dd_c00000{bottom:767.805000px;}
.y54c_c00000{bottom:768.165000px;}
.y766_c00000{bottom:768.525000px;}
.yb80_c00000{bottom:770.325000px;}
.y32e_c00000{bottom:771.450000px;}
.yac6_c00000{bottom:771.585000px;}
.y24b_c00000{bottom:771.765000px;}
.y6ae_c00000{bottom:771.945000px;}
.y4ea_c00000{bottom:772.125000px;}
.yb4b_c00000{bottom:772.845000px;}
.y643_c00000{bottom:773.385000px;}
.yafc_c00000{bottom:773.565000px;}
.y2e4_c00000{bottom:774.150000px;}
.yb16_c00000{bottom:775.185000px;}
.y4b_c00000{bottom:775.365000px;}
.y85e_c00000{bottom:775.410000px;}
.y233_c00000{bottom:775.545000px;}
.y3de_c00000{bottom:775.905000px;}
.ye9_c00000{bottom:776.445000px;}
.y63b_c00000{bottom:776.805000px;}
.y205_c00000{bottom:777.165000px;}
.y19f_c00000{bottom:777.705000px;}
.y5c0_c00000{bottom:778.065000px;}
.yaec_c00000{bottom:778.605000px;}
.yd1_c00000{bottom:778.785000px;}
.y70_c00000{bottom:778.965000px;}
.y3be_c00000{bottom:779.325000px;}
.y116_c00000{bottom:779.505000px;}
.y2ab_c00000{bottom:779.865000px;}
.yb6_c00000{bottom:780.585000px;}
.y75e_c00000{bottom:781.125000px;}
.y4c4_c00000{bottom:781.485000px;}
.y270_c00000{bottom:782.025000px;}
.y499_c00000{bottom:782.925000px;}
.y3f9_c00000{bottom:783.105000px;}
.y9a_c00000{bottom:783.825000px;}
.y6cf_c00000{bottom:784.545000px;}
.y12d_c00000{bottom:785.265000px;}
.y40d_c00000{bottom:785.445000px;}
.y7af_c00000{bottom:785.625000px;}
.y17d_c00000{bottom:785.805000px;}
.y586_c00000{bottom:785.985000px;}
.y7dc_c00000{bottom:786.705000px;}
.y67d_c00000{bottom:787.245000px;}
.yaaa_c00000{bottom:787.605000px;}
.y14a_c00000{bottom:787.785000px;}
.y43c_c00000{bottom:788.505000px;}
.y60d_c00000{bottom:789.225000px;}
.y24a_c00000{bottom:790.665000px;}
.y667_c00000{bottom:791.025000px;}
.y1b5_c00000{bottom:791.565000px;}
.y642_c00000{bottom:792.465000px;}
.ya8c_c00000{bottom:792.825000px;}
.yb15_c00000{bottom:794.265000px;}
.y28d_c00000{bottom:796.290000px;}
.y162_c00000{bottom:796.830000px;}
.y39f_c00000{bottom:797.370000px;}
.y63a_c00000{bottom:797.550000px;}
.y537_c00000{bottom:797.730000px;}
.y26_c00000{bottom:799.060320px;}
.y6f_c00000{bottom:799.710000px;}
.y75d_c00000{bottom:800.250000px;}
.yb7f_c00000{bottom:801.330000px;}
.y78a_c00000{bottom:801.870000px;}
.y554_c00000{bottom:802.050000px;}
.yac5_c00000{bottom:802.770000px;}
.y4e9_c00000{bottom:803.130000px;}
.yb4a_c00000{bottom:804.030000px;}
.yae1_c00000{bottom:804.570000px;}
.y3f8_c00000{bottom:804.930000px;}
.y6ce_c00000{bottom:805.290000px;}
.y4a_c00000{bottom:806.550000px;}
.y5ea_c00000{bottom:806.910000px;}
.y3dd_c00000{bottom:807.090000px;}
.y653_c00000{bottom:808.170000px;}
.y204_c00000{bottom:808.350000px;}
.y21f_c00000{bottom:808.710000px;}
.y626_c00000{bottom:809.070000px;}
.ye8_c00000{bottom:809.250000px;}
.y7_c00000{bottom:809.430000px;}
.y7db_c00000{bottom:809.610000px;}
.y249_c00000{bottom:809.790000px;}
.yd0_c00000{bottom:809.970000px;}
.y3bd_c00000{bottom:810.330000px;}
.y2aa_c00000{bottom:810.870000px;}
.y641_c00000{bottom:811.410000px;}
.yb5_c00000{bottom:811.590000px;}
.y101_c00000{bottom:811.950000px;}
.y19e_c00000{bottom:812.310000px;}
.y115_c00000{bottom:812.490000px;}
.y498_c00000{bottom:812.670000px;}
.y26f_c00000{bottom:813.210000px;}
.yb1f_c00000{bottom:813.930000px;}
.y2ce_c00000{bottom:814.470000px;}
.y12c_c00000{bottom:815.010000px;}
.y481_c00000{bottom:815.190000px;}
.y7a0_c00000{bottom:815.550000px;}
.y5c7_c00000{bottom:815.730000px;}
.y6a8_c00000{bottom:816.450000px;}
.y639_c00000{bottom:816.630000px;}
.y5d5_c00000{bottom:816.810000px;}
.y17c_c00000{bottom:816.990000px;}
.y7f0_c00000{bottom:817.710000px;}
.yaa9_c00000{bottom:818.610000px;}
.y75c_c00000{bottom:819.150000px;}
.y43b_c00000{bottom:819.510000px;}
.y60c_c00000{bottom:820.230000px;}
.y6e_c00000{bottom:820.410000px;}
.y789_c00000{bottom:820.950000px;}
.y666_c00000{bottom:822.030000px;}
.y1b4_c00000{bottom:822.570000px;}
.yae0_c00000{bottom:823.470000px;}
.y6cd_c00000{bottom:824.370000px;}
.y728_c00000{bottom:826.710000px;}
.y3f7_c00000{bottom:826.890000px;}
.y28c_c00000{bottom:827.250000px;}
.y161_c00000{bottom:827.790000px;}
.y39e_c00000{bottom:828.330000px;}
.y248_c00000{bottom:828.690000px;}
.y536_c00000{bottom:828.870000px;}
.y7da_c00000{bottom:829.050000px;}
.y99_c00000{bottom:829.950000px;}
.y640_c00000{bottom:830.310000px;}
.yafb_c00000{bottom:830.490000px;}
.y765_c00000{bottom:830.670000px;}
.yb14_c00000{bottom:832.110000px;}
.yb7e_c00000{bottom:832.470000px;}
.yb1a_c00000{bottom:832.830000px;}
.y6_c00000{bottom:833.550000px;}
.yac4_c00000{bottom:833.730000px;}
.yb49_c00000{bottom:833.910000px;}
.y6ad_c00000{bottom:834.090000px;}
.y4e8_c00000{bottom:834.270000px;}
.y480_c00000{bottom:834.630000px;}
.yb58_c00000{bottom:834.990000px;}
.y638_c00000{bottom:835.530000px;}
.yaeb_c00000{bottom:835.710000px;}
.y2cd_c00000{bottom:836.250000px;}
.y553_c00000{bottom:836.430000px;}
.y25_c00000{bottom:837.214560px;}
.y49_c00000{bottom:837.510000px;}
.y232_c00000{bottom:837.690000px;}
.y3dc_c00000{bottom:838.050000px;}
.yaa8_c00000{bottom:839.130000px;}
.y203_c00000{bottom:839.310000px;}
.y625_c00000{bottom:840.210000px;}
.ycf_c00000{bottom:840.930000px;}
.y6d_c00000{bottom:841.110000px;}
.y3bc_c00000{bottom:841.470000px;}
.ye7_c00000{bottom:842.010000px;}
.yadf_c00000{bottom:842.550000px;}
.yb4_c00000{bottom:842.730000px;}
.y6cc_c00000{bottom:843.270000px;}
.y497_c00000{bottom:843.630000px;}
.y5e9_c00000{bottom:843.990000px;}
.y149_c00000{bottom:844.170000px;}
.y100_c00000{bottom:844.710000px;}
.y12b_c00000{bottom:844.890000px;}
.y6bc_c00000{bottom:846.690000px;}
.y19d_c00000{bottom:846.870000px;}
.y64c_c00000{bottom:847.590000px;}
.y247_c00000{bottom:847.770000px;}
.y17b_c00000{bottom:847.950000px;}
.y727_c00000{bottom:848.490000px;}
.y3f6_c00000{bottom:848.670000px;}
.y7ef_c00000{bottom:848.850000px;}
.y63f_c00000{bottom:849.390000px;}
.y7d9_c00000{bottom:849.750000px;}
.y43a_c00000{bottom:850.650000px;}
.yb13_c00000{bottom:851.190000px;}
.y60b_c00000{bottom:851.370000px;}
.y2e1_c00000{bottom:851.400000px;}
.y47f_c00000{bottom:851.550000px;}
.y5c6_c00000{bottom:852.810000px;}
.y665_c00000{bottom:853.170000px;}
.y1b3_c00000{bottom:853.710000px;}
.y637_c00000{bottom:854.610000px;}
.y21e_c00000{bottom:854.790000px;}
.y70d_c00000{bottom:856.770000px;}
.y75b_c00000{bottom:857.130000px;}
.y5_c00000{bottom:857.670000px;}
.y2cc_c00000{bottom:858.030000px;}
.y114_c00000{bottom:858.390000px;}
.y160_c00000{bottom:858.930000px;}
.y39d_c00000{bottom:859.290000px;}
.y535_c00000{bottom:859.830000px;}
.yade_c00000{bottom:861.450000px;}
.y6c_c00000{bottom:861.810000px;}
.y2a9_c00000{bottom:862.350000px;}
.yb7d_c00000{bottom:863.430000px;}
.y4e7_c00000{bottom:865.230000px;}
.yb57_c00000{bottom:866.130000px;}
.y246_c00000{bottom:866.670000px;}
.yff_c00000{bottom:868.470000px;}
.y48_c00000{bottom:868.650000px;}
.y3db_c00000{bottom:869.190000px;}
.yb12_c00000{bottom:870.090000px;}
.y652_c00000{bottom:870.270000px;}
.y202_c00000{bottom:870.450000px;}
.y624_c00000{bottom:871.170000px;}
.yadb_c00000{bottom:871.350000px;}
.yb48_c00000{bottom:871.890000px;}
.yce_c00000{bottom:872.070000px;}
.y3bb_c00000{bottom:872.430000px;}
.y56e_c00000{bottom:872.970000px;}
.y636_c00000{bottom:873.510000px;}
.yb3_c00000{bottom:873.690000px;}
.y12a_c00000{bottom:874.590000px;}
.ye6_c00000{bottom:874.770000px;}
.y24_c00000{bottom:875.368800px;}
.y98_c00000{bottom:876.030000px;}
.y26e_c00000{bottom:877.110000px;}
.y79f_c00000{bottom:877.650000px;}
.y44f_c00000{bottom:878.730000px;}
.y5d4_c00000{bottom:878.910000px;}
.y17a_c00000{bottom:879.090000px;}
.y7ee_c00000{bottom:879.450000px;}
.ya8b_c00000{bottom:879.810000px;}
.y2cb_c00000{bottom:879.990000px;}
.yadd_c00000{bottom:880.530000px;}
.y19c_c00000{bottom:881.250000px;}
.y439_c00000{bottom:881.610000px;}
.y4_c00000{bottom:881.790000px;}
.y60a_c00000{bottom:882.330000px;}
.y664_c00000{bottom:884.130000px;}
.y1b2_c00000{bottom:884.670000px;}
.y245_c00000{bottom:885.570000px;}
.y21d_c00000{bottom:885.750000px;}
.yb11_c00000{bottom:889.170000px;}
.y28b_c00000{bottom:889.350000px;}
.y5c5_c00000{bottom:889.710000px;}
.y15f_c00000{bottom:889.890000px;}
.y39c_c00000{bottom:890.430000px;}
.yb47_c00000{bottom:890.790000px;}
.y534_c00000{bottom:890.970000px;}
.y7d8_c00000{bottom:891.150000px;}
.y3f5_c00000{bottom:892.230000px;}
.y635_c00000{bottom:892.410000px;}
.yaea_c00000{bottom:892.590000px;}
.yb7c_c00000{bottom:894.570000px;}
.y75a_c00000{bottom:895.110000px;}
.y26d_c00000{bottom:896.010000px;}
.y4e6_c00000{bottom:896.190000px;}
.y3da_c00000{bottom:899.070000px;}
.y47_c00000{bottom:899.250000px;}
.y68_c00000{bottom:899.610000px;}
.y231_c00000{bottom:899.790000px;}
.y6cb_c00000{bottom:900.150000px;}
.y2a8_c00000{bottom:900.330000px;}
.y148_c00000{bottom:900.510000px;}
.yfe_c00000{bottom:901.230000px;}
.y201_c00000{bottom:901.410000px;}
.y2ca_c00000{bottom:901.770000px;}
.y623_c00000{bottom:902.310000px;}
.y69e_c00000{bottom:903.030000px;}
.yb9f_c00000{bottom:903.210000px;}
.y3ba_c00000{bottom:903.570000px;}
.y56d_c00000{bottom:904.110000px;}
.y129_c00000{bottom:904.290000px;}
.y113_c00000{bottom:904.470000px;}
.y244_c00000{bottom:904.650000px;}
.yb2_c00000{bottom:904.830000px;}
.y496_c00000{bottom:905.730000px;}
.y3_c00000{bottom:905.910000px;}
.y6b_c00000{bottom:906.450000px;}
.y47e_c00000{bottom:908.070000px;}
.y79e_c00000{bottom:908.790000px;}
.y580_c00000{bottom:909.690000px;}
.yb46_c00000{bottom:909.870000px;}
.y179_c00000{bottom:910.050000px;}
.y634_c00000{bottom:911.490000px;}
.y438_c00000{bottom:912.750000px;}
.y609_c00000{bottom:913.110000px;}
.y23_c00000{bottom:913.523040px;}
.y726_c00000{bottom:914.010000px;}
.y3f4_c00000{bottom:914.190000px;}
.y26c_c00000{bottom:914.910000px;}
.y663_c00000{bottom:915.090000px;}
.yb3a_c00000{bottom:915.270000px;}
.y19b_c00000{bottom:915.810000px;}
.y5e8_c00000{bottom:917.070000px;}
.y2a7_c00000{bottom:919.230000px;}
.y28a_c00000{bottom:920.490000px;}
.ye5_c00000{bottom:920.850000px;}
.y15e_c00000{bottom:921.030000px;}
.y39b_c00000{bottom:921.390000px;}
.y97_c00000{bottom:921.930000px;}
.y763_c00000{bottom:923.190000px;}
.ya8a_c00000{bottom:923.370000px;}
.y243_c00000{bottom:923.550000px;}
.y5c4_c00000{bottom:926.790000px;}
.y47d_c00000{bottom:926.970000px;}
.y4e5_c00000{bottom:927.330000px;}
.yb45_c00000{bottom:929.310000px;}
.y70c_c00000{bottom:930.030000px;}
.y46_c00000{bottom:930.750000px;}
.y21c_c00000{bottom:931.470000px;}
.y651_c00000{bottom:932.010000px;}
.y200_c00000{bottom:932.550000px;}
.yada_c00000{bottom:933.450000px;}
.y608_c00000{bottom:933.810000px;}
.y26b_c00000{bottom:933.990000px;}
.yfd_c00000{bottom:934.170000px;}
.y3b9_c00000{bottom:934.530000px;}
.yb1_c00000{bottom:935.790000px;}
.y5f_c00000{bottom:936.330000px;}
.y495_c00000{bottom:936.870000px;}
.y112_c00000{bottom:937.230000px;}
.ycd_c00000{bottom:937.590000px;}
.y6ca_c00000{bottom:938.130000px;}
.y2a6_c00000{bottom:938.310000px;}
.y79d_c00000{bottom:939.750000px;}
.y64e_c00000{bottom:940.650000px;}
.yae8_c00000{bottom:940.830000px;}
.y587_c00000{bottom:941.010000px;}
.y178_c00000{bottom:941.190000px;}
.y762_c00000{bottom:942.090000px;}
.y725_c00000{bottom:942.450000px;}
.y242_c00000{bottom:942.630000px;}
.y2_c00000{bottom:943.350000px;}
.y437_c00000{bottom:943.710000px;}
.y2c9_c00000{bottom:945.330000px;}
.y5c3_c00000{bottom:945.510000px;}
.y47c_c00000{bottom:945.870000px;}
.y6a_c00000{bottom:946.050000px;}
.y662_c00000{bottom:946.230000px;}
.y1b1_c00000{bottom:946.770000px;}
.yb44_c00000{bottom:949.470000px;}
.y6bb_c00000{bottom:950.190000px;}
.y19a_c00000{bottom:950.370000px;}
.y289_c00000{bottom:951.450000px;}
.y22_c00000{bottom:951.677280px;}
.y15d_c00000{bottom:951.990000px;}
.y39a_c00000{bottom:952.530000px;}
.y1ff_c00000{bottom:952.890000px;}
.y147_c00000{bottom:956.850000px;}
.y2a5_c00000{bottom:957.210000px;}
.y3d9_c00000{bottom:957.570000px;}
.y4e4_c00000{bottom:958.290000px;}
.yae7_c00000{bottom:959.730000px;}
.y761_c00000{bottom:960.990000px;}
.y111_c00000{bottom:961.170000px;}
.y45_c00000{bottom:961.710000px;}
.y230_c00000{bottom:961.890000px;}
.y824_c00000{bottom:963.690000px;}
.y128_c00000{bottom:963.870000px;}
.y3b8_c00000{bottom:964.410000px;}
.y47b_c00000{bottom:964.770000px;}
.yb10_c00000{bottom:964.950000px;}
.y69d_c00000{bottom:965.130000px;}
.yb9e_c00000{bottom:965.310000px;}
.ya89_c00000{bottom:966.750000px;}
.y96_c00000{bottom:966.930000px;}
.y2c8_c00000{bottom:967.290000px;}
.y494_c00000{bottom:967.830000px;}
.yb43_c00000{bottom:968.910000px;}
.ycc_c00000{bottom:970.350000px;}
.y241_c00000{bottom:971.790000px;}
.y1fe_c00000{bottom:971.970000px;}
.y177_c00000{bottom:972.150000px;}
.y596_c00000{bottom:972.330000px;}
.y436_c00000{bottom:974.850000px;}
.y6c9_c00000{bottom:976.110000px;}
.y2a4_c00000{bottom:976.290000px;}
.y661_c00000{bottom:977.190000px;}
.yb39_c00000{bottom:977.370000px;}
.y21b_c00000{bottom:977.550000px;}
.y1b0_c00000{bottom:977.910000px;}
.yae6_c00000{bottom:978.810000px;}
.y3d8_c00000{bottom:979.530000px;}
.y5e_c00000{bottom:979.710000px;}
.yb19_c00000{bottom:981.870000px;}
.y567_c00000{bottom:982.230000px;}
.y288_c00000{bottom:982.590000px;}
.y15c_c00000{bottom:983.130000px;}
.y47a_c00000{bottom:983.670000px;}
.y760_c00000{bottom:983.850000px;}
.y199_c00000{bottom:984.750000px;}
.y110_c00000{bottom:984.930000px;}
.y6ac_c00000{bottom:989.070000px;}
.y4e3_c00000{bottom:989.430000px;}
.y21_c00000{bottom:989.831520px;}
.y1fd_c00000{bottom:990.870000px;}
.y44_c00000{bottom:992.850000px;}
.y127_c00000{bottom:993.570000px;}
.y69c_c00000{bottom:996.270000px;}
.yae5_c00000{bottom:997.710000px;}
.y493_c00000{bottom:998.970000px;}
.yb0_c00000{bottom:999.690000px;}
.y823_c00000{bottom:1000.770000px;}
.y3b7_c00000{bottom:1001.310000px;}
.y479_c00000{bottom:1002.390000px;}
.y650_c00000{bottom:1002.750000px;}
.y399_c00000{bottom:1002.930000px;}
.y5d3_c00000{bottom:1003.110000px;}
.ycb_c00000{bottom:1003.290000px;}
.y598_c00000{bottom:1003.470000px;}
.y6c8_c00000{bottom:1004.550000px;}
.y2a3_c00000{bottom:1004.730000px;}
.y435_c00000{bottom:1005.810000px;}
.y660_c00000{bottom:1007.970000px;}
.yb42_c00000{bottom:1008.150000px;}
.yb38_c00000{bottom:1008.330000px;}
.y10f_c00000{bottom:1008.690000px;}
.y1af_c00000{bottom:1008.870000px;}
.y1fc_c00000{bottom:1009.770000px;}
.y95_c00000{bottom:1009.950000px;}
.ya88_c00000{bottom:1010.310000px;}
.y146_c00000{bottom:1011.030000px;}
.y287_c00000{bottom:1013.550000px;}
.y15b_c00000{bottom:1014.090000px;}
.yae4_c00000{bottom:1016.790000px;}
.y566_c00000{bottom:1018.230000px;}
.y198_c00000{bottom:1019.310000px;}
.y3b6_c00000{bottom:1023.090000px;}
.y5d_c00000{bottom:1023.270000px;}
.y43_c00000{bottom:1023.450000px;}
.y21a_c00000{bottom:1023.630000px;}
.y5e7_c00000{bottom:1023.810000px;}
.y126_c00000{bottom:1023.990000px;}
.y822_c00000{bottom:1024.170000px;}
.y70b_c00000{bottom:1025.250000px;}
.y478_c00000{bottom:1025.430000px;}
.y708_c00000{bottom:1026.870000px;}
.yb41_c00000{bottom:1027.050000px;}
.y69b_c00000{bottom:1027.230000px;}
.yb9d_c00000{bottom:1027.410000px;}
.y20_c00000{bottom:1027.985760px;}
.y607_c00000{bottom:1028.670000px;}
.y1fb_c00000{bottom:1028.850000px;}
.yaf_c00000{bottom:1032.450000px;}
.y452_c00000{bottom:1033.890000px;}
.yca_c00000{bottom:1034.250000px;}
.yae3_c00000{bottom:1035.690000px;}
.y434_c00000{bottom:1036.770000px;}
.y5c2_c00000{bottom:1044.690000px;}
.y3b5_c00000{bottom:1044.870000px;}
.yb40_c00000{bottom:1046.490000px;}
.y1fa_c00000{bottom:1047.750000px;}
.y6ba_c00000{bottom:1053.690000px;}
.y197_c00000{bottom:1053.870000px;}
.y42_c00000{bottom:1059.480000px;}
.y125_c00000{bottom:1059.660000px;}
.y145_c00000{bottom:1062.360000px;}
.y633_c00000{bottom:1064.880000px;}
.y451_c00000{bottom:1065.060000px;}
.y5d2_c00000{bottom:1065.240000px;}
.yae_c00000{bottom:1065.420000px;}
.y286_c00000{bottom:1065.600000px;}
.y1f_c00000{bottom:1066.140000px;}
.y5c_c00000{bottom:1066.680000px;}
.y1f9_c00000{bottom:1066.860000px;}
.y1_c00000{bottom:1088.100000px;}
.y91_c00000{bottom:1121.400000px;}
.h3f_c00000{height:18.000000px;}
.h29_c00000{height:18.180000px;}
.h52_c00000{height:18.216000px;}
.h12_c00000{height:22.500000px;}
.h28_c00000{height:22.680000px;}
.hb3_c00000{height:33.660000px;}
.h9a_c00000{height:35.280000px;}
.h20_c00000{height:36.180000px;}
.h3c_c00000{height:36.216000px;}
.h34_c00000{height:36.360000px;}
.h19_c00000{height:38.158594px;}
.h7_c00000{height:44.149219px;}
.h5e_c00000{height:47.344922px;}
.h51_c00000{height:48.616875px;}
.h11_c00000{height:48.871406px;}
.hc_c00000{height:52.998047px;}
.h1b_c00000{height:53.573906px;}
.h2c_c00000{height:54.180000px;}
.h32_c00000{height:54.216000px;}
.h21_c00000{height:54.360000px;}
.h31_c00000{height:54.396000px;}
.hc3_c00000{height:55.440000px;}
.h70_c00000{height:56.016000px;}
.h30_c00000{height:56.801250px;}
.hac_c00000{height:57.420000px;}
.hab_c00000{height:57.456000px;}
.haa_c00000{height:57.600000px;}
.had_c00000{height:57.636000px;}
.h72_c00000{height:57.816000px;}
.h1a_c00000{height:58.651172px;}
.h26_c00000{height:59.383125px;}
.hb2_c00000{height:59.616000px;}
.h8d_c00000{height:59.976000px;}
.h64_c00000{height:60.120000px;}
.hbf_c00000{height:60.226875px;}
.h95_c00000{height:60.696000px;}
.h16_c00000{height:61.965000px;}
.h53_c00000{height:62.153438px;}
.h8_c00000{height:62.184375px;}
.h6a_c00000{height:62.280000px;}
.h6c_c00000{height:62.316000px;}
.h25_c00000{height:62.327813px;}
.h9_c00000{height:62.850937px;}
.h8f_c00000{height:63.000000px;}
.h79_c00000{height:63.036000px;}
.h86_c00000{height:63.360000px;}
.h66_c00000{height:63.396000px;}
.h50_c00000{height:63.855000px;}
.h1c_c00000{height:64.546875px;}
.h8c_c00000{height:64.620000px;}
.h69_c00000{height:64.656000px;}
.hbe_c00000{height:64.978594px;}
.hb_c00000{height:65.010937px;}
.ha_c00000{height:65.025338px;}
.h77_c00000{height:65.556000px;}
.h56_c00000{height:66.082500px;}
.ha8_c00000{height:66.420000px;}
.h7e_c00000{height:66.456000px;}
.h80_c00000{height:66.600000px;}
.h13_c00000{height:66.757500px;}
.hb5_c00000{height:66.816000px;}
.h7c_c00000{height:66.960000px;}
.h74_c00000{height:66.996000px;}
.h7b_c00000{height:67.140000px;}
.h62_c00000{height:67.176000px;}
.h98_c00000{height:67.500000px;}
.h15_c00000{height:67.837500px;}
.h1_c00000{height:68.084282px;}
.h96_c00000{height:68.796000px;}
.h4a_c00000{height:69.086250px;}
.ha4_c00000{height:69.120000px;}
.ha2_c00000{height:69.300000px;}
.ha3_c00000{height:69.336000px;}
.h17_c00000{height:69.660000px;}
.h10_c00000{height:70.628906px;}
.hf_c00000{height:70.664062px;}
.hc4_c00000{height:71.225156px;}
.h2b_c00000{height:72.360000px;}
.h2d_c00000{height:72.396000px;}
.h2e_c00000{height:72.540000px;}
.he_c00000{height:72.562500px;}
.h22_c00000{height:72.576000px;}
.h88_c00000{height:72.720000px;}
.h7f_c00000{height:73.980000px;}
.h3_c00000{height:74.004654px;}
.h81_c00000{height:74.016000px;}
.hc2_c00000{height:74.700000px;}
.h14_c00000{height:75.093750px;}
.h97_c00000{height:75.420000px;}
.h6e_c00000{height:75.600000px;}
.h4b_c00000{height:80.441367px;}
.h1f_c00000{height:80.464922px;}
.h1e_c00000{height:80.644922px;}
.h67_c00000{height:82.620000px;}
.ha0_c00000{height:83.880000px;}
.h2_c00000{height:84.898125px;}
.hbc_c00000{height:84.996000px;}
.h9d_c00000{height:86.220000px;}
.h9c_c00000{height:86.436000px;}
.hb7_c00000{height:88.740000px;}
.h87_c00000{height:89.676000px;}
.h33_c00000{height:90.540000px;}
.h2f_c00000{height:90.576000px;}
.h3b_c00000{height:90.720000px;}
.h37_c00000{height:90.756000px;}
.h47_c00000{height:91.260000px;}
.h8a_c00000{height:93.456000px;}
.h99_c00000{height:94.716000px;}
.h9f_c00000{height:95.436000px;}
.hd_c00000{height:96.508125px;}
.h73_c00000{height:104.076000px;}
.h93_c00000{height:104.220000px;}
.hbb_c00000{height:104.760000px;}
.h46_c00000{height:108.540000px;}
.h38_c00000{height:108.576000px;}
.h3d_c00000{height:108.720000px;}
.h35_c00000{height:108.756000px;}
.h4_c00000{height:108.843750px;}
.h5_c00000{height:111.006981px;}
.ha6_c00000{height:116.676000px;}
.h18_c00000{height:117.900000px;}
.h1d_c00000{height:121.179375px;}
.h84_c00000{height:125.496000px;}
.h23_c00000{height:126.720000px;}
.h3e_c00000{height:126.756000px;}
.h49_c00000{height:126.900000px;}
.h36_c00000{height:126.936000px;}
.h68_c00000{height:127.656000px;}
.haf_c00000{height:129.096000px;}
.h8b_c00000{height:129.960000px;}
.h63_c00000{height:133.380000px;}
.h94_c00000{height:134.676000px;}
.h7a_c00000{height:135.000000px;}
.ha1_c00000{height:139.356000px;}
.h61_c00000{height:140.256000px;}
.h82_c00000{height:144.900000px;}
.h24_c00000{height:144.936000px;}
.h65_c00000{height:146.916000px;}
.h85_c00000{height:148.176000px;}
.hc0_c00000{height:148.320000px;}
.hba_c00000{height:148.356000px;}
.h83_c00000{height:151.770000px;}
.h58_c00000{height:162.900000px;}
.h42_c00000{height:162.930000px;}
.h3a_c00000{height:163.080000px;}
.h39_c00000{height:163.110000px;}
.h55_c00000{height:164.190000px;}
.hc1_c00000{height:166.350000px;}
.h89_c00000{height:166.710000px;}
.hb8_c00000{height:172.650000px;}
.h9b_c00000{height:173.370000px;}
.h9e_c00000{height:180.030000px;}
.h4e_c00000{height:181.290000px;}
.hbd_c00000{height:183.630000px;}
.h5a_c00000{height:184.530000px;}
.h44_c00000{height:199.290000px;}
.h48_c00000{height:200.730000px;}
.h5d_c00000{height:202.710000px;}
.h40_c00000{height:217.290000px;}
.h8e_c00000{height:228.270000px;}
.h90_c00000{height:229.890000px;}
.ha7_c00000{height:231.690000px;}
.h5c_c00000{height:238.890000px;}
.h54_c00000{height:253.650000px;}
.hb9_c00000{height:254.010000px;}
.hb6_c00000{height:262.110000px;}
.ha5_c00000{height:262.335000px;}
.h4f_c00000{height:271.650000px;}
.h6d_c00000{height:277.050000px;}
.h7d_c00000{height:283.395000px;}
.ha9_c00000{height:296.130000px;}
.h76_c00000{height:304.635000px;}
.hb1_c00000{height:317.055000px;}
.h4d_c00000{height:326.010000px;}
.h41_c00000{height:328.215000px;}
.hb0_c00000{height:329.790000px;}
.h6f_c00000{height:331.455000px;}
.h75_c00000{height:348.690000px;}
.h43_c00000{height:363.675000px;}
.h45_c00000{height:383.295000px;}
.h60_c00000{height:421.995000px;}
.h91_c00000{height:430.995000px;}
.h71_c00000{height:443.415000px;}
.h78_c00000{height:448.665000px;}
.hb4_c00000{height:452.445000px;}
.h4c_c00000{height:452.805000px;}
.h5b_c00000{height:458.535000px;}
.hae_c00000{height:459.615000px;}
.h92_c00000{height:489.855000px;}
.h5f_c00000{height:550.365000px;}
.h2a_c00000{height:566.745000px;}
.h59_c00000{height:569.445000px;}
.h57_c00000{height:645.225000px;}
.h6b_c00000{height:655.125000px;}
.h27_c00000{height:918.000000px;}
.h0_c00000{height:1188.000000px;}
.h6_c00000{height:1188.180000px;}
.w11_c00000{width:41.760000px;}
.wd_c00000{width:49.860000px;}
.wc_c00000{width:66.636000px;}
.w6_c00000{width:66.780000px;}
.w2_c00000{width:66.816000px;}
.w19_c00000{width:71.136000px;}
.w1e_c00000{width:94.860000px;}
.w25_c00000{width:102.996000px;}
.w28_c00000{width:105.660000px;}
.w2e_c00000{width:105.696000px;}
.w2a_c00000{width:113.796000px;}
.w13_c00000{width:116.280000px;}
.w16_c00000{width:126.756000px;}
.w2d_c00000{width:126.900000px;}
.w1d_c00000{width:126.936000px;}
.w15_c00000{width:134.820000px;}
.w2c_c00000{width:134.856000px;}
.w7_c00000{width:145.476000px;}
.we_c00000{width:148.176000px;}
.w12_c00000{width:158.790000px;}
.w22_c00000{width:166.860000px;}
.w17_c00000{width:169.410000px;}
.w14_c00000{width:186.150000px;}
.w20_c00000{width:188.130000px;}
.w2f_c00000{width:190.620000px;}
.w1c_c00000{width:190.650000px;}
.wa_c00000{width:194.580000px;}
.wb_c00000{width:203.070000px;}
.w10_c00000{width:207.390000px;}
.w8_c00000{width:212.070000px;}
.w26_c00000{width:214.050000px;}
.w9_c00000{width:232.770000px;}
.w27_c00000{width:233.100000px;}
.w18_c00000{width:243.930000px;}
.w30_c00000{width:254.370000px;}
.wf_c00000{width:265.170000px;}
.w3_c00000{width:335.910000px;}
.w4_c00000{width:336.135000px;}
.w24_c00000{width:368.850000px;}
.w1a_c00000{width:376.410000px;}
.w21_c00000{width:483.915000px;}
.w23_c00000{width:505.185000px;}
.w1b_c00000{width:538.815000px;}
.w1f_c00000{width:554.115000px;}
.w31_c00000{width:672.765000px;}
.w29_c00000{width:777.525000px;}
.w2b_c00000{width:870.945000px;}
.w0_c00000{width:918.000000px;}
.w1_c00000{width:918.180000px;}
.w5_c00000{width:1188.000000px;}
.x0_c00000{left:0.000000px;}
.x46_c00000{left:7.740000px;}
.xaf_c00000{left:9.180000px;}
.xaa_c00000{left:10.620000px;}
.xb0_c00000{left:12.600000px;}
.x97_c00000{left:14.220000px;}
.x7b_c00000{left:16.020000px;}
.x81_c00000{left:17.640000px;}
.x6e_c00000{left:19.260000px;}
.x59_c00000{left:20.880000px;}
.x84_c00000{left:21.960000px;}
.xa8_c00000{left:23.400000px;}
.x38_c00000{left:25.020000px;}
.x82_c00000{left:27.180000px;}
.x31_c00000{left:29.160000px;}
.x71_c00000{left:31.500000px;}
.x7d_c00000{left:32.580000px;}
.x6b_c00000{left:34.020000px;}
.xa1_c00000{left:35.460000px;}
.x7c_c00000{left:36.540000px;}
.x58_c00000{left:38.016000px;}
.x66_c00000{left:39.060000px;}
.x56_c00000{left:40.716000px;}
.x6a_c00000{left:42.300000px;}
.x79_c00000{left:43.914000px;}
.x90_c00000{left:44.994000px;}
.x73_c00000{left:46.620000px;}
.x55_c00000{left:48.636000px;}
.x4f_c00000{left:50.256000px;}
.xab_c00000{left:51.300000px;}
.x57_c00000{left:52.950000px;}
.x6d_c00000{left:54.900000px;}
.xad_c00000{left:58.005000px;}
.x53_c00000{left:59.940000px;}
.xae_c00000{left:61.245000px;}
.x70_c00000{left:62.670000px;}
.xa3_c00000{left:64.470000px;}
.x78_c00000{left:67.494000px;}
.x8c_c00000{left:69.654000px;}
.x87_c00000{left:70.914000px;}
.x67_c00000{left:73.980000px;}
.x45_c00000{left:75.270000px;}
.x93_c00000{left:76.890000px;}
.xac_c00000{left:79.965000px;}
.x44_c00000{left:82.470000px;}
.x5_c00000{left:84.960000px;}
.x51_c00000{left:87.480000px;}
.x68_c00000{left:94.860000px;}
.x7_c00000{left:96.480000px;}
.x4e_c00000{left:98.640000px;}
.x80_c00000{left:100.620000px;}
.x43_c00000{left:104.214000px;}
.x4a_c00000{left:106.200000px;}
.x8b_c00000{left:109.254000px;}
.x42_c00000{left:112.494000px;}
.xa2_c00000{left:113.754000px;}
.x41_c00000{left:119.916000px;}
.x7f_c00000{left:121.860000px;}
.x88_c00000{left:123.150000px;}
.x5f_c00000{left:126.210000px;}
.xf_c00000{left:127.620000px;}
.x5e_c00000{left:133.194000px;}
.x99_c00000{left:136.296000px;}
.x8d_c00000{left:140.394000px;}
.x11_c00000{left:145.620000px;}
.x89_c00000{left:147.774000px;}
.x33_c00000{left:148.896000px;}
.x85_c00000{left:151.380000px;}
.x34_c00000{left:153.750000px;}
.x8a_c00000{left:156.090000px;}
.x6c_c00000{left:158.070000px;}
.x8f_c00000{left:160.050000px;}
.xbc_c00000{left:164.910000px;}
.x6_c00000{left:166.350000px;}
.x9e_c00000{left:169.014000px;}
.x65_c00000{left:170.490000px;}
.x1b_c00000{left:177.690000px;}
.x1c_c00000{left:180.570000px;}
.x35_c00000{left:181.650000px;}
.x15_c00000{left:184.530000px;}
.x9b_c00000{left:185.970000px;}
.x47_c00000{left:191.550000px;}
.x18_c00000{left:195.150000px;}
.x61_c00000{left:200.370000px;}
.x98_c00000{left:201.990000px;}
.x4_c00000{left:204.870000px;}
.x60_c00000{left:208.650000px;}
.xb1_c00000{left:211.710000px;}
.x8_c00000{left:213.150000px;}
.x5c_c00000{left:216.030000px;}
.x8e_c00000{left:217.830000px;}
.xb5_c00000{left:220.530000px;}
.x1e_c00000{left:223.230000px;}
.x96_c00000{left:229.170000px;}
.xb4_c00000{left:231.870000px;}
.x83_c00000{left:233.850000px;}
.x62_c00000{left:235.650000px;}
.x77_c00000{left:236.910000px;}
.x75_c00000{left:239.970000px;}
.x40_c00000{left:242.670000px;}
.x50_c00000{left:244.830000px;}
.xb3_c00000{left:248.970000px;}
.x3f_c00000{left:250.050000px;}
.x9d_c00000{left:252.615000px;}
.x7a_c00000{left:255.630000px;}
.x29_c00000{left:258.690000px;}
.x63_c00000{left:262.650000px;}
.x1a_c00000{left:264.090000px;}
.x17_c00000{left:272.010000px;}
.x2f_c00000{left:277.410000px;}
.x2a_c00000{left:280.650000px;}
.xbb_c00000{left:284.970000px;}
.xd_c00000{left:287.130000px;}
.x3d_c00000{left:288.570000px;}
.x64_c00000{left:289.650000px;}
.x2d_c00000{left:292.710000px;}
.xbe_c00000{left:294.339000px;}
.x76_c00000{left:297.615000px;}
.x1d_c00000{left:300.135000px;}
.xa_c00000{left:303.375000px;}
.x4d_c00000{left:305.490000px;}
.x9c_c00000{left:308.775000px;}
.x12_c00000{left:309.780000px;}
.x2c_c00000{left:311.655000px;}
.xc_c00000{left:312.915000px;}
.x3_c00000{left:317.055000px;}
.x28_c00000{left:320.115000px;}
.x36_c00000{left:322.635000px;}
.x6f_c00000{left:330.015000px;}
.xb2_c00000{left:335.550000px;}
.x25_c00000{left:337.215000px;}
.x5d_c00000{left:344.055000px;}
.x32_c00000{left:353.415000px;}
.x1f_c00000{left:355.755000px;}
.x3c_c00000{left:359.175000px;}
.xb8_c00000{left:361.830000px;}
.xbd_c00000{left:366.195000px;}
.x10_c00000{left:370.621440px;}
.x13_c00000{left:373.395000px;}
.x39_c00000{left:374.475000px;}
.x74_c00000{left:380.415000px;}
.x9_c00000{left:382.575000px;}
.x5a_c00000{left:386.175000px;}
.xb_c00000{left:389.415000px;}
.x3b_c00000{left:392.115000px;}
.x48_c00000{left:394.275000px;}
.x16_c00000{left:395.535000px;}
.x2e_c00000{left:396.975000px;}
.xe_c00000{left:398.775000px;}
.x19_c00000{left:402.375000px;}
.x5b_c00000{left:406.695000px;}
.x9a_c00000{left:415.695000px;}
.xa5_c00000{left:417.315000px;}
.x3e_c00000{left:419.475000px;}
.x94_c00000{left:425.775000px;}
.x26_c00000{left:427.575000px;}
.xa4_c00000{left:430.275000px;}
.x23_c00000{left:446.115000px;}
.x27_c00000{left:450.075000px;}
.x24_c00000{left:452.955000px;}
.x2b_c00000{left:456.735000px;}
.x1_c00000{left:458.895000px;}
.x3a_c00000{left:469.695000px;}
.x37_c00000{left:473.655000px;}
.x9f_c00000{left:489.495000px;}
.x92_c00000{left:498.855000px;}
.x22_c00000{left:506.085000px;}
.x95_c00000{left:521.535000px;}
.x2_c00000{left:526.785000px;}
.x86_c00000{left:547.635000px;}
.x91_c00000{left:549.975000px;}
.x7e_c00000{left:553.245000px;}
.x4c_c00000{left:554.295000px;}
.xb6_c00000{left:561.315000px;}
.x21_c00000{left:582.945000px;}
.x69_c00000{left:585.285000px;}
.x49_c00000{left:593.895000px;}
.xb7_c00000{left:604.515000px;}
.x72_c00000{left:606.525000px;}
.x20_c00000{left:611.745000px;}
.xa0_c00000{left:638.385000px;}
.xa6_c00000{left:651.135000px;}
.xb9_c00000{left:659.625000px;}
.x52_c00000{left:691.305000px;}
.xa7_c00000{left:778.605000px;}
.x14_c00000{left:790.530000px;}
.x30_c00000{left:820.950000px;}
.xba_c00000{left:850.965000px;}
.xa9_c00000{left:884.985000px;}
.x54_c00000{left:886.605000px;}
.x4b_c00000{left:1101.570000px;}
@media print{
.v8_c00000{vertical-align:-113.920000pt;}
.v3_c00000{vertical-align:-104.960000pt;}
.v1_c00000{vertical-align:-85.920000pt;}
.v7_c00000{vertical-align:-74.880000pt;}
.v2_c00000{vertical-align:-73.600000pt;}
.vd_c00000{vertical-align:-69.098667pt;}
.va_c00000{vertical-align:-67.840000pt;}
.vb_c00000{vertical-align:-64.640000pt;}
.vc_c00000{vertical-align:-61.440000pt;}
.vf_c00000{vertical-align:-26.880000pt;}
.v6_c00000{vertical-align:-24.320000pt;}
.v4_c00000{vertical-align:-1.920000pt;}
.v0_c00000{vertical-align:0.000000pt;}
.ve_c00000{vertical-align:26.880000pt;}
.v9_c00000{vertical-align:29.600000pt;}
.v5_c00000{vertical-align:42.880000pt;}
.ls76_c00000{letter-spacing:-1.920000pt;}
.lsd_c00000{letter-spacing:-1.280000pt;}
.ls43_c00000{letter-spacing:-1.130667pt;}
.ls3c_c00000{letter-spacing:-1.008000pt;}
.ls79_c00000{letter-spacing:-0.960000pt;}
.ls63_c00000{letter-spacing:-0.896000pt;}
.ls6b_c00000{letter-spacing:-0.832000pt;}
.ls39_c00000{letter-spacing:-0.640000pt;}
.lsa_c00000{letter-spacing:-0.584320pt;}
.ls5e_c00000{letter-spacing:-0.576000pt;}
.ls37_c00000{letter-spacing:-0.544000pt;}
.ls1d_c00000{letter-spacing:-0.512000pt;}
.ls7e_c00000{letter-spacing:-0.504533pt;}
.ls4c_c00000{letter-spacing:-0.480000pt;}
.ls5f_c00000{letter-spacing:-0.448000pt;}
.ls55_c00000{letter-spacing:-0.412267pt;}
.lsa0_c00000{letter-spacing:-0.409067pt;}
.ls15_c00000{letter-spacing:-0.399467pt;}
.ls91_c00000{letter-spacing:-0.342933pt;}
.ls52_c00000{letter-spacing:-0.320000pt;}
.ls45_c00000{letter-spacing:-0.297067pt;}
.ls7b_c00000{letter-spacing:-0.271467pt;}
.ls11_c00000{letter-spacing:-0.256000pt;}
.ls42_c00000{letter-spacing:-0.194667pt;}
.ls27_c00000{letter-spacing:-0.192000pt;}
.ls7a_c00000{letter-spacing:-0.183467pt;}
.ls16_c00000{letter-spacing:-0.160000pt;}
.ls46_c00000{letter-spacing:-0.148267pt;}
.lsc_c00000{letter-spacing:-0.128000pt;}
.ls35_c00000{letter-spacing:-0.064000pt;}
.ls36_c00000{letter-spacing:-0.047467pt;}
.ls3f_c00000{letter-spacing:-0.045867pt;}
.ls4_c00000{letter-spacing:-0.032000pt;}
.ls5_c00000{letter-spacing:-0.025067pt;}
.ls3_c00000{letter-spacing:0.000000pt;}
.ls17_c00000{letter-spacing:0.032000pt;}
.ls3e_c00000{letter-spacing:0.045867pt;}
.ls99_c00000{letter-spacing:0.047360pt;}
.lsa2_c00000{letter-spacing:0.047467pt;}
.ls8_c00000{letter-spacing:0.053120pt;}
.ls4b_c00000{letter-spacing:0.064000pt;}
.ls81_c00000{letter-spacing:0.094720pt;}
.ls19_c00000{letter-spacing:0.094933pt;}
.ls13_c00000{letter-spacing:0.106667pt;}
.ls9_c00000{letter-spacing:0.117760pt;}
.ls1b_c00000{letter-spacing:0.128000pt;}
.ls18_c00000{letter-spacing:0.133333pt;}
.ls41_c00000{letter-spacing:0.148267pt;}
.ls6_c00000{letter-spacing:0.154240pt;}
.ls7_c00000{letter-spacing:0.159360pt;}
.ls9c_c00000{letter-spacing:0.159997pt;}
.ls12_c00000{letter-spacing:0.160000pt;}
.ls9e_c00000{letter-spacing:0.183467pt;}
.ls84_c00000{letter-spacing:0.192000pt;}
.ls40_c00000{letter-spacing:0.194667pt;}
.ls14_c00000{letter-spacing:0.199467pt;}
.ls1a_c00000{letter-spacing:0.227733pt;}
.ls54_c00000{letter-spacing:0.227840pt;}
.ls25_c00000{letter-spacing:0.231040pt;}
.ls5a_c00000{letter-spacing:0.232960pt;}
.ls57_c00000{letter-spacing:0.233067pt;}
.ls9f_c00000{letter-spacing:0.254720pt;}
.ls10_c00000{letter-spacing:0.256000pt;}
.ls3b_c00000{letter-spacing:0.265600pt;}
.ls8b_c00000{letter-spacing:0.271467pt;}
.lsb_c00000{letter-spacing:0.294400pt;}
.ls3d_c00000{letter-spacing:0.297067pt;}
.ls21_c00000{letter-spacing:0.320000pt;}
.ls85_c00000{letter-spacing:0.362667pt;}
.ls1e_c00000{letter-spacing:0.384000pt;}
.ls98_c00000{letter-spacing:0.408960pt;}
.ls9d_c00000{letter-spacing:0.409067pt;}
.ls4d_c00000{letter-spacing:0.448000pt;}
.ls80_c00000{letter-spacing:0.490667pt;}
.ls32_c00000{letter-spacing:0.592000pt;}
.ls71_c00000{letter-spacing:0.618667pt;}
.lsf_c00000{letter-spacing:0.640000pt;}
.ls44_c00000{letter-spacing:0.688000pt;}
.ls5c_c00000{letter-spacing:0.768000pt;}
.ls33_c00000{letter-spacing:0.800000pt;}
.ls34_c00000{letter-spacing:0.960000pt;}
.ls24_c00000{letter-spacing:1.280000pt;}
.ls6e_c00000{letter-spacing:1.386667pt;}
.ls31_c00000{letter-spacing:1.600000pt;}
.ls53_c00000{letter-spacing:1.920000pt;}
.ls47_c00000{letter-spacing:2.560000pt;}
.ls51_c00000{letter-spacing:2.720000pt;}
.ls4a_c00000{letter-spacing:3.200000pt;}
.ls6f_c00000{letter-spacing:3.306667pt;}
.ls96_c00000{letter-spacing:3.840000pt;}
.ls7f_c00000{letter-spacing:4.480000pt;}
.ls67_c00000{letter-spacing:5.098667pt;}
.ls7c_c00000{letter-spacing:5.120000pt;}
.lsa1_c00000{letter-spacing:5.280000pt;}
.ls49_c00000{letter-spacing:5.760000pt;}
.ls22_c00000{letter-spacing:6.400000pt;}
.ls5d_c00000{letter-spacing:7.040000pt;}
.ls3a_c00000{letter-spacing:7.680000pt;}
.ls4e_c00000{letter-spacing:8.320000pt;}
.ls73_c00000{letter-spacing:8.960000pt;}
.ls2d_c00000{letter-spacing:9.600000pt;}
.ls77_c00000{letter-spacing:10.218667pt;}
.ls78_c00000{letter-spacing:10.240000pt;}
.ls26_c00000{letter-spacing:11.520000pt;}
.ls69_c00000{letter-spacing:12.160000pt;}
.ls2b_c00000{letter-spacing:12.800000pt;}
.ls7d_c00000{letter-spacing:12.960000pt;}
.ls2e_c00000{letter-spacing:13.440000pt;}
.ls23_c00000{letter-spacing:14.080000pt;}
.ls30_c00000{letter-spacing:14.720000pt;}
.ls58_c00000{letter-spacing:15.360000pt;}
.ls62_c00000{letter-spacing:16.000000pt;}
.ls29_c00000{letter-spacing:16.640000pt;}
.ls56_c00000{letter-spacing:16.800000pt;}
.ls72_c00000{letter-spacing:17.280000pt;}
.ls50_c00000{letter-spacing:18.538667pt;}
.ls59_c00000{letter-spacing:18.560000pt;}
.ls61_c00000{letter-spacing:18.688000pt;}
.ls2a_c00000{letter-spacing:19.200000pt;}
.ls74_c00000{letter-spacing:19.840000pt;}
.ls28_c00000{letter-spacing:20.480000pt;}
.ls20_c00000{letter-spacing:21.760000pt;}
.ls48_c00000{letter-spacing:21.888000pt;}
.ls4f_c00000{letter-spacing:23.040000pt;}
.ls65_c00000{letter-spacing:23.808000pt;}
.ls2c_c00000{letter-spacing:27.008000pt;}
.ls68_c00000{letter-spacing:27.498667pt;}
.ls70_c00000{letter-spacing:27.520000pt;}
.ls64_c00000{letter-spacing:27.648000pt;}
.ls8f_c00000{letter-spacing:31.360000pt;}
.lsa3_c00000{letter-spacing:32.160000pt;}
.lsa5_c00000{letter-spacing:33.920000pt;}
.ls8d_c00000{letter-spacing:34.560000pt;}
.ls2f_c00000{letter-spacing:41.600000pt;}
.ls6a_c00000{letter-spacing:42.240000pt;}
.ls83_c00000{letter-spacing:45.568000pt;}
.ls60_c00000{letter-spacing:47.488000pt;}
.ls0_c00000{letter-spacing:50.528000pt;}
.ls92_c00000{letter-spacing:50.688000pt;}
.ls5b_c00000{letter-spacing:53.391360pt;}
.ls9a_c00000{letter-spacing:53.441707pt;}
.ls8e_c00000{letter-spacing:53.463040pt;}
.ls9b_c00000{letter-spacing:53.569707pt;}
.ls1c_c00000{letter-spacing:53.888000pt;}
.lsa4_c00000{letter-spacing:55.808000pt;}
.ls75_c00000{letter-spacing:56.591360pt;}
.ls6c_c00000{letter-spacing:57.088000pt;}
.ls94_c00000{letter-spacing:60.112640pt;}
.ls82_c00000{letter-spacing:69.999360pt;}
.lse_c00000{letter-spacing:74.986667pt;}
.ls66_c00000{letter-spacing:79.978667pt;}
.ls86_c00000{letter-spacing:81.898667pt;}
.ls93_c00000{letter-spacing:82.698667pt;}
.ls8a_c00000{letter-spacing:95.978667pt;}
.ls88_c00000{letter-spacing:104.938667pt;}
.ls89_c00000{letter-spacing:108.778667pt;}
.ls90_c00000{letter-spacing:145.920000pt;}
.ls38_c00000{letter-spacing:172.778667pt;}
.ls8c_c00000{letter-spacing:174.186667pt;}
.ls87_c00000{letter-spacing:176.618667pt;}
.ls95_c00000{letter-spacing:211.178667pt;}
.ls97_c00000{letter-spacing:360.298667pt;}
.ls6d_c00000{letter-spacing:399.978667pt;}
.ls2_c00000{letter-spacing:887.946667pt;}
.ls1f_c00000{letter-spacing:1069.600000pt;}
.ls1_c00000{letter-spacing:1313.546667pt;}
.ws33_c00000{word-spacing:-64.000000pt;}
.ws35_c00000{word-spacing:-56.320000pt;}
.wsf_c00000{word-spacing:-24.032000pt;}
.ws0_c00000{word-spacing:-18.720000pt;}
.wsa_c00000{word-spacing:-16.640000pt;}
.ws29_c00000{word-spacing:-16.448000pt;}
.ws2d_c00000{word-spacing:-16.384000pt;}
.wsb_c00000{word-spacing:-16.256000pt;}
.ws34_c00000{word-spacing:-16.192000pt;}
.ws13_c00000{word-spacing:-16.128000pt;}
.ws28_c00000{word-spacing:-16.064000pt;}
.ws9_c00000{word-spacing:-16.000000pt;}
.ws17_c00000{word-spacing:-15.936000pt;}
.ws2b_c00000{word-spacing:-15.872000pt;}
.ws18_c00000{word-spacing:-15.808000pt;}
.wsc_c00000{word-spacing:-15.744000pt;}
.wsd_c00000{word-spacing:-15.559467pt;}
.ws2e_c00000{word-spacing:-15.552000pt;}
.wse_c00000{word-spacing:-15.360000pt;}
.ws5_c00000{word-spacing:-15.014400pt;}
.ws2c_c00000{word-spacing:-14.953067pt;}
.ws15_c00000{word-spacing:-14.880000pt;}
.ws4_c00000{word-spacing:-14.837760pt;}
.ws25_c00000{word-spacing:-14.768000pt;}
.ws3_c00000{word-spacing:-14.720000pt;}
.ws1d_c00000{word-spacing:-14.672000pt;}
.ws30_c00000{word-spacing:-14.448533pt;}
.ws1b_c00000{word-spacing:-14.377067pt;}
.ws1e_c00000{word-spacing:-14.274667pt;}
.ws21_c00000{word-spacing:-14.228267pt;}
.ws1f_c00000{word-spacing:-14.125867pt;}
.ws1c_c00000{word-spacing:-14.080000pt;}
.ws20_c00000{word-spacing:-14.034133pt;}
.ws27_c00000{word-spacing:-13.931733pt;}
.ws23_c00000{word-spacing:-13.885333pt;}
.ws26_c00000{word-spacing:-13.782933pt;}
.ws36_c00000{word-spacing:-13.737067pt;}
.ws1a_c00000{word-spacing:-13.712000pt;}
.ws37_c00000{word-spacing:-13.689067pt;}
.ws16_c00000{word-spacing:-13.600000pt;}
.ws12_c00000{word-spacing:-13.534613pt;}
.ws38_c00000{word-spacing:-13.463467pt;}
.ws22_c00000{word-spacing:-13.440000pt;}
.ws11_c00000{word-spacing:-13.374933pt;}
.ws2_c00000{word-spacing:-13.333120pt;}
.ws14_c00000{word-spacing:-13.280000pt;}
.ws2f_c00000{word-spacing:-13.248000pt;}
.ws19_c00000{word-spacing:-13.232533pt;}
.ws24_c00000{word-spacing:-12.949333pt;}
.ws2a_c00000{word-spacing:-12.894613pt;}
.ws31_c00000{word-spacing:-11.040000pt;}
.ws32_c00000{word-spacing:-10.720000pt;}
.ws39_c00000{word-spacing:-9.280000pt;}
.ws10_c00000{word-spacing:-8.640000pt;}
.ws8_c00000{word-spacing:-0.647680pt;}
.ws6_c00000{word-spacing:-0.117760pt;}
.ws1_c00000{word-spacing:0.000000pt;}
.ws7_c00000{word-spacing:0.584320pt;}
._1b_c00000{margin-left:-11.393707pt;}
._28_c00000{margin-left:-7.952213pt;}
._3_c00000{margin-left:-6.213845pt;}
._2_c00000{margin-left:-1.886710pt;}
._0_c00000{margin-left:-0.973365pt;}
._1_c00000{width:1.333344pt;}
._15_c00000{width:2.340902pt;}
._9_c00000{width:3.392000pt;}
._a_c00000{width:4.426656pt;}
._b_c00000{width:5.504000pt;}
._c_c00000{width:6.602688pt;}
._f_c00000{width:7.713078pt;}
._12_c00000{width:8.726176pt;}
._18_c00000{width:10.144925pt;}
._4_c00000{width:11.584000pt;}
._13_c00000{width:12.490299pt;}
._10_c00000{width:13.394104pt;}
._17_c00000{width:14.342125pt;}
._27_c00000{width:15.600251pt;}
._19_c00000{width:16.588800pt;}
._11_c00000{width:18.309304pt;}
._1a_c00000{width:19.249562pt;}
._5_c00000{width:20.842688pt;}
._6_c00000{width:21.876022pt;}
._7_c00000{width:23.093173pt;}
._1d_c00000{width:24.256000pt;}
._1e_c00000{width:25.258965pt;}
._20_c00000{width:26.634069pt;}
._21_c00000{width:27.579265pt;}
._14_c00000{width:28.569539pt;}
._16_c00000{width:29.552517pt;}
._23_c00000{width:30.451985pt;}
._2d_c00000{width:32.137398pt;}
._24_c00000{width:33.184000pt;}
._22_c00000{width:34.432000pt;}
._8_c00000{width:35.370688pt;}
._1f_c00000{width:36.885312pt;}
._32_c00000{width:37.815518pt;}
._29_c00000{width:38.720000pt;}
._2a_c00000{width:39.690656pt;}
._2c_c00000{width:40.640000pt;}
._2b_c00000{width:41.589344pt;}
._2e_c00000{width:42.688000pt;}
._25_c00000{width:43.648000pt;}
._26_c00000{width:45.376000pt;}
._2f_c00000{width:46.272000pt;}
._30_c00000{width:47.232000pt;}
._36_c00000{width:48.384000pt;}
._37_c00000{width:49.674656pt;}
._1c_c00000{width:51.579679pt;}
._3a_c00000{width:52.574710pt;}
._3e_c00000{width:54.336000pt;}
._35_c00000{width:55.424000pt;}
._34_c00000{width:56.425366pt;}
._3d_c00000{width:57.344000pt;}
._33_c00000{width:58.944000pt;}
._3c_c00000{width:60.352000pt;}
._3b_c00000{width:66.967040pt;}
._38_c00000{width:84.608000pt;}
._39_c00000{width:85.567968pt;}
._d_c00000{width:135.242688pt;}
._e_c00000{width:172.800000pt;}
._31_c00000{width:1558.645333pt;}
.fs9_c00000{font-size:34.560000pt;}
.fsc_c00000{font-size:37.120000pt;}
.fsb_c00000{font-size:42.880000pt;}
.fs6_c00000{font-size:48.000000pt;}
.fs5_c00000{font-size:53.120000pt;}
.fs4_c00000{font-size:56.320000pt;}
.fs0_c00000{font-size:58.880000pt;}
.fs8_c00000{font-size:61.440000pt;}
.fs2_c00000{font-size:64.000000pt;}
.fs1_c00000{font-size:74.880000pt;}
.fs7_c00000{font-size:85.120000pt;}
.fs3_c00000{font-size:96.000000pt;}
.fsa_c00000{font-size:106.880000pt;}
.y0_c00000{bottom:0.000000pt;}
.y764_c00000{bottom:3.200000pt;}
.y348_c00000{bottom:3.354667pt;}
.y1e4_c00000{bottom:3.360000pt;}
.y335_c00000{bottom:3.386667pt;}
.y305_c00000{bottom:3.514667pt;}
.y1e1_c00000{bottom:3.520000pt;}
.y30c_c00000{bottom:3.546667pt;}
.y94_c00000{bottom:4.160000pt;}
.y2e3_c00000{bottom:4.320000pt;}
.ya2f_c00000{bottom:4.800000pt;}
.y8ff_c00000{bottom:4.960000pt;}
.ya39_c00000{bottom:5.440000pt;}
.ya22_c00000{bottom:6.240000pt;}
.ya20_c00000{bottom:6.400000pt;}
.y90c_c00000{bottom:6.600000pt;}
.y97d_c00000{bottom:6.720000pt;}
.ya46_c00000{bottom:8.160000pt;}
.y98b_c00000{bottom:8.480000pt;}
.y8c6_c00000{bottom:8.640000pt;}
.y9c8_c00000{bottom:9.160000pt;}
.y8de_c00000{bottom:10.560000pt;}
.y92e_c00000{bottom:11.040000pt;}
.y999_c00000{bottom:11.200000pt;}
.y8cf_c00000{bottom:11.360000pt;}
.y96b_c00000{bottom:11.520000pt;}
.y987_c00000{bottom:12.640000pt;}
.y8db_c00000{bottom:12.680000pt;}
.y924_c00000{bottom:13.440000pt;}
.y951_c00000{bottom:14.240000pt;}
.y94a_c00000{bottom:14.266667pt;}
.y918_c00000{bottom:14.560000pt;}
.y8bc_c00000{bottom:14.720000pt;}
.y93a_c00000{bottom:14.880000pt;}
.y9d2_c00000{bottom:15.040000pt;}
.y915_c00000{bottom:15.360000pt;}
.y9cc_c00000{bottom:16.186667pt;}
.y9fb_c00000{bottom:16.640000pt;}
.y9fa_c00000{bottom:16.800000pt;}
.ya4b_c00000{bottom:17.280000pt;}
.y962_c00000{bottom:18.400000pt;}
.y9d7_c00000{bottom:18.720000pt;}
.y971_c00000{bottom:18.760000pt;}
.y1f4_c00000{bottom:19.514667pt;}
.y1e0_c00000{bottom:19.520000pt;}
.y30b_c00000{bottom:19.546667pt;}
.y303_c00000{bottom:19.560000pt;}
.y31b_c00000{bottom:19.674667pt;}
.y2f3_c00000{bottom:19.680000pt;}
.y2ff_c00000{bottom:19.706667pt;}
.y346_c00000{bottom:19.720000pt;}
.y974_c00000{bottom:19.840000pt;}
.y8d8_c00000{bottom:20.320000pt;}
.yb26_c00000{bottom:20.480000pt;}
.y890_c00000{bottom:20.634667pt;}
.y899_c00000{bottom:20.640000pt;}
.y881_c00000{bottom:20.680000pt;}
.y94d_c00000{bottom:20.960000pt;}
.y8fe_c00000{bottom:21.146667pt;}
.ya38_c00000{bottom:21.594667pt;}
.y9ce_c00000{bottom:22.240000pt;}
.y8f4_c00000{bottom:22.400000pt;}
.ya25_c00000{bottom:22.440000pt;}
.y90b_c00000{bottom:22.600000pt;}
.y97c_c00000{bottom:22.880000pt;}
.ya45_c00000{bottom:24.186667pt;}
.y98a_c00000{bottom:24.480000pt;}
.y8c5_c00000{bottom:24.640000pt;}
.y9c7_c00000{bottom:25.160000pt;}
.y8e3_c00000{bottom:26.560000pt;}
.y8eb_c00000{bottom:26.586667pt;}
.y8e7_c00000{bottom:26.600000pt;}
.y8dd_c00000{bottom:26.720000pt;}
.y92d_c00000{bottom:27.200000pt;}
.y998_c00000{bottom:27.360000pt;}
.y8ce_c00000{bottom:27.520000pt;}
.y96a_c00000{bottom:27.680000pt;}
.y8d2_c00000{bottom:28.640000pt;}
.y8da_c00000{bottom:28.680000pt;}
.y9a3_c00000{bottom:28.800000pt;}
.y923_c00000{bottom:29.600000pt;}
.y9f1_c00000{bottom:29.760000pt;}
.y950_c00000{bottom:30.400000pt;}
.y949_c00000{bottom:30.426667pt;}
.y917_c00000{bottom:30.720000pt;}
.y8bb_c00000{bottom:30.880000pt;}
.y9d1_c00000{bottom:31.200000pt;}
.y914_c00000{bottom:31.514667pt;}
.y8b9_c00000{bottom:31.520000pt;}
.y9e3_c00000{bottom:31.840000pt;}
.y9cb_c00000{bottom:32.346667pt;}
.y9fe_c00000{bottom:32.640000pt;}
.y9f9_c00000{bottom:32.800000pt;}
.ya65_c00000{bottom:34.080000pt;}
.y961_c00000{bottom:34.560000pt;}
.y970_c00000{bottom:34.920000pt;}
.y1f3_c00000{bottom:35.514667pt;}
.y2ef_c00000{bottom:35.520000pt;}
.y321_c00000{bottom:35.546667pt;}
.y302_c00000{bottom:35.560000pt;}
.y2f5_c00000{bottom:35.674667pt;}
.y1e3_c00000{bottom:35.680000pt;}
.y2fe_c00000{bottom:35.706667pt;}
.y2fa_c00000{bottom:35.720000pt;}
.y9d8_c00000{bottom:35.840000pt;}
.y973_c00000{bottom:36.000000pt;}
.y8d7_c00000{bottom:36.480000pt;}
.y88f_c00000{bottom:36.634667pt;}
.y898_c00000{bottom:36.640000pt;}
.y880_c00000{bottom:36.680000pt;}
.y83c_c00000{bottom:36.794667pt;}
.y8a0_c00000{bottom:36.800000pt;}
.y94c_c00000{bottom:36.960000pt;}
.ya3a_c00000{bottom:37.000000pt;}
.ya2e_c00000{bottom:37.120000pt;}
.y8fd_c00000{bottom:37.146667pt;}
.y93_c00000{bottom:37.152000pt;}
.y953_c00000{bottom:37.160000pt;}
.ya37_c00000{bottom:37.594667pt;}
.y981_c00000{bottom:38.240000pt;}
.y8f3_c00000{bottom:38.400000pt;}
.ya21_c00000{bottom:38.426667pt;}
.ya1f_c00000{bottom:38.560000pt;}
.ya24_c00000{bottom:38.600000pt;}
.y90a_c00000{bottom:38.760000pt;}
.y97b_c00000{bottom:38.880000pt;}
.y9d5_c00000{bottom:39.360000pt;}
.y9ee_c00000{bottom:39.866667pt;}
.ya44_c00000{bottom:40.346667pt;}
.y989_c00000{bottom:40.640000pt;}
.y8c4_c00000{bottom:40.800000pt;}
.y9c6_c00000{bottom:41.320000pt;}
.y8c2_c00000{bottom:41.440000pt;}
.y95b_c00000{bottom:41.760000pt;}
.y9c4_c00000{bottom:42.554667pt;}
.y8dc_c00000{bottom:42.720000pt;}
.y8ea_c00000{bottom:42.746667pt;}
.y8e6_c00000{bottom:42.760000pt;}
.y938_c00000{bottom:43.040000pt;}
.y997_c00000{bottom:43.360000pt;}
.y92c_c00000{bottom:43.400000pt;}
.y8cd_c00000{bottom:43.680000pt;}
.y8d1_c00000{bottom:44.800000pt;}
.y8d9_c00000{bottom:44.840000pt;}
.y922_c00000{bottom:45.626667pt;}
.y9f0_c00000{bottom:45.920000pt;}
.ya13_c00000{bottom:46.400000pt;}
.y948_c00000{bottom:46.426667pt;}
.y94f_c00000{bottom:46.560000pt;}
.y2e2_c00000{bottom:46.592000pt;}
.y9f6_c00000{bottom:46.720000pt;}
.ya55_c00000{bottom:46.760000pt;}
.y916_c00000{bottom:46.880000pt;}
.y8ba_c00000{bottom:47.040000pt;}
.y9d0_c00000{bottom:47.360000pt;}
.y913_c00000{bottom:47.514667pt;}
.y8b8_c00000{bottom:47.680000pt;}
.y9ba_c00000{bottom:47.840000pt;}
.y9e2_c00000{bottom:48.040000pt;}
.ya73_c00000{bottom:48.320000pt;}
.y9ca_c00000{bottom:48.506667pt;}
.y9fd_c00000{bottom:48.800000pt;}
.y9f8_c00000{bottom:48.960000pt;}
.ya64_c00000{bottom:50.080000pt;}
.y960_c00000{bottom:50.720000pt;}
.y96f_c00000{bottom:50.920000pt;}
.y1f2_c00000{bottom:51.674667pt;}
.y1ec_c00000{bottom:51.680000pt;}
.y34a_c00000{bottom:51.706667pt;}
.y2f9_c00000{bottom:51.720000pt;}
.y2f4_c00000{bottom:51.834667pt;}
.y1e6_c00000{bottom:51.840000pt;}
.y315_c00000{bottom:51.866667pt;}
.y318_c00000{bottom:51.880000pt;}
.y972_c00000{bottom:52.000000pt;}
.y8d6_c00000{bottom:52.480000pt;}
.y83a_c00000{bottom:52.794667pt;}
.y897_c00000{bottom:52.800000pt;}
.y87f_c00000{bottom:52.840000pt;}
.y94b_c00000{bottom:53.120000pt;}
.y952_c00000{bottom:53.160000pt;}
.y8cb_c00000{bottom:53.440000pt;}
.ya36_c00000{bottom:53.754667pt;}
.yb25_c00000{bottom:53.760000pt;}
.y9cd_c00000{bottom:54.400000pt;}
.y980_c00000{bottom:54.426667pt;}
.y8f2_c00000{bottom:54.560000pt;}
.y968_c00000{bottom:54.760000pt;}
.y97a_c00000{bottom:55.066667pt;}
.y9d4_c00000{bottom:55.560000pt;}
.y9ed_c00000{bottom:56.026667pt;}
.y8c1_c00000{bottom:57.600000pt;}
.y95a_c00000{bottom:57.920000pt;}
.y9c3_c00000{bottom:58.714667pt;}
.ya09_c00000{bottom:58.720000pt;}
.y937_c00000{bottom:59.040000pt;}
.y8d0_c00000{bottom:60.800000pt;}
.y9df_c00000{bottom:60.960000pt;}
.y995_c00000{bottom:61.600000pt;}
.y9ef_c00000{bottom:61.920000pt;}
.y9f5_c00000{bottom:62.920000pt;}
.y912_c00000{bottom:63.674667pt;}
.y8b7_c00000{bottom:63.720000pt;}
.y9b9_c00000{bottom:64.000000pt;}
.y9e1_c00000{bottom:64.200000pt;}
.ya12_c00000{bottom:64.480000pt;}
.ya63_c00000{bottom:66.240000pt;}
.y9ea_c00000{bottom:66.720000pt;}
.y95f_c00000{bottom:66.746667pt;}
.y92_c00000{bottom:67.072000pt;}
.y96e_c00000{bottom:67.080000pt;}
.y1f1_c00000{bottom:67.834667pt;}
.y1eb_c00000{bottom:67.840000pt;}
.y314_c00000{bottom:67.866667pt;}
.y30e_c00000{bottom:67.880000pt;}
.y353_c00000{bottom:68.000000pt;}
.y32a_c00000{bottom:68.026667pt;}
.y380_c00000{bottom:68.480000pt;}
.y8d5_c00000{bottom:68.680000pt;}
.y88e_c00000{bottom:68.794667pt;}
.yb23_c00000{bottom:68.800000pt;}
.y839_c00000{bottom:68.954667pt;}
.yb1e_c00000{bottom:68.960000pt;}
.y896_c00000{bottom:69.000000pt;}
.y8ca_c00000{bottom:69.600000pt;}
.ya35_c00000{bottom:69.914667pt;}
.y89f_c00000{bottom:69.946667pt;}
.y87e_c00000{bottom:69.960000pt;}
.ya7b_c00000{bottom:70.120000pt;}
.y97f_c00000{bottom:70.426667pt;}
.y985_c00000{bottom:70.720000pt;}
.y967_c00000{bottom:70.920000pt;}
.y979_c00000{bottom:71.226667pt;}
.y9d3_c00000{bottom:71.560000pt;}
.y9ec_c00000{bottom:72.186667pt;}
.y8c0_c00000{bottom:73.600000pt;}
.y959_c00000{bottom:73.920000pt;}
.ya08_c00000{bottom:74.880000pt;}
.y9c2_c00000{bottom:74.914667pt;}
.y936_c00000{bottom:75.200000pt;}
.y9de_c00000{bottom:76.960000pt;}
.y994_c00000{bottom:77.600000pt;}
.y9f4_c00000{bottom:79.080000pt;}
.y911_c00000{bottom:79.834667pt;}
.y8b6_c00000{bottom:79.880000pt;}
.y9b8_c00000{bottom:80.000000pt;}
.ya72_c00000{bottom:80.480000pt;}
.ya11_c00000{bottom:80.680000pt;}
.y9e9_c00000{bottom:82.880000pt;}
.y95e_c00000{bottom:82.906667pt;}
.y1f0_c00000{bottom:83.834667pt;}
.y1ea_c00000{bottom:83.840000pt;}
.y359_c00000{bottom:83.866667pt;}
.y341_c00000{bottom:83.880000pt;}
.y360_c00000{bottom:83.994667pt;}
.y33c_c00000{bottom:84.000000pt;}
.y329_c00000{bottom:84.026667pt;}
.y384_c00000{bottom:84.034667pt;}
.y388_c00000{bottom:84.040000pt;}
.ya6f_c00000{bottom:84.320000pt;}
.y8d4_c00000{bottom:84.680000pt;}
.y838_c00000{bottom:84.994667pt;}
.y895_c00000{bottom:85.000000pt;}
.y8c9_c00000{bottom:85.600000pt;}
.yb1d_c00000{bottom:85.920000pt;}
.ya34_c00000{bottom:85.954667pt;}
.y87d_c00000{bottom:85.960000pt;}
.y89e_c00000{bottom:86.106667pt;}
.ya7a_c00000{bottom:86.280000pt;}
.y984_c00000{bottom:86.720000pt;}
.y966_c00000{bottom:86.920000pt;}
.ya71_c00000{bottom:87.066667pt;}
.y978_c00000{bottom:87.226667pt;}
.y8bf_c00000{bottom:89.760000pt;}
.y958_c00000{bottom:90.080000pt;}
.y9c1_c00000{bottom:90.914667pt;}
.ya07_c00000{bottom:91.080000pt;}
.y935_c00000{bottom:91.200000pt;}
.ya62_c00000{bottom:91.560000pt;}
.ya69_c00000{bottom:92.520000pt;}
.y9dd_c00000{bottom:93.120000pt;}
.y993_c00000{bottom:93.760000pt;}
.y9f3_c00000{bottom:95.080000pt;}
.y9a2_c00000{bottom:95.234667pt;}
.y8b5_c00000{bottom:96.040000pt;}
.ya10_c00000{bottom:96.840000pt;}
.y15a_c00000{bottom:97.632000pt;}
.y606_c00000{bottom:97.792000pt;}
.y595_c00000{bottom:98.272000pt;}
.y3d4_c00000{bottom:98.432000pt;}
.y95d_c00000{bottom:98.906667pt;}
.y605_c00000{bottom:98.912000pt;}
.y9e8_c00000{bottom:99.040000pt;}
.y1ae_c00000{bottom:99.232000pt;}
.y707_c00000{bottom:99.392000pt;}
.y1ef_c00000{bottom:99.994667pt;}
.y1e9_c00000{bottom:100.000000pt;}
.y358_c00000{bottom:100.026667pt;}
.y383_c00000{bottom:100.034667pt;}
.y356_c00000{bottom:100.040000pt;}
.y352_c00000{bottom:100.160000pt;}
.y4e2_c00000{bottom:100.192000pt;}
.y755_c00000{bottom:100.194667pt;}
.y33b_c00000{bottom:100.200000pt;}
.ya6e_c00000{bottom:100.480000pt;}
.y492_c00000{bottom:100.512000pt;}
.y8d3_c00000{bottom:100.840000pt;}
.y859_c00000{bottom:100.994667pt;}
.y803_c00000{bottom:101.152000pt;}
.y837_c00000{bottom:101.154667pt;}
.y7cd_c00000{bottom:101.632000pt;}
.y8c8_c00000{bottom:101.760000pt;}
.yafa_c00000{bottom:101.792000pt;}
.yb1c_c00000{bottom:102.080000pt;}
.ya33_c00000{bottom:102.114667pt;}
.y87c_c00000{bottom:102.120000pt;}
.y89d_c00000{bottom:102.266667pt;}
.ya79_c00000{bottom:102.280000pt;}
.yb56_c00000{bottom:102.592000pt;}
.y6f0_c00000{bottom:102.752000pt;}
.y983_c00000{bottom:102.880000pt;}
.y398_c00000{bottom:102.912000pt;}
.ya70_c00000{bottom:103.066667pt;}
.y965_c00000{bottom:103.080000pt;}
.y90_c00000{bottom:103.232000pt;}
.y977_c00000{bottom:103.386667pt;}
.y770_c00000{bottom:103.552000pt;}
.y6f8_c00000{bottom:103.872000pt;}
.y422_c00000{bottom:104.192000pt;}
.y565_c00000{bottom:104.672000pt;}
.y64b_c00000{bottom:104.992000pt;}
.y57e_c00000{bottom:105.152000pt;}
.y80c_c00000{bottom:105.792000pt;}
.y8be_c00000{bottom:105.920000pt;}
.yb0f_c00000{bottom:105.952000pt;}
.y957_c00000{bottom:106.080000pt;}
.yad0_c00000{bottom:106.272000pt;}
.y2c7_c00000{bottom:106.432000pt;}
.y4fe_c00000{bottom:106.592000pt;}
.y9c0_c00000{bottom:107.074667pt;}
.yfc_c00000{bottom:107.232000pt;}
.y934_c00000{bottom:107.360000pt;}
.y703_c00000{bottom:107.392000pt;}
.ya06_c00000{bottom:107.706667pt;}
.yb76_c00000{bottom:107.712000pt;}
.ya61_c00000{bottom:107.720000pt;}
.y56c_c00000{bottom:107.872000pt;}
.yc9_c00000{bottom:108.352000pt;}
.ya68_c00000{bottom:108.680000pt;}
.y9dc_c00000{bottom:109.120000pt;}
.y6e4_c00000{bottom:109.632000pt;}
.y992_c00000{bottom:109.760000pt;}
.y240_c00000{bottom:109.792000pt;}
.y3f3_c00000{bottom:110.112000pt;}
.y477_c00000{bottom:110.272000pt;}
.y946_c00000{bottom:110.440000pt;}
.yad_c00000{bottom:111.232000pt;}
.y9a1_c00000{bottom:111.234667pt;}
.y9f2_c00000{bottom:111.240000pt;}
.y4aa_c00000{bottom:111.552000pt;}
.y22f_c00000{bottom:111.712000pt;}
.y8ac_c00000{bottom:111.872000pt;}
.y1d9_c00000{bottom:112.032000pt;}
.y8b4_c00000{bottom:112.040000pt;}
.y26a_c00000{bottom:112.512000pt;}
.y144_c00000{bottom:112.672000pt;}
.y70a_c00000{bottom:112.832000pt;}
.ya0f_c00000{bottom:112.840000pt;}
.y159_c00000{bottom:112.992000pt;}
.y51b_c00000{bottom:113.152000pt;}
.y2bd_c00000{bottom:113.472000pt;}
.ya87_c00000{bottom:113.792000pt;}
.y41_c00000{bottom:113.931520pt;}
.y8f7_c00000{bottom:114.112000pt;}
.yb89_c00000{bottom:114.272000pt;}
.ye4_c00000{bottom:114.432000pt;}
.yb30_c00000{bottom:114.752000pt;}
.y33a_c00000{bottom:114.912000pt;}
.y9e7_c00000{bottom:115.066667pt;}
.y285_c00000{bottom:115.232000pt;}
.y45c_c00000{bottom:115.392000pt;}
.y306_c00000{bottom:115.552000pt;}
.y50d_c00000{bottom:115.872000pt;}
.y85c_c00000{bottom:116.000000pt;}
.y748_c00000{bottom:116.040000pt;}
.y34c_c00000{bottom:116.160000pt;}
.y357_c00000{bottom:116.186667pt;}
.y31a_c00000{bottom:116.192000pt;}
.y1ee_c00000{bottom:116.194667pt;}
.y366_c00000{bottom:116.200000pt;}
.y706_c00000{bottom:116.352000pt;}
.ya6d_c00000{bottom:116.480000pt;}
.y910_c00000{bottom:116.672000pt;}
.y7d7_c00000{bottom:116.832000pt;}
.y32d_c00000{bottom:116.992000pt;}
.y4e1_c00000{bottom:117.152000pt;}
.y858_c00000{bottom:117.154667pt;}
.y3d7_c00000{bottom:117.312000pt;}
.y83b_c00000{bottom:117.314667pt;}
.y34e_c00000{bottom:117.632000pt;}
.y8c7_c00000{bottom:117.920000pt;}
.y6e3_c00000{bottom:118.112000pt;}
.yb22_c00000{bottom:118.240000pt;}
.y88d_c00000{bottom:118.274667pt;}
.y87b_c00000{bottom:118.280000pt;}
.ya78_c00000{bottom:118.440000pt;}
.y64d_c00000{bottom:118.592000pt;}
.y192_c00000{bottom:118.912000pt;}
.y597_c00000{bottom:119.072000pt;}
.y964_c00000{bottom:119.080000pt;}
.yb1b_c00000{bottom:119.200000pt;}
.y89c_c00000{bottom:119.226667pt;}
.yb55_c00000{bottom:119.392000pt;}
.y976_c00000{bottom:119.546667pt;}
.y8df_c00000{bottom:119.552000pt;}
.y50e_c00000{bottom:120.192000pt;}
.y10e_c00000{bottom:120.512000pt;}
.y6c1_c00000{bottom:120.672000pt;}
.y4bf_c00000{bottom:121.152000pt;}
.y46c_c00000{bottom:121.312000pt;}
.ya1c_c00000{bottom:121.760000pt;}
.yb9c_c00000{bottom:121.792000pt;}
.y8f_c00000{bottom:121.952000pt;}
.y956_c00000{bottom:122.280000pt;}
.y9a5_c00000{bottom:122.912000pt;}
.y821_c00000{bottom:123.072000pt;}
.y2c6_c00000{bottom:123.232000pt;}
.y67b_c00000{bottom:123.392000pt;}
.yb75_c00000{bottom:123.712000pt;}
.ya60_c00000{bottom:123.720000pt;}
.ya05_c00000{bottom:123.866667pt;}
.y65f_c00000{bottom:124.352000pt;}
.ya67_c00000{bottom:124.680000pt;}
.y2e0_c00000{bottom:124.832000pt;}
.y9db_c00000{bottom:125.320000pt;}
.y594_c00000{bottom:125.792000pt;}
.y3d3_c00000{bottom:125.952000pt;}
.y991_c00000{bottom:125.960000pt;}
.y2e8_c00000{bottom:126.112000pt;}
.y69a_c00000{bottom:126.272000pt;}
.y724_c00000{bottom:126.432000pt;}
.y433_c00000{bottom:126.592000pt;}
.y945_c00000{bottom:126.600000pt;}
.y835_c00000{bottom:126.752000pt;}
.y476_c00000{bottom:127.072000pt;}
.y1ed_c00000{bottom:127.232000pt;}
.y5fa_c00000{bottom:127.392000pt;}
.y9a0_c00000{bottom:127.394667pt;}
.y1e_c00000{bottom:127.552000pt;}
.y196_c00000{bottom:128.032000pt;}
.y569_c00000{bottom:128.192000pt;}
.y158_c00000{bottom:128.352000pt;}
.y176_c00000{bottom:128.512000pt;}
.y397_c00000{bottom:128.672000pt;}
.y802_c00000{bottom:128.832000pt;}
.ya0e_c00000{bottom:129.000000pt;}
.y1c9_c00000{bottom:129.152000pt;}
.y9bf_c00000{bottom:129.312000pt;}
.y269_c00000{bottom:129.472000pt;}
.y882_c00000{bottom:129.632000pt;}
.y4b4_c00000{bottom:129.952000pt;}
.y564_c00000{bottom:130.112000pt;}
.y3b4_c00000{bottom:130.272000pt;}
.y5bf_c00000{bottom:130.432000pt;}
.y40_c00000{bottom:130.727040pt;}
.y99b_c00000{bottom:130.912000pt;}
.y76f_c00000{bottom:131.072000pt;}
.y9e6_c00000{bottom:131.226667pt;}
.y709_c00000{bottom:131.232000pt;}
.y347_c00000{bottom:131.712000pt;}
.y421_c00000{bottom:131.872000pt;}
.y85b_c00000{bottom:132.160000pt;}
.y371_c00000{bottom:132.186667pt;}
.y284_c00000{bottom:132.192000pt;}
.y365_c00000{bottom:132.200000pt;}
.y351_c00000{bottom:132.320000pt;}
.y34b_c00000{bottom:132.346667pt;}
.y304_c00000{bottom:132.352000pt;}
.y754_c00000{bottom:132.354667pt;}
.y378_c00000{bottom:132.360000pt;}
.ya6c_c00000{bottom:132.640000pt;}
.y57d_c00000{bottom:132.672000pt;}
.y5e6_c00000{bottom:132.832000pt;}
.y1ad_c00000{bottom:132.992000pt;}
.y705_c00000{bottom:133.152000pt;}
.y80b_c00000{bottom:133.312000pt;}
.y836_c00000{bottom:133.314667pt;}
.y143_c00000{bottom:133.786667pt;}
.y4e0_c00000{bottom:133.946667pt;}
.y44e_c00000{bottom:134.106667pt;}
.y491_c00000{bottom:134.266667pt;}
.y857_c00000{bottom:134.274667pt;}
.y87a_c00000{bottom:134.280000pt;}
.y215_c00000{bottom:134.426667pt;}
.ya77_c00000{bottom:134.440000pt;}
.y533_c00000{bottom:134.906667pt;}
.yb21_c00000{bottom:135.240000pt;}
.y89b_c00000{bottom:135.386667pt;}
.y975_c00000{bottom:135.546667pt;}
.y969_c00000{bottom:135.706667pt;}
.yc8_c00000{bottom:135.866667pt;}
.yb54_c00000{bottom:136.346667pt;}
.yb07_c00000{bottom:136.506667pt;}
.y124_c00000{bottom:136.826667pt;}
.y928_c00000{bottom:137.146667pt;}
.y23f_c00000{bottom:137.306667pt;}
.yb0e_c00000{bottom:137.466667pt;}
.y3f2_c00000{bottom:137.626667pt;}
.ya1b_c00000{bottom:137.946667pt;}
.yb60_c00000{bottom:138.106667pt;}
.yb9b_c00000{bottom:138.586667pt;}
.yac_c00000{bottom:138.746667pt;}
.yae9_c00000{bottom:138.906667pt;}
.yac3_c00000{bottom:139.066667pt;}
.y4a9_c00000{bottom:139.226667pt;}
.y1d8_c00000{bottom:139.546667pt;}
.ya5f_c00000{bottom:139.880000pt;}
.ya04_c00000{bottom:140.026667pt;}
.y2c5_c00000{bottom:140.186667pt;}
.y8e_c00000{bottom:140.346667pt;}
.y51a_c00000{bottom:140.666667pt;}
.ya66_c00000{bottom:140.840000pt;}
.y2bc_c00000{bottom:141.146667pt;}
.y9da_c00000{bottom:141.480000pt;}
.y56b_c00000{bottom:141.626667pt;}
.y8a4_c00000{bottom:141.786667pt;}
.y7ed_c00000{bottom:141.946667pt;}
.y990_c00000{bottom:142.120000pt;}
.y6b9_c00000{bottom:142.266667pt;}
.y4d5_c00000{bottom:142.746667pt;}
.y944_c00000{bottom:142.760000pt;}
.y45b_c00000{bottom:142.906667pt;}
.y699_c00000{bottom:143.066667pt;}
.y749_c00000{bottom:143.226667pt;}
.y50c_c00000{bottom:143.386667pt;}
.y99f_c00000{bottom:143.394667pt;}
.ye3_c00000{bottom:143.546667pt;}
.y157_c00000{bottom:143.706667pt;}
.y475_c00000{bottom:144.026667pt;}
.y7d6_c00000{bottom:144.346667pt;}
.y2a1_c00000{bottom:144.506667pt;}
.y5b0_c00000{bottom:144.986667pt;}
.ya0d_c00000{bottom:145.000000pt;}
.y7ae_c00000{bottom:145.146667pt;}
.y6e2_c00000{bottom:145.626667pt;}
.y40c_c00000{bottom:145.946667pt;}
.y67c_c00000{bottom:146.106667pt;}
.y268_c00000{bottom:146.266667pt;}
.y195_c00000{bottom:146.426667pt;}
.y191_c00000{bottom:146.586667pt;}
.y57f_c00000{bottom:146.746667pt;}
.y9e5_c00000{bottom:147.386667pt;}
.y3f_c00000{bottom:147.684480pt;}
.yaa7_c00000{bottom:147.866667pt;}
.yab9_c00000{bottom:148.026667pt;}
.yfb_c00000{bottom:148.186667pt;}
.y751_c00000{bottom:148.320000pt;}
.y364_c00000{bottom:148.360000pt;}
.y833_c00000{bottom:148.480000pt;}
.y22e_c00000{bottom:148.506667pt;}
.y753_c00000{bottom:148.514667pt;}
.y62f_c00000{bottom:148.666667pt;}
.y46b_c00000{bottom:148.826667pt;}
.y1d_c00000{bottom:148.986667pt;}
.y319_c00000{bottom:149.146667pt;}
.y4b3_c00000{bottom:149.306667pt;}
.y616_c00000{bottom:149.466667pt;}
.y10d_c00000{bottom:149.626667pt;}
.y382_c00000{bottom:149.634667pt;}
.y1d4_c00000{bottom:149.786667pt;}
.y704_c00000{bottom:149.946667pt;}
.y3d6_c00000{bottom:150.106667pt;}
.y36c_c00000{bottom:150.426667pt;}
.y856_c00000{bottom:150.434667pt;}
.y879_c00000{bottom:150.440000pt;}
.ya86_c00000{bottom:150.586667pt;}
.ya76_c00000{bottom:150.600000pt;}
.y4df_c00000{bottom:150.906667pt;}
.y490_c00000{bottom:151.066667pt;}
.y5e5_c00000{bottom:151.226667pt;}
.y142_c00000{bottom:151.386667pt;}
.yb06_c00000{bottom:151.866667pt;}
.yb37_c00000{bottom:152.346667pt;}
.y2df_c00000{bottom:152.506667pt;}
.yabc_c00000{bottom:152.666667pt;}
.y8f1_c00000{bottom:153.154667pt;}
.y593_c00000{bottom:153.466667pt;}
.y3d2_c00000{bottom:153.626667pt;}
.y71a_c00000{bottom:153.786667pt;}
.ya1a_c00000{bottom:153.946667pt;}
.y5a8_c00000{bottom:154.106667pt;}
.y77f_c00000{bottom:154.586667pt;}
.y5f9_c00000{bottom:154.906667pt;}
.yb9a_c00000{bottom:155.386667pt;}
.y568_c00000{bottom:155.706667pt;}
.y9b0_c00000{bottom:155.866667pt;}
.ya03_c00000{bottom:156.026667pt;}
.ya5e_c00000{bottom:156.040000pt;}
.y175_c00000{bottom:156.186667pt;}
.y801_c00000{bottom:156.346667pt;}
.ya43_c00000{bottom:156.514667pt;}
.y3b3_c00000{bottom:156.666667pt;}
.y988_c00000{bottom:156.826667pt;}
.y2c4_c00000{bottom:156.986667pt;}
.y54b_c00000{bottom:157.146667pt;}
.yb6c_c00000{bottom:157.306667pt;}
.y5be_c00000{bottom:157.946667pt;}
.y98f_c00000{bottom:158.120000pt;}
.y65e_c00000{bottom:158.426667pt;}
.y56a_c00000{bottom:158.586667pt;}
.y8d_c00000{bottom:158.746667pt;}
.y943_c00000{bottom:158.760000pt;}
.y1c8_c00000{bottom:159.066667pt;}
.y6c0_c00000{bottom:159.226667pt;}
.y396_c00000{bottom:159.386667pt;}
.y99e_c00000{bottom:159.554667pt;}
.y820_c00000{bottom:159.706667pt;}
.y40f_c00000{bottom:159.866667pt;}
.y698_c00000{bottom:160.026667pt;}
.y622_c00000{bottom:160.186667pt;}
.y57c_c00000{bottom:160.346667pt;}
.y474_c00000{bottom:160.826667pt;}
.y79c_c00000{bottom:160.986667pt;}
.ya0c_c00000{bottom:161.160000pt;}
.y4c3_c00000{bottom:161.306667pt;}
.yacf_c00000{bottom:161.466667pt;}
.y44d_c00000{bottom:161.626667pt;}
.y4fd_c00000{bottom:161.786667pt;}
.y532_c00000{bottom:162.586667pt;}
.y267_c00000{bottom:163.066667pt;}
.yb92_c00000{bottom:163.386667pt;}
.yc7_c00000{bottom:163.546667pt;}
.y339_c00000{bottom:163.866667pt;}
.yb0d_c00000{bottom:164.186667pt;}
.y363_c00000{bottom:164.360000pt;}
.y3e_c00000{bottom:164.480000pt;}
.y311_c00000{bottom:164.506667pt;}
.y377_c00000{bottom:164.520000pt;}
.y194_c00000{bottom:164.666667pt;}
.y23e_c00000{bottom:164.826667pt;}
.y156_c00000{bottom:165.146667pt;}
.y3f1_c00000{bottom:165.306667pt;}
.y381_c00000{bottom:165.794667pt;}
.y283_c00000{bottom:165.946667pt;}
.ya74_c00000{bottom:166.266667pt;}
.yab_c00000{bottom:166.426667pt;}
.y34d_c00000{bottom:166.586667pt;}
.y877_c00000{bottom:166.594667pt;}
.y4a8_c00000{bottom:166.746667pt;}
.y61a_c00000{bottom:167.066667pt;}
.y1d7_c00000{bottom:167.226667pt;}
.y855_c00000{bottom:167.394667pt;}
.y89a_c00000{bottom:167.546667pt;}
.y894_c00000{bottom:167.560000pt;}
.y4de_c00000{bottom:167.706667pt;}
.y6a6_c00000{bottom:167.866667pt;}
.y48f_c00000{bottom:168.026667pt;}
.y519_c00000{bottom:168.346667pt;}
.y8f6_c00000{bottom:168.506667pt;}
.y2bb_c00000{bottom:168.666667pt;}
.y141_c00000{bottom:168.986667pt;}
.yb36_c00000{bottom:169.306667pt;}
.y8f0_c00000{bottom:169.314667pt;}
.y7ec_c00000{bottom:169.466667pt;}
.y5e4_c00000{bottom:169.626667pt;}
.yb2f_c00000{bottom:169.946667pt;}
.ya19_c00000{bottom:170.106667pt;}
.y4d4_c00000{bottom:170.266667pt;}
.y1c_c00000{bottom:170.426667pt;}
.y45a_c00000{bottom:170.586667pt;}
.yad9_c00000{bottom:170.746667pt;}
.y50b_c00000{bottom:171.066667pt;}
.ya4e_c00000{bottom:171.226667pt;}
.y1ac_c00000{bottom:171.546667pt;}
.y93d_c00000{bottom:171.706667pt;}
.y7d5_c00000{bottom:172.026667pt;}
.ya5d_c00000{bottom:172.040000pt;}
.ya02_c00000{bottom:172.186667pt;}
.y929_c00000{bottom:172.346667pt;}
.y5af_c00000{bottom:172.506667pt;}
.ya42_c00000{bottom:172.514667pt;}
.ye2_c00000{bottom:172.826667pt;}
.y6b8_c00000{bottom:172.986667pt;}
.y6e1_c00000{bottom:173.306667pt;}
.y40b_c00000{bottom:173.466667pt;}
.y2c3_c00000{bottom:173.786667pt;}
.y7b7_c00000{bottom:173.946667pt;}
.y190_c00000{bottom:174.106667pt;}
.y1d3_c00000{bottom:174.266667pt;}
.y98e_c00000{bottom:174.280000pt;}
.y6c7_c00000{bottom:174.426667pt;}
.y81a_c00000{bottom:174.746667pt;}
.y942_c00000{bottom:174.920000pt;}
.y155_c00000{bottom:175.066667pt;}
.y6a7_c00000{bottom:175.226667pt;}
.y3d5_c00000{bottom:175.386667pt;}
.yab8_c00000{bottom:175.706667pt;}
.y99d_c00000{bottom:175.714667pt;}
.y73c_c00000{bottom:176.186667pt;}
.y4be_c00000{bottom:176.346667pt;}
.y46a_c00000{bottom:176.506667pt;}
.y697_c00000{bottom:176.826667pt;}
.y8c_c00000{bottom:177.146667pt;}
.ya0b_c00000{bottom:177.320000pt;}
.y473_c00000{bottom:177.626667pt;}
.y123_c00000{bottom:177.786667pt;}
.yb74_c00000{bottom:178.106667pt;}
.y67a_c00000{bottom:178.266667pt;}
.y10c_c00000{bottom:178.746667pt;}
.y9a4_c00000{bottom:179.866667pt;}
.y266_c00000{bottom:180.026667pt;}
.yac0_c00000{bottom:180.186667pt;}
.y1c7_c00000{bottom:180.346667pt;}
.y6c3_c00000{bottom:180.506667pt;}
.y362_c00000{bottom:180.520000pt;}
.y788_c00000{bottom:180.666667pt;}
.y750_c00000{bottom:180.680000pt;}
.y592_c00000{bottom:180.986667pt;}
.y3d1_c00000{bottom:181.146667pt;}
.y3d_c00000{bottom:181.296640pt;}
.y34f_c00000{bottom:181.306667pt;}
.y719_c00000{bottom:181.466667pt;}
.y604_c00000{bottom:181.626667pt;}
.y5a7_c00000{bottom:181.786667pt;}
.y317_c00000{bottom:181.946667pt;}
.y77e_c00000{bottom:182.266667pt;}
.y5f8_c00000{bottom:182.426667pt;}
.yb05_c00000{bottom:182.586667pt;}
.y876_c00000{bottom:182.594667pt;}
.y282_c00000{bottom:182.746667pt;}
.y2a0_c00000{bottom:183.226667pt;}
.y35e_c00000{bottom:183.386667pt;}
.y854_c00000{bottom:183.554667pt;}
.y893_c00000{bottom:183.560000pt;}
.y174_c00000{bottom:183.706667pt;}
.y800_c00000{bottom:184.026667pt;}
.y3b2_c00000{bottom:184.186667pt;}
.y4dd_c00000{bottom:184.506667pt;}
.y54a_c00000{bottom:184.666667pt;}
.y432_c00000{bottom:184.826667pt;}
.y22d_c00000{bottom:185.306667pt;}
.y8ef_c00000{bottom:185.314667pt;}
.y6ef_c00000{bottom:185.466667pt;}
.y5bd_c00000{bottom:185.626667pt;}
.y927_c00000{bottom:186.106667pt;}
.y76e_c00000{bottom:186.266667pt;}
.ya15_c00000{bottom:186.586667pt;}
.y420_c00000{bottom:187.066667pt;}
.ya85_c00000{bottom:187.386667pt;}
.y57b_c00000{bottom:187.866667pt;}
.yfa_c00000{bottom:188.026667pt;}
.y4b2_c00000{bottom:188.186667pt;}
.ya5c_c00000{bottom:188.200000pt;}
.y80a_c00000{bottom:188.506667pt;}
.y79b_c00000{bottom:188.666667pt;}
.ya41_c00000{bottom:188.674667pt;}
.yace_c00000{bottom:189.146667pt;}
.y44c_c00000{bottom:189.306667pt;}
.y4fc_c00000{bottom:189.466667pt;}
.y1f8_c00000{bottom:189.626667pt;}
.y6c6_c00000{bottom:189.786667pt;}
.y531_c00000{bottom:190.106667pt;}
.yb53_c00000{bottom:190.266667pt;}
.y98d_c00000{bottom:190.280000pt;}
.y1c6_c00000{bottom:190.426667pt;}
.y6c2_c00000{bottom:190.586667pt;}
.y2c2_c00000{bottom:190.746667pt;}
.ya23_c00000{bottom:190.906667pt;}
.yc6_c00000{bottom:191.066667pt;}
.y941_c00000{bottom:191.080000pt;}
.y563_c00000{bottom:191.386667pt;}
.y99c_c00000{bottom:191.714667pt;}
.y1b_c00000{bottom:191.866667pt;}
.y65d_c00000{bottom:192.186667pt;}
.y23d_c00000{bottom:192.506667pt;}
.y963_c00000{bottom:192.666667pt;}
.y3f0_c00000{bottom:192.826667pt;}
.ya0a_c00000{bottom:193.320000pt;}
.y7cc_c00000{bottom:193.626667pt;}
.y696_c00000{bottom:193.786667pt;}
.yaa_c00000{bottom:193.946667pt;}
.y4c2_c00000{bottom:194.106667pt;}
.y4a7_c00000{bottom:194.426667pt;}
.y1d6_c00000{bottom:194.746667pt;}
.y9c5_c00000{bottom:195.066667pt;}
.y140_c00000{bottom:195.386667pt;}
.y8b_c00000{bottom:195.546667pt;}
.y1d2_c00000{bottom:195.706667pt;}
.y518_c00000{bottom:195.866667pt;}
.y2ba_c00000{bottom:196.346667pt;}
.y81f_c00000{bottom:196.506667pt;}
.y345_c00000{bottom:196.666667pt;}
.y747_c00000{bottom:196.680000pt;}
.y265_c00000{bottom:196.826667pt;}
.y832_c00000{bottom:196.840000pt;}
.ya6b_c00000{bottom:196.986667pt;}
.y7eb_c00000{bottom:197.146667pt;}
.y301_c00000{bottom:197.466667pt;}
.y787_c00000{bottom:197.626667pt;}
.yb04_c00000{bottom:197.786667pt;}
.y395_c00000{bottom:197.946667pt;}
.y33f_c00000{bottom:198.106667pt;}
.y3c_c00000{bottom:198.254080pt;}
.y80f_c00000{bottom:198.266667pt;}
.yaa6_c00000{bottom:198.426667pt;}
.y50a_c00000{bottom:198.586667pt;}
.y372_c00000{bottom:198.746667pt;}
.y875_c00000{bottom:198.754667pt;}
.yb5f_c00000{bottom:199.386667pt;}
.y281_c00000{bottom:199.546667pt;}
.y853_c00000{bottom:199.714667pt;}
.y892_c00000{bottom:199.720000pt;}
.y5ae_c00000{bottom:200.186667pt;}
.ye1_c00000{bottom:200.346667pt;}
.y6e0_c00000{bottom:200.826667pt;}
.y40a_c00000{bottom:201.146667pt;}
.y5b_c00000{bottom:201.306667pt;}
.y4dc_c00000{bottom:201.466667pt;}
.y8ee_c00000{bottom:201.474667pt;}
.y18f_c00000{bottom:201.626667pt;}
.y193_c00000{bottom:201.786667pt;}
.ya18_c00000{bottom:202.266667pt;}
.y472_c00000{bottom:202.906667pt;}
.yab7_c00000{bottom:203.226667pt;}
.y6b7_c00000{bottom:203.706667pt;}
.y62e_c00000{bottom:203.866667pt;}
.y469_c00000{bottom:204.026667pt;}
.y431_c00000{bottom:204.186667pt;}
.ya5b_c00000{bottom:204.200000pt;}
.ya01_c00000{bottom:204.346667pt;}
.y615_c00000{bottom:204.666667pt;}
.y7c0_c00000{bottom:204.706667pt;}
.y830_c00000{bottom:204.826667pt;}
.ya40_c00000{bottom:204.834667pt;}
.y9af_c00000{bottom:204.866667pt;}
.y1d1_c00000{bottom:204.986667pt;}
.y29e_c00000{bottom:205.786667pt;}
.yb99_c00000{bottom:206.106667pt;}
.y679_c00000{bottom:206.266667pt;}
.y940_c00000{bottom:207.106667pt;}
.y2f2_c00000{bottom:207.266667pt;}
.y2c1_c00000{bottom:207.546667pt;}
.yb35_c00000{bottom:207.866667pt;}
.y10b_c00000{bottom:208.026667pt;}
.ya49_c00000{bottom:208.226667pt;}
.y591_c00000{bottom:208.666667pt;}
.y3d0_c00000{bottom:208.826667pt;}
.y65c_c00000{bottom:208.986667pt;}
.y5a6_c00000{bottom:209.306667pt;}
.y77d_c00000{bottom:209.786667pt;}
.y920_c00000{bottom:209.794667pt;}
.y902_c00000{bottom:209.826667pt;}
.y5f7_c00000{bottom:210.106667pt;}
.y1ab_c00000{bottom:210.266667pt;}
.y695_c00000{bottom:210.586667pt;}
.y982_c00000{bottom:210.786667pt;}
.y29f_c00000{bottom:210.906667pt;}
.y781_c00000{bottom:211.066667pt;}
.y173_c00000{bottom:211.386667pt;}
.y7ff_c00000{bottom:211.546667pt;}
.y9f7_c00000{bottom:211.586667pt;}
.y3b1_c00000{bottom:211.866667pt;}
.yaf9_c00000{bottom:212.026667pt;}
.y901_c00000{bottom:212.066667pt;}
.y549_c00000{bottom:212.346667pt;}
.y757_c00000{bottom:212.680000pt;}
.y746_c00000{bottom:212.706667pt;}
.y74f_c00000{bottom:212.840000pt;}
.y338_c00000{bottom:212.866667pt;}
.y5bc_c00000{bottom:213.146667pt;}
.y1a_c00000{bottom:213.306667pt;}
.y4c1_c00000{bottom:213.466667pt;}
.y310_c00000{bottom:213.506667pt;}
.y264_c00000{bottom:213.786667pt;}
.y8a_c00000{bottom:213.946667pt;}
.y33d_c00000{bottom:214.146667pt;}
.y786_c00000{bottom:214.426667pt;}
.y41f_c00000{bottom:214.586667pt;}
.yb5e_c00000{bottom:214.746667pt;}
.y7d4_c00000{bottom:214.906667pt;}
.y374_c00000{bottom:214.946667pt;}
.y3b_c00000{bottom:215.049600pt;}
.y154_c00000{bottom:215.226667pt;}
.y5e3_c00000{bottom:215.386667pt;}
.y36b_c00000{bottom:215.586667pt;}
.y874_c00000{bottom:215.874667pt;}
.yf9_c00000{bottom:216.026667pt;}
.y79a_c00000{bottom:216.186667pt;}
.yacd_c00000{bottom:216.666667pt;}
.y852_c00000{bottom:216.674667pt;}
.y44b_c00000{bottom:216.826667pt;}
.y4fb_c00000{bottom:216.986667pt;}
.y8ed_c00000{bottom:217.474667pt;}
.y8fb_c00000{bottom:217.634667pt;}
.y530_c00000{bottom:217.786667pt;}
.y4db_c00000{bottom:218.266667pt;}
.ya17_c00000{bottom:218.426667pt;}
.y48e_c00000{bottom:218.586667pt;}
.y122_c00000{bottom:218.746667pt;}
.yb0c_c00000{bottom:219.386667pt;}
.y23c_c00000{bottom:220.026667pt;}
.yc5_c00000{bottom:220.186667pt;}
.ya58_c00000{bottom:220.226667pt;}
.y1d0_c00000{bottom:220.346667pt;}
.ya5a_c00000{bottom:220.360000pt;}
.y3ef_c00000{bottom:220.506667pt;}
.ya00_c00000{bottom:220.546667pt;}
.ya3f_c00000{bottom:220.834667pt;}
.y780_c00000{bottom:221.146667pt;}
.y932_c00000{bottom:221.346667pt;}
.y6f7_c00000{bottom:221.466667pt;}
.ya9_c00000{bottom:221.626667pt;}
.y13f_c00000{bottom:221.946667pt;}
.y562_c00000{bottom:222.106667pt;}
.y619_c00000{bottom:222.266667pt;}
.y576_c00000{bottom:222.426667pt;}
.yb98_c00000{bottom:222.906667pt;}
.y819_c00000{bottom:222.946667pt;}
.y6a5_c00000{bottom:223.066667pt;}
.yb34_c00000{bottom:223.226667pt;}
.y93f_c00000{bottom:223.266667pt;}
.y517_c00000{bottom:223.546667pt;}
.y2b9_c00000{bottom:223.866667pt;}
.ya84_c00000{bottom:224.186667pt;}
.y7cb_c00000{bottom:224.346667pt;}
.y2c0_c00000{bottom:224.506667pt;}
.y7ea_c00000{bottom:224.666667pt;}
.yb2e_c00000{bottom:225.146667pt;}
.y4d3_c00000{bottom:225.466667pt;}
.y65b_c00000{bottom:225.626667pt;}
.y459_c00000{bottom:225.786667pt;}
.y280_c00000{bottom:225.946667pt;}
.y91f_c00000{bottom:225.954667pt;}
.y509_c00000{bottom:226.266667pt;}
.y736_c00000{bottom:226.426667pt;}
.y4b1_c00000{bottom:226.906667pt;}
.y694_c00000{bottom:227.386667pt;}
.y5ad_c00000{bottom:227.706667pt;}
.ye0_c00000{bottom:228.026667pt;}
.y6df_c00000{bottom:228.506667pt;}
.y409_c00000{bottom:228.666667pt;}
.y74e_c00000{bottom:228.840000pt;}
.y745_c00000{bottom:228.866667pt;}
.y1d5_c00000{bottom:228.986667pt;}
.y7b6_c00000{bottom:229.146667pt;}
.y18e_c00000{bottom:229.306667pt;}
.y430_c00000{bottom:229.466667pt;}
.y323_c00000{bottom:229.666667pt;}
.y67_c00000{bottom:230.106667pt;}
.y37c_c00000{bottom:230.306667pt;}
.y263_c00000{bottom:230.586667pt;}
.yab6_c00000{bottom:230.906667pt;}
.y32c_c00000{bottom:230.946667pt;}
.y62d_c00000{bottom:231.226667pt;}
.y22c_c00000{bottom:231.386667pt;}
.y4bd_c00000{bottom:231.546667pt;}
.y468_c00000{bottom:231.706667pt;}
.y873_c00000{bottom:231.874667pt;}
.y3a_c00000{bottom:232.007040pt;}
.yaa5_c00000{bottom:232.186667pt;}
.y89_c00000{bottom:232.346667pt;}
.y4c0_c00000{bottom:232.826667pt;}
.y851_c00000{bottom:232.834667pt;}
.y81e_c00000{bottom:233.306667pt;}
.y8ec_c00000{bottom:233.634667pt;}
.y8f5_c00000{bottom:233.666667pt;}
.y678_c00000{bottom:233.786667pt;}
.yb6b_c00000{bottom:233.946667pt;}
.y6b6_c00000{bottom:234.266667pt;}
.y1c5_c00000{bottom:234.426667pt;}
.y9cf_c00000{bottom:234.786667pt;}
.y19_c00000{bottom:234.906667pt;}
.y926_c00000{bottom:235.106667pt;}
.y2de_c00000{bottom:235.226667pt;}
.y48d_c00000{bottom:235.386667pt;}
.ya14_c00000{bottom:235.586667pt;}
.y1cf_c00000{bottom:235.706667pt;}
.y590_c00000{bottom:236.186667pt;}
.y3cf_c00000{bottom:236.346667pt;}
.y219_c00000{bottom:236.506667pt;}
.y394_c00000{bottom:236.666667pt;}
.y603_c00000{bottom:236.826667pt;}
.y5a5_c00000{bottom:236.986667pt;}
.ya3e_c00000{bottom:236.994667pt;}
.yf8_c00000{bottom:237.146667pt;}
.y77c_c00000{bottom:237.466667pt;}
.y7bf_c00000{bottom:237.506667pt;}
.y5f6_c00000{bottom:237.626667pt;}
.y94e_c00000{bottom:238.306667pt;}
.y29d_c00000{bottom:238.426667pt;}
.y172_c00000{bottom:238.906667pt;}
.y7fe_c00000{bottom:239.226667pt;}
.y93e_c00000{bottom:239.266667pt;}
.y3b0_c00000{bottom:239.386667pt;}
.yaf8_c00000{bottom:239.706667pt;}
.y548_c00000{bottom:239.866667pt;}
.yb94_c00000{bottom:240.026667pt;}
.y6ee_c00000{bottom:240.666667pt;}
.y5bb_c00000{bottom:240.826667pt;}
.y2bf_c00000{bottom:241.346667pt;}
.y76d_c00000{bottom:241.506667pt;}
.yabf_c00000{bottom:241.666667pt;}
.y471_c00000{bottom:241.826667pt;}
.y91e_c00000{bottom:242.114667pt;}
.y41e_c00000{bottom:242.146667pt;}
.ya6a_c00000{bottom:242.466667pt;}
.y65a_c00000{bottom:242.786667pt;}
.y5e2_c00000{bottom:243.106667pt;}
.y809_c00000{bottom:243.746667pt;}
.yb03_c00000{bottom:243.906667pt;}
.y693_c00000{bottom:244.386667pt;}
.y44a_c00000{bottom:244.546667pt;}
.y4fa_c00000{bottom:244.706667pt;}
.y744_c00000{bottom:244.866667pt;}
.y74d_c00000{bottom:245.000000pt;}
.y799_c00000{bottom:245.026667pt;}
.y52f_c00000{bottom:245.346667pt;}
.yb52_c00000{bottom:245.506667pt;}
.y344_c00000{bottom:245.666667pt;}
.yb91_c00000{bottom:246.146667pt;}
.y4b0_c00000{bottom:246.306667pt;}
.y300_c00000{bottom:246.466667pt;}
.y36f_c00000{bottom:246.754667pt;}
.y38c_c00000{bottom:247.106667pt;}
.y262_c00000{bottom:247.426667pt;}
.y23b_c00000{bottom:247.746667pt;}
.y872_c00000{bottom:248.034667pt;}
.y3ee_c00000{bottom:248.066667pt;}
.y785_c00000{bottom:248.226667pt;}
.y13e_c00000{bottom:248.386667pt;}
.y8ab_c00000{bottom:248.706667pt;}
.y39_c00000{bottom:248.802560pt;}
.y850_c00000{bottom:248.994667pt;}
.y88c_c00000{bottom:249.021333pt;}
.y1aa_c00000{bottom:249.026667pt;}
.ya8_c00000{bottom:249.186667pt;}
.y214_c00000{bottom:249.346667pt;}
.yc4_c00000{bottom:249.506667pt;}
.y9b1_c00000{bottom:249.666667pt;}
.y8fa_c00000{bottom:249.794667pt;}
.y575_c00000{bottom:249.986667pt;}
.yb93_c00000{bottom:250.146667pt;}
.ya16_c00000{bottom:250.586667pt;}
.y88_c00000{bottom:250.786667pt;}
.y1f7_c00000{bottom:250.946667pt;}
.ya2c_c00000{bottom:251.066667pt;}
.y516_c00000{bottom:251.106667pt;}
.y2b8_c00000{bottom:251.586667pt;}
.y470_c00000{bottom:251.906667pt;}
.y4da_c00000{bottom:252.066667pt;}
.y6f6_c00000{bottom:252.226667pt;}
.y48c_c00000{bottom:252.386667pt;}
.yb2d_c00000{bottom:252.706667pt;}
.y561_c00000{bottom:252.866667pt;}
.ya3d_c00000{bottom:253.021333pt;}
.y4d2_c00000{bottom:253.026667pt;}
.y458_c00000{bottom:253.346667pt;}
.y27f_c00000{bottom:253.506667pt;}
.y508_c00000{bottom:253.826667pt;}
.y5a_c00000{bottom:254.146667pt;}
.y8a3_c00000{bottom:254.306667pt;}
.y8b0_c00000{bottom:254.786667pt;}
.y7ca_c00000{bottom:255.106667pt;}
.y5ac_c00000{bottom:255.426667pt;}
.ydf_c00000{bottom:255.586667pt;}
.y42f_c00000{bottom:255.746667pt;}
.y6de_c00000{bottom:256.066667pt;}
.y18_c00000{bottom:256.386667pt;}
.y46e_c00000{bottom:256.546667pt;}
.y1e8_c00000{bottom:256.706667pt;}
.y18d_c00000{bottom:256.866667pt;}
.y1ce_c00000{bottom:257.026667pt;}
.ya48_c00000{bottom:257.186667pt;}
.yadc_c00000{bottom:257.666667pt;}
.y66_c00000{bottom:257.826667pt;}
.y91d_c00000{bottom:258.141333pt;}
.y2be_c00000{bottom:258.146667pt;}
.yab5_c00000{bottom:258.466667pt;}
.y62c_c00000{bottom:258.786667pt;}
.y808_c00000{bottom:258.946667pt;}
.y22b_c00000{bottom:259.106667pt;}
.y467_c00000{bottom:259.266667pt;}
.y121_c00000{bottom:259.746667pt;}
.y614_c00000{bottom:259.906667pt;}
.y82f_c00000{bottom:260.066667pt;}
.y153_c00000{bottom:260.706667pt;}
.y743_c00000{bottom:261.026667pt;}
.y74c_c00000{bottom:261.160000pt;}
.y692_c00000{bottom:261.186667pt;}
.y677_c00000{bottom:261.506667pt;}
.y337_c00000{bottom:261.826667pt;}
.y1c4_c00000{bottom:261.986667pt;}
.y30f_c00000{bottom:262.466667pt;}
.y2dd_c00000{bottom:262.786667pt;}
.y36e_c00000{bottom:263.101333pt;}
.y316_c00000{bottom:263.106667pt;}
.y370_c00000{bottom:263.906667pt;}
.y3ce_c00000{bottom:264.066667pt;}
.y871_c00000{bottom:264.221333pt;}
.y718_c00000{bottom:264.226667pt;}
.y261_c00000{bottom:264.386667pt;}
.y5a4_c00000{bottom:264.546667pt;}
.ya94_c00000{bottom:264.706667pt;}
.y218_c00000{bottom:265.026667pt;}
.y88b_c00000{bottom:265.181333pt;}
.y7d3_c00000{bottom:265.186667pt;}
.y5f5_c00000{bottom:265.346667pt;}
.y38_c00000{bottom:265.598080pt;}
.y4af_c00000{bottom:265.666667pt;}
.y8aa_c00000{bottom:265.826667pt;}
.y8f9_c00000{bottom:265.981333pt;}
.y84f_c00000{bottom:266.141333pt;}
.y29c_c00000{bottom:266.146667pt;}
.yf7_c00000{bottom:266.306667pt;}
.y6c5_c00000{bottom:266.466667pt;}
.y171_c00000{bottom:266.626667pt;}
.y7fd_c00000{bottom:266.786667pt;}
.ya2b_c00000{bottom:267.066667pt;}
.y3af_c00000{bottom:267.106667pt;}
.yaf7_c00000{bottom:267.266667pt;}
.y547_c00000{bottom:267.586667pt;}
.y5ba_c00000{bottom:268.386667pt;}
.y986_c00000{bottom:268.866667pt;}
.y4d9_c00000{bottom:269.026667pt;}
.ya3c_c00000{bottom:269.181333pt;}
.y87_c00000{bottom:269.186667pt;}
.y41d_c00000{bottom:269.826667pt;}
.y81d_c00000{bottom:270.146667pt;}
.y7be_c00000{bottom:270.306667pt;}
.y5e1_c00000{bottom:270.626667pt;}
.yacc_c00000{bottom:271.906667pt;}
.y449_c00000{bottom:272.066667pt;}
.y4f9_c00000{bottom:272.226667pt;}
.y2f1_c00000{bottom:272.386667pt;}
.y798_c00000{bottom:272.546667pt;}
.y52e_c00000{bottom:273.026667pt;}
.y834_c00000{bottom:273.346667pt;}
.yb97_c00000{bottom:273.506667pt;}
.y9e4_c00000{bottom:273.826667pt;}
.yb02_c00000{bottom:274.626667pt;}
.y13d_c00000{bottom:274.786667pt;}
.y23a_c00000{bottom:275.266667pt;}
.y393_c00000{bottom:275.426667pt;}
.y3ed_c00000{bottom:275.746667pt;}
.yb5d_c00000{bottom:276.066667pt;}
.y659_c00000{bottom:276.546667pt;}
.ya7_c00000{bottom:276.866667pt;}
.y74b_c00000{bottom:277.160000pt;}
.y4a6_c00000{bottom:277.186667pt;}
.y618_c00000{bottom:277.506667pt;}
.y574_c00000{bottom:277.666667pt;}
.y17_c00000{bottom:277.826667pt;}
.y691_c00000{bottom:278.146667pt;}
.y6a4_c00000{bottom:278.306667pt;}
.yb87_c00000{bottom:278.466667pt;}
.yc3_c00000{bottom:278.626667pt;}
.y515_c00000{bottom:278.786667pt;}
.y36d_c00000{bottom:279.101333pt;}
.y2b7_c00000{bottom:279.106667pt;}
.y37f_c00000{bottom:279.266667pt;}
.y37b_c00000{bottom:279.906667pt;}
.y870_c00000{bottom:280.221333pt;}
.yb2c_c00000{bottom:280.386667pt;}
.ya3b_c00000{bottom:280.520000pt;}
.y36a_c00000{bottom:280.546667pt;}
.y4d1_c00000{bottom:280.706667pt;}
.y457_c00000{bottom:281.026667pt;}
.y88a_c00000{bottom:281.181333pt;}
.y260_c00000{bottom:281.186667pt;}
.y507_c00000{bottom:281.506667pt;}
.y1cd_c00000{bottom:281.666667pt;}
.y6c4_c00000{bottom:281.826667pt;}
.y8f8_c00000{bottom:281.981333pt;}
.y752_c00000{bottom:281.986667pt;}
.y84e_c00000{bottom:282.141333pt;}
.y8a2_c00000{bottom:282.146667pt;}
.y8a9_c00000{bottom:282.626667pt;}
.y6f5_c00000{bottom:282.786667pt;}
.y5ab_c00000{bottom:282.946667pt;}
.ya2a_c00000{bottom:283.226667pt;}
.y7ad_c00000{bottom:283.266667pt;}
.y42e_c00000{bottom:283.426667pt;}
.y6dd_c00000{bottom:283.746667pt;}
.y408_c00000{bottom:283.906667pt;}
.y925_c00000{bottom:284.066667pt;}
.y46d_c00000{bottom:284.226667pt;}
.y7b5_c00000{bottom:284.386667pt;}
.y18c_c00000{bottom:284.546667pt;}
.yde_c00000{bottom:284.706667pt;}
.y908_c00000{bottom:284.826667pt;}
.y4ae_c00000{bottom:285.186667pt;}
.y65_c00000{bottom:285.346667pt;}
.y7c9_c00000{bottom:285.666667pt;}
.y4d8_c00000{bottom:285.826667pt;}
.y48b_c00000{bottom:285.986667pt;}
.yab4_c00000{bottom:286.146667pt;}
.y22a_c00000{bottom:286.626667pt;}
.y4bc_c00000{bottom:286.786667pt;}
.y466_c00000{bottom:286.946667pt;}
.y86_c00000{bottom:287.586667pt;}
.y1f6_c00000{bottom:287.746667pt;}
.y818_c00000{bottom:288.706667pt;}
.y676_c00000{bottom:289.026667pt;}
.y1c3_c00000{bottom:289.666667pt;}
.yb01_c00000{bottom:289.826667pt;}
.y9ab_c00000{bottom:289.981333pt;}
.y2dc_c00000{bottom:290.466667pt;}
.yabb_c00000{bottom:290.626667pt;}
.yb5c_c00000{bottom:291.426667pt;}
.y3cd_c00000{bottom:291.586667pt;}
.y717_c00000{bottom:291.906667pt;}
.y602_c00000{bottom:292.066667pt;}
.y5a3_c00000{bottom:292.226667pt;}
.y807_c00000{bottom:292.546667pt;}
.y77b_c00000{bottom:292.706667pt;}
.y5f4_c00000{bottom:292.866667pt;}
.ya53_c00000{bottom:293.026667pt;}
.y742_c00000{bottom:293.186667pt;}
.y658_c00000{bottom:293.346667pt;}
.y217_c00000{bottom:293.506667pt;}
.y29b_c00000{bottom:293.666667pt;}
.y170_c00000{bottom:294.146667pt;}
.y7fc_c00000{bottom:294.466667pt;}
.y3ae_c00000{bottom:294.626667pt;}
.y322_c00000{bottom:294.786667pt;}
.y690_c00000{bottom:294.946667pt;}
.y546_c00000{bottom:295.106667pt;}
.yb6a_c00000{bottom:295.266667pt;}
.yf6_c00000{bottom:295.426667pt;}
.y6b5_c00000{bottom:295.746667pt;}
.y6ed_c00000{bottom:295.906667pt;}
.y32b_c00000{bottom:296.066667pt;}
.y86f_c00000{bottom:296.381333pt;}
.yb86_c00000{bottom:296.546667pt;}
.y76c_c00000{bottom:296.706667pt;}
.yb64_c00000{bottom:296.866667pt;}
.y1cc_c00000{bottom:297.026667pt;}
.y91a_c00000{bottom:297.320000pt;}
.y889_c00000{bottom:297.341333pt;}
.y35d_c00000{bottom:297.346667pt;}
.y1f5_c00000{bottom:297.826667pt;}
.y8b3_c00000{bottom:298.106667pt;}
.y25f_c00000{bottom:298.146667pt;}
.y84d_c00000{bottom:298.301333pt;}
.y58f_c00000{bottom:298.306667pt;}
.y7d2_c00000{bottom:298.626667pt;}
.y784_c00000{bottom:298.786667pt;}
.y16_c00000{bottom:299.266667pt;}
.ya29_c00000{bottom:299.386667pt;}
.y8a8_c00000{bottom:299.586667pt;}
.y448_c00000{bottom:299.746667pt;}
.y4f8_c00000{bottom:299.906667pt;}
.y797_c00000{bottom:300.226667pt;}
.y120_c00000{bottom:300.546667pt;}
.yb51_c00000{bottom:300.706667pt;}
.y907_c00000{bottom:300.986667pt;}
.y5aa_c00000{bottom:301.186667pt;}
.y13c_c00000{bottom:301.346667pt;}
.yb0b_c00000{bottom:302.306667pt;}
.yba3_c00000{bottom:302.626667pt;}
.y9ae_c00000{bottom:302.786667pt;}
.y59_c00000{bottom:302.946667pt;}
.y3ec_c00000{bottom:303.266667pt;}
.ya93_c00000{bottom:303.426667pt;}
.ya6_c00000{bottom:304.386667pt;}
.y213_c00000{bottom:304.546667pt;}
.y4a5_c00000{bottom:304.706667pt;}
.y573_c00000{bottom:305.186667pt;}
.y85_c00000{bottom:305.986667pt;}
.y9aa_c00000{bottom:306.141333pt;}
.ya47_c00000{bottom:306.146667pt;}
.y152_c00000{bottom:306.306667pt;}
.y2b6_c00000{bottom:306.786667pt;}
.y81c_c00000{bottom:306.946667pt;}
.y456_c00000{bottom:307.266667pt;}
.y7e9_c00000{bottom:307.426667pt;}
.yc2_c00000{bottom:307.746667pt;}
.yb2b_c00000{bottom:307.906667pt;}
.y4d0_c00000{bottom:308.226667pt;}
.yad8_c00000{bottom:308.386667pt;}
.y525_c00000{bottom:308.546667pt;}
.y27e_c00000{bottom:308.706667pt;}
.y506_c00000{bottom:309.026667pt;}
.y741_c00000{bottom:309.346667pt;}
.y80e_c00000{bottom:309.826667pt;}
.y900_c00000{bottom:309.986667pt;}
.y657_c00000{bottom:310.306667pt;}
.y375_c00000{bottom:310.461333pt;}
.yaa0_c00000{bottom:310.626667pt;}
.y343_c00000{bottom:310.786667pt;}
.y42d_c00000{bottom:310.946667pt;}
.y6dc_c00000{bottom:311.266667pt;}
.y35f_c00000{bottom:311.426667pt;}
.y407_c00000{bottom:311.586667pt;}
.y51f_c00000{bottom:311.746667pt;}
.y216_c00000{bottom:311.906667pt;}
.y37e_c00000{bottom:312.061333pt;}
.y18b_c00000{bottom:312.066667pt;}
.y735_c00000{bottom:312.386667pt;}
.y86e_c00000{bottom:312.541333pt;}
.y64_c00000{bottom:313.026667pt;}
.y2a2_c00000{bottom:313.186667pt;}
.yb85_c00000{bottom:313.346667pt;}
.y888_c00000{bottom:313.501333pt;}
.y6f4_c00000{bottom:313.506667pt;}
.yab3_c00000{bottom:313.666667pt;}
.y392_c00000{bottom:313.986667pt;}
.y560_c00000{bottom:314.146667pt;}
.y465_c00000{bottom:314.466667pt;}
.y25e_c00000{bottom:314.946667pt;}
.y613_c00000{bottom:315.106667pt;}
.y82e_c00000{bottom:315.266667pt;}
.y84c_c00000{bottom:315.421333pt;}
.y7d1_c00000{bottom:315.426667pt;}
.y783_c00000{bottom:315.586667pt;}
.y7c8_c00000{bottom:316.386667pt;}
.yaa4_c00000{bottom:316.546667pt;}
.y675_c00000{bottom:316.706667pt;}
.y906_c00000{bottom:317.146667pt;}
.y1c2_c00000{bottom:317.186667pt;}
.y2db_c00000{bottom:317.986667pt;}
.y3cc_c00000{bottom:318.146667pt;}
.yabe_c00000{bottom:318.306667pt;}
.y1cb_c00000{bottom:318.466667pt;}
.ybab_c00000{bottom:319.106667pt;}
.y931_c00000{bottom:319.266667pt;}
.y716_c00000{bottom:319.426667pt;}
.y723_c00000{bottom:319.586667pt;}
.y48a_c00000{bottom:319.746667pt;}
.y77a_c00000{bottom:320.226667pt;}
.y5f3_c00000{bottom:320.546667pt;}
.y15_c00000{bottom:320.706667pt;}
.y37_c00000{bottom:320.960000pt;}
.y829_c00000{bottom:321.186667pt;}
.y29a_c00000{bottom:321.346667pt;}
.y817_c00000{bottom:321.506667pt;}
.y16f_c00000{bottom:321.826667pt;}
.y7fb_c00000{bottom:321.986667pt;}
.y9a9_c00000{bottom:322.141333pt;}
.yb5b_c00000{bottom:322.146667pt;}
.y3ad_c00000{bottom:322.306667pt;}
.yaf6_c00000{bottom:322.466667pt;}
.y545_c00000{bottom:322.786667pt;}
.y5b9_c00000{bottom:323.586667pt;}
.y4ad_c00000{bottom:323.906667pt;}
.yb96_c00000{bottom:324.066667pt;}
.y84_c00000{bottom:324.386667pt;}
.yf5_c00000{bottom:324.546667pt;}
.y41c_c00000{bottom:325.026667pt;}
.y95c_c00000{bottom:325.186667pt;}
.y740_c00000{bottom:325.346667pt;}
.ydd_c00000{bottom:325.666667pt;}
.y5e0_c00000{bottom:325.826667pt;}
.y58e_c00000{bottom:325.986667pt;}
.y1a9_c00000{bottom:326.306667pt;}
.yb69_c00000{bottom:326.786667pt;}
.y336_c00000{bottom:326.946667pt;}
.y656_c00000{bottom:327.106667pt;}
.y447_c00000{bottom:327.266667pt;}
.y4f7_c00000{bottom:327.426667pt;}
.y229_c00000{bottom:327.586667pt;}
.y13b_c00000{bottom:327.746667pt;}
.y37d_c00000{bottom:328.061333pt;}
.y313_c00000{bottom:328.226667pt;}
.y1ca_c00000{bottom:328.546667pt;}
.y68f_c00000{bottom:328.706667pt;}
.y37a_c00000{bottom:328.866667pt;}
.y8cc_c00000{bottom:329.026667pt;}
.y887_c00000{bottom:329.501333pt;}
.y369_c00000{bottom:329.506667pt;}
.y86d_c00000{bottom:329.661333pt;}
.y8b2_c00000{bottom:330.306667pt;}
.y58_c00000{bottom:330.466667pt;}
.y3eb_c00000{bottom:330.946667pt;}
.y84b_c00000{bottom:331.421333pt;}
.ya28_c00000{bottom:331.586667pt;}
.y25d_c00000{bottom:331.746667pt;}
.y212_c00000{bottom:332.066667pt;}
.y4a4_c00000{bottom:332.386667pt;}
.y617_c00000{bottom:332.706667pt;}
.y572_c00000{bottom:332.866667pt;}
.y921_c00000{bottom:333.026667pt;}
.y905_c00000{bottom:333.146667pt;}
.y8a7_c00000{bottom:333.346667pt;}
.ya5_c00000{bottom:333.506667pt;}
.yabd_c00000{bottom:333.666667pt;}
.y514_c00000{bottom:333.986667pt;}
.y2b5_c00000{bottom:334.306667pt;}
.ya83_c00000{bottom:334.626667pt;}
.y5a9_c00000{bottom:334.946667pt;}
.y7e8_c00000{bottom:335.106667pt;}
.yb2a_c00000{bottom:335.586667pt;}
.y7d0_c00000{bottom:335.746667pt;}
.y4cf_c00000{bottom:335.906667pt;}
.y524_c00000{bottom:336.226667pt;}
.y27d_c00000{bottom:336.386667pt;}
.y489_c00000{bottom:336.706667pt;}
.y80d_c00000{bottom:337.346667pt;}
.y8a1_c00000{bottom:338.146667pt;}
.y9a8_c00000{bottom:338.301333pt;}
.y7ac_c00000{bottom:338.466667pt;}
.y42c_c00000{bottom:338.626667pt;}
.y6db_c00000{bottom:338.946667pt;}
.y406_c00000{bottom:339.106667pt;}
.y81b_c00000{bottom:339.426667pt;}
.y5dc_c00000{bottom:339.586667pt;}
.y18a_c00000{bottom:339.746667pt;}
.y455_c00000{bottom:340.386667pt;}
.y63_c00000{bottom:340.546667pt;}
.y782_c00000{bottom:340.866667pt;}
.yb95_c00000{bottom:341.026667pt;}
.ya52_c00000{bottom:341.186667pt;}
.y11f_c00000{bottom:341.506667pt;}
.y4bb_c00000{bottom:341.986667pt;}
.y14_c00000{bottom:342.146667pt;}
.y9b6_c00000{bottom:342.306667pt;}
.y83_c00000{bottom:342.786667pt;}
.y734_c00000{bottom:343.106667pt;}
.y4ac_c00000{bottom:343.266667pt;}
.y320_c00000{bottom:343.746667pt;}
.y655_c00000{bottom:344.066667pt;}
.y674_c00000{bottom:344.226667pt;}
.y349_c00000{bottom:344.386667pt;}
.y1c1_c00000{bottom:344.866667pt;}
.y68e_c00000{bottom:345.506667pt;}
.y2da_c00000{bottom:345.666667pt;}
.yb33_c00000{bottom:345.826667pt;}
.y8b1_c00000{bottom:346.466667pt;}
.y886_c00000{bottom:346.621333pt;}
.ybaa_c00000{bottom:346.626667pt;}
.y86c_c00000{bottom:346.781333pt;}
.y715_c00000{bottom:346.786667pt;}
.y7c7_c00000{bottom:347.106667pt;}
.y601_c00000{bottom:347.266667pt;}
.y5a2_c00000{bottom:347.426667pt;}
.y84a_c00000{bottom:347.581333pt;}
.y9be_c00000{bottom:347.586667pt;}
.y779_c00000{bottom:347.906667pt;}
.y5f2_c00000{bottom:348.066667pt;}
.yc1_c00000{bottom:348.706667pt;}
.y299_c00000{bottom:348.866667pt;}
.y9eb_c00000{bottom:349.026667pt;}
.y16e_c00000{bottom:349.346667pt;}
.y7fa_c00000{bottom:349.666667pt;}
.y3ac_c00000{bottom:349.826667pt;}
.y8a6_c00000{bottom:350.146667pt;}
.y544_c00000{bottom:350.306667pt;}
.y3cb_c00000{bottom:350.946667pt;}
.y6ec_c00000{bottom:351.106667pt;}
.y5b8_c00000{bottom:351.266667pt;}
.y151_c00000{bottom:351.746667pt;}
.y76b_c00000{bottom:351.906667pt;}
.yb00_c00000{bottom:352.066667pt;}
.y7bd_c00000{bottom:352.226667pt;}
.y41b_c00000{bottom:352.546667pt;}
.y391_c00000{bottom:352.706667pt;}
.y7cf_c00000{bottom:353.026667pt;}
.yba2_c00000{bottom:353.346667pt;}
.y488_c00000{bottom:353.506667pt;}
.yf4_c00000{bottom:353.826667pt;}
.y13a_c00000{bottom:354.146667pt;}
.y9a7_c00000{bottom:354.301333pt;}
.ydc_c00000{bottom:354.786667pt;}
.y446_c00000{bottom:354.946667pt;}
.y4f6_c00000{bottom:355.106667pt;}
.y228_c00000{bottom:355.266667pt;}
.y52d_c00000{bottom:355.746667pt;}
.yb50_c00000{bottom:355.906667pt;}
.y36_c00000{bottom:356.484000pt;}
.y796_c00000{bottom:356.546667pt;}
.y90f_c00000{bottom:356.706667pt;}
.y6b4_c00000{bottom:357.026667pt;}
.ya51_c00000{bottom:357.346667pt;}
.y73f_c00000{bottom:357.666667pt;}
.y57_c00000{bottom:357.986667pt;}
.y239_c00000{bottom:358.146667pt;}
.y3ea_c00000{bottom:358.466667pt;}
.y8fc_c00000{bottom:358.946667pt;}
.y211_c00000{bottom:359.586667pt;}
.y355_c00000{bottom:359.746667pt;}
.y4a3_c00000{bottom:359.906667pt;}
.y2fd_c00000{bottom:360.386667pt;}
.y654_c00000{bottom:360.866667pt;}
.y328_c00000{bottom:361.026667pt;}
.y82_c00000{bottom:361.186667pt;}
.y513_c00000{bottom:361.506667pt;}
.y2b4_c00000{bottom:361.986667pt;}
.yb73_c00000{bottom:362.146667pt;}
.y68d_c00000{bottom:362.466667pt;}
.ya4_c00000{bottom:362.626667pt;}
.y885_c00000{bottom:362.781333pt;}
.y9c9_c00000{bottom:363.106667pt;}
.y4ce_c00000{bottom:363.426667pt;}
.y13_c00000{bottom:363.746667pt;}
.y86b_c00000{bottom:363.901333pt;}
.y27c_c00000{bottom:363.906667pt;}
.yb84_c00000{bottom:364.066667pt;}
.y505_c00000{bottom:364.226667pt;}
.y947_c00000{bottom:364.546667pt;}
.y849_c00000{bottom:364.701333pt;}
.y1a8_c00000{bottom:365.026667pt;}
.y904_c00000{bottom:365.346667pt;}
.y10a_c00000{bottom:365.506667pt;}
.ya9f_c00000{bottom:365.826667pt;}
.y7ab_c00000{bottom:365.986667pt;}
.y42b_c00000{bottom:366.146667pt;}
.y6da_c00000{bottom:366.466667pt;}
.y405_c00000{bottom:366.786667pt;}
.y51e_c00000{bottom:366.946667pt;}
.y7b4_c00000{bottom:367.106667pt;}
.y189_c00000{bottom:367.266667pt;}
.yaba_c00000{bottom:368.066667pt;}
.y62_c00000{bottom:368.226667pt;}
.y4ab_c00000{bottom:368.546667pt;}
.yab2_c00000{bottom:368.866667pt;}
.y464_c00000{bottom:369.666667pt;}
.y1e7_c00000{bottom:369.986667pt;}
.yb63_c00000{bottom:370.146667pt;}
.y3ca_c00000{bottom:370.306667pt;}
.y9a6_c00000{bottom:370.461333pt;}
.y816_c00000{bottom:370.466667pt;}
.y7ce_c00000{bottom:371.426667pt;}
.yb0a_c00000{bottom:371.746667pt;}
.y673_c00000{bottom:371.906667pt;}
.y8a5_c00000{bottom:372.226667pt;}
.y1c0_c00000{bottom:372.386667pt;}
.y2d9_c00000{bottom:373.186667pt;}
.ya50_c00000{bottom:373.506667pt;}
.y73e_c00000{bottom:373.666667pt;}
.y35_c00000{bottom:373.920000pt;}
.yb5a_c00000{bottom:374.146667pt;}
.y714_c00000{bottom:374.306667pt;}
.y9b5_c00000{bottom:374.466667pt;}
.y6f3_c00000{bottom:374.786667pt;}
.y5a1_c00000{bottom:374.946667pt;}
.y55f_c00000{bottom:375.426667pt;}
.y5f1_c00000{bottom:375.746667pt;}
.y334_c00000{bottom:375.906667pt;}
.y806_c00000{bottom:376.386667pt;}
.y298_c00000{bottom:376.546667pt;}
.y16d_c00000{bottom:377.026667pt;}
.y373_c00000{bottom:377.186667pt;}
.y3ab_c00000{bottom:377.506667pt;}
.y7c6_c00000{bottom:377.666667pt;}
.y379_c00000{bottom:377.826667pt;}
.y543_c00000{bottom:377.986667pt;}
.y884_c00000{bottom:378.781333pt;}
.y5b7_c00000{bottom:378.786667pt;}
.y454_c00000{bottom:379.106667pt;}
.y68c_c00000{bottom:379.266667pt;}
.y81_c00000{bottom:379.586667pt;}
.y733_c00000{bottom:379.906667pt;}
.y41a_c00000{bottom:380.226667pt;}
.y139_c00000{bottom:380.546667pt;}
.y848_c00000{bottom:380.701333pt;}
.ya92_c00000{bottom:380.706667pt;}
.y86a_c00000{bottom:380.861333pt;}
.yb90_c00000{bottom:380.866667pt;}
.y5df_c00000{bottom:381.026667pt;}
.y58d_c00000{bottom:381.186667pt;}
.y722_c00000{bottom:381.346667pt;}
.y903_c00000{bottom:381.506667pt;}
.yacb_c00000{bottom:382.306667pt;}
.ydb_c00000{bottom:382.466667pt;}
.y4f5_c00000{bottom:382.626667pt;}
.y227_c00000{bottom:382.786667pt;}
.yf3_c00000{bottom:382.946667pt;}
.y52c_c00000{bottom:383.426667pt;}
.yaa3_c00000{bottom:383.906667pt;}
.y795_c00000{bottom:384.066667pt;}
.yb59_c00000{bottom:384.226667pt;}
.y99a_c00000{bottom:384.893333pt;}
.y12_c00000{bottom:385.186667pt;}
.y56_c00000{bottom:385.666667pt;}
.y8bd_c00000{bottom:386.013333pt;}
.y3e9_c00000{bottom:386.146667pt;}
.y92a_c00000{bottom:386.186667pt;}
.y2f0_c00000{bottom:386.493333pt;}
.yb62_c00000{bottom:386.946667pt;}
.y210_c00000{bottom:387.266667pt;}
.y4a2_c00000{bottom:387.586667pt;}
.y62a_c00000{bottom:387.906667pt;}
.y571_c00000{bottom:388.066667pt;}
.ya32_c00000{bottom:388.413333pt;}
.yb09_c00000{bottom:388.546667pt;}
.y6a3_c00000{bottom:388.706667pt;}
.y512_c00000{bottom:389.026667pt;}
.y2b3_c00000{bottom:389.506667pt;}
.ya4f_c00000{bottom:389.546667pt;}
.yc0_c00000{bottom:389.666667pt;}
.y732_c00000{bottom:389.826667pt;}
.y73d_c00000{bottom:389.866667pt;}
.y523_c00000{bottom:389.986667pt;}
.y7e7_c00000{bottom:390.306667pt;}
.yb29_c00000{bottom:390.466667pt;}
.y9b4_c00000{bottom:390.626667pt;}
.y4cd_c00000{bottom:391.106667pt;}
.y34_c00000{bottom:391.200000pt;}
.y6bf_c00000{bottom:391.266667pt;}
.y390_c00000{bottom:391.426667pt;}
.y27b_c00000{bottom:391.586667pt;}
.ya3_c00000{bottom:391.906667pt;}
.y919_c00000{bottom:391.933333pt;}
.y31f_c00000{bottom:392.733333pt;}
.y805_c00000{bottom:393.186667pt;}
.ya9e_c00000{bottom:393.346667pt;}
.y33e_c00000{bottom:393.373333pt;}
.y7aa_c00000{bottom:393.666667pt;}
.y42a_c00000{bottom:393.826667pt;}
.y6d9_c00000{bottom:394.146667pt;}
.y404_c00000{bottom:394.306667pt;}
.y6e5_c00000{bottom:394.466667pt;}
.y4d7_c00000{bottom:394.626667pt;}
.y368_c00000{bottom:394.653333pt;}
.y5db_c00000{bottom:394.786667pt;}
.y883_c00000{bottom:394.941333pt;}
.y188_c00000{bottom:394.946667pt;}
.y74a_c00000{bottom:395.293333pt;}
.y2ec_c00000{bottom:395.421333pt;}
.y487_c00000{bottom:395.746667pt;}
.ya27_c00000{bottom:395.906667pt;}
.y68b_c00000{bottom:396.066667pt;}
.yb3f_c00000{bottom:396.226667pt;}
.yab1_c00000{bottom:396.386667pt;}
.y9bd_c00000{bottom:396.573333pt;}
.y847_c00000{bottom:396.861333pt;}
.y869_c00000{bottom:397.021333pt;}
.y4ba_c00000{bottom:397.186667pt;}
.y150_c00000{bottom:397.346667pt;}
.yb8f_c00000{bottom:397.666667pt;}
.y80_c00000{bottom:397.986667pt;}
.ya1e_c00000{bottom:398.173333pt;}
.y453_c00000{bottom:398.466667pt;}
.y25c_c00000{bottom:399.266667pt;}
.y672_c00000{bottom:399.426667pt;}
.y1bf_c00000{bottom:400.066667pt;}
.y721_c00000{bottom:400.706667pt;}
.y9ad_c00000{bottom:400.733333pt;}
.y2d8_c00000{bottom:400.866667pt;}
.y7bc_c00000{bottom:401.213333pt;}
.yba9_c00000{bottom:401.826667pt;}
.y713_c00000{bottom:401.986667pt;}
.y61_c00000{bottom:402.146667pt;}
.y600_c00000{bottom:402.466667pt;}
.y5a0_c00000{bottom:402.626667pt;}
.y831_c00000{bottom:402.813333pt;}
.y778_c00000{bottom:402.946667pt;}
.y5f0_c00000{bottom:403.266667pt;}
.y815_c00000{bottom:403.453333pt;}
.y1a7_c00000{bottom:403.586667pt;}
.yb61_c00000{bottom:403.906667pt;}
.y297_c00000{bottom:404.066667pt;}
.yaf5_c00000{bottom:404.226667pt;}
.y16c_c00000{bottom:404.546667pt;}
.y7f9_c00000{bottom:404.866667pt;}
.y3aa_c00000{bottom:405.026667pt;}
.y542_c00000{bottom:405.506667pt;}
.y90e_c00000{bottom:405.693333pt;}
.y55e_c00000{bottom:406.146667pt;}
.y6eb_c00000{bottom:406.306667pt;}
.y109_c00000{bottom:406.466667pt;}
.y11_c00000{bottom:406.626667pt;}
.y9b3_c00000{bottom:406.786667pt;}
.y138_c00000{bottom:407.106667pt;}
.yba6_c00000{bottom:407.266667pt;}
.y419_c00000{bottom:407.746667pt;}
.ya82_c00000{bottom:408.226667pt;}
.y7c5_c00000{bottom:408.386667pt;}
.y445_c00000{bottom:408.706667pt;}
.y354_c00000{bottom:408.733333pt;}
.y3c9_c00000{bottom:409.026667pt;}
.y33_c00000{bottom:409.116800pt;}
.yb28_c00000{bottom:409.346667pt;}
.y2fc_c00000{bottom:409.373333pt;}
.yda_c00000{bottom:409.986667pt;}
.y38b_c00000{bottom:410.013333pt;}
.y6b3_c00000{bottom:410.146667pt;}
.y4f4_c00000{bottom:410.306667pt;}
.y97e_c00000{bottom:410.813333pt;}
.y52b_c00000{bottom:410.946667pt;}
.y794_c00000{bottom:411.746667pt;}
.yf2_c00000{bottom:412.066667pt;}
.y846_c00000{bottom:413.021333pt;}
.y68a_c00000{bottom:413.026667pt;}
.y55_c00000{bottom:413.186667pt;}
.y238_c00000{bottom:413.346667pt;}
.y3e8_c00000{bottom:413.666667pt;}
.yb8e_c00000{bottom:414.626667pt;}
.ya7f_c00000{bottom:414.653333pt;}
.y20f_c00000{bottom:414.786667pt;}
.y4a1_c00000{bottom:415.106667pt;}
.y570_c00000{bottom:415.586667pt;}
.y25b_c00000{bottom:416.066667pt;}
.ya57_c00000{bottom:416.093333pt;}
.y7f_c00000{bottom:416.386667pt;}
.y511_c00000{bottom:416.706667pt;}
.ybf_c00000{bottom:417.186667pt;}
.y930_c00000{bottom:417.213333pt;}
.yb72_c00000{bottom:417.346667pt;}
.y759_c00000{bottom:417.533333pt;}
.yaa2_c00000{bottom:417.666667pt;}
.y7e6_c00000{bottom:417.826667pt;}
.yb83_c00000{bottom:417.986667pt;}
.y4cc_c00000{bottom:418.626667pt;}
.y1e5_c00000{bottom:418.946667pt;}
.y27a_c00000{bottom:419.106667pt;}
.ya91_c00000{bottom:419.266667pt;}
.y5d1_c00000{bottom:419.426667pt;}
.y720_c00000{bottom:420.066667pt;}
.y59f_c00000{bottom:420.706667pt;}
.ya2_c00000{bottom:421.026667pt;}
.y429_c00000{bottom:421.346667pt;}
.y6d8_c00000{bottom:421.666667pt;}
.y403_c00000{bottom:421.986667pt;}
.y4d6_c00000{bottom:422.146667pt;}
.y7b3_c00000{bottom:422.306667pt;}
.y187_c00000{bottom:422.466667pt;}
.y8e9_c00000{bottom:422.493333pt;}
.yb08_c00000{bottom:422.626667pt;}
.y9b2_c00000{bottom:422.786667pt;}
.y522_c00000{bottom:423.106667pt;}
.y11e_c00000{bottom:423.426667pt;}
.y226_c00000{bottom:423.746667pt;}
.y731_c00000{bottom:424.066667pt;}
.yb27_c00000{bottom:424.386667pt;}
.y93c_c00000{bottom:424.413333pt;}
.y6ea_c00000{bottom:424.546667pt;}
.y463_c00000{bottom:424.866667pt;}
.y333_c00000{bottom:424.893333pt;}
.y612_c00000{bottom:425.506667pt;}
.y30a_c00000{bottom:425.533333pt;}
.y82d_c00000{bottom:425.666667pt;}
.y342_c00000{bottom:426.173333pt;}
.yb18_c00000{bottom:426.466667pt;}
.y376_c00000{bottom:426.813333pt;}
.y504_c00000{bottom:426.946667pt;}
.y32_c00000{bottom:427.040000pt;}
.y671_c00000{bottom:427.106667pt;}
.y2eb_c00000{bottom:427.301333pt;}
.y1be_c00000{bottom:427.586667pt;}
.y10_c00000{bottom:428.066667pt;}
.y2d7_c00000{bottom:428.386667pt;}
.y3c8_c00000{bottom:428.546667pt;}
.y845_c00000{bottom:429.221333pt;}
.yba8_c00000{bottom:429.346667pt;}
.y689_c00000{bottom:429.826667pt;}
.y38f_c00000{bottom:429.986667pt;}
.y5ff_c00000{bottom:430.146667pt;}
.y777_c00000{bottom:430.626667pt;}
.y5ef_c00000{bottom:430.946667pt;}
.yb8d_c00000{bottom:431.426667pt;}
.y828_c00000{bottom:431.586667pt;}
.y296_c00000{bottom:431.746667pt;}
.y16b_c00000{bottom:432.226667pt;}
.y7f8_c00000{bottom:432.386667pt;}
.y3a9_c00000{bottom:432.706667pt;}
.y25a_c00000{bottom:433.026667pt;}
.y541_c00000{bottom:433.186667pt;}
.y137_c00000{bottom:433.506667pt;}
.y98c_c00000{bottom:433.853333pt;}
.y5b6_c00000{bottom:433.986667pt;}
.yaa1_c00000{bottom:434.466667pt;}
.y9d9_c00000{bottom:434.493333pt;}
.y7e_c00000{bottom:434.786667pt;}
.y418_c00000{bottom:435.426667pt;}
.y2ee_c00000{bottom:435.453333pt;}
.y108_c00000{bottom:435.586667pt;}
.y621_c00000{bottom:436.226667pt;}
.y58c_c00000{bottom:436.386667pt;}
.y55d_c00000{bottom:436.866667pt;}
.ya31_c00000{bottom:437.373333pt;}
.yaca_c00000{bottom:437.506667pt;}
.y955_c00000{bottom:437.533333pt;}
.yd9_c00000{bottom:437.666667pt;}
.y4f3_c00000{bottom:437.826667pt;}
.y52a_c00000{bottom:438.626667pt;}
.y7c4_c00000{bottom:439.106667pt;}
.y793_c00000{bottom:439.266667pt;}
.y71f_c00000{bottom:439.426667pt;}
.y8c3_c00000{bottom:440.093333pt;}
.y864_c00000{bottom:440.101333pt;}
.y54_c00000{bottom:440.866667pt;}
.y91c_c00000{bottom:440.893333pt;}
.yf1_c00000{bottom:441.186667pt;}
.y3e7_c00000{bottom:441.346667pt;}
.y350_c00000{bottom:441.693333pt;}
.y444_c00000{bottom:441.826667pt;}
.y1a6_c00000{bottom:442.306667pt;}
.y386_c00000{bottom:442.333333pt;}
.y20e_c00000{bottom:442.466667pt;}
.y14f_c00000{bottom:442.786667pt;}
.y35c_c00000{bottom:442.973333pt;}
.y5de_c00000{bottom:443.106667pt;}
.y56f_c00000{bottom:443.266667pt;}
.y367_c00000{bottom:443.613333pt;}
.y503_c00000{bottom:443.746667pt;}
.y31_c00000{bottom:443.840000pt;}
.y6a2_c00000{bottom:443.906667pt;}
.y510_c00000{bottom:444.226667pt;}
.y8af_c00000{bottom:444.426667pt;}
.y2b2_c00000{bottom:444.706667pt;}
.ybe_c00000{bottom:444.866667pt;}
.ya81_c00000{bottom:445.026667pt;}
.y758_c00000{bottom:445.213333pt;}
.ya7e_c00000{bottom:445.373333pt;}
.y868_c00000{bottom:445.381333pt;}
.y7e5_c00000{bottom:445.506667pt;}
.y9bc_c00000{bottom:445.533333pt;}
.y844_c00000{bottom:446.181333pt;}
.y4cb_c00000{bottom:446.306667pt;}
.y279_c00000{bottom:446.786667pt;}
.y5d0_c00000{bottom:446.946667pt;}
.y428_c00000{bottom:447.586667pt;}
.y3c7_c00000{bottom:447.906667pt;}
.y804_c00000{bottom:448.386667pt;}
.ya9d_c00000{bottom:448.546667pt;}
.y7a9_c00000{bottom:448.866667pt;}
.y6d7_c00000{bottom:449.346667pt;}
.y402_c00000{bottom:449.506667pt;}
.y486_c00000{bottom:449.666667pt;}
.y9ac_c00000{bottom:449.693333pt;}
.y259_c00000{bottom:449.826667pt;}
.y5da_c00000{bottom:449.986667pt;}
.ya1d_c00000{bottom:450.013333pt;}
.y186_c00000{bottom:450.146667pt;}
.y7bb_c00000{bottom:450.173333pt;}
.yf_c00000{bottom:451.106667pt;}
.y225_c00000{bottom:451.266667pt;}
.y462_c00000{bottom:451.426667pt;}
.yab0_c00000{bottom:451.586667pt;}
.y730_c00000{bottom:451.746667pt;}
.y4b9_c00000{bottom:452.386667pt;}
.y814_c00000{bottom:452.413333pt;}
.y7d_c00000{bottom:453.186667pt;}
.y59e_c00000{bottom:454.466667pt;}
.y670_c00000{bottom:454.626667pt;}
.y90d_c00000{bottom:454.653333pt;}
.y1bd_c00000{bottom:455.266667pt;}
.y2d6_c00000{bottom:456.066667pt;}
.y863_c00000{bottom:456.101333pt;}
.yba7_c00000{bottom:457.026667pt;}
.y5fe_c00000{bottom:457.346667pt;}
.y712_c00000{bottom:457.506667pt;}
.y6ab_c00000{bottom:457.666667pt;}
.y31e_c00000{bottom:457.693333pt;}
.yb7b_c00000{bottom:457.826667pt;}
.ya90_c00000{bottom:457.986667pt;}
.y6e9_c00000{bottom:458.306667pt;}
.y327_c00000{bottom:458.333333pt;}
.y5ee_c00000{bottom:458.466667pt;}
.y71e_c00000{bottom:458.786667pt;}
.y38a_c00000{bottom:459.133333pt;}
.y2ea_c00000{bottom:459.141333pt;}
.y295_c00000{bottom:459.266667pt;}
.y16a_c00000{bottom:459.746667pt;}
.y136_c00000{bottom:459.906667pt;}
.y7f7_c00000{bottom:460.066667pt;}
.y3a8_c00000{bottom:460.226667pt;}
.y756_c00000{bottom:460.413333pt;}
.y502_c00000{bottom:460.546667pt;}
.y8ae_c00000{bottom:460.586667pt;}
.y540_c00000{bottom:460.706667pt;}
.y30_c00000{bottom:461.116800pt;}
.y443_c00000{bottom:461.186667pt;}
.y867_c00000{bottom:461.381333pt;}
.y5b5_c00000{bottom:461.666667pt;}
.y521_c00000{bottom:461.826667pt;}
.ya1_c00000{bottom:461.986667pt;}
.y76a_c00000{bottom:462.306667pt;}
.y843_c00000{bottom:462.341333pt;}
.yba5_c00000{bottom:462.466667pt;}
.y417_c00000{bottom:462.946667pt;}
.y688_c00000{bottom:463.586667pt;}
.yb3e_c00000{bottom:463.746667pt;}
.y58b_c00000{bottom:463.906667pt;}
.y11d_c00000{bottom:464.386667pt;}
.y107_c00000{bottom:464.866667pt;}
.ya56_c00000{bottom:465.053333pt;}
.yd8_c00000{bottom:465.186667pt;}
.y6b2_c00000{bottom:465.346667pt;}
.y4f2_c00000{bottom:465.506667pt;}
.y702_c00000{bottom:466.146667pt;}
.y92f_c00000{bottom:466.173333pt;}
.y258_c00000{bottom:466.786667pt;}
.y792_c00000{bottom:466.946667pt;}
.y55c_c00000{bottom:467.426667pt;}
.y53_c00000{bottom:468.386667pt;}
.y237_c00000{bottom:468.546667pt;}
.y38e_c00000{bottom:468.706667pt;}
.y3e6_c00000{bottom:468.866667pt;}
.ya59_c00000{bottom:468.893333pt;}
.y7c3_c00000{bottom:469.666667pt;}
.y20d_c00000{bottom:469.986667pt;}
.y4a0_c00000{bottom:470.306667pt;}
.y57a_c00000{bottom:470.786667pt;}
.y59d_c00000{bottom:471.266667pt;}
.y7c_c00000{bottom:471.586667pt;}
.y50f_c00000{bottom:471.906667pt;}
.ybd_c00000{bottom:472.386667pt;}
.yb71_c00000{bottom:472.546667pt;}
.yaf4_c00000{bottom:472.866667pt;}
.y7e4_c00000{bottom:473.026667pt;}
.y3c6_c00000{bottom:473.186667pt;}
.y332_c00000{bottom:473.853333pt;}
.y278_c00000{bottom:474.333333pt;}
.y2fb_c00000{bottom:474.493333pt;}
.y5cf_c00000{bottom:474.653333pt;}
.y6e8_c00000{bottom:475.133333pt;}
.y96c_c00000{bottom:475.773333pt;}
.y60_c00000{bottom:475.933333pt;}
.ya9c_c00000{bottom:476.253333pt;}
.y7a8_c00000{bottom:476.573333pt;}
.y8ad_c00000{bottom:476.586667pt;}
.y6d6_c00000{bottom:476.893333pt;}
.y401_c00000{bottom:477.213333pt;}
.y632_c00000{bottom:477.373333pt;}
.y7b2_c00000{bottom:477.533333pt;}
.y866_c00000{bottom:477.541333pt;}
.y185_c00000{bottom:477.693333pt;}
.ye_c00000{bottom:478.333333pt;}
.y8e8_c00000{bottom:478.493333pt;}
.y842_c00000{bottom:478.501333pt;}
.y224_c00000{bottom:478.973333pt;}
.y2f_c00000{bottom:479.040000pt;}
.y72f_c00000{bottom:479.293333pt;}
.y4b8_c00000{bottom:480.093333pt;}
.y687_c00000{bottom:480.413333pt;}
.y442_c00000{bottom:480.573333pt;}
.y427_c00000{bottom:480.733333pt;}
.y520_c00000{bottom:481.373333pt;}
.ya80_c00000{bottom:481.853333pt;}
.yf0_c00000{bottom:482.173333pt;}
.y66f_c00000{bottom:482.333333pt;}
.y1bc_c00000{bottom:482.813333pt;}
.y7ba_c00000{bottom:482.973333pt;}
.y257_c00000{bottom:483.613333pt;}
.yb32_c00000{bottom:483.933333pt;}
.y1e2_c00000{bottom:484.093333pt;}
.y461_c00000{bottom:484.253333pt;}
.y93b_c00000{bottom:484.573333pt;}
.y711_c00000{bottom:485.053333pt;}
.y813_c00000{bottom:485.213333pt;}
.y6aa_c00000{bottom:485.373333pt;}
.ya30_c00000{bottom:486.333333pt;}
.y135_c00000{bottom:486.493333pt;}
.y776_c00000{bottom:486.813333pt;}
.y294_c00000{bottom:486.973333pt;}
.y169_c00000{bottom:487.453333pt;}
.y3a7_c00000{bottom:487.933333pt;}
.y53f_c00000{bottom:488.253333pt;}
.y5b4_c00000{bottom:489.213333pt;}
.y891_c00000{bottom:489.533333pt;}
.yaf3_c00000{bottom:489.693333pt;}
.y91b_c00000{bottom:489.853333pt;}
.y7b_c00000{bottom:490.013333pt;}
.y14e_c00000{bottom:490.493333pt;}
.y309_c00000{bottom:490.653333pt;}
.y2e9_c00000{bottom:490.981333pt;}
.yb24_c00000{bottom:491.133333pt;}
.y340_c00000{bottom:491.293333pt;}
.y620_c00000{bottom:491.453333pt;}
.yb68_c00000{bottom:491.613333pt;}
.y6e7_c00000{bottom:491.933333pt;}
.y5fd_c00000{bottom:492.733333pt;}
.yd7_c00000{bottom:492.893333pt;}
.y4f1_c00000{bottom:493.053333pt;}
.y862_c00000{bottom:493.381333pt;}
.y11c_c00000{bottom:493.533333pt;}
.y865_c00000{bottom:493.541333pt;}
.y701_c00000{bottom:493.853333pt;}
.y106_c00000{bottom:494.013333pt;}
.y501_c00000{bottom:494.333333pt;}
.y9bb_c00000{bottom:494.493333pt;}
.ya7d_c00000{bottom:495.453333pt;}
.y841_c00000{bottom:495.461333pt;}
.y2e_c00000{bottom:495.695360pt;}
.y52_c00000{bottom:496.093333pt;}
.y3e5_c00000{bottom:496.573333pt;}
.ya8f_c00000{bottom:496.733333pt;}
.y686_c00000{bottom:497.373333pt;}
.y63e_c00000{bottom:497.533333pt;}
.y20c_c00000{bottom:497.693333pt;}
.y49f_c00000{bottom:498.013333pt;}
.y55b_c00000{bottom:498.173333pt;}
.y630_c00000{bottom:498.333333pt;}
.y579_c00000{bottom:498.493333pt;}
.y6a1_c00000{bottom:499.133333pt;}
.y3c5_c00000{bottom:499.453333pt;}
.y2b1_c00000{bottom:499.933333pt;}
.ybc_c00000{bottom:500.093333pt;}
.yb70_c00000{bottom:500.253333pt;}
.y256_c00000{bottom:500.413333pt;}
.y7e3_c00000{bottom:500.733333pt;}
.y4ca_c00000{bottom:501.533333pt;}
.y277_c00000{bottom:502.013333pt;}
.y5ce_c00000{bottom:502.173333pt;}
.yb8c_c00000{bottom:502.333333pt;}
.ya0_c00000{bottom:502.973333pt;}
.y460_c00000{bottom:503.613333pt;}
.ya9b_c00000{bottom:503.773333pt;}
.y7a7_c00000{bottom:504.093333pt;}
.y6d5_c00000{bottom:504.573333pt;}
.y400_c00000{bottom:504.733333pt;}
.y51d_c00000{bottom:505.053333pt;}
.y5d9_c00000{bottom:505.213333pt;}
.y184_c00000{bottom:505.373333pt;}
.yd_c00000{bottom:505.853333pt;}
.y529_c00000{bottom:506.013333pt;}
.y7f6_c00000{bottom:506.173333pt;}
.y223_c00000{bottom:506.493333pt;}
.y31d_c00000{bottom:506.653333pt;}
.y72e_c00000{bottom:506.813333pt;}
.y326_c00000{bottom:507.293333pt;}
.y4b7_c00000{bottom:507.613333pt;}
.y35b_c00000{bottom:508.093333pt;}
.y7a_c00000{bottom:508.413333pt;}
.y361_c00000{bottom:508.733333pt;}
.y6e6_c00000{bottom:508.893333pt;}
.y1a5_c00000{bottom:509.373333pt;}
.y5fc_c00000{bottom:509.693333pt;}
.y66e_c00000{bottom:509.853333pt;}
.y1bb_c00000{bottom:510.333333pt;}
.y2d5_c00000{bottom:511.293333pt;}
.y840_c00000{bottom:511.621333pt;}
.y9e0_c00000{bottom:511.773333pt;}
.y6a9_c00000{bottom:512.573333pt;}
.y710_c00000{bottom:512.733333pt;}
.y134_c00000{bottom:512.893333pt;}
.y2d_c00000{bottom:512.971520pt;}
.yb7a_c00000{bottom:513.053333pt;}
.ya54_c00000{bottom:514.013333pt;}
.y685_c00000{bottom:514.173333pt;}
.yb3d_c00000{bottom:514.333333pt;}
.y293_c00000{bottom:514.493333pt;}
.y168_c00000{bottom:514.973333pt;}
.y92b_c00000{bottom:515.133333pt;}
.y3a6_c00000{bottom:515.453333pt;}
.y53e_c00000{bottom:515.933333pt;}
.y5b3_c00000{bottom:516.893333pt;}
.y71d_c00000{bottom:517.053333pt;}
.y416_c00000{bottom:517.213333pt;}
.y255_c00000{bottom:517.373333pt;}
.y769_c00000{bottom:517.533333pt;}
.y552_c00000{bottom:518.173333pt;}
.y64a_c00000{bottom:519.133333pt;}
.y426_c00000{bottom:519.453333pt;}
.yd6_c00000{bottom:520.413333pt;}
.y6b1_c00000{bottom:520.573333pt;}
.y4f0_c00000{bottom:520.733333pt;}
.y11b_c00000{bottom:521.053333pt;}
.y700_c00000{bottom:521.373333pt;}
.y59c_c00000{bottom:522.013333pt;}
.y331_c00000{bottom:522.813333pt;}
.y45f_c00000{bottom:522.973333pt;}
.yef_c00000{bottom:523.133333pt;}
.ya7c_c00000{bottom:523.293333pt;}
.y2f8_c00000{bottom:523.453333pt;}
.y51_c00000{bottom:523.613333pt;}
.y236_c00000{bottom:523.773333pt;}
.y3e4_c00000{bottom:524.093333pt;}
.y20b_c00000{bottom:525.213333pt;}
.y528_c00000{bottom:525.373333pt;}
.y49e_c00000{bottom:525.533333pt;}
.y578_c00000{bottom:526.013333pt;}
.y5fb_c00000{bottom:526.493333pt;}
.y79_c00000{bottom:526.813333pt;}
.y3c4_c00000{bottom:527.133333pt;}
.y791_c00000{bottom:527.293333pt;}
.ybb_c00000{bottom:527.613333pt;}
.yb6f_c00000{bottom:527.773333pt;}
.y83f_c00000{bottom:527.781333pt;}
.y500_c00000{bottom:528.093333pt;}
.y7e2_c00000{bottom:528.253333pt;}
.yb82_c00000{bottom:528.413333pt;}
.y55a_c00000{bottom:528.893333pt;}
.y4c9_c00000{bottom:529.053333pt;}
.y276_c00000{bottom:529.533333pt;}
.y5cd_c00000{bottom:529.853333pt;}
.y9f_c00000{bottom:530.493333pt;}
.y684_c00000{bottom:531.133333pt;}
.ya9a_c00000{bottom:531.453333pt;}
.y7a6_c00000{bottom:531.773333pt;}
.y6d4_c00000{bottom:532.093333pt;}
.y3ff_c00000{bottom:532.253333pt;}
.y485_c00000{bottom:532.413333pt;}
.y46f_c00000{bottom:532.573333pt;}
.y585_c00000{bottom:532.733333pt;}
.y183_c00000{bottom:532.893333pt;}
.y1df_c00000{bottom:533.053333pt;}
.yc_c00000{bottom:533.533333pt;}
.y7f5_c00000{bottom:533.693333pt;}
.y254_c00000{bottom:534.173333pt;}
.y8e5_c00000{bottom:534.493333pt;}
.y4b6_c00000{bottom:535.293333pt;}
.yba4_c00000{bottom:535.773333pt;}
.y611_c00000{bottom:535.933333pt;}
.y71c_c00000{bottom:536.413333pt;}
.y775_c00000{bottom:537.053333pt;}
.y7c2_c00000{bottom:537.373333pt;}
.y66d_c00000{bottom:537.533333pt;}
.y878_c00000{bottom:537.853333pt;}
.y1a4_c00000{bottom:538.013333pt;}
.y5ed_c00000{bottom:538.173333pt;}
.ya75_c00000{bottom:538.653333pt;}
.y2d4_c00000{bottom:538.813333pt;}
.y425_c00000{bottom:538.973333pt;}
.y133_c00000{bottom:539.293333pt;}
.y6ff_c00000{bottom:539.453333pt;}
.y30d_c00000{bottom:539.613333pt;}
.y389_c00000{bottom:540.253333pt;}
.yaf2_c00000{bottom:540.413333pt;}
.yb79_c00000{bottom:540.573333pt;}
.y72d_c00000{bottom:540.893333pt;}
.y96d_c00000{bottom:541.053333pt;}
.y85d_c00000{bottom:541.693333pt;}
.y292_c00000{bottom:542.173333pt;}
.y45e_c00000{bottom:542.493333pt;}
.y14d_c00000{bottom:542.653333pt;}
.y3a5_c00000{bottom:543.133333pt;}
.y61f_c00000{bottom:543.293333pt;}
.y53d_c00000{bottom:543.453333pt;}
.y5b2_c00000{bottom:544.093333pt;}
.yaff_c00000{bottom:544.413333pt;}
.y527_c00000{bottom:544.733333pt;}
.y83e_c00000{bottom:544.741333pt;}
.y4ff_c00000{bottom:544.893333pt;}
.y78_c00000{bottom:545.213333pt;}
.y551_c00000{bottom:545.853333pt;}
.yad7_c00000{bottom:546.493333pt;}
.y649_c00000{bottom:546.653333pt;}
.yb67_c00000{bottom:546.813333pt;}
.y222_c00000{bottom:547.453333pt;}
.y683_c00000{bottom:547.933333pt;}
.yb3c_c00000{bottom:548.093333pt;}
.y4ef_c00000{bottom:548.253333pt;}
.y11a_c00000{bottom:548.733333pt;}
.yb4f_c00000{bottom:549.053333pt;}
.y584_c00000{bottom:549.533333pt;}
.yd5_c00000{bottom:549.693333pt;}
.y415_c00000{bottom:550.013333pt;}
.y253_c00000{bottom:551.133333pt;}
.y50_c00000{bottom:551.293333pt;}
.y3e3_c00000{bottom:551.773333pt;}
.yee_c00000{bottom:552.253333pt;}
.y909_c00000{bottom:552.573333pt;}
.y63d_c00000{bottom:552.733333pt;}
.y20a_c00000{bottom:552.893333pt;}
.y49d_c00000{bottom:553.213333pt;}
.y629_c00000{bottom:553.533333pt;}
.y8e1_c00000{bottom:553.541333pt;}
.y577_c00000{bottom:553.693333pt;}
.y774_c00000{bottom:553.853333pt;}
.y6a0_c00000{bottom:554.333333pt;}
.y3c3_c00000{bottom:554.653333pt;}
.y2b0_c00000{bottom:555.133333pt;}
.yb6e_c00000{bottom:555.453333pt;}
.y59b_c00000{bottom:555.613333pt;}
.y308_c00000{bottom:555.653333pt;}
.y7e1_c00000{bottom:555.933333pt;}
.y387_c00000{bottom:556.293333pt;}
.y6fe_c00000{bottom:556.413333pt;}
.yba_c00000{bottom:556.733333pt;}
.y85a_c00000{bottom:557.093333pt;}
.y275_c00000{bottom:557.213333pt;}
.y5cc_c00000{bottom:557.373333pt;}
.yb8b_c00000{bottom:557.533333pt;}
.ya8e_c00000{bottom:558.013333pt;}
.y9e_c00000{bottom:558.173333pt;}
.y424_c00000{bottom:558.333333pt;}
.ya99_c00000{bottom:558.973333pt;}
.y7a5_c00000{bottom:559.293333pt;}
.y559_c00000{bottom:559.453333pt;}
.y6d3_c00000{bottom:559.773333pt;}
.y3fe_c00000{bottom:559.933333pt;}
.y5d8_c00000{bottom:560.093333pt;}
.y2c_c00000{bottom:560.167680pt;}
.y51c_c00000{bottom:560.253333pt;}
.y5dd_c00000{bottom:560.413333pt;}
.y182_c00000{bottom:560.573333pt;}
.y83d_c00000{bottom:560.901333pt;}
.yb_c00000{bottom:561.053333pt;}
.y7f4_c00000{bottom:561.213333pt;}
.yb31_c00000{bottom:561.373333pt;}
.y71b_c00000{bottom:561.693333pt;}
.y45d_c00000{bottom:561.853333pt;}
.yaaf_c00000{bottom:562.013333pt;}
.y4b5_c00000{bottom:562.813333pt;}
.yad6_c00000{bottom:563.293333pt;}
.y77_c00000{bottom:563.613333pt;}
.y441_c00000{bottom:564.093333pt;}
.y682_c00000{bottom:564.893333pt;}
.y66c_c00000{bottom:565.053333pt;}
.y1ba_c00000{bottom:565.533333pt;}
.y2ed_c00000{bottom:565.573333pt;}
.y132_c00000{bottom:565.853333pt;}
.y827_c00000{bottom:566.333333pt;}
.y2d3_c00000{bottom:566.493333pt;}
.y252_c00000{bottom:567.933333pt;}
.yb78_c00000{bottom:568.253333pt;}
.y6be_c00000{bottom:568.573333pt;}
.y1a3_c00000{bottom:568.733333pt;}
.y414_c00000{bottom:569.373333pt;}
.yb88_c00000{bottom:569.533333pt;}
.y291_c00000{bottom:569.693333pt;}
.y8e0_c00000{bottom:569.701333pt;}
.y1de_c00000{bottom:569.853333pt;}
.y167_c00000{bottom:570.173333pt;}
.y3a4_c00000{bottom:570.653333pt;}
.y5b1_c00000{bottom:570.973333pt;}
.y53c_c00000{bottom:571.133333pt;}
.y31c_c00000{bottom:571.813333pt;}
.yafe_c00000{bottom:572.093333pt;}
.y325_c00000{bottom:572.453333pt;}
.y59a_c00000{bottom:572.573333pt;}
.y768_c00000{bottom:572.733333pt;}
.y954_c00000{bottom:573.093333pt;}
.y6fd_c00000{bottom:573.213333pt;}
.y550_c00000{bottom:573.373333pt;}
.yed_c00000{bottom:573.533333pt;}
.yaf1_c00000{bottom:574.013333pt;}
.ya4d_c00000{bottom:574.053333pt;}
.y648_c00000{bottom:574.333333pt;}
.yb20_c00000{bottom:574.973333pt;}
.y221_c00000{bottom:575.133333pt;}
.yac9_c00000{bottom:575.613333pt;}
.y6b0_c00000{bottom:575.773333pt;}
.y4ee_c00000{bottom:575.933333pt;}
.y119_c00000{bottom:576.253333pt;}
.yb4e_c00000{bottom:576.573333pt;}
.y61e_c00000{bottom:577.053333pt;}
.yac2_c00000{bottom:577.213333pt;}
.y790_c00000{bottom:577.853333pt;}
.y9ff_c00000{bottom:578.213333pt;}
.y6f2_c00000{bottom:578.333333pt;}
.y4f_c00000{bottom:578.813333pt;}
.y235_c00000{bottom:578.973333pt;}
.y3e2_c00000{bottom:579.293333pt;}
.y73b_c00000{bottom:579.333333pt;}
.y72c_c00000{bottom:579.613333pt;}
.y49c_c00000{bottom:579.773333pt;}
.y826_c00000{bottom:580.253333pt;}
.y209_c00000{bottom:580.413333pt;}
.y996_c00000{bottom:580.773333pt;}
.y58a_c00000{bottom:581.213333pt;}
.y105_c00000{bottom:581.533333pt;}
.y7b9_c00000{bottom:581.573333pt;}
.y681_c00000{bottom:581.693333pt;}
.y933_c00000{bottom:581.893333pt;}
.y76_c00000{bottom:582.013333pt;}
.y3c2_c00000{bottom:582.333333pt;}
.y2af_c00000{bottom:582.813333pt;}
.yb6d_c00000{bottom:582.973333pt;}
.y70f_c00000{bottom:583.133333pt;}
.y812_c00000{bottom:583.173333pt;}
.y583_c00000{bottom:583.293333pt;}
.y7e0_c00000{bottom:583.453333pt;}
.y423_c00000{bottom:583.613333pt;}
.y4c8_c00000{bottom:584.253333pt;}
.ya2d_c00000{bottom:584.293333pt;}
.y274_c00000{bottom:584.733333pt;}
.y251_c00000{bottom:584.893333pt;}
.y5cb_c00000{bottom:585.053333pt;}
.y9d_c00000{bottom:585.693333pt;}
.y738_c00000{bottom:586.333333pt;}
.ya98_c00000{bottom:586.653333pt;}
.y7a4_c00000{bottom:586.973333pt;}
.y5ec_c00000{bottom:587.133333pt;}
.y6d2_c00000{bottom:587.293333pt;}
.y3fd_c00000{bottom:587.453333pt;}
.y484_c00000{bottom:587.613333pt;}
.y450_c00000{bottom:587.773333pt;}
.y330_c00000{bottom:587.813333pt;}
.y7b1_c00000{bottom:587.933333pt;}
.y181_c00000{bottom:588.093333pt;}
.y1dd_c00000{bottom:588.253333pt;}
.y2f7_c00000{bottom:588.613333pt;}
.y413_c00000{bottom:588.733333pt;}
.y7f3_c00000{bottom:588.893333pt;}
.y35a_c00000{bottom:589.253333pt;}
.y526_c00000{bottom:589.373333pt;}
.yaae_c00000{bottom:589.693333pt;}
.y82c_c00000{bottom:589.853333pt;}
.y558_c00000{bottom:590.173333pt;}
.y440_c00000{bottom:590.493333pt;}
.y8e4_c00000{bottom:590.533333pt;}
.yaf0_c00000{bottom:590.973333pt;}
.y610_c00000{bottom:591.133333pt;}
.y131_c00000{bottom:592.253333pt;}
.y9b7_c00000{bottom:592.453333pt;}
.y66b_c00000{bottom:592.733333pt;}
.y1b9_c00000{bottom:593.213333pt;}
.y2d2_c00000{bottom:594.013333pt;}
.y78f_c00000{bottom:594.653333pt;}
.yba1_c00000{bottom:595.773333pt;}
.yad5_c00000{bottom:597.053333pt;}
.y14c_c00000{bottom:597.373333pt;}
.yb9_c00000{bottom:597.693333pt;}
.y166_c00000{bottom:597.853333pt;}
.y3a3_c00000{bottom:598.333333pt;}
.y680_c00000{bottom:598.493333pt;}
.y53b_c00000{bottom:598.653333pt;}
.y72b_c00000{bottom:599.133333pt;}
.y1a2_c00000{bottom:599.293333pt;}
.yafd_c00000{bottom:599.613333pt;}
.y582_c00000{bottom:600.093333pt;}
.y75_c00000{bottom:600.413333pt;}
.y54f_c00000{bottom:601.053333pt;}
.y647_c00000{bottom:601.533333pt;}
.y250_c00000{bottom:601.693333pt;}
.yb66_c00000{bottom:602.013333pt;}
.yec_c00000{bottom:602.653333pt;}
.y737_c00000{bottom:603.133333pt;}
.yb77_c00000{bottom:603.293333pt;}
.y4ed_c00000{bottom:603.453333pt;}
.y7c1_c00000{bottom:603.773333pt;}
.yb4d_c00000{bottom:604.253333pt;}
.y312_c00000{bottom:604.613333pt;}
.ya97_c00000{bottom:604.733333pt;}
.y118_c00000{bottom:605.533333pt;}
.y38d_c00000{bottom:605.733333pt;}
.y2b_c00000{bottom:605.927680pt;}
.y69_c00000{bottom:606.173333pt;}
.y4e_c00000{bottom:606.493333pt;}
.y1dc_c00000{bottom:606.653333pt;}
.y3e1_c00000{bottom:606.973333pt;}
.y773_c00000{bottom:607.773333pt;}
.yd4_c00000{bottom:607.933333pt;}
.y208_c00000{bottom:608.093333pt;}
.y628_c00000{bottom:608.733333pt;}
.y589_c00000{bottom:608.893333pt;}
.y69f_c00000{bottom:609.533333pt;}
.y3c1_c00000{bottom:609.853333pt;}
.y2ae_c00000{bottom:610.333333pt;}
.y104_c00000{bottom:610.653333pt;}
.y61d_c00000{bottom:610.813333pt;}
.y78e_c00000{bottom:611.613333pt;}
.y4c7_c00000{bottom:611.933333pt;}
.y73a_c00000{bottom:612.293333pt;}
.y273_c00000{bottom:612.413333pt;}
.y5ca_c00000{bottom:612.573333pt;}
.yb8a_c00000{bottom:612.733333pt;}
.yad4_c00000{bottom:614.013333pt;}
.y7a3_c00000{bottom:614.493333pt;}
.y7b8_c00000{bottom:614.533333pt;}
.y9c_c00000{bottom:614.813333pt;}
.ya_c00000{bottom:614.973333pt;}
.y3fc_c00000{bottom:615.133333pt;}
.y631_c00000{bottom:615.293333pt;}
.y599_c00000{bottom:615.453333pt;}
.y5d7_c00000{bottom:615.613333pt;}
.y180_c00000{bottom:615.773333pt;}
.y811_c00000{bottom:615.973333pt;}
.y7f2_c00000{bottom:616.413333pt;}
.y6f1_c00000{bottom:616.893333pt;}
.y581_c00000{bottom:617.053333pt;}
.yaad_c00000{bottom:617.213333pt;}
.y43f_c00000{bottom:618.013333pt;}
.y24f_c00000{bottom:618.493333pt;}
.y130_c00000{bottom:618.653333pt;}
.y74_c00000{bottom:618.813333pt;}
.y646_c00000{bottom:620.093333pt;}
.y66a_c00000{bottom:620.253333pt;}
.y1b8_c00000{bottom:620.733333pt;}
.y307_c00000{bottom:620.773333pt;}
.y557_c00000{bottom:620.893333pt;}
.y385_c00000{bottom:621.413333pt;}
.y2d1_c00000{bottom:621.693333pt;}
.ya4c_c00000{bottom:623.013333pt;}
.y2a_c00000{bottom:623.203840pt;}
.yba0_c00000{bottom:623.453333pt;}
.y6fc_c00000{bottom:623.773333pt;}
.y82b_c00000{bottom:623.933333pt;}
.yaef_c00000{bottom:624.733333pt;}
.y290_c00000{bottom:624.893333pt;}
.y1db_c00000{bottom:625.053333pt;}
.y165_c00000{bottom:625.373333pt;}
.y3a2_c00000{bottom:625.853333pt;}
.y53a_c00000{bottom:626.333333pt;}
.ya8d_c00000{bottom:627.293333pt;}
.y412_c00000{bottom:627.453333pt;}
.y61c_c00000{bottom:627.613333pt;}
.yac1_c00000{bottom:627.773333pt;}
.y767_c00000{bottom:627.933333pt;}
.y78d_c00000{bottom:628.413333pt;}
.y54e_c00000{bottom:628.573333pt;}
.y825_c00000{bottom:629.213333pt;}
.y1a1_c00000{bottom:630.013333pt;}
.y2e7_c00000{bottom:630.533333pt;}
.yac8_c00000{bottom:630.653333pt;}
.yad3_c00000{bottom:630.813333pt;}
.y6af_c00000{bottom:630.973333pt;}
.y4ec_c00000{bottom:631.133333pt;}
.yeb_c00000{bottom:631.773333pt;}
.y49b_c00000{bottom:631.933333pt;}
.y67f_c00000{bottom:632.253333pt;}
.yb3b_c00000{bottom:632.413333pt;}
.y739_c00000{bottom:632.933333pt;}
.y4d_c00000{bottom:634.013333pt;}
.y234_c00000{bottom:634.173333pt;}
.y3e0_c00000{bottom:634.493333pt;}
.y9_c00000{bottom:634.653333pt;}
.y24e_c00000{bottom:635.453333pt;}
.y207_c00000{bottom:635.613333pt;}
.y588_c00000{bottom:636.413333pt;}
.y32f_c00000{bottom:636.773333pt;}
.y645_c00000{bottom:636.893333pt;}
.yd3_c00000{bottom:637.053333pt;}
.y73_c00000{bottom:637.213333pt;}
.yb17_c00000{bottom:637.373333pt;}
.y3c0_c00000{bottom:637.533333pt;}
.y324_c00000{bottom:637.573333pt;}
.y72a_c00000{bottom:637.853333pt;}
.y2ad_c00000{bottom:638.013333pt;}
.ya96_c00000{bottom:638.493333pt;}
.yb8_c00000{bottom:638.653333pt;}
.y861_c00000{bottom:638.693333pt;}
.y4c6_c00000{bottom:639.453333pt;}
.y103_c00000{bottom:639.773333pt;}
.y272_c00000{bottom:639.933333pt;}
.y9fc_c00000{bottom:640.453333pt;}
.y29_c00000{bottom:640.480000pt;}
.y6fb_c00000{bottom:640.733333pt;}
.yaee_c00000{bottom:641.533333pt;}
.y7a2_c00000{bottom:642.173333pt;}
.y939_c00000{bottom:642.213333pt;}
.y6d1_c00000{bottom:642.493333pt;}
.y3fb_c00000{bottom:642.653333pt;}
.y483_c00000{bottom:642.813333pt;}
.y64f_c00000{bottom:642.973333pt;}
.y7b0_c00000{bottom:643.133333pt;}
.y17f_c00000{bottom:643.293333pt;}
.y1da_c00000{bottom:643.453333pt;}
.y7f1_c00000{bottom:644.093333pt;}
.y61b_c00000{bottom:644.573333pt;}
.yaac_c00000{bottom:644.893333pt;}
.y12f_c00000{bottom:645.053333pt;}
.y78c_c00000{bottom:645.373333pt;}
.y43e_c00000{bottom:645.693333pt;}
.y60f_c00000{bottom:646.333333pt;}
.y8e2_c00000{bottom:646.533333pt;}
.y411_c00000{bottom:646.973333pt;}
.yad2_c00000{bottom:647.613333pt;}
.y669_c00000{bottom:647.933333pt;}
.y1b7_c00000{bottom:648.413333pt;}
.y7df_c00000{bottom:649.053333pt;}
.y2d0_c00000{bottom:649.213333pt;}
.y14b_c00000{bottom:650.013333pt;}
.ya26_c00000{bottom:650.693333pt;}
.y49a_c00000{bottom:651.293333pt;}
.y2e6_c00000{bottom:651.333333pt;}
.y556_c00000{bottom:651.453333pt;}
.y24d_c00000{bottom:652.253333pt;}
.y810_c00000{bottom:652.453333pt;}
.y28f_c00000{bottom:652.573333pt;}
.y164_c00000{bottom:653.053333pt;}
.y3a1_c00000{bottom:653.533333pt;}
.y2f6_c00000{bottom:653.573333pt;}
.y644_c00000{bottom:653.693333pt;}
.y539_c00000{bottom:653.853333pt;}
.ya95_c00000{bottom:655.293333pt;}
.y860_c00000{bottom:655.493333pt;}
.y72_c00000{bottom:655.613333pt;}
.y9b_c00000{bottom:655.773333pt;}
.y54d_c00000{bottom:656.253333pt;}
.yb81_c00000{bottom:657.053333pt;}
.y729_c00000{bottom:657.213333pt;}
.y6fa_c00000{bottom:657.533333pt;}
.y82a_c00000{bottom:657.693333pt;}
.yac7_c00000{bottom:658.333333pt;}
.y28_c00000{bottom:658.608640pt;}
.y4eb_c00000{bottom:658.653333pt;}
.y5c9_c00000{bottom:658.813333pt;}
.yb4c_c00000{bottom:659.453333pt;}
.y6bd_c00000{bottom:660.573333pt;}
.y1a0_c00000{bottom:660.733333pt;}
.yea_c00000{bottom:660.893333pt;}
.y4c_c00000{bottom:661.693333pt;}
.y772_c00000{bottom:661.853333pt;}
.y3df_c00000{bottom:662.173333pt;}
.y63c_c00000{bottom:663.133333pt;}
.y206_c00000{bottom:663.293333pt;}
.y117_c00000{bottom:663.773333pt;}
.y627_c00000{bottom:663.933333pt;}
.y5c1_c00000{bottom:664.093333pt;}
.yad1_c00000{bottom:664.573333pt;}
.yd2_c00000{bottom:664.733333pt;}
.y3bf_c00000{bottom:665.053333pt;}
.y2ac_c00000{bottom:665.533333pt;}
.y7de_c00000{bottom:665.853333pt;}
.y67e_c00000{bottom:666.013333pt;}
.yb7_c00000{bottom:666.173333pt;}
.y4c5_c00000{bottom:667.133333pt;}
.y271_c00000{bottom:667.613333pt;}
.y5eb_c00000{bottom:668.253333pt;}
.y24c_c00000{bottom:669.213333pt;}
.y7a1_c00000{bottom:669.693333pt;}
.y2e5_c00000{bottom:669.733333pt;}
.y6d0_c00000{bottom:670.173333pt;}
.y482_c00000{bottom:670.333333pt;}
.y62b_c00000{bottom:670.493333pt;}
.y9d6_c00000{bottom:670.533333pt;}
.y40e_c00000{bottom:670.653333pt;}
.y5d6_c00000{bottom:670.813333pt;}
.y17e_c00000{bottom:670.973333pt;}
.yb65_c00000{bottom:671.133333pt;}
.y12e_c00000{bottom:671.613333pt;}
.ya4a_c00000{bottom:671.973333pt;}
.y410_c00000{bottom:672.253333pt;}
.yaab_c00000{bottom:672.413333pt;}
.y85f_c00000{bottom:672.453333pt;}
.y43d_c00000{bottom:673.213333pt;}
.y60e_c00000{bottom:673.853333pt;}
.y71_c00000{bottom:674.013333pt;}
.y6f9_c00000{bottom:674.493333pt;}
.y220_c00000{bottom:674.813333pt;}
.yaed_c00000{bottom:675.293333pt;}
.y668_c00000{bottom:675.453333pt;}
.y1b6_c00000{bottom:675.933333pt;}
.y27_c00000{bottom:676.522880pt;}
.y3fa_c00000{bottom:676.733333pt;}
.y2cf_c00000{bottom:676.893333pt;}
.y5c8_c00000{bottom:677.213333pt;}
.y75f_c00000{bottom:677.533333pt;}
.y78b_c00000{bottom:678.973333pt;}
.y8_c00000{bottom:679.293333pt;}
.y28e_c00000{bottom:680.093333pt;}
.y771_c00000{bottom:680.253333pt;}
.y70e_c00000{bottom:680.413333pt;}
.y163_c00000{bottom:680.573333pt;}
.y102_c00000{bottom:680.733333pt;}
.y3a0_c00000{bottom:681.053333pt;}
.yae2_c00000{bottom:681.373333pt;}
.y538_c00000{bottom:681.533333pt;}
.y555_c00000{bottom:682.173333pt;}
.y7dd_c00000{bottom:682.493333pt;}
.y54c_c00000{bottom:682.813333pt;}
.y766_c00000{bottom:683.133333pt;}
.yb80_c00000{bottom:684.733333pt;}
.y32e_c00000{bottom:685.733333pt;}
.yac6_c00000{bottom:685.853333pt;}
.y24b_c00000{bottom:686.013333pt;}
.y6ae_c00000{bottom:686.173333pt;}
.y4ea_c00000{bottom:686.333333pt;}
.yb4b_c00000{bottom:686.973333pt;}
.y643_c00000{bottom:687.453333pt;}
.yafc_c00000{bottom:687.613333pt;}
.y2e4_c00000{bottom:688.133333pt;}
.yb16_c00000{bottom:689.053333pt;}
.y4b_c00000{bottom:689.213333pt;}
.y85e_c00000{bottom:689.253333pt;}
.y233_c00000{bottom:689.373333pt;}
.y3de_c00000{bottom:689.693333pt;}
.ye9_c00000{bottom:690.173333pt;}
.y63b_c00000{bottom:690.493333pt;}
.y205_c00000{bottom:690.813333pt;}
.y19f_c00000{bottom:691.293333pt;}
.y5c0_c00000{bottom:691.613333pt;}
.yaec_c00000{bottom:692.093333pt;}
.yd1_c00000{bottom:692.253333pt;}
.y70_c00000{bottom:692.413333pt;}
.y3be_c00000{bottom:692.733333pt;}
.y116_c00000{bottom:692.893333pt;}
.y2ab_c00000{bottom:693.213333pt;}
.yb6_c00000{bottom:693.853333pt;}
.y75e_c00000{bottom:694.333333pt;}
.y4c4_c00000{bottom:694.653333pt;}
.y270_c00000{bottom:695.133333pt;}
.y499_c00000{bottom:695.933333pt;}
.y3f9_c00000{bottom:696.093333pt;}
.y9a_c00000{bottom:696.733333pt;}
.y6cf_c00000{bottom:697.373333pt;}
.y12d_c00000{bottom:698.013333pt;}
.y40d_c00000{bottom:698.173333pt;}
.y7af_c00000{bottom:698.333333pt;}
.y17d_c00000{bottom:698.493333pt;}
.y586_c00000{bottom:698.653333pt;}
.y7dc_c00000{bottom:699.293333pt;}
.y67d_c00000{bottom:699.773333pt;}
.yaaa_c00000{bottom:700.093333pt;}
.y14a_c00000{bottom:700.253333pt;}
.y43c_c00000{bottom:700.893333pt;}
.y60d_c00000{bottom:701.533333pt;}
.y24a_c00000{bottom:702.813333pt;}
.y667_c00000{bottom:703.133333pt;}
.y1b5_c00000{bottom:703.613333pt;}
.y642_c00000{bottom:704.413333pt;}
.ya8c_c00000{bottom:704.733333pt;}
.yb15_c00000{bottom:706.013333pt;}
.y28d_c00000{bottom:707.813333pt;}
.y162_c00000{bottom:708.293333pt;}
.y39f_c00000{bottom:708.773333pt;}
.y63a_c00000{bottom:708.933333pt;}
.y537_c00000{bottom:709.093333pt;}
.y26_c00000{bottom:710.275840pt;}
.y6f_c00000{bottom:710.853333pt;}
.y75d_c00000{bottom:711.333333pt;}
.yb7f_c00000{bottom:712.293333pt;}
.y78a_c00000{bottom:712.773333pt;}
.y554_c00000{bottom:712.933333pt;}
.yac5_c00000{bottom:713.573333pt;}
.y4e9_c00000{bottom:713.893333pt;}
.yb4a_c00000{bottom:714.693333pt;}
.yae1_c00000{bottom:715.173333pt;}
.y3f8_c00000{bottom:715.493333pt;}
.y6ce_c00000{bottom:715.813333pt;}
.y4a_c00000{bottom:716.933333pt;}
.y5ea_c00000{bottom:717.253333pt;}
.y3dd_c00000{bottom:717.413333pt;}
.y653_c00000{bottom:718.373333pt;}
.y204_c00000{bottom:718.533333pt;}
.y21f_c00000{bottom:718.853333pt;}
.y626_c00000{bottom:719.173333pt;}
.ye8_c00000{bottom:719.333333pt;}
.y7_c00000{bottom:719.493333pt;}
.y7db_c00000{bottom:719.653333pt;}
.y249_c00000{bottom:719.813333pt;}
.yd0_c00000{bottom:719.973333pt;}
.y3bd_c00000{bottom:720.293333pt;}
.y2aa_c00000{bottom:720.773333pt;}
.y641_c00000{bottom:721.253333pt;}
.yb5_c00000{bottom:721.413333pt;}
.y101_c00000{bottom:721.733333pt;}
.y19e_c00000{bottom:722.053333pt;}
.y115_c00000{bottom:722.213333pt;}
.y498_c00000{bottom:722.373333pt;}
.y26f_c00000{bottom:722.853333pt;}
.yb1f_c00000{bottom:723.493333pt;}
.y2ce_c00000{bottom:723.973333pt;}
.y12c_c00000{bottom:724.453333pt;}
.y481_c00000{bottom:724.613333pt;}
.y7a0_c00000{bottom:724.933333pt;}
.y5c7_c00000{bottom:725.093333pt;}
.y6a8_c00000{bottom:725.733333pt;}
.y639_c00000{bottom:725.893333pt;}
.y5d5_c00000{bottom:726.053333pt;}
.y17c_c00000{bottom:726.213333pt;}
.y7f0_c00000{bottom:726.853333pt;}
.yaa9_c00000{bottom:727.653333pt;}
.y75c_c00000{bottom:728.133333pt;}
.y43b_c00000{bottom:728.453333pt;}
.y60c_c00000{bottom:729.093333pt;}
.y6e_c00000{bottom:729.253333pt;}
.y789_c00000{bottom:729.733333pt;}
.y666_c00000{bottom:730.693333pt;}
.y1b4_c00000{bottom:731.173333pt;}
.yae0_c00000{bottom:731.973333pt;}
.y6cd_c00000{bottom:732.773333pt;}
.y728_c00000{bottom:734.853333pt;}
.y3f7_c00000{bottom:735.013333pt;}
.y28c_c00000{bottom:735.333333pt;}
.y161_c00000{bottom:735.813333pt;}
.y39e_c00000{bottom:736.293333pt;}
.y248_c00000{bottom:736.613333pt;}
.y536_c00000{bottom:736.773333pt;}
.y7da_c00000{bottom:736.933333pt;}
.y99_c00000{bottom:737.733333pt;}
.y640_c00000{bottom:738.053333pt;}
.yafb_c00000{bottom:738.213333pt;}
.y765_c00000{bottom:738.373333pt;}
.yb14_c00000{bottom:739.653333pt;}
.yb7e_c00000{bottom:739.973333pt;}
.yb1a_c00000{bottom:740.293333pt;}
.y6_c00000{bottom:740.933333pt;}
.yac4_c00000{bottom:741.093333pt;}
.yb49_c00000{bottom:741.253333pt;}
.y6ad_c00000{bottom:741.413333pt;}
.y4e8_c00000{bottom:741.573333pt;}
.y480_c00000{bottom:741.893333pt;}
.yb58_c00000{bottom:742.213333pt;}
.y638_c00000{bottom:742.693333pt;}
.yaeb_c00000{bottom:742.853333pt;}
.y2cd_c00000{bottom:743.333333pt;}
.y553_c00000{bottom:743.493333pt;}
.y25_c00000{bottom:744.190720pt;}
.y49_c00000{bottom:744.453333pt;}
.y232_c00000{bottom:744.613333pt;}
.y3dc_c00000{bottom:744.933333pt;}
.yaa8_c00000{bottom:745.893333pt;}
.y203_c00000{bottom:746.053333pt;}
.y625_c00000{bottom:746.853333pt;}
.ycf_c00000{bottom:747.493333pt;}
.y6d_c00000{bottom:747.653333pt;}
.y3bc_c00000{bottom:747.973333pt;}
.ye7_c00000{bottom:748.453333pt;}
.yadf_c00000{bottom:748.933333pt;}
.yb4_c00000{bottom:749.093333pt;}
.y6cc_c00000{bottom:749.573333pt;}
.y497_c00000{bottom:749.893333pt;}
.y5e9_c00000{bottom:750.213333pt;}
.y149_c00000{bottom:750.373333pt;}
.y100_c00000{bottom:750.853333pt;}
.y12b_c00000{bottom:751.013333pt;}
.y6bc_c00000{bottom:752.613333pt;}
.y19d_c00000{bottom:752.773333pt;}
.y64c_c00000{bottom:753.413333pt;}
.y247_c00000{bottom:753.573333pt;}
.y17b_c00000{bottom:753.733333pt;}
.y727_c00000{bottom:754.213333pt;}
.y3f6_c00000{bottom:754.373333pt;}
.y7ef_c00000{bottom:754.533333pt;}
.y63f_c00000{bottom:755.013333pt;}
.y7d9_c00000{bottom:755.333333pt;}
.y43a_c00000{bottom:756.133333pt;}
.yb13_c00000{bottom:756.613333pt;}
.y60b_c00000{bottom:756.773333pt;}
.y2e1_c00000{bottom:756.800000pt;}
.y47f_c00000{bottom:756.933333pt;}
.y5c6_c00000{bottom:758.053333pt;}
.y665_c00000{bottom:758.373333pt;}
.y1b3_c00000{bottom:758.853333pt;}
.y637_c00000{bottom:759.653333pt;}
.y21e_c00000{bottom:759.813333pt;}
.y70d_c00000{bottom:761.573333pt;}
.y75b_c00000{bottom:761.893333pt;}
.y5_c00000{bottom:762.373333pt;}
.y2cc_c00000{bottom:762.693333pt;}
.y114_c00000{bottom:763.013333pt;}
.y160_c00000{bottom:763.493333pt;}
.y39d_c00000{bottom:763.813333pt;}
.y535_c00000{bottom:764.293333pt;}
.yade_c00000{bottom:765.733333pt;}
.y6c_c00000{bottom:766.053333pt;}
.y2a9_c00000{bottom:766.533333pt;}
.yb7d_c00000{bottom:767.493333pt;}
.y4e7_c00000{bottom:769.093333pt;}
.yb57_c00000{bottom:769.893333pt;}
.y246_c00000{bottom:770.373333pt;}
.yff_c00000{bottom:771.973333pt;}
.y48_c00000{bottom:772.133333pt;}
.y3db_c00000{bottom:772.613333pt;}
.yb12_c00000{bottom:773.413333pt;}
.y652_c00000{bottom:773.573333pt;}
.y202_c00000{bottom:773.733333pt;}
.y624_c00000{bottom:774.373333pt;}
.yadb_c00000{bottom:774.533333pt;}
.yb48_c00000{bottom:775.013333pt;}
.yce_c00000{bottom:775.173333pt;}
.y3bb_c00000{bottom:775.493333pt;}
.y56e_c00000{bottom:775.973333pt;}
.y636_c00000{bottom:776.453333pt;}
.yb3_c00000{bottom:776.613333pt;}
.y12a_c00000{bottom:777.413333pt;}
.ye6_c00000{bottom:777.573333pt;}
.y24_c00000{bottom:778.105600pt;}
.y98_c00000{bottom:778.693333pt;}
.y26e_c00000{bottom:779.653333pt;}
.y79f_c00000{bottom:780.133333pt;}
.y44f_c00000{bottom:781.093333pt;}
.y5d4_c00000{bottom:781.253333pt;}
.y17a_c00000{bottom:781.413333pt;}
.y7ee_c00000{bottom:781.733333pt;}
.ya8b_c00000{bottom:782.053333pt;}
.y2cb_c00000{bottom:782.213333pt;}
.yadd_c00000{bottom:782.693333pt;}
.y19c_c00000{bottom:783.333333pt;}
.y439_c00000{bottom:783.653333pt;}
.y4_c00000{bottom:783.813333pt;}
.y60a_c00000{bottom:784.293333pt;}
.y664_c00000{bottom:785.893333pt;}
.y1b2_c00000{bottom:786.373333pt;}
.y245_c00000{bottom:787.173333pt;}
.y21d_c00000{bottom:787.333333pt;}
.yb11_c00000{bottom:790.373333pt;}
.y28b_c00000{bottom:790.533333pt;}
.y5c5_c00000{bottom:790.853333pt;}
.y15f_c00000{bottom:791.013333pt;}
.y39c_c00000{bottom:791.493333pt;}
.yb47_c00000{bottom:791.813333pt;}
.y534_c00000{bottom:791.973333pt;}
.y7d8_c00000{bottom:792.133333pt;}
.y3f5_c00000{bottom:793.093333pt;}
.y635_c00000{bottom:793.253333pt;}
.yaea_c00000{bottom:793.413333pt;}
.yb7c_c00000{bottom:795.173333pt;}
.y75a_c00000{bottom:795.653333pt;}
.y26d_c00000{bottom:796.453333pt;}
.y4e6_c00000{bottom:796.613333pt;}
.y3da_c00000{bottom:799.173333pt;}
.y47_c00000{bottom:799.333333pt;}
.y68_c00000{bottom:799.653333pt;}
.y231_c00000{bottom:799.813333pt;}
.y6cb_c00000{bottom:800.133333pt;}
.y2a8_c00000{bottom:800.293333pt;}
.y148_c00000{bottom:800.453333pt;}
.yfe_c00000{bottom:801.093333pt;}
.y201_c00000{bottom:801.253333pt;}
.y2ca_c00000{bottom:801.573333pt;}
.y623_c00000{bottom:802.053333pt;}
.y69e_c00000{bottom:802.693333pt;}
.yb9f_c00000{bottom:802.853333pt;}
.y3ba_c00000{bottom:803.173333pt;}
.y56d_c00000{bottom:803.653333pt;}
.y129_c00000{bottom:803.813333pt;}
.y113_c00000{bottom:803.973333pt;}
.y244_c00000{bottom:804.133333pt;}
.yb2_c00000{bottom:804.293333pt;}
.y496_c00000{bottom:805.093333pt;}
.y3_c00000{bottom:805.253333pt;}
.y6b_c00000{bottom:805.733333pt;}
.y47e_c00000{bottom:807.173333pt;}
.y79e_c00000{bottom:807.813333pt;}
.y580_c00000{bottom:808.613333pt;}
.yb46_c00000{bottom:808.773333pt;}
.y179_c00000{bottom:808.933333pt;}
.y634_c00000{bottom:810.213333pt;}
.y438_c00000{bottom:811.333333pt;}
.y609_c00000{bottom:811.653333pt;}
.y23_c00000{bottom:812.020480pt;}
.y726_c00000{bottom:812.453333pt;}
.y3f4_c00000{bottom:812.613333pt;}
.y26c_c00000{bottom:813.253333pt;}
.y663_c00000{bottom:813.413333pt;}
.yb3a_c00000{bottom:813.573333pt;}
.y19b_c00000{bottom:814.053333pt;}
.y5e8_c00000{bottom:815.173333pt;}
.y2a7_c00000{bottom:817.093333pt;}
.y28a_c00000{bottom:818.213333pt;}
.ye5_c00000{bottom:818.533333pt;}
.y15e_c00000{bottom:818.693333pt;}
.y39b_c00000{bottom:819.013333pt;}
.y97_c00000{bottom:819.493333pt;}
.y763_c00000{bottom:820.613333pt;}
.ya8a_c00000{bottom:820.773333pt;}
.y243_c00000{bottom:820.933333pt;}
.y5c4_c00000{bottom:823.813333pt;}
.y47d_c00000{bottom:823.973333pt;}
.y4e5_c00000{bottom:824.293333pt;}
.yb45_c00000{bottom:826.053333pt;}
.y70c_c00000{bottom:826.693333pt;}
.y46_c00000{bottom:827.333333pt;}
.y21c_c00000{bottom:827.973333pt;}
.y651_c00000{bottom:828.453333pt;}
.y200_c00000{bottom:828.933333pt;}
.yada_c00000{bottom:829.733333pt;}
.y608_c00000{bottom:830.053333pt;}
.y26b_c00000{bottom:830.213333pt;}
.yfd_c00000{bottom:830.373333pt;}
.y3b9_c00000{bottom:830.693333pt;}
.yb1_c00000{bottom:831.813333pt;}
.y5f_c00000{bottom:832.293333pt;}
.y495_c00000{bottom:832.773333pt;}
.y112_c00000{bottom:833.093333pt;}
.ycd_c00000{bottom:833.413333pt;}
.y6ca_c00000{bottom:833.893333pt;}
.y2a6_c00000{bottom:834.053333pt;}
.y79d_c00000{bottom:835.333333pt;}
.y64e_c00000{bottom:836.133333pt;}
.yae8_c00000{bottom:836.293333pt;}
.y587_c00000{bottom:836.453333pt;}
.y178_c00000{bottom:836.613333pt;}
.y762_c00000{bottom:837.413333pt;}
.y725_c00000{bottom:837.733333pt;}
.y242_c00000{bottom:837.893333pt;}
.y2_c00000{bottom:838.533333pt;}
.y437_c00000{bottom:838.853333pt;}
.y2c9_c00000{bottom:840.293333pt;}
.y5c3_c00000{bottom:840.453333pt;}
.y47c_c00000{bottom:840.773333pt;}
.y6a_c00000{bottom:840.933333pt;}
.y662_c00000{bottom:841.093333pt;}
.y1b1_c00000{bottom:841.573333pt;}
.yb44_c00000{bottom:843.973333pt;}
.y6bb_c00000{bottom:844.613333pt;}
.y19a_c00000{bottom:844.773333pt;}
.y289_c00000{bottom:845.733333pt;}
.y22_c00000{bottom:845.935360pt;}
.y15d_c00000{bottom:846.213333pt;}
.y39a_c00000{bottom:846.693333pt;}
.y1ff_c00000{bottom:847.013333pt;}
.y147_c00000{bottom:850.533333pt;}
.y2a5_c00000{bottom:850.853333pt;}
.y3d9_c00000{bottom:851.173333pt;}
.y4e4_c00000{bottom:851.813333pt;}
.yae7_c00000{bottom:853.093333pt;}
.y761_c00000{bottom:854.213333pt;}
.y111_c00000{bottom:854.373333pt;}
.y45_c00000{bottom:854.853333pt;}
.y230_c00000{bottom:855.013333pt;}
.y824_c00000{bottom:856.613333pt;}
.y128_c00000{bottom:856.773333pt;}
.y3b8_c00000{bottom:857.253333pt;}
.y47b_c00000{bottom:857.573333pt;}
.yb10_c00000{bottom:857.733333pt;}
.y69d_c00000{bottom:857.893333pt;}
.yb9e_c00000{bottom:858.053333pt;}
.ya89_c00000{bottom:859.333333pt;}
.y96_c00000{bottom:859.493333pt;}
.y2c8_c00000{bottom:859.813333pt;}
.y494_c00000{bottom:860.293333pt;}
.yb43_c00000{bottom:861.253333pt;}
.ycc_c00000{bottom:862.533333pt;}
.y241_c00000{bottom:863.813333pt;}
.y1fe_c00000{bottom:863.973333pt;}
.y177_c00000{bottom:864.133333pt;}
.y596_c00000{bottom:864.293333pt;}
.y436_c00000{bottom:866.533333pt;}
.y6c9_c00000{bottom:867.653333pt;}
.y2a4_c00000{bottom:867.813333pt;}
.y661_c00000{bottom:868.613333pt;}
.yb39_c00000{bottom:868.773333pt;}
.y21b_c00000{bottom:868.933333pt;}
.y1b0_c00000{bottom:869.253333pt;}
.yae6_c00000{bottom:870.053333pt;}
.y3d8_c00000{bottom:870.693333pt;}
.y5e_c00000{bottom:870.853333pt;}
.yb19_c00000{bottom:872.773333pt;}
.y567_c00000{bottom:873.093333pt;}
.y288_c00000{bottom:873.413333pt;}
.y15c_c00000{bottom:873.893333pt;}
.y47a_c00000{bottom:874.373333pt;}
.y760_c00000{bottom:874.533333pt;}
.y199_c00000{bottom:875.333333pt;}
.y110_c00000{bottom:875.493333pt;}
.y6ac_c00000{bottom:879.173333pt;}
.y4e3_c00000{bottom:879.493333pt;}
.y21_c00000{bottom:879.850240pt;}
.y1fd_c00000{bottom:880.773333pt;}
.y44_c00000{bottom:882.533333pt;}
.y127_c00000{bottom:883.173333pt;}
.y69c_c00000{bottom:885.573333pt;}
.yae5_c00000{bottom:886.853333pt;}
.y493_c00000{bottom:887.973333pt;}
.yb0_c00000{bottom:888.613333pt;}
.y823_c00000{bottom:889.573333pt;}
.y3b7_c00000{bottom:890.053333pt;}
.y479_c00000{bottom:891.013333pt;}
.y650_c00000{bottom:891.333333pt;}
.y399_c00000{bottom:891.493333pt;}
.y5d3_c00000{bottom:891.653333pt;}
.ycb_c00000{bottom:891.813333pt;}
.y598_c00000{bottom:891.973333pt;}
.y6c8_c00000{bottom:892.933333pt;}
.y2a3_c00000{bottom:893.093333pt;}
.y435_c00000{bottom:894.053333pt;}
.y660_c00000{bottom:895.973333pt;}
.yb42_c00000{bottom:896.133333pt;}
.yb38_c00000{bottom:896.293333pt;}
.y10f_c00000{bottom:896.613333pt;}
.y1af_c00000{bottom:896.773333pt;}
.y1fc_c00000{bottom:897.573333pt;}
.y95_c00000{bottom:897.733333pt;}
.ya88_c00000{bottom:898.053333pt;}
.y146_c00000{bottom:898.693333pt;}
.y287_c00000{bottom:900.933333pt;}
.y15b_c00000{bottom:901.413333pt;}
.yae4_c00000{bottom:903.813333pt;}
.y566_c00000{bottom:905.093333pt;}
.y198_c00000{bottom:906.053333pt;}
.y3b6_c00000{bottom:909.413333pt;}
.y5d_c00000{bottom:909.573333pt;}
.y43_c00000{bottom:909.733333pt;}
.y21a_c00000{bottom:909.893333pt;}
.y5e7_c00000{bottom:910.053333pt;}
.y126_c00000{bottom:910.213333pt;}
.y822_c00000{bottom:910.373333pt;}
.y70b_c00000{bottom:911.333333pt;}
.y478_c00000{bottom:911.493333pt;}
.y708_c00000{bottom:912.773333pt;}
.yb41_c00000{bottom:912.933333pt;}
.y69b_c00000{bottom:913.093333pt;}
.yb9d_c00000{bottom:913.253333pt;}
.y20_c00000{bottom:913.765120pt;}
.y607_c00000{bottom:914.373333pt;}
.y1fb_c00000{bottom:914.533333pt;}
.yaf_c00000{bottom:917.733333pt;}
.y452_c00000{bottom:919.013333pt;}
.yca_c00000{bottom:919.333333pt;}
.yae3_c00000{bottom:920.613333pt;}
.y434_c00000{bottom:921.573333pt;}
.y5c2_c00000{bottom:928.613333pt;}
.y3b5_c00000{bottom:928.773333pt;}
.yb40_c00000{bottom:930.213333pt;}
.y1fa_c00000{bottom:931.333333pt;}
.y6ba_c00000{bottom:936.613333pt;}
.y197_c00000{bottom:936.773333pt;}
.y42_c00000{bottom:941.760000pt;}
.y125_c00000{bottom:941.920000pt;}
.y145_c00000{bottom:944.320000pt;}
.y633_c00000{bottom:946.560000pt;}
.y451_c00000{bottom:946.720000pt;}
.y5d2_c00000{bottom:946.880000pt;}
.yae_c00000{bottom:947.040000pt;}
.y286_c00000{bottom:947.200000pt;}
.y1f_c00000{bottom:947.680000pt;}
.y5c_c00000{bottom:948.160000pt;}
.y1f9_c00000{bottom:948.320000pt;}
.y1_c00000{bottom:967.200000pt;}
.y91_c00000{bottom:996.800000pt;}
.h3f_c00000{height:16.000000pt;}
.h29_c00000{height:16.160000pt;}
.h52_c00000{height:16.192000pt;}
.h12_c00000{height:20.000000pt;}
.h28_c00000{height:20.160000pt;}
.hb3_c00000{height:29.920000pt;}
.h9a_c00000{height:31.360000pt;}
.h20_c00000{height:32.160000pt;}
.h3c_c00000{height:32.192000pt;}
.h34_c00000{height:32.320000pt;}
.h19_c00000{height:33.918750pt;}
.h7_c00000{height:39.243750pt;}
.h5e_c00000{height:42.084375pt;}
.h51_c00000{height:43.215000pt;}
.h11_c00000{height:43.441250pt;}
.hc_c00000{height:47.109375pt;}
.h1b_c00000{height:47.621250pt;}
.h2c_c00000{height:48.160000pt;}
.h32_c00000{height:48.192000pt;}
.h21_c00000{height:48.320000pt;}
.h31_c00000{height:48.352000pt;}
.hc3_c00000{height:49.280000pt;}
.h70_c00000{height:49.792000pt;}
.h30_c00000{height:50.490000pt;}
.hac_c00000{height:51.040000pt;}
.hab_c00000{height:51.072000pt;}
.haa_c00000{height:51.200000pt;}
.had_c00000{height:51.232000pt;}
.h72_c00000{height:51.392000pt;}
.h1a_c00000{height:52.134375pt;}
.h26_c00000{height:52.785000pt;}
.hb2_c00000{height:52.992000pt;}
.h8d_c00000{height:53.312000pt;}
.h64_c00000{height:53.440000pt;}
.hbf_c00000{height:53.535000pt;}
.h95_c00000{height:53.952000pt;}
.h16_c00000{height:55.080000pt;}
.h53_c00000{height:55.247500pt;}
.h8_c00000{height:55.275000pt;}
.h6a_c00000{height:55.360000pt;}
.h6c_c00000{height:55.392000pt;}
.h25_c00000{height:55.402500pt;}
.h9_c00000{height:55.867500pt;}
.h8f_c00000{height:56.000000pt;}
.h79_c00000{height:56.032000pt;}
.h86_c00000{height:56.320000pt;}
.h66_c00000{height:56.352000pt;}
.h50_c00000{height:56.760000pt;}
.h1c_c00000{height:57.375000pt;}
.h8c_c00000{height:57.440000pt;}
.h69_c00000{height:57.472000pt;}
.hbe_c00000{height:57.758750pt;}
.hb_c00000{height:57.787500pt;}
.ha_c00000{height:57.800300pt;}
.h77_c00000{height:58.272000pt;}
.h56_c00000{height:58.740000pt;}
.ha8_c00000{height:59.040000pt;}
.h7e_c00000{height:59.072000pt;}
.h80_c00000{height:59.200000pt;}
.h13_c00000{height:59.340000pt;}
.hb5_c00000{height:59.392000pt;}
.h7c_c00000{height:59.520000pt;}
.h74_c00000{height:59.552000pt;}
.h7b_c00000{height:59.680000pt;}
.h62_c00000{height:59.712000pt;}
.h98_c00000{height:60.000000pt;}
.h15_c00000{height:60.300000pt;}
.h1_c00000{height:60.519362pt;}
.h96_c00000{height:61.152000pt;}
.h4a_c00000{height:61.410000pt;}
.ha4_c00000{height:61.440000pt;}
.ha2_c00000{height:61.600000pt;}
.ha3_c00000{height:61.632000pt;}
.h17_c00000{height:61.920000pt;}
.h10_c00000{height:62.781250pt;}
.hf_c00000{height:62.812500pt;}
.hc4_c00000{height:63.311250pt;}
.h2b_c00000{height:64.320000pt;}
.h2d_c00000{height:64.352000pt;}
.h2e_c00000{height:64.480000pt;}
.he_c00000{height:64.500000pt;}
.h22_c00000{height:64.512000pt;}
.h88_c00000{height:64.640000pt;}
.h7f_c00000{height:65.760000pt;}
.h3_c00000{height:65.781915pt;}
.h81_c00000{height:65.792000pt;}
.hc2_c00000{height:66.400000pt;}
.h14_c00000{height:66.750000pt;}
.h97_c00000{height:67.040000pt;}
.h6e_c00000{height:67.200000pt;}
.h4b_c00000{height:71.503437pt;}
.h1f_c00000{height:71.524375pt;}
.h1e_c00000{height:71.684375pt;}
.h67_c00000{height:73.440000pt;}
.ha0_c00000{height:74.560000pt;}
.h2_c00000{height:75.465000pt;}
.hbc_c00000{height:75.552000pt;}
.h9d_c00000{height:76.640000pt;}
.h9c_c00000{height:76.832000pt;}
.hb7_c00000{height:78.880000pt;}
.h87_c00000{height:79.712000pt;}
.h33_c00000{height:80.480000pt;}
.h2f_c00000{height:80.512000pt;}
.h3b_c00000{height:80.640000pt;}
.h37_c00000{height:80.672000pt;}
.h47_c00000{height:81.120000pt;}
.h8a_c00000{height:83.072000pt;}
.h99_c00000{height:84.192000pt;}
.h9f_c00000{height:84.832000pt;}
.hd_c00000{height:85.785000pt;}
.h73_c00000{height:92.512000pt;}
.h93_c00000{height:92.640000pt;}
.hbb_c00000{height:93.120000pt;}
.h46_c00000{height:96.480000pt;}
.h38_c00000{height:96.512000pt;}
.h3d_c00000{height:96.640000pt;}
.h35_c00000{height:96.672000pt;}
.h4_c00000{height:96.750000pt;}
.h5_c00000{height:98.672872pt;}
.ha6_c00000{height:103.712000pt;}
.h18_c00000{height:104.800000pt;}
.h1d_c00000{height:107.715000pt;}
.h84_c00000{height:111.552000pt;}
.h23_c00000{height:112.640000pt;}
.h3e_c00000{height:112.672000pt;}
.h49_c00000{height:112.800000pt;}
.h36_c00000{height:112.832000pt;}
.h68_c00000{height:113.472000pt;}
.haf_c00000{height:114.752000pt;}
.h8b_c00000{height:115.520000pt;}
.h63_c00000{height:118.560000pt;}
.h94_c00000{height:119.712000pt;}
.h7a_c00000{height:120.000000pt;}
.ha1_c00000{height:123.872000pt;}
.h61_c00000{height:124.672000pt;}
.h82_c00000{height:128.800000pt;}
.h24_c00000{height:128.832000pt;}
.h65_c00000{height:130.592000pt;}
.h85_c00000{height:131.712000pt;}
.hc0_c00000{height:131.840000pt;}
.hba_c00000{height:131.872000pt;}
.h83_c00000{height:134.906667pt;}
.h58_c00000{height:144.800000pt;}
.h42_c00000{height:144.826667pt;}
.h3a_c00000{height:144.960000pt;}
.h39_c00000{height:144.986667pt;}
.h55_c00000{height:145.946667pt;}
.hc1_c00000{height:147.866667pt;}
.h89_c00000{height:148.186667pt;}
.hb8_c00000{height:153.466667pt;}
.h9b_c00000{height:154.106667pt;}
.h9e_c00000{height:160.026667pt;}
.h4e_c00000{height:161.146667pt;}
.hbd_c00000{height:163.226667pt;}
.h5a_c00000{height:164.026667pt;}
.h44_c00000{height:177.146667pt;}
.h48_c00000{height:178.426667pt;}
.h5d_c00000{height:180.186667pt;}
.h40_c00000{height:193.146667pt;}
.h8e_c00000{height:202.906667pt;}
.h90_c00000{height:204.346667pt;}
.ha7_c00000{height:205.946667pt;}
.h5c_c00000{height:212.346667pt;}
.h54_c00000{height:225.466667pt;}
.hb9_c00000{height:225.786667pt;}
.hb6_c00000{height:232.986667pt;}
.ha5_c00000{height:233.186667pt;}
.h4f_c00000{height:241.466667pt;}
.h6d_c00000{height:246.266667pt;}
.h7d_c00000{height:251.906667pt;}
.ha9_c00000{height:263.226667pt;}
.h76_c00000{height:270.786667pt;}
.hb1_c00000{height:281.826667pt;}
.h4d_c00000{height:289.786667pt;}
.h41_c00000{height:291.746667pt;}
.hb0_c00000{height:293.146667pt;}
.h6f_c00000{height:294.626667pt;}
.h75_c00000{height:309.946667pt;}
.h43_c00000{height:323.266667pt;}
.h45_c00000{height:340.706667pt;}
.h60_c00000{height:375.106667pt;}
.h91_c00000{height:383.106667pt;}
.h71_c00000{height:394.146667pt;}
.h78_c00000{height:398.813333pt;}
.hb4_c00000{height:402.173333pt;}
.h4c_c00000{height:402.493333pt;}
.h5b_c00000{height:407.586667pt;}
.hae_c00000{height:408.546667pt;}
.h92_c00000{height:435.426667pt;}
.h5f_c00000{height:489.213333pt;}
.h2a_c00000{height:503.773333pt;}
.h59_c00000{height:506.173333pt;}
.h57_c00000{height:573.533333pt;}
.h6b_c00000{height:582.333333pt;}
.h27_c00000{height:816.000000pt;}
.h0_c00000{height:1056.000000pt;}
.h6_c00000{height:1056.160000pt;}
.w11_c00000{width:37.120000pt;}
.wd_c00000{width:44.320000pt;}
.wc_c00000{width:59.232000pt;}
.w6_c00000{width:59.360000pt;}
.w2_c00000{width:59.392000pt;}
.w19_c00000{width:63.232000pt;}
.w1e_c00000{width:84.320000pt;}
.w25_c00000{width:91.552000pt;}
.w28_c00000{width:93.920000pt;}
.w2e_c00000{width:93.952000pt;}
.w2a_c00000{width:101.152000pt;}
.w13_c00000{width:103.360000pt;}
.w16_c00000{width:112.672000pt;}
.w2d_c00000{width:112.800000pt;}
.w1d_c00000{width:112.832000pt;}
.w15_c00000{width:119.840000pt;}
.w2c_c00000{width:119.872000pt;}
.w7_c00000{width:129.312000pt;}
.we_c00000{width:131.712000pt;}
.w12_c00000{width:141.146667pt;}
.w22_c00000{width:148.320000pt;}
.w17_c00000{width:150.586667pt;}
.w14_c00000{width:165.466667pt;}
.w20_c00000{width:167.226667pt;}
.w2f_c00000{width:169.440000pt;}
.w1c_c00000{width:169.466667pt;}
.wa_c00000{width:172.960000pt;}
.wb_c00000{width:180.506667pt;}
.w10_c00000{width:184.346667pt;}
.w8_c00000{width:188.506667pt;}
.w26_c00000{width:190.266667pt;}
.w9_c00000{width:206.906667pt;}
.w27_c00000{width:207.200000pt;}
.w18_c00000{width:216.826667pt;}
.w30_c00000{width:226.106667pt;}
.wf_c00000{width:235.706667pt;}
.w3_c00000{width:298.586667pt;}
.w4_c00000{width:298.786667pt;}
.w24_c00000{width:327.866667pt;}
.w1a_c00000{width:334.586667pt;}
.w21_c00000{width:430.146667pt;}
.w23_c00000{width:449.053333pt;}
.w1b_c00000{width:478.946667pt;}
.w1f_c00000{width:492.546667pt;}
.w31_c00000{width:598.013333pt;}
.w29_c00000{width:691.133333pt;}
.w2b_c00000{width:774.173333pt;}
.w0_c00000{width:816.000000pt;}
.w1_c00000{width:816.160000pt;}
.w5_c00000{width:1056.000000pt;}
.x0_c00000{left:0.000000pt;}
.x46_c00000{left:6.880000pt;}
.xaf_c00000{left:8.160000pt;}
.xaa_c00000{left:9.440000pt;}
.xb0_c00000{left:11.200000pt;}
.x97_c00000{left:12.640000pt;}
.x7b_c00000{left:14.240000pt;}
.x81_c00000{left:15.680000pt;}
.x6e_c00000{left:17.120000pt;}
.x59_c00000{left:18.560000pt;}
.x84_c00000{left:19.520000pt;}
.xa8_c00000{left:20.800000pt;}
.x38_c00000{left:22.240000pt;}
.x82_c00000{left:24.160000pt;}
.x31_c00000{left:25.920000pt;}
.x71_c00000{left:28.000000pt;}
.x7d_c00000{left:28.960000pt;}
.x6b_c00000{left:30.240000pt;}
.xa1_c00000{left:31.520000pt;}
.x7c_c00000{left:32.480000pt;}
.x58_c00000{left:33.792000pt;}
.x66_c00000{left:34.720000pt;}
.x56_c00000{left:36.192000pt;}
.x6a_c00000{left:37.600000pt;}
.x79_c00000{left:39.034667pt;}
.x90_c00000{left:39.994667pt;}
.x73_c00000{left:41.440000pt;}
.x55_c00000{left:43.232000pt;}
.x4f_c00000{left:44.672000pt;}
.xab_c00000{left:45.600000pt;}
.x57_c00000{left:47.066667pt;}
.x6d_c00000{left:48.800000pt;}
.xad_c00000{left:51.560000pt;}
.x53_c00000{left:53.280000pt;}
.xae_c00000{left:54.440000pt;}
.x70_c00000{left:55.706667pt;}
.xa3_c00000{left:57.306667pt;}
.x78_c00000{left:59.994667pt;}
.x8c_c00000{left:61.914667pt;}
.x87_c00000{left:63.034667pt;}
.x67_c00000{left:65.760000pt;}
.x45_c00000{left:66.906667pt;}
.x93_c00000{left:68.346667pt;}
.xac_c00000{left:71.080000pt;}
.x44_c00000{left:73.306667pt;}
.x5_c00000{left:75.520000pt;}
.x51_c00000{left:77.760000pt;}
.x68_c00000{left:84.320000pt;}
.x7_c00000{left:85.760000pt;}
.x4e_c00000{left:87.680000pt;}
.x80_c00000{left:89.440000pt;}
.x43_c00000{left:92.634667pt;}
.x4a_c00000{left:94.400000pt;}
.x8b_c00000{left:97.114667pt;}
.x42_c00000{left:99.994667pt;}
.xa2_c00000{left:101.114667pt;}
.x41_c00000{left:106.592000pt;}
.x7f_c00000{left:108.320000pt;}
.x88_c00000{left:109.466667pt;}
.x5f_c00000{left:112.186667pt;}
.xf_c00000{left:113.440000pt;}
.x5e_c00000{left:118.394667pt;}
.x99_c00000{left:121.152000pt;}
.x8d_c00000{left:124.794667pt;}
.x11_c00000{left:129.440000pt;}
.x89_c00000{left:131.354667pt;}
.x33_c00000{left:132.352000pt;}
.x85_c00000{left:134.560000pt;}
.x34_c00000{left:136.666667pt;}
.x8a_c00000{left:138.746667pt;}
.x6c_c00000{left:140.506667pt;}
.x8f_c00000{left:142.266667pt;}
.xbc_c00000{left:146.586667pt;}
.x6_c00000{left:147.866667pt;}
.x9e_c00000{left:150.234667pt;}
.x65_c00000{left:151.546667pt;}
.x1b_c00000{left:157.946667pt;}
.x1c_c00000{left:160.506667pt;}
.x35_c00000{left:161.466667pt;}
.x15_c00000{left:164.026667pt;}
.x9b_c00000{left:165.306667pt;}
.x47_c00000{left:170.266667pt;}
.x18_c00000{left:173.466667pt;}
.x61_c00000{left:178.106667pt;}
.x98_c00000{left:179.546667pt;}
.x4_c00000{left:182.106667pt;}
.x60_c00000{left:185.466667pt;}
.xb1_c00000{left:188.186667pt;}
.x8_c00000{left:189.466667pt;}
.x5c_c00000{left:192.026667pt;}
.x8e_c00000{left:193.626667pt;}
.xb5_c00000{left:196.026667pt;}
.x1e_c00000{left:198.426667pt;}
.x96_c00000{left:203.706667pt;}
.xb4_c00000{left:206.106667pt;}
.x83_c00000{left:207.866667pt;}
.x62_c00000{left:209.466667pt;}
.x77_c00000{left:210.586667pt;}
.x75_c00000{left:213.306667pt;}
.x40_c00000{left:215.706667pt;}
.x50_c00000{left:217.626667pt;}
.xb3_c00000{left:221.306667pt;}
.x3f_c00000{left:222.266667pt;}
.x9d_c00000{left:224.546667pt;}
.x7a_c00000{left:227.226667pt;}
.x29_c00000{left:229.946667pt;}
.x63_c00000{left:233.466667pt;}
.x1a_c00000{left:234.746667pt;}
.x17_c00000{left:241.786667pt;}
.x2f_c00000{left:246.586667pt;}
.x2a_c00000{left:249.466667pt;}
.xbb_c00000{left:253.306667pt;}
.xd_c00000{left:255.226667pt;}
.x3d_c00000{left:256.506667pt;}
.x64_c00000{left:257.466667pt;}
.x2d_c00000{left:260.186667pt;}
.xbe_c00000{left:261.634667pt;}
.x76_c00000{left:264.546667pt;}
.x1d_c00000{left:266.786667pt;}
.xa_c00000{left:269.666667pt;}
.x4d_c00000{left:271.546667pt;}
.x9c_c00000{left:274.466667pt;}
.x12_c00000{left:275.360000pt;}
.x2c_c00000{left:277.026667pt;}
.xc_c00000{left:278.146667pt;}
.x3_c00000{left:281.826667pt;}
.x28_c00000{left:284.546667pt;}
.x36_c00000{left:286.786667pt;}
.x6f_c00000{left:293.346667pt;}
.xb2_c00000{left:298.266667pt;}
.x25_c00000{left:299.746667pt;}
.x5d_c00000{left:305.826667pt;}
.x32_c00000{left:314.146667pt;}
.x1f_c00000{left:316.226667pt;}
.x3c_c00000{left:319.266667pt;}
.xb8_c00000{left:321.626667pt;}
.xbd_c00000{left:325.506667pt;}
.x10_c00000{left:329.441280pt;}
.x13_c00000{left:331.906667pt;}
.x39_c00000{left:332.866667pt;}
.x74_c00000{left:338.146667pt;}
.x9_c00000{left:340.066667pt;}
.x5a_c00000{left:343.266667pt;}
.xb_c00000{left:346.146667pt;}
.x3b_c00000{left:348.546667pt;}
.x48_c00000{left:350.466667pt;}
.x16_c00000{left:351.586667pt;}
.x2e_c00000{left:352.866667pt;}
.xe_c00000{left:354.466667pt;}
.x19_c00000{left:357.666667pt;}
.x5b_c00000{left:361.506667pt;}
.x9a_c00000{left:369.506667pt;}
.xa5_c00000{left:370.946667pt;}
.x3e_c00000{left:372.866667pt;}
.x94_c00000{left:378.466667pt;}
.x26_c00000{left:380.066667pt;}
.xa4_c00000{left:382.466667pt;}
.x23_c00000{left:396.546667pt;}
.x27_c00000{left:400.066667pt;}
.x24_c00000{left:402.626667pt;}
.x2b_c00000{left:405.986667pt;}
.x1_c00000{left:407.906667pt;}
.x3a_c00000{left:417.506667pt;}
.x37_c00000{left:421.026667pt;}
.x9f_c00000{left:435.106667pt;}
.x92_c00000{left:443.426667pt;}
.x22_c00000{left:449.853333pt;}
.x95_c00000{left:463.586667pt;}
.x2_c00000{left:468.253333pt;}
.x86_c00000{left:486.786667pt;}
.x91_c00000{left:488.866667pt;}
.x7e_c00000{left:491.773333pt;}
.x4c_c00000{left:492.706667pt;}
.xb6_c00000{left:498.946667pt;}
.x21_c00000{left:518.173333pt;}
.x69_c00000{left:520.253333pt;}
.x49_c00000{left:527.906667pt;}
.xb7_c00000{left:537.346667pt;}
.x72_c00000{left:539.133333pt;}
.x20_c00000{left:543.773333pt;}
.xa0_c00000{left:567.453333pt;}
.xa6_c00000{left:578.786667pt;}
.xb9_c00000{left:586.333333pt;}
.x52_c00000{left:614.493333pt;}
.xa7_c00000{left:692.093333pt;}
.x14_c00000{left:702.693333pt;}
.x30_c00000{left:729.733333pt;}
.xba_c00000{left:756.413333pt;}
.xa9_c00000{left:786.653333pt;}
.x54_c00000{left:788.093333pt;}
.x4b_c00000{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00001 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00001 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00001 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00001 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_c8062053dfabf9dea929f0a4.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.863770;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_b9cf1650826a93c32363e8b4.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.112305;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_058ef69361603ad64f90437f.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_cb2996662f3aeab34bcab9c6.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.311035;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.690918;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_d4750546fe548ebb5c63b5ca.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.902344;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_5f10ccf702374ce99896f4af.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.863770;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_a867c9dbd6a7c718e7cc5b05.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.311035;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_7ed79835a30d57407fee48e8.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.284180;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_95f8928597987ecdd96f8a1c.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;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:ffe_c00001;src:url('chunks/assets/font_baac18516dc2d188c6ee894a.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.112305;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_de3a15a9b47c2791c4c771b2.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.284180;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_105baa267878c8e6624237c2.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_20c3e7a60fc6ce164738114a.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_93a15c58782d768ed046049c.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_56585e3df255dd52264105ce.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:0.766113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9_c00001{vertical-align:-83.520000px;}
.v7_c00001{vertical-align:-82.080000px;}
.v8_c00001{vertical-align:-77.760000px;}
.v1_c00001{vertical-align:-75.600000px;}
.vb_c00001{vertical-align:-72.000000px;}
.va_c00001{vertical-align:-69.120000px;}
.v5_c00001{vertical-align:-33.120000px;}
.v6_c00001{vertical-align:-30.240000px;}
.v3_c00001{vertical-align:-27.360000px;}
.vc_c00001{vertical-align:-23.760000px;}
.v0_c00001{vertical-align:0.000000px;}
.v4_c00001{vertical-align:30.240000px;}
.v2_c00001{vertical-align:33.120000px;}
.ls6e_c00001{letter-spacing:-2.160000px;}
.ls3f_c00001{letter-spacing:-1.440000px;}
.lsb7_c00001{letter-spacing:-1.272000px;}
.ls4b_c00001{letter-spacing:-1.176000px;}
.ls9c_c00001{letter-spacing:-1.134000px;}
.ls69_c00001{letter-spacing:-1.080000px;}
.ls31_c00001{letter-spacing:-1.056000px;}
.lsb2_c00001{letter-spacing:-1.008000px;}
.ls42_c00001{letter-spacing:-0.936000px;}
.lsa6_c00001{letter-spacing:-0.846000px;}
.lsa7_c00001{letter-spacing:-0.828000px;}
.ls68_c00001{letter-spacing:-0.822000px;}
.lsae_c00001{letter-spacing:-0.774000px;}
.ls1c_c00001{letter-spacing:-0.720000px;}
.ls72_c00001{letter-spacing:-0.666000px;}
.ls39_c00001{letter-spacing:-0.648000px;}
.ls7_c00001{letter-spacing:-0.612000px;}
.ls26_c00001{letter-spacing:-0.576000px;}
.ls2f_c00001{letter-spacing:-0.567600px;}
.ls57_c00001{letter-spacing:-0.540000px;}
.ls5d_c00001{letter-spacing:-0.463800px;}
.ls4f_c00001{letter-spacing:-0.457800px;}
.ls62_c00001{letter-spacing:-0.414600px;}
.ls43_c00001{letter-spacing:-0.360000px;}
.lsb6_c00001{letter-spacing:-0.334200px;}
.ls8d_c00001{letter-spacing:-0.305400px;}
.ls28_c00001{letter-spacing:-0.292200px;}
.ls21_c00001{letter-spacing:-0.288000px;}
.lsc3_c00001{letter-spacing:-0.272400px;}
.lsb8_c00001{letter-spacing:-0.270600px;}
.ls80_c00001{letter-spacing:-0.219000px;}
.ls27_c00001{letter-spacing:-0.216000px;}
.ls73_c00001{letter-spacing:-0.206400px;}
.ls7f_c00001{letter-spacing:-0.166800px;}
.ls96_c00001{letter-spacing:-0.152400px;}
.ls1f_c00001{letter-spacing:-0.144000px;}
.ls61_c00001{letter-spacing:-0.109200px;}
.ls88_c00001{letter-spacing:-0.072000px;}
.lse_c00001{letter-spacing:-0.053400px;}
.ls79_c00001{letter-spacing:-0.051600px;}
.ls1_c00001{letter-spacing:0.000000px;}
.lsa8_c00001{letter-spacing:0.018000px;}
.ls81_c00001{letter-spacing:0.051600px;}
.ls37_c00001{letter-spacing:0.053400px;}
.ls5f_c00001{letter-spacing:0.072000px;}
.ls76_c00001{letter-spacing:0.080640px;}
.ls29_c00001{letter-spacing:0.106560px;}
.ls10_c00001{letter-spacing:0.106800px;}
.ls19_c00001{letter-spacing:0.109200px;}
.ls70_c00001{letter-spacing:0.120000px;}
.ls46_c00001{letter-spacing:0.144000px;}
.ls0_c00001{letter-spacing:0.150000px;}
.ls91_c00001{letter-spacing:0.152400px;}
.lsbe_c00001{letter-spacing:0.166800px;}
.lsc2_c00001{letter-spacing:0.174240px;}
.lsf_c00001{letter-spacing:0.180000px;}
.ls83_c00001{letter-spacing:0.206400px;}
.ls3a_c00001{letter-spacing:0.216000px;}
.ls30_c00001{letter-spacing:0.219000px;}
.ls77_c00001{letter-spacing:0.256200px;}
.ls5c_c00001{letter-spacing:0.256320px;}
.ls3_c00001{letter-spacing:0.259800px;}
.ls36_c00001{letter-spacing:0.259920px;}
.ls5_c00001{letter-spacing:0.262080px;}
.ls2_c00001{letter-spacing:0.262200px;}
.ls1e_c00001{letter-spacing:0.288000px;}
.ls6f_c00001{letter-spacing:0.305280px;}
.ls1d_c00001{letter-spacing:0.305400px;}
.ls90_c00001{letter-spacing:0.334080px;}
.ls4_c00001{letter-spacing:0.360000px;}
.ls50_c00001{letter-spacing:0.414600px;}
.ls33_c00001{letter-spacing:0.432000px;}
.ls8_c00001{letter-spacing:0.504000px;}
.ls66_c00001{letter-spacing:0.576000px;}
.lsc0_c00001{letter-spacing:0.612000px;}
.ls9e_c00001{letter-spacing:0.666000px;}
.lsc_c00001{letter-spacing:0.720000px;}
.ls7a_c00001{letter-spacing:0.774000px;}
.ls5e_c00001{letter-spacing:0.828000px;}
.ls86_c00001{letter-spacing:0.864000px;}
.ls14_c00001{letter-spacing:0.870000px;}
.ls82_c00001{letter-spacing:0.900000px;}
.lsaa_c00001{letter-spacing:1.152000px;}
.ls7b_c00001{letter-spacing:1.440000px;}
.lsb1_c00001{letter-spacing:1.560000px;}
.ls9a_c00001{letter-spacing:1.620000px;}
.ls32_c00001{letter-spacing:2.160000px;}
.ls85_c00001{letter-spacing:2.340000px;}
.ls59_c00001{letter-spacing:2.880000px;}
.ls55_c00001{letter-spacing:3.060000px;}
.ls52_c00001{letter-spacing:3.600000px;}
.ls34_c00001{letter-spacing:3.780000px;}
.ls4c_c00001{letter-spacing:3.905280px;}
.ls9b_c00001{letter-spacing:4.320000px;}
.ls65_c00001{letter-spacing:5.040000px;}
.ls9f_c00001{letter-spacing:5.220000px;}
.ls2c_c00001{letter-spacing:5.345280px;}
.ls35_c00001{letter-spacing:5.760000px;}
.ls71_c00001{letter-spacing:5.940000px;}
.ls53_c00001{letter-spacing:6.480000px;}
.ls25_c00001{letter-spacing:6.660000px;}
.ls4d_c00001{letter-spacing:6.785280px;}
.ls9d_c00001{letter-spacing:7.200000px;}
.ls98_c00001{letter-spacing:7.920000px;}
.lsd_c00001{letter-spacing:8.100000px;}
.ls3c_c00001{letter-spacing:8.640000px;}
.ls56_c00001{letter-spacing:8.820000px;}
.ls67_c00001{letter-spacing:8.940000px;}
.lsad_c00001{letter-spacing:9.540000px;}
.ls87_c00001{letter-spacing:10.056000px;}
.lsa0_c00001{letter-spacing:10.800000px;}
.ls24_c00001{letter-spacing:10.949760px;}
.ls38_c00001{letter-spacing:10.980000px;}
.lsa9_c00001{letter-spacing:11.520000px;}
.lsa1_c00001{letter-spacing:11.700000px;}
.ls5a_c00001{letter-spacing:12.240000px;}
.ls8b_c00001{letter-spacing:12.420000px;}
.lsb5_c00001{letter-spacing:12.960000px;}
.ls49_c00001{letter-spacing:13.680000px;}
.ls89_c00001{letter-spacing:14.376000px;}
.lsaf_c00001{letter-spacing:14.400000px;}
.ls75_c00001{letter-spacing:15.120000px;}
.ls58_c00001{letter-spacing:15.300000px;}
.ls8a_c00001{letter-spacing:15.840000px;}
.ls84_c00001{letter-spacing:17.280000px;}
.lsac_c00001{letter-spacing:17.460000px;}
.lsab_c00001{letter-spacing:17.640000px;}
.lsa5_c00001{letter-spacing:18.180000px;}
.lsa2_c00001{letter-spacing:18.720000px;}
.ls8c_c00001{letter-spacing:19.440000px;}
.ls20_c00001{letter-spacing:20.160000px;}
.ls94_c00001{letter-spacing:21.600000px;}
.lsc5_c00001{letter-spacing:23.040000px;}
.ls95_c00001{letter-spacing:23.760000px;}
.ls54_c00001{letter-spacing:24.624000px;}
.ls60_c00001{letter-spacing:24.660000px;}
.ls2e_c00001{letter-spacing:25.200000px;}
.ls6c_c00001{letter-spacing:25.505280px;}
.lsb3_c00001{letter-spacing:27.360000px;}
.ls51_c00001{letter-spacing:28.080000px;}
.ls74_c00001{letter-spacing:28.800000px;}
.lsb0_c00001{letter-spacing:29.520000px;}
.lsc1_c00001{letter-spacing:30.240000px;}
.ls22_c00001{letter-spacing:30.384000px;}
.ls2d_c00001{letter-spacing:32.544000px;}
.ls11_c00001{letter-spacing:33.840000px;}
.ls16_c00001{letter-spacing:34.145280px;}
.ls15_c00001{letter-spacing:37.745280px;}
.ls2b_c00001{letter-spacing:38.465280px;}
.ls12_c00001{letter-spacing:39.185280px;}
.ls64_c00001{letter-spacing:39.905280px;}
.ls8e_c00001{letter-spacing:43.505280px;}
.ls3e_c00001{letter-spacing:44.586720px;}
.ls1a_c00001{letter-spacing:44.945280px;}
.ls97_c00001{letter-spacing:46.224000px;}
.ls1b_c00001{letter-spacing:48.545280px;}
.ls8f_c00001{letter-spacing:51.425280px;}
.lsa_c00001{letter-spacing:51.840000px;}
.ls3d_c00001{letter-spacing:53.460000px;}
.ls18_c00001{letter-spacing:56.465280px;}
.lsbb_c00001{letter-spacing:56.880000px;}
.ls6a_c00001{letter-spacing:57.024000px;}
.ls9_c00001{letter-spacing:58.625280px;}
.lsb_c00001{letter-spacing:60.065280px;}
.ls93_c00001{letter-spacing:60.145920px;}
.ls92_c00001{letter-spacing:60.289920px;}
.ls5b_c00001{letter-spacing:60.624000px;}
.ls23_c00001{letter-spacing:62.784000px;}
.ls6_c00001{letter-spacing:63.665280px;}
.lsbf_c00001{letter-spacing:64.026720px;}
.lsb4_c00001{letter-spacing:64.224000px;}
.ls7d_c00001{letter-spacing:65.905920px;}
.ls78_c00001{letter-spacing:68.065920px;}
.ls45_c00001{letter-spacing:69.120000px;}
.ls4a_c00001{letter-spacing:82.385280px;}
.ls41_c00001{letter-spacing:84.384000px;}
.ls99_c00001{letter-spacing:86.400000px;}
.ls4e_c00001{letter-spacing:89.585280px;}
.lsc4_c00001{letter-spacing:89.976000px;}
.ls6b_c00001{letter-spacing:91.620000px;}
.ls7c_c00001{letter-spacing:92.160000px;}
.ls7e_c00001{letter-spacing:108.000000px;}
.ls17_c00001{letter-spacing:110.160000px;}
.ls3b_c00001{letter-spacing:149.736000px;}
.ls40_c00001{letter-spacing:151.176000px;}
.ls44_c00001{letter-spacing:152.640000px;}
.ls2a_c00001{letter-spacing:194.376000px;}
.lsa4_c00001{letter-spacing:195.840000px;}
.ls63_c00001{letter-spacing:237.576000px;}
.ls13_c00001{letter-spacing:239.016000px;}
.lsbd_c00001{letter-spacing:271.440000px;}
.lsa3_c00001{letter-spacing:365.040000px;}
.ls48_c00001{letter-spacing:406.776000px;}
.ls47_c00001{letter-spacing:492.456000px;}
.ls6d_c00001{letter-spacing:739.596000px;}
.lsb9_c00001{letter-spacing:1369.740000px;}
.lsba_c00001{letter-spacing:1515.900000px;}
.lsbc_c00001{letter-spacing:1532.460000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00001{word-spacing:-66.240000px;}
.ws2f_c00001{word-spacing:-63.360000px;}
.ws46_c00001{word-spacing:-59.760000px;}
.ws35_c00001{word-spacing:-18.864000px;}
.ws30_c00001{word-spacing:-18.720000px;}
.ws25_c00001{word-spacing:-18.576000px;}
.ws3a_c00001{word-spacing:-18.432000px;}
.ws10_c00001{word-spacing:-18.288000px;}
.ws19_c00001{word-spacing:-18.216000px;}
.ws1d_c00001{word-spacing:-18.144000px;}
.ws31_c00001{word-spacing:-18.072000px;}
.ws0_c00001{word-spacing:-18.000000px;}
.ws2c_c00001{word-spacing:-17.928000px;}
.ws11_c00001{word-spacing:-17.856000px;}
.ws13_c00001{word-spacing:-17.784000px;}
.ws12_c00001{word-spacing:-17.712000px;}
.wsc_c00001{word-spacing:-17.430000px;}
.ws36_c00001{word-spacing:-17.424000px;}
.ws21_c00001{word-spacing:-17.280000px;}
.ws1b_c00001{word-spacing:-17.064000px;}
.ws20_c00001{word-spacing:-16.974600px;}
.wsf_c00001{word-spacing:-16.865400px;}
.ws1_c00001{word-spacing:-16.822200px;}
.ws2e_c00001{word-spacing:-16.712400px;}
.wsd_c00001{word-spacing:-16.669200px;}
.ws28_c00001{word-spacing:-16.614000px;}
.ws6_c00001{word-spacing:-16.560000px;}
.ws24_c00001{word-spacing:-16.450800px;}
.ws32_c00001{word-spacing:-16.407600px;}
.ws2d_c00001{word-spacing:-16.254600px;}
.ws1f_c00001{word-spacing:-16.102200px;}
.ws15_c00001{word-spacing:-16.059000px;}
.ws45_c00001{word-spacing:-16.006800px;}
.ws34_c00001{word-spacing:-15.948000px;}
.ws2a_c00001{word-spacing:-15.891600px;}
.wse_c00001{word-spacing:-15.840000px;}
.ws27_c00001{word-spacing:-15.788400px;}
.ws23_c00001{word-spacing:-15.768000px;}
.ws29_c00001{word-spacing:-15.621000px;}
.ws40_c00001{word-spacing:-15.569400px;}
.ws47_c00001{word-spacing:-15.552000px;}
.ws3c_c00001{word-spacing:-15.505800px;}
.ws33_c00001{word-spacing:-15.426000px;}
.ws1e_c00001{word-spacing:-15.384000px;}
.ws4_c00001{word-spacing:-15.300000px;}
.ws26_c00001{word-spacing:-15.226440px;}
.ws3_c00001{word-spacing:-15.199800px;}
.ws2b_c00001{word-spacing:-15.146400px;}
.ws3d_c00001{word-spacing:-15.120000px;}
.ws3e_c00001{word-spacing:-15.066000px;}
.ws17_c00001{word-spacing:-15.046800px;}
.ws18_c00001{word-spacing:-14.993400px;}
.ws2_c00001{word-spacing:-14.940000px;}
.wsa_c00001{word-spacing:-14.886600px;}
.ws16_c00001{word-spacing:-14.784000px;}
.ws48_c00001{word-spacing:-14.733600px;}
.ws1c_c00001{word-spacing:-14.580000px;}
.ws3f_c00001{word-spacing:-14.568000px;}
.ws22_c00001{word-spacing:-14.506440px;}
.wsb_c00001{word-spacing:-14.328000px;}
.ws3b_c00001{word-spacing:-14.274000px;}
.ws49_c00001{word-spacing:-13.806000px;}
.ws39_c00001{word-spacing:-13.518000px;}
.ws38_c00001{word-spacing:-12.672000px;}
.ws1a_c00001{word-spacing:-12.420000px;}
.ws9_c00001{word-spacing:-10.440000px;}
.ws8_c00001{word-spacing:-9.720000px;}
.ws14_c00001{word-spacing:-9.145560px;}
.ws37_c00001{word-spacing:-9.000000px;}
.ws4a_c00001{word-spacing:-8.514480px;}
.ws5_c00001{word-spacing:0.000000px;}
.ws43_c00001{word-spacing:1.963780px;}
.ws41_c00001{word-spacing:2.470787px;}
.ws44_c00001{word-spacing:10.011007px;}
.ws42_c00001{word-spacing:28.197608px;}
._66_c00001{margin-left:-13.862160px;}
._27_c00001{margin-left:-12.817920px;}
._47_c00001{margin-left:-11.592000px;}
._f_c00001{margin-left:-8.946240px;}
._63_c00001{margin-left:-7.407613px;}
._2c_c00001{margin-left:-5.616000px;}
._2d_c00001{margin-left:-3.456000px;}
._19_c00001{margin-left:-2.160000px;}
._4_c00001{margin-left:-1.152000px;}
._6_c00001{width:1.008000px;}
._2_c00001{width:2.064000px;}
._7_c00001{width:3.672000px;}
._3_c00001{width:4.752000px;}
._0_c00001{width:6.696000px;}
._1_c00001{width:8.352000px;}
._5_c00001{width:9.432000px;}
._9_c00001{width:10.512000px;}
._8_c00001{width:12.096000px;}
._10_c00001{width:13.122600px;}
._a_c00001{width:14.472000px;}
._d_c00001{width:15.624000px;}
._c_c00001{width:16.704000px;}
._11_c00001{width:17.844612px;}
._22_c00001{width:19.200024px;}
._e_c00001{width:20.733120px;}
._26_c00001{width:22.608000px;}
._23_c00001{width:23.647812px;}
._1a_c00001{width:25.128000px;}
._18_c00001{width:26.208000px;}
._1b_c00001{width:27.504000px;}
._21_c00001{width:29.376000px;}
._24_c00001{width:31.000188px;}
._25_c00001{width:32.578442px;}
._1d_c00001{width:34.560000px;}
._1e_c00001{width:35.784000px;}
._2e_c00001{width:36.792000px;}
._16_c00001{width:37.800000px;}
._17_c00001{width:38.808000px;}
._1c_c00001{width:40.104000px;}
._28_c00001{width:41.112132px;}
._14_c00001{width:42.264000px;}
._15_c00001{width:43.272000px;}
._2a_c00001{width:44.697335px;}
._29_c00001{width:45.705666px;}
._2b_c00001{width:46.799959px;}
._3d_c00001{width:48.600000px;}
._3a_c00001{width:50.163509px;}
._39_c00001{width:51.336000px;}
._38_c00001{width:52.753225px;}
._34_c00001{width:54.864000px;}
._3b_c00001{width:56.229120px;}
._3c_c00001{width:57.801534px;}
._2f_c00001{width:58.824000px;}
._12_c00001{width:60.480000px;}
._13_c00001{width:61.632000px;}
._33_c00001{width:62.640000px;}
._32_c00001{width:64.152000px;}
._b_c00001{width:65.880000px;}
._20_c00001{width:69.480000px;}
._1f_c00001{width:70.704000px;}
._3f_c00001{width:72.504000px;}
._31_c00001{width:77.754050px;}
._48_c00001{width:81.504000px;}
._49_c00001{width:83.736000px;}
._41_c00001{width:85.648320px;}
._40_c00001{width:86.840441px;}
._30_c00001{width:88.012800px;}
._45_c00001{width:94.824000px;}
._46_c00001{width:96.552000px;}
._36_c00001{width:139.332960px;}
._64_c00001{width:143.243880px;}
._65_c00001{width:144.688078px;}
._35_c00001{width:149.736024px;}
._37_c00001{width:151.176108px;}
._3e_c00001{width:191.520000px;}
._62_c00001{width:194.376024px;}
._43_c00001{width:223.920000px;}
._44_c00001{width:225.720000px;}
._4b_c00001{width:1093.116000px;}
._4c_c00001{width:1097.436000px;}
._4a_c00001{width:1101.036000px;}
._55_c00001{width:1102.476000px;}
._56_c00001{width:1105.356000px;}
._4d_c00001{width:1107.516000px;}
._54_c00001{width:1108.956000px;}
._4e_c00001{width:1112.556000px;}
._58_c00001{width:1123.356000px;}
._4f_c00001{width:1126.236000px;}
._57_c00001{width:1131.996000px;}
._50_c00001{width:1134.876000px;}
._51_c00001{width:1149.996000px;}
._59_c00001{width:1152.156000px;}
._5a_c00001{width:1160.796000px;}
._52_c00001{width:1176.636000px;}
._5b_c00001{width:1181.676000px;}
._53_c00001{width:1185.276000px;}
._5c_c00001{width:1195.356000px;}
._5d_c00001{width:1200.396000px;}
._5e_c00001{width:1212.636000px;}
._5f_c00001{width:1216.236000px;}
._61_c00001{width:1224.876000px;}
._60_c00001{width:1228.476000px;}
._42_c00001{width:1500.960000px;}
.fca_c00001{color:rgb(74,108,149);}
.fc9_c00001{color:rgb(80,82,82);}
.fc6_c00001{color:rgb(31,32,32);}
.fc5_c00001{color:transparent;}
.fc2_c00001{color:rgb(20,20,19);}
.fc4_c00001{color:rgb(0,0,255);}
.fc1_c00001{color:rgb(192,80,77);}
.fcb_c00001{color:rgb(51,51,51);}
.fc8_c00001{color:rgb(35,31,32);}
.fc7_c00001{color:rgb(37,37,37);}
.fc3_c00001{color:rgb(255,255,255);}
.fc0_c00001{color:rgb(0,0,0);}
.fsb_c00001{font-size:36.000000px;}
.fs4_c00001{font-size:38.880000px;}
.fs5_c00001{font-size:41.760000px;}
.fs3_c00001{font-size:48.240000px;}
.fsa_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:59.760000px;}
.fs6_c00001{font-size:63.360000px;}
.fs0_c00001{font-size:66.240000px;}
.fs7_c00001{font-size:69.120000px;}
.fs2_c00001{font-size:72.000000px;}
.fs9_c00001{font-size:95.760000px;}
.fs8_c00001{font-size:120.240000px;}
.y0_c00001{bottom:0.000000px;}
.ya66_c00001{bottom:3.420000px;}
.yaa4_c00001{bottom:3.600000px;}
.yb12_c00001{bottom:3.774000px;}
.y2ee_c00001{bottom:3.780000px;}
.yad8_c00001{bottom:3.810000px;}
.y2ec_c00001{bottom:3.960000px;}
.yb98_c00001{bottom:3.990000px;}
.y871_c00001{bottom:4.005000px;}
.y6c1_c00001{bottom:4.500000px;}
.y4_c00001{bottom:4.680000px;}
.yb0a_c00001{bottom:4.725000px;}
.y2e7_c00001{bottom:4.860000px;}
.ya84_c00001{bottom:5.040000px;}
.yafa_c00001{bottom:5.400000px;}
.yb56_c00001{bottom:5.580000px;}
.yacd_c00001{bottom:6.300000px;}
.yacc_c00001{bottom:7.020000px;}
.ya28_c00001{bottom:7.200000px;}
.y963_c00001{bottom:8.460000px;}
.yb7f_c00001{bottom:9.540000px;}
.ya5f_c00001{bottom:16.560000px;}
.ya96_c00001{bottom:17.280000px;}
.ya1e_c00001{bottom:18.000000px;}
.y9db_c00001{bottom:18.180000px;}
.ya1a_c00001{bottom:18.210000px;}
.y9cb_c00001{bottom:18.225000px;}
.ya94_c00001{bottom:18.720000px;}
.ya65_c00001{bottom:21.600000px;}
.y76b_c00001{bottom:21.954000px;}
.y2f3_c00001{bottom:21.960000px;}
.y739_c00001{bottom:21.990000px;}
.y6b7_c00001{bottom:22.005000px;}
.yb83_c00001{bottom:22.134000px;}
.y311_c00001{bottom:22.140000px;}
.y86a_c00001{bottom:22.170000px;}
.y870_c00001{bottom:22.185000px;}
.y6c0_c00001{bottom:22.680000px;}
.yaed_c00001{bottom:22.710000px;}
.yb09_c00001{bottom:22.725000px;}
.yad2_c00001{bottom:22.860000px;}
.y8be_c00001{bottom:23.214000px;}
.ya83_c00001{bottom:23.400000px;}
.yac9_c00001{bottom:23.445000px;}
.y6bc_c00001{bottom:23.580000px;}
.yaf9_c00001{bottom:23.625000px;}
.yacb_c00001{bottom:24.840000px;}
.yb0f_c00001{bottom:25.014000px;}
.ya27_c00001{bottom:25.200000px;}
.ya62_c00001{bottom:25.380000px;}
.yb81_c00001{bottom:27.540000px;}
.y962_c00001{bottom:27.714000px;}
.yb7e_c00001{bottom:27.720000px;}
.ya95_c00001{bottom:31.500000px;}
.ya93_c00001{bottom:32.940000px;}
.ya5e_c00001{bottom:34.740000px;}
.y9e0_c00001{bottom:36.180000px;}
.ya68_c00001{bottom:39.060000px;}
.ya64_c00001{bottom:39.594000px;}
.ya86_c00001{bottom:39.774000px;}
.yaa1_c00001{bottom:39.780000px;}
.y76a_c00001{bottom:39.954000px;}
.y79d_c00001{bottom:39.960000px;}
.y77c_c00001{bottom:40.134000px;}
.y31f_c00001{bottom:40.140000px;}
.y797_c00001{bottom:40.170000px;}
.y784_c00001{bottom:40.185000px;}
.y8bd_c00001{bottom:41.214000px;}
.y986_c00001{bottom:41.265000px;}
.y96f_c00001{bottom:41.394000px;}
.y6bb_c00001{bottom:41.580000px;}
.y6b4_c00001{bottom:41.625000px;}
.yafd_c00001{bottom:41.760000px;}
.y3_c00001{bottom:41.796000px;}
.yaf8_c00001{bottom:41.805000px;}
.y6ba_c00001{bottom:42.300000px;}
.yb00_c00001{bottom:42.330000px;}
.yb05_c00001{bottom:42.480000px;}
.y6c4_c00001{bottom:42.510000px;}
.yb0e_c00001{bottom:43.194000px;}
.ya26_c00001{bottom:43.374000px;}
.ya78_c00001{bottom:44.640000px;}
.y961_c00001{bottom:45.714000px;}
.y2e6_c00001{bottom:52.416000px;}
.ya5d_c00001{bottom:52.920000px;}
.y769_c00001{bottom:58.134000px;}
.y322_c00001{bottom:58.140000px;}
.yb78_c00001{bottom:58.170000px;}
.y783_c00001{bottom:58.185000px;}
.y872_c00001{bottom:58.314000px;}
.y31e_c00001{bottom:58.320000px;}
.y796_c00001{bottom:58.350000px;}
.y7ce_c00001{bottom:58.365000px;}
.ya77_c00001{bottom:58.860000px;}
.y985_c00001{bottom:59.265000px;}
.y8bc_c00001{bottom:59.394000px;}
.y8d9_c00001{bottom:59.400000px;}
.yac8_c00001{bottom:59.445000px;}
.yad6_c00001{bottom:59.610000px;}
.ya82_c00001{bottom:59.760000px;}
.y6b3_c00001{bottom:59.805000px;}
.ya90_c00001{bottom:60.120000px;}
.y96e_c00001{bottom:60.474000px;}
.y6b9_c00001{bottom:60.480000px;}
.y6c3_c00001{bottom:60.510000px;}
.yb0d_c00001{bottom:61.194000px;}
.ya25_c00001{bottom:61.554000px;}
.yaf0_c00001{bottom:61.965000px;}
.yae2_c00001{bottom:62.145000px;}
.y960_c00001{bottom:63.894000px;}
.yaab_c00001{bottom:66.780000px;}
.ya5c_c00001{bottom:70.920000px;}
.y2_c00001{bottom:75.456000px;}
.y768_c00001{bottom:76.314000px;}
.y31d_c00001{bottom:76.320000px;}
.y795_c00001{bottom:76.350000px;}
.y782_c00001{bottom:76.365000px;}
.y7d6_c00001{bottom:76.500000px;}
.yb90_c00001{bottom:76.545000px;}
.y984_c00001{bottom:77.445000px;}
.y8d8_c00001{bottom:77.580000px;}
.ya81_c00001{bottom:77.760000px;}
.ya8f_c00001{bottom:78.300000px;}
.y8bb_c00001{bottom:78.654000px;}
.yb5d_c00001{bottom:79.200000px;}
.yb0c_c00001{bottom:79.374000px;}
.ya24_c00001{bottom:79.554000px;}
.yae1_c00001{bottom:80.145000px;}
.y6ca_c00001{bottom:80.820000px;}
.y95f_c00001{bottom:82.074000px;}
.ya9f_c00001{bottom:83.340000px;}
.yaaa_c00001{bottom:85.320000px;}
.y9e6_c00001{bottom:86.040000px;}
.yabf_c00001{bottom:87.165000px;}
.yab7_c00001{bottom:87.690000px;}
.ya5b_c00001{bottom:89.100000px;}
.y767_c00001{bottom:94.314000px;}
.y79c_c00001{bottom:94.320000px;}
.y7f0_c00001{bottom:94.350000px;}
.y786_c00001{bottom:94.359000px;}
.y7e3_c00001{bottom:94.365000px;}
.y31c_c00001{bottom:94.500000px;}
.y794_c00001{bottom:94.530000px;}
.y77b_c00001{bottom:94.539000px;}
.y781_c00001{bottom:94.545000px;}
.y983_c00001{bottom:95.625000px;}
.ya80_c00001{bottom:95.940000px;}
.ya8e_c00001{bottom:96.300000px;}
.y8ba_c00001{bottom:96.654000px;}
.y8d7_c00001{bottom:96.690000px;}
.ya23_c00001{bottom:97.734000px;}
.y96d_c00001{bottom:97.914000px;}
.yae0_c00001{bottom:98.325000px;}
.y6c9_c00001{bottom:99.000000px;}
.y95e_c00001{bottom:101.379000px;}
.ya9e_c00001{bottom:101.520000px;}
.yaa9_c00001{bottom:103.320000px;}
.y9e5_c00001{bottom:104.220000px;}
.yabe_c00001{bottom:105.345000px;}
.yab6_c00001{bottom:105.690000px;}
.ya5a_c00001{bottom:107.100000px;}
.yaa0_c00001{bottom:108.936000px;}
.y99b_c00001{bottom:109.476000px;}
.y340_c00001{bottom:109.836000px;}
.y645_c00001{bottom:111.276000px;}
.y90e_c00001{bottom:111.456000px;}
.y1f6_c00001{bottom:111.996000px;}
.y79b_c00001{bottom:112.500000px;}
.y793_c00001{bottom:112.530000px;}
.y766_c00001{bottom:112.539000px;}
.y780_c00001{bottom:112.545000px;}
.y31b_c00001{bottom:112.680000px;}
.y7d2_c00001{bottom:112.710000px;}
.yb9b_c00001{bottom:112.716000px;}
.yb7b_c00001{bottom:112.719000px;}
.y7d5_c00001{bottom:112.725000px;}
.y1f2_c00001{bottom:113.076000px;}
.y32e_c00001{bottom:113.256000px;}
.y6aa_c00001{bottom:113.616000px;}
.y490_c00001{bottom:113.976000px;}
.ya1c_c00001{bottom:114.156000px;}
.ya7f_c00001{bottom:114.165000px;}
.ya8d_c00001{bottom:114.480000px;}
.y5c5_c00001{bottom:114.516000px;}
.y8d6_c00001{bottom:114.870000px;}
.yca_c00001{bottom:114.876000px;}
.y8b9_c00001{bottom:114.879000px;}
.y982_c00001{bottom:114.885000px;}
.y2cf_c00001{bottom:115.056000px;}
.y172_c00001{bottom:115.596000px;}
.ya22_c00001{bottom:115.734000px;}
.y5f4_c00001{bottom:115.956000px;}
.y96c_c00001{bottom:116.139000px;}
.yb59_c00001{bottom:116.316000px;}
.y2a_c00001{bottom:116.496000px;}
.yadf_c00001{bottom:116.505000px;}
.ya63_c00001{bottom:116.676000px;}
.y6c8_c00001{bottom:117.000000px;}
.ya85_c00001{bottom:117.216000px;}
.y748_c00001{bottom:117.396000px;}
.y603_c00001{bottom:117.576000px;}
.y35a_c00001{bottom:117.936000px;}
.y4b3_c00001{bottom:118.296000px;}
.y4e4_c00001{bottom:118.836000px;}
.y95d_c00001{bottom:119.379000px;}
.y2b2_c00001{bottom:119.736000px;}
.ya9d_c00001{bottom:119.745000px;}
.y743_c00001{bottom:119.916000px;}
.y393_c00001{bottom:120.816000px;}
.y931_c00001{bottom:121.176000px;}
.y4b1_c00001{bottom:121.356000px;}
.yaa8_c00001{bottom:121.500000px;}
.y26c_c00001{bottom:121.716000px;}
.yb2a_c00001{bottom:121.896000px;}
.y470_c00001{bottom:122.256000px;}
.y9e4_c00001{bottom:122.445000px;}
.y6a2_c00001{bottom:122.616000px;}
.y405_c00001{bottom:123.156000px;}
.y1ee_c00001{bottom:123.336000px;}
.yabd_c00001{bottom:123.345000px;}
.y12c_c00001{bottom:123.516000px;}
.yab5_c00001{bottom:123.870000px;}
.y4f_c00001{bottom:124.236000px;}
.y72f_c00001{bottom:124.776000px;}
.y6a0_c00001{bottom:124.956000px;}
.y3d1_c00001{bottom:125.136000px;}
.ya59_c00001{bottom:125.280000px;}
.y928_c00001{bottom:125.676000px;}
.y22a_c00001{bottom:126.036000px;}
.y529_c00001{bottom:126.216000px;}
.y4c1_c00001{bottom:126.576000px;}
.y194_c00001{bottom:126.936000px;}
.y33f_c00001{bottom:127.116000px;}
.y4d2_c00001{bottom:127.656000px;}
.y258_c00001{bottom:128.016000px;}
.y49b_c00001{bottom:128.376000px;}
.yf5_c00001{bottom:128.556000px;}
.y74d_c00001{bottom:129.096000px;}
.y294_c00001{bottom:129.456000px;}
.y945_c00001{bottom:129.816000px;}
.y1f1_c00001{bottom:130.356000px;}
.y79a_c00001{bottom:130.500000px;}
.y7ef_c00001{bottom:130.530000px;}
.y7eb_c00001{bottom:130.539000px;}
.y9bd_c00001{bottom:130.545000px;}
.y31a_c00001{bottom:130.680000px;}
.y792_c00001{bottom:130.710000px;}
.y765_c00001{bottom:130.719000px;}
.y77f_c00001{bottom:130.725000px;}
.y6a9_c00001{bottom:130.896000px;}
.yb1d_c00001{bottom:131.256000px;}
.y374_c00001{bottom:131.436000px;}
.y86c_c00001{bottom:131.616000px;}
.y68f_c00001{bottom:131.796000px;}
.y1ce_c00001{bottom:131.976000px;}
.y714_c00001{bottom:132.156000px;}
.ya7e_c00001{bottom:132.165000px;}
.y239_c00001{bottom:132.336000px;}
.ya8c_c00001{bottom:132.660000px;}
.y171_c00001{bottom:132.876000px;}
.y981_c00001{bottom:132.885000px;}
.y8d5_c00001{bottom:133.050000px;}
.y53f_c00001{bottom:133.056000px;}
.y5aa_c00001{bottom:133.416000px;}
.y29_c00001{bottom:133.776000px;}
.ya21_c00001{bottom:133.914000px;}
.y3ac_c00001{bottom:133.956000px;}
.y2ce_c00001{bottom:134.136000px;}
.y8b8_c00001{bottom:134.139000px;}
.yb7a_c00001{bottom:134.496000px;}
.y747_c00001{bottom:134.676000px;}
.y5f3_c00001{bottom:134.856000px;}
.y68e_c00001{bottom:135.216000px;}
.y96b_c00001{bottom:135.219000px;}
.y83_c00001{bottom:135.576000px;}
.y6a_c00001{bottom:135.756000px;}
.y7ea_c00001{bottom:136.116000px;}
.y20e_c00001{bottom:136.296000px;}
.y88a_c00001{bottom:136.476000px;}
.y785_c00001{bottom:136.836000px;}
.y359_c00001{bottom:137.016000px;}
.yad_c00001{bottom:137.196000px;}
.y9f8_c00001{bottom:137.385000px;}
.y76c_c00001{bottom:137.556000px;}
.y95c_c00001{bottom:137.559000px;}
.y4e3_c00001{bottom:137.736000px;}
.ya9c_c00001{bottom:137.745000px;}
.y812_c00001{bottom:138.096000px;}
.y2b1_c00001{bottom:138.636000px;}
.y4a4_c00001{bottom:138.996000px;}
.yab0_c00001{bottom:139.545000px;}
.yaa7_c00001{bottom:139.680000px;}
.y60f_c00001{bottom:139.896000px;}
.y1f5_c00001{bottom:140.436000px;}
.y9e3_c00001{bottom:140.445000px;}
.y1ed_c00001{bottom:140.616000px;}
.yb3c_c00001{bottom:140.796000px;}
.yb29_c00001{bottom:140.976000px;}
.y46f_c00001{bottom:141.336000px;}
.y820_c00001{bottom:141.516000px;}
.yabc_c00001{bottom:141.525000px;}
.yab4_c00001{bottom:142.050000px;}
.y619_c00001{bottom:142.056000px;}
.y140_c00001{bottom:142.416000px;}
.y404_c00001{bottom:142.596000px;}
.ya58_c00001{bottom:143.490000px;}
.y69f_c00001{bottom:143.856000px;}
.y193_c00001{bottom:144.036000px;}
.y2ae_c00001{bottom:144.216000px;}
.y32d_c00001{bottom:144.396000px;}
.y1c6_c00001{bottom:144.756000px;}
.y48f_c00001{bottom:144.936000px;}
.y729_c00001{bottom:145.116000px;}
.y942_c00001{bottom:145.296000px;}
.y4c0_c00001{bottom:145.656000px;}
.yc9_c00001{bottom:145.836000px;}
.y45e_c00001{bottom:146.376000px;}
.y49a_c00001{bottom:147.276000px;}
.y1f0_c00001{bottom:147.636000px;}
.yb1c_c00001{bottom:148.356000px;}
.y91c_c00001{bottom:148.536000px;}
.y799_c00001{bottom:148.680000px;}
.y7bf_c00001{bottom:148.710000px;}
.y764_c00001{bottom:148.719000px;}
.y77e_c00001{bottom:148.725000px;}
.y9c3_c00001{bottom:148.860000px;}
.y791_c00001{bottom:148.890000px;}
.yb99_c00001{bottom:148.899000px;}
.y319_c00001{bottom:148.905000px;}
.y1cd_c00001{bottom:149.256000px;}
.y6f2_c00001{bottom:149.436000px;}
.y8a1_c00001{bottom:149.796000px;}
.y170_c00001{bottom:150.150000px;}
.ya7d_c00001{bottom:150.345000px;}
.y9dd_c00001{bottom:150.480000px;}
.yaf4_c00001{bottom:150.510000px;}
.ya8b_c00001{bottom:150.660000px;}
.y28_c00001{bottom:150.690000px;}
.y5a8_c00001{bottom:151.050000px;}
.y980_c00001{bottom:151.065000px;}
.y3d2_c00001{bottom:151.230000px;}
.y238_c00001{bottom:151.590000px;}
.y392_c00001{bottom:151.950000px;}
.ya20_c00001{bottom:152.094000px;}
.y8d4_c00001{bottom:152.130000px;}
.y8b7_c00001{bottom:152.319000px;}
.yac7_c00001{bottom:152.490000px;}
.y26b_c00001{bottom:152.670000px;}
.y2cd_c00001{bottom:153.030000px;}
.y96a_c00001{bottom:153.399000px;}
.y85f_c00001{bottom:153.570000px;}
.y5f2_c00001{bottom:153.750000px;}
.y68d_c00001{bottom:154.110000px;}
.y12b_c00001{bottom:154.470000px;}
.yb8c_c00001{bottom:154.830000px;}
.y6a8_c00001{bottom:155.010000px;}
.y4e_c00001{bottom:155.370000px;}
.y9f7_c00001{bottom:155.385000px;}
.y7f7_c00001{bottom:155.730000px;}
.y358_c00001{bottom:155.910000px;}
.ya9b_c00001{bottom:155.925000px;}
.y3d0_c00001{bottom:156.270000px;}
.y73f_c00001{bottom:156.630000px;}
.y4e2_c00001{bottom:156.810000px;}
.y95b_c00001{bottom:156.819000px;}
.y229_c00001{bottom:156.990000px;}
.y742_c00001{bottom:157.170000px;}
.y939_c00001{bottom:157.350000px;}
.yaa6_c00001{bottom:157.680000px;}
.y2b0_c00001{bottom:157.710000px;}
.yaaf_c00001{bottom:157.725000px;}
.y1ec_c00001{bottom:157.890000px;}
.y9e2_c00001{bottom:158.625000px;}
.y72e_c00001{bottom:158.790000px;}
.y257_c00001{bottom:158.970000px;}
.y4b0_c00001{bottom:159.330000px;}
.y11b_c00001{bottom:159.690000px;}
.yabb_c00001{bottom:159.705000px;}
.yb28_c00001{bottom:159.870000px;}
.yab3_c00001{bottom:160.050000px;}
.y46e_c00001{bottom:160.230000px;}
.y9de_c00001{bottom:160.410000px;}
.y683_c00001{bottom:160.590000px;}
.y618_c00001{bottom:161.130000px;}
.y192_c00001{bottom:161.310000px;}
.y4fe_c00001{bottom:161.490000px;}
.y33e_c00001{bottom:161.670000px;}
.yb67_c00001{bottom:162.390000px;}
.y809_c00001{bottom:162.570000px;}
.y403_c00001{bottom:162.750000px;}
.yb24_c00001{bottom:162.930000px;}
.yf4_c00001{bottom:163.110000px;}
.y1c5_c00001{bottom:163.650000px;}
.y528_c00001{bottom:163.830000px;}
.y5d5_c00001{bottom:164.010000px;}
.y728_c00001{bottom:164.190000px;}
.y4bf_c00001{bottom:164.550000px;}
.y5c4_c00001{bottom:164.730000px;}
.y1d6_c00001{bottom:164.910000px;}
.y45d_c00001{bottom:165.450000px;}
.y1ef_c00001{bottom:165.810000px;}
.y499_c00001{bottom:166.350000px;}
.y82_c00001{bottom:166.530000px;}
.ya6a_c00001{bottom:166.860000px;}
.y69_c00001{bottom:166.890000px;}
.y763_c00001{bottom:166.899000px;}
.y318_c00001{bottom:166.905000px;}
.yb8b_c00001{bottom:167.070000px;}
.y7d4_c00001{bottom:167.085000px;}
.y16f_c00001{bottom:167.430000px;}
.yb76_c00001{bottom:167.610000px;}
.yac_c00001{bottom:168.150000px;}
.y27_c00001{bottom:168.330000px;}
.ya7c_c00001{bottom:168.345000px;}
.y492_c00001{bottom:168.510000px;}
.yb11_c00001{bottom:168.690000px;}
.ya8a_c00001{bottom:168.840000px;}
.y1f4_c00001{bottom:168.870000px;}
.y746_c00001{bottom:169.050000px;}
.y97f_c00001{bottom:169.065000px;}
.yac4_c00001{bottom:169.410000px;}
.y373_c00001{bottom:169.770000px;}
.y4a3_c00001{bottom:169.950000px;}
.y713_c00001{bottom:170.130000px;}
.ya1f_c00001{bottom:170.139000px;}
.y8d3_c00001{bottom:170.310000px;}
.ya53_c00001{bottom:170.640000px;}
.y293_c00001{bottom:170.850000px;}
.y53e_c00001{bottom:171.030000px;}
.y62e_c00001{bottom:171.390000px;}
.y8b6_c00001{bottom:171.399000px;}
.y99a_c00001{bottom:171.570000px;}
.y969_c00001{bottom:171.579000px;}
.y3c7_c00001{bottom:171.750000px;}
.ya79_c00001{bottom:172.290000px;}
.yb1b_c00001{bottom:172.470000px;}
.y81f_c00001{bottom:172.650000px;}
.y5f1_c00001{bottom:172.830000px;}
.y7e4_c00001{bottom:173.010000px;}
.y34c_c00001{bottom:173.190000px;}
.y13f_c00001{bottom:173.370000px;}
.y9f6_c00001{bottom:173.565000px;}
.y7c0_c00001{bottom:173.730000px;}
.ya9a_c00001{bottom:173.925000px;}
.y357_c00001{bottom:174.810000px;}
.y95a_c00001{bottom:174.819000px;}
.y1eb_c00001{bottom:175.170000px;}
.y32c_c00001{bottom:175.350000px;}
.y4e1_c00001{bottom:175.710000px;}
.yaa5_c00001{bottom:175.860000px;}
.yaae_c00001{bottom:175.905000px;}
.y48e_c00001{bottom:176.070000px;}
.y831_c00001{bottom:176.250000px;}
.ya34_c00001{bottom:176.265000px;}
.ya54_c00001{bottom:176.400000px;}
.y3e8_c00001{bottom:176.610000px;}
.y9e1_c00001{bottom:176.625000px;}
.yc8_c00001{bottom:176.970000px;}
.y73e_c00001{bottom:177.330000px;}
.ya46_c00001{bottom:177.705000px;}
.yab2_c00001{bottom:178.230000px;}
.y4af_c00001{bottom:178.410000px;}
.y191_c00001{bottom:178.590000px;}
.yb27_c00001{bottom:178.770000px;}
.y9f9_c00001{bottom:178.785000px;}
.y33d_c00001{bottom:178.950000px;}
.y9e9_c00001{bottom:179.100000px;}
.y46d_c00001{bottom:179.130000px;}
.ya56_c00001{bottom:179.310000px;}
.ya6b_c00001{bottom:179.325000px;}
.y91b_c00001{bottom:179.490000px;}
.ya57_c00001{bottom:179.670000px;}
.y491_c00001{bottom:179.850000px;}
.y644_c00001{bottom:180.030000px;}
.y4b2_c00001{bottom:180.390000px;}
.y4fd_c00001{bottom:180.570000px;}
.ya07_c00001{bottom:180.900000px;}
.y248_c00001{bottom:181.290000px;}
.yb66_c00001{bottom:181.470000px;}
.y69e_c00001{bottom:181.830000px;}
.y308_c00001{bottom:182.010000px;}
.y9fa_c00001{bottom:182.370000px;}
.yadc_c00001{bottom:182.550000px;}
.y1c4_c00001{bottom:182.730000px;}
.ya08_c00001{bottom:182.880000px;}
.y391_c00001{bottom:182.910000px;}
.y727_c00001{bottom:183.090000px;}
.yac0_c00001{bottom:183.270000px;}
.y4be_c00001{bottom:183.450000px;}
.ya17_c00001{bottom:183.465000px;}
.y1cc_c00001{bottom:183.810000px;}
.y45c_c00001{bottom:184.350000px;}
.y7ae_c00001{bottom:184.539000px;}
.ya61_c00001{bottom:184.545000px;}
.y16e_c00001{bottom:184.710000px;}
.y7ee_c00001{bottom:184.890000px;}
.y762_c00001{bottom:184.899000px;}
.y7ed_c00001{bottom:184.905000px;}
.ya69_c00001{bottom:185.040000px;}
.y790_c00001{bottom:185.070000px;}
.y77a_c00001{bottom:185.079000px;}
.y317_c00001{bottom:185.085000px;}
.y4c9_c00001{bottom:185.250000px;}
.y12a_c00001{bottom:185.430000px;}
.y9d9_c00001{bottom:185.760000px;}
.y941_c00001{bottom:185.790000px;}
.y237_c00001{bottom:186.150000px;}
.ya7a_c00001{bottom:186.165000px;}
.y26_c00001{bottom:186.330000px;}
.ya88_c00001{bottom:186.510000px;}
.ya7b_c00001{bottom:186.525000px;}
.y9dc_c00001{bottom:186.690000px;}
.ya89_c00001{bottom:186.870000px;}
.y999_c00001{bottom:187.050000px;}
.yf3_c00001{bottom:187.230000px;}
.y97e_c00001{bottom:187.245000px;}
.yb10_c00001{bottom:187.410000px;}
.y8a0_c00001{bottom:187.770000px;}
.ya19_c00001{bottom:187.950000px;}
.ya1b_c00001{bottom:188.100000px;}
.y228_c00001{bottom:188.130000px;}
.y58d_c00001{bottom:188.310000px;}
.ya1d_c00001{bottom:188.319000px;}
.y8d2_c00001{bottom:188.490000px;}
.ya52_c00001{bottom:188.640000px;}
.y372_c00001{bottom:188.670000px;}
.yb8f_c00001{bottom:188.850000px;}
.y4d1_c00001{bottom:189.030000px;}
.y712_c00001{bottom:189.210000px;}
.yb84_c00001{bottom:189.570000px;}
.y8b5_c00001{bottom:189.579000px;}
.y82a_c00001{bottom:189.750000px;}
.y53d_c00001{bottom:189.930000px;}
.y256_c00001{bottom:190.110000px;}
.y9da_c00001{bottom:190.260000px;}
.ya35_c00001{bottom:190.305000px;}
.y62d_c00001{bottom:190.470000px;}
.y1ae_c00001{bottom:190.650000px;}
.y8cb_c00001{bottom:190.659000px;}
.yb3b_c00001{bottom:190.830000px;}
.y292_c00001{bottom:191.550000px;}
.y5f0_c00001{bottom:191.730000px;}
.y9f5_c00001{bottom:191.745000px;}
.y7dc_c00001{bottom:191.910000px;}
.y34b_c00001{bottom:192.090000px;}
.ya99_c00001{bottom:192.105000px;}
.y66e_c00001{bottom:192.270000px;}
.y1ea_c00001{bottom:192.450000px;}
.y959_c00001{bottom:192.999000px;}
.y6ab_c00001{bottom:193.350000px;}
.yaa3_c00001{bottom:193.530000px;}
.yaad_c00001{bottom:193.545000px;}
.y356_c00001{bottom:193.890000px;}
.y11a_c00001{bottom:194.070000px;}
.y73d_c00001{bottom:194.250000px;}
.ya33_c00001{bottom:194.445000px;}
.y927_c00001{bottom:194.610000px;}
.y4e0_c00001{bottom:194.790000px;}
.y9df_c00001{bottom:194.805000px;}
.y65a_c00001{bottom:194.970000px;}
.y3e7_c00001{bottom:195.510000px;}
.yab9_c00001{bottom:195.525000px;}
.y72d_c00001{bottom:195.690000px;}
.y190_c00001{bottom:195.870000px;}
.yaba_c00001{bottom:195.885000px;}
.y2af_c00001{bottom:196.050000px;}
.y600_c00001{bottom:196.770000px;}
.y940_c00001{bottom:196.950000px;}
.y9e8_c00001{bottom:197.130000px;}
.y1f3_c00001{bottom:197.310000px;}
.y81_c00001{bottom:197.670000px;}
.y68_c00001{bottom:197.850000px;}
.y9ca_c00001{bottom:197.865000px;}
.y46c_c00001{bottom:198.210000px;}
.y20d_c00001{bottom:198.390000px;}
.yf2_c00001{bottom:198.570000px;}
.ya06_c00001{bottom:199.080000px;}
.y8e0_c00001{bottom:199.110000px;}
.yab_c00001{bottom:199.290000px;}
.y4fc_c00001{bottom:199.470000px;}
.y811_c00001{bottom:200.190000px;}
.y676_c00001{bottom:200.730000px;}
.y307_c00001{bottom:200.910000px;}
.y4a2_c00001{bottom:201.090000px;}
.y1c3_c00001{bottom:201.630000px;}
.y16d_c00001{bottom:201.810000px;}
.y527_c00001{bottom:201.990000px;}
.y726_c00001{bottom:202.170000px;}
.y4bd_c00001{bottom:202.530000px;}
.y3c6_c00001{bottom:202.710000px;}
.y7ad_c00001{bottom:202.719000px;}
.ya60_c00001{bottom:202.725000px;}
.y3b7_c00001{bottom:202.890000px;}
.y7be_c00001{bottom:203.070000px;}
.y761_c00001{bottom:203.079000px;}
.y7db_c00001{bottom:203.085000px;}
.y236_c00001{bottom:203.250000px;}
.y316_c00001{bottom:203.265000px;}
.y45b_c00001{bottom:203.430000px;}
.y682_c00001{bottom:203.610000px;}
.y9d8_c00001{bottom:203.940000px;}
.y930_c00001{bottom:203.970000px;}
.y4c8_c00001{bottom:204.150000px;}
.y13e_c00001{bottom:204.510000px;}
.y889_c00001{bottom:205.410000px;}
.y25_c00001{bottom:205.950000px;}
.y2ad_c00001{bottom:206.130000px;}
.y6f1_c00001{bottom:206.310000px;}
.y32b_c00001{bottom:206.490000px;}
.y97d_c00001{bottom:206.535000px;}
.ya51_c00001{bottom:206.820000px;}
.y89f_c00001{bottom:206.850000px;}
.y48d_c00001{bottom:207.030000px;}
.y371_c00001{bottom:207.570000px;}
.y8d1_c00001{bottom:207.750000px;}
.y8b4_c00001{bottom:207.759000px;}
.yc7_c00001{bottom:207.930000px;}
.y711_c00001{bottom:208.110000px;}
.y998_c00001{bottom:208.470000px;}
.yb75_c00001{bottom:208.830000px;}
.y8ca_c00001{bottom:208.839000px;}
.y53c_c00001{bottom:209.010000px;}
.y62c_c00001{bottom:209.370000px;}
.y5d3_c00001{bottom:209.550000px;}
.y1e9_c00001{bottom:209.730000px;}
.y9f4_c00001{bottom:209.745000px;}
.ya97_c00001{bottom:209.925000px;}
.ya98_c00001{bottom:210.285000px;}
.y91a_c00001{bottom:210.630000px;}
.y5ef_c00001{bottom:210.810000px;}
.y34a_c00001{bottom:211.170000px;}
.y958_c00001{bottom:211.179000px;}
.y119_c00001{bottom:211.350000px;}
.y291_c00001{bottom:212.250000px;}
.ya32_c00001{bottom:212.445000px;}
.y355_c00001{bottom:212.790000px;}
.y602_c00001{bottom:212.970000px;}
.y18f_c00001{bottom:213.150000px;}
.y3ab_c00001{bottom:213.330000px;}
.y2cc_c00001{bottom:213.690000px;}
.y390_c00001{bottom:214.050000px;}
.y3b6_c00001{bottom:214.230000px;}
.y3e6_c00001{bottom:214.590000px;}
.y26a_c00001{bottom:214.770000px;}
.y85e_c00001{bottom:215.670000px;}
.y4ae_c00001{bottom:216.210000px;}
.y23b_c00001{bottom:216.570000px;}
.yb26_c00001{bottom:216.750000px;}
.y46b_c00001{bottom:217.110000px;}
.ya05_c00001{bottom:217.260000px;}
.y9bf_c00001{bottom:217.290000px;}
.y4d_c00001{bottom:217.470000px;}
.y8df_c00001{bottom:218.010000px;}
.y3cf_c00001{bottom:218.370000px;}
.y227_c00001{bottom:219.090000px;}
.y1cb_c00001{bottom:219.270000px;}
.y997_c00001{bottom:219.450000px;}
.y306_c00001{bottom:219.630000px;}
.y5c6_c00001{bottom:219.810000px;}
.y4d0_c00001{bottom:219.990000px;}
.y33c_c00001{bottom:220.170000px;}
.y1c2_c00001{bottom:220.530000px;}
.y5d2_c00001{bottom:220.890000px;}
.y7ac_c00001{bottom:220.899000px;}
.ya92_c00001{bottom:220.905000px;}
.y255_c00001{bottom:221.070000px;}
.y7bd_c00001{bottom:221.250000px;}
.y760_c00001{bottom:221.259000px;}
.y7cd_c00001{bottom:221.265000px;}
.y78f_c00001{bottom:221.295000px;}
.y4bc_c00001{bottom:221.430000px;}
.y1ad_c00001{bottom:221.790000px;}
.y9d7_c00001{bottom:221.940000px;}
.y45a_c00001{bottom:222.330000px;}
.y4c7_c00001{bottom:223.230000px;}
.y2dd_c00001{bottom:223.410000px;}
.y86b_c00001{bottom:223.590000px;}
.y97c_c00001{bottom:224.715000px;}
.y24_c00001{bottom:224.850000px;}
.ya50_c00001{bottom:224.865000px;}
.y86f_c00001{bottom:225.030000px;}
.y659_c00001{bottom:225.210000px;}
.ya76_c00001{bottom:225.570000px;}
.y89e_c00001{bottom:225.750000px;}
.y16c_c00001{bottom:225.930000px;}
.y74a_c00001{bottom:226.110000px;}
.y6d1_c00001{bottom:226.470000px;}
.y370_c00001{bottom:226.650000px;}
.y1d5_c00001{bottom:226.830000px;}
.y5fc_c00001{bottom:227.010000px;}
.y8b3_c00001{bottom:227.019000px;}
.y23a_c00001{bottom:227.730000px;}
.y53b_c00001{bottom:227.910000px;}
.y9f3_c00001{bottom:227.925000px;}
.y8c9_c00001{bottom:228.099000px;}
.yc6_c00001{bottom:228.270000px;}
.y80_c00001{bottom:228.630000px;}
.y926_c00001{bottom:229.170000px;}
.y20c_c00001{bottom:229.530000px;}
.y349_c00001{bottom:230.070000px;}
.yaa_c00001{bottom:230.250000px;}
.y957_c00001{bottom:230.259000px;}
.y18e_c00001{bottom:230.430000px;}
.y3aa_c00001{bottom:230.610000px;}
.ya31_c00001{bottom:230.625000px;}
.y810_c00001{bottom:231.150000px;}
.y73c_c00001{bottom:231.375000px;}
.y33b_c00001{bottom:231.510000px;}
.y58c_c00001{bottom:231.690000px;}
.y247_c00001{bottom:231.870000px;}
.y4a1_c00001{bottom:232.050000px;}
.y4df_c00001{bottom:232.590000px;}
.y72c_c00001{bottom:232.770000px;}
.y290_c00001{bottom:232.950000px;}
.y3b5_c00001{bottom:233.490000px;}
.y3c5_c00001{bottom:233.850000px;}
.y81e_c00001{bottom:234.750000px;}
.ya04_c00001{bottom:235.260000px;}
.y4ad_c00001{bottom:235.290000px;}
.y13d_c00001{bottom:235.470000px;}
.yb25_c00001{bottom:235.830000px;}
.y67_c00001{bottom:236.190000px;}
.y8de_c00001{bottom:236.910000px;}
.y16b_c00001{bottom:237.270000px;}
.y32a_c00001{bottom:237.450000px;}
.y235_c00001{bottom:237.810000px;}
.y48c_c00001{bottom:238.170000px;}
.y681_c00001{bottom:238.350000px;}
.yadd_c00001{bottom:238.395000px;}
.y305_c00001{bottom:238.575000px;}
.y3ce_c00001{bottom:238.710000px;}
.y5ba_c00001{bottom:238.890000px;}
.y7ab_c00001{bottom:238.899000px;}
.y694_c00001{bottom:239.070000px;}
.ya91_c00001{bottom:239.085000px;}
.y7bc_c00001{bottom:239.250000px;}
.y75f_c00001{bottom:239.259000px;}
.y7da_c00001{bottom:239.265000px;}
.y7e2_c00001{bottom:239.295000px;}
.y7d1_c00001{bottom:239.430000px;}
.y779_c00001{bottom:239.439000px;}
.y7cc_c00001{bottom:239.445000px;}
.y78e_c00001{bottom:239.475000px;}
.y1c1_c00001{bottom:239.610000px;}
.y9b6_c00001{bottom:239.790000px;}
.y526_c00001{bottom:239.970000px;}
.y725_c00001{bottom:240.150000px;}
.y9d6_c00001{bottom:240.165000px;}
.y4bb_c00001{bottom:240.510000px;}
.y4cc_c00001{bottom:240.690000px;}
.y459_c00001{bottom:241.230000px;}
.y62a_c00001{bottom:241.590000px;}
.yab8_c00001{bottom:241.770000px;}
.y4c6_c00001{bottom:242.130000px;}
.y830_c00001{bottom:242.490000px;}
.y97b_c00001{bottom:242.715000px;}
.ya4f_c00001{bottom:243.045000px;}
.ya75_c00001{bottom:243.750000px;}
.y23_c00001{bottom:243.930000px;}
.yb85_c00001{bottom:243.975000px;}
.y1e8_c00001{bottom:244.110000px;}
.yb0b_c00001{bottom:244.155000px;}
.y2cb_c00001{bottom:244.830000px;}
.yaf3_c00001{bottom:244.875000px;}
.y38f_c00001{bottom:245.010000px;}
.y8b2_c00001{bottom:245.019000px;}
.y6f0_c00001{bottom:245.370000px;}
.y36f_c00001{bottom:245.550000px;}
.y118_c00001{bottom:245.910000px;}
.y9f2_c00001{bottom:245.925000px;}
.y710_c00001{bottom:246.090000px;}
.y8c8_c00001{bottom:246.099000px;}
.y968_c00001{bottom:246.279000px;}
.y9c4_c00001{bottom:246.675000px;}
.y53a_c00001{bottom:246.810000px;}
.y6d0_c00001{bottom:247.215000px;}
.yc5_c00001{bottom:247.350000px;}
.y18d_c00001{bottom:247.530000px;}
.y3a9_c00001{bottom:247.890000px;}
.y4c_c00001{bottom:248.430000px;}
.y956_c00001{bottom:248.439000px;}
.y814_c00001{bottom:248.790000px;}
.ya30_c00001{bottom:248.805000px;}
.y348_c00001{bottom:248.970000px;}
.y1ca_c00001{bottom:249.330000px;}
.y73b_c00001{bottom:250.095000px;}
.y226_c00001{bottom:250.230000px;}
.ya9_c00001{bottom:250.590000px;}
.y246_c00001{bottom:250.770000px;}
.y4cf_c00001{bottom:251.130000px;}
.y1ac_c00001{bottom:251.670000px;}
.y829_c00001{bottom:251.850000px;}
.y254_c00001{bottom:252.210000px;}
.y3e5_c00001{bottom:252.570000px;}
.y55a_c00001{bottom:252.750000px;}
.yb3a_c00001{bottom:252.930000px;}
.ya03_c00001{bottom:253.470000px;}
.y28f_c00001{bottom:253.650000px;}
.y4ac_c00001{bottom:254.190000px;}
.y740_c00001{bottom:254.370000px;}
.y2dc_c00001{bottom:254.550000px;}
.y563_c00001{bottom:254.730000px;}
.y234_c00001{bottom:255.090000px;}
.y5d1_c00001{bottom:255.630000px;}
.y938_c00001{bottom:255.810000px;}
.y8dd_c00001{bottom:255.990000px;}
.y5b9_c00001{bottom:256.170000px;}
.y4fb_c00001{bottom:256.350000px;}
.yb57_c00001{bottom:256.575000px;}
.ya43_c00001{bottom:256.890000px;}
.y9a2_c00001{bottom:257.070000px;}
.y7aa_c00001{bottom:257.079000px;}
.yadb_c00001{bottom:257.295000px;}
.y7bb_c00001{bottom:257.430000px;}
.y75e_c00001{bottom:257.439000px;}
.y7d9_c00001{bottom:257.445000px;}
.y304_c00001{bottom:257.475000px;}
.y3cd_c00001{bottom:257.610000px;}
.yb1a_c00001{bottom:257.655000px;}
.y1d4_c00001{bottom:257.970000px;}
.y675_c00001{bottom:258.150000px;}
.y9d5_c00001{bottom:258.165000px;}
.y1c0_c00001{bottom:258.510000px;}
.y6a3_c00001{bottom:258.870000px;}
.y525_c00001{bottom:259.050000px;}
.y4ba_c00001{bottom:259.410000px;}
.y7f_c00001{bottom:259.770000px;}
.y458_c00001{bottom:260.310000px;}
.y20b_c00001{bottom:260.490000px;}
.y744_c00001{bottom:260.670000px;}
.y80f_c00001{bottom:260.850000px;}
.y97a_c00001{bottom:260.895000px;}
.y4c5_c00001{bottom:261.210000px;}
.ya4e_c00001{bottom:261.225000px;}
.y1e7_c00001{bottom:261.390000px;}
.ya74_c00001{bottom:261.750000px;}
.ya09_c00001{bottom:261.930000px;}
.y996_c00001{bottom:262.290000px;}
.y22_c00001{bottom:262.830000px;}
.yb04_c00001{bottom:262.875000px;}
.y117_c00001{bottom:263.190000px;}
.y9c0_c00001{bottom:263.595000px;}
.y846_c00001{bottom:263.730000px;}
.yaf2_c00001{bottom:263.775000px;}
.y60e_c00001{bottom:264.090000px;}
.y9f1_c00001{bottom:264.105000px;}
.y8b1_c00001{bottom:264.279000px;}
.y6ef_c00001{bottom:264.450000px;}
.y36e_c00001{bottom:264.630000px;}
.y18c_c00001{bottom:264.810000px;}
.y70f_c00001{bottom:264.990000px;}
.y3a8_c00001{bottom:265.170000px;}
.y967_c00001{bottom:265.359000px;}
.y66_c00001{bottom:265.710000px;}
.y539_c00001{bottom:265.890000px;}
.y562_c00001{bottom:266.070000px;}
.yc4_c00001{bottom:266.250000px;}
.y13c_c00001{bottom:266.610000px;}
.y955_c00001{bottom:266.619000px;}
.ya2f_c00001{bottom:266.805000px;}
.y680_c00001{bottom:267.150000px;}
.y16a_c00001{bottom:267.510000px;}
.y6cf_c00001{bottom:267.915000px;}
.y3b4_c00001{bottom:268.050000px;}
.y2ac_c00001{bottom:268.230000px;}
.y329_c00001{bottom:268.590000px;}
.yb82_c00001{bottom:268.995000px;}
.y48b_c00001{bottom:269.130000px;}
.ya8_c00001{bottom:269.670000px;}
.y5b0_c00001{bottom:270.030000px;}
.y72b_c00001{bottom:270.750000px;}
.y9b5_c00001{bottom:270.930000px;}
.ya02_c00001{bottom:271.470000px;}
.y3e4_c00001{bottom:271.515000px;}
.y6ac_c00001{bottom:271.695000px;}
.y4cb_c00001{bottom:271.875000px;}
.yb17_c00001{bottom:272.055000px;}
.y233_c00001{bottom:272.415000px;}
.y919_c00001{bottom:272.775000px;}
.y4ab_c00001{bottom:273.315000px;}
.y5b8_c00001{bottom:273.495000px;}
.y46a_c00001{bottom:274.035000px;}
.y28e_c00001{bottom:274.395000px;}
.y8dc_c00001{bottom:274.935000px;}
.y7f6_c00001{bottom:275.115000px;}
.y7a9_c00001{bottom:275.259000px;}
.y58b_c00001{bottom:275.295000px;}
.y75d_c00001{bottom:275.439000px;}
.y4fa_c00001{bottom:275.475000px;}
.y7ba_c00001{bottom:275.610000px;}
.y778_c00001{bottom:275.619000px;}
.y78d_c00001{bottom:275.655000px;}
.y2ca_c00001{bottom:275.835000px;}
.y38e_c00001{bottom:276.195000px;}
.y9d4_c00001{bottom:276.345000px;}
.y303_c00001{bottom:276.375000px;}
.y3cc_c00001{bottom:276.735000px;}
.y269_c00001{bottom:276.915000px;}
.y99f_c00001{bottom:277.635000px;}
.y85d_c00001{bottom:277.815000px;}
.y524_c00001{bottom:277.995000px;}
.y724_c00001{bottom:278.175000px;}
.y4b_c00001{bottom:278.355000px;}
.y1e6_c00001{bottom:278.715000px;}
.ya4d_c00001{bottom:279.225000px;}
.y457_c00001{bottom:279.255000px;}
.y669_c00001{bottom:279.795000px;}
.ya73_c00001{bottom:279.930000px;}
.y4c4_c00001{bottom:280.155000px;}
.y116_c00001{bottom:280.335000px;}
.y1c9_c00001{bottom:280.515000px;}
.y9fb_c00001{bottom:280.695000px;}
.yb8a_c00001{bottom:280.875000px;}
.y225_c00001{bottom:281.235000px;}
.y5af_c00001{bottom:281.415000px;}
.yb08_c00001{bottom:281.775000px;}
.y21_c00001{bottom:281.955000px;}
.y4ce_c00001{bottom:282.135000px;}
.y9f0_c00001{bottom:282.285000px;}
.y3a7_c00001{bottom:282.315000px;}
.y8b0_c00001{bottom:282.459000px;}
.y7b0_c00001{bottom:282.495000px;}
.y845_c00001{bottom:282.675000px;}
.y18b_c00001{bottom:283.035000px;}
.y253_c00001{bottom:283.215000px;}
.y6ee_c00001{bottom:283.395000px;}
.y8c7_c00001{bottom:283.539000px;}
.y36d_c00001{bottom:283.575000px;}
.y33a_c00001{bottom:283.935000px;}
.y70e_c00001{bottom:284.115000px;}
.y5d0_c00001{bottom:284.475000px;}
.y538_c00001{bottom:284.835000px;}
.ya2e_c00001{bottom:284.985000px;}
.yc3_c00001{bottom:285.375000px;}
.y2db_c00001{bottom:285.555000px;}
.y954_c00001{bottom:285.879000px;}
.y81d_c00001{bottom:286.095000px;}
.y92f_c00001{bottom:286.815000px;}
.y5ee_c00001{bottom:286.995000px;}
.yb23_c00001{bottom:287.175000px;}
.y658_c00001{bottom:287.355000px;}
.y576_c00001{bottom:287.895000px;}
.ya42_c00001{bottom:288.075000px;}
.y9a1_c00001{bottom:288.255000px;}
.ya7_c00001{bottom:288.615000px;}
.y354_c00001{bottom:288.795000px;}
.y1d3_c00001{bottom:288.975000px;}
.y741_c00001{bottom:289.155000px;}
.y232_c00001{bottom:289.515000px;}
.ya01_c00001{bottom:289.650000px;}
.y1ab_c00001{bottom:289.695000px;}
.y6ae_c00001{bottom:289.875000px;}
.y3e3_c00001{bottom:290.415000px;}
.y866_c00001{bottom:290.595000px;}
.y7e_c00001{bottom:290.775000px;}
.y20a_c00001{bottom:291.675000px;}
.y4aa_c00001{bottom:292.215000px;}
.y2e4_c00001{bottom:292.575000px;}
.y469_c00001{bottom:293.115000px;}
.y7a8_c00001{bottom:293.289000px;}
.y995_c00001{bottom:293.295000px;}
.y7b9_c00001{bottom:293.610000px;}
.y75c_c00001{bottom:293.619000px;}
.y777_c00001{bottom:293.649000px;}
.y7e1_c00001{bottom:293.655000px;}
.y9c2_c00001{bottom:293.790000px;}
.y78c_c00001{bottom:293.835000px;}
.y8db_c00001{bottom:294.015000px;}
.y4a0_c00001{bottom:294.195000px;}
.y4f9_c00001{bottom:294.375000px;}
.y9d3_c00001{bottom:294.525000px;}
.y28d_c00001{bottom:295.095000px;}
.y3cb_c00001{bottom:295.635000px;}
.y7f5_c00001{bottom:295.815000px;}
.y1e5_c00001{bottom:295.995000px;}
.y1bf_c00001{bottom:296.535000px;}
.y65_c00001{bottom:296.895000px;}
.ya4c_c00001{bottom:297.405000px;}
.y4b9_c00001{bottom:297.435000px;}
.y115_c00001{bottom:297.615000px;}
.y723_c00001{bottom:298.155000px;}
.y456_c00001{bottom:298.335000px;}
.y169_c00001{bottom:298.515000px;}
.y668_c00001{bottom:298.695000px;}
.y4c3_c00001{bottom:299.055000px;}
.y245_c00001{bottom:299.415000px;}
.y328_c00001{bottom:299.595000px;}
.y9ef_c00001{bottom:300.285000px;}
.y48a_c00001{bottom:300.315000px;}
.y9b9_c00001{bottom:300.495000px;}
.y8af_c00001{bottom:300.669000px;}
.yb07_c00001{bottom:300.675000px;}
.y129_c00001{bottom:300.855000px;}
.y643_c00001{bottom:301.035000px;}
.y693_c00001{bottom:301.215000px;}
.yaf1_c00001{bottom:301.395000px;}
.y8c6_c00001{bottom:301.749000px;}
.y67f_c00001{bottom:301.755000px;}
.y9b4_c00001{bottom:301.935000px;}
.y6ed_c00001{bottom:302.295000px;}
.y3b3_c00001{bottom:302.475000px;}
.y36c_c00001{bottom:302.655000px;}
.y4ca_c00001{bottom:302.835000px;}
.y70d_c00001{bottom:303.015000px;}
.ya2d_c00001{bottom:303.165000px;}
.y89d_c00001{bottom:303.375000px;}
.y6ce_c00001{bottom:303.735000px;}
.y953_c00001{bottom:303.909000px;}
.y537_c00001{bottom:303.915000px;}
.yc2_c00001{bottom:304.275000px;}
.y82f_c00001{bottom:304.635000px;}
.y73a_c00001{bottom:305.175000px;}
.y90d_c00001{bottom:305.535000px;}
.yb74_c00001{bottom:305.715000px;}
.y5ed_c00001{bottom:306.075000px;}
.y673_c00001{bottom:306.255000px;}
.y813_c00001{bottom:306.435000px;}
.y231_c00001{bottom:306.795000px;}
.y2c9_c00001{bottom:306.975000px;}
.y38d_c00001{bottom:307.155000px;}
.ya6_c00001{bottom:307.695000px;}
.ya00_c00001{bottom:307.830000px;}
.y4a_c00001{bottom:308.055000px;}
.y1aa_c00001{bottom:308.595000px;}
.y72a_c00001{bottom:308.775000px;}
.y85c_c00001{bottom:308.955000px;}
.y3e2_c00001{bottom:309.495000px;}
.y347_c00001{bottom:309.675000px;}
.y7d_c00001{bottom:311.115000px;}
.y7a7_c00001{bottom:311.469000px;}
.y20_c00001{bottom:311.475000px;}
.y7b8_c00001{bottom:311.790000px;}
.y75b_c00001{bottom:311.829000px;}
.y78b_c00001{bottom:311.835000px;}
.y468_c00001{bottom:312.015000px;}
.y224_c00001{bottom:312.375000px;}
.y9d2_c00001{bottom:312.525000px;}
.y44a_c00001{bottom:312.915000px;}
.y66d_c00001{bottom:313.095000px;}
.y18a_c00001{bottom:313.275000px;}
.yb4f_c00001{bottom:313.815000px;}
.y302_c00001{bottom:313.995000px;}
.y252_c00001{bottom:314.355000px;}
.y3ca_c00001{bottom:314.715000px;}
.y114_c00001{bottom:314.895000px;}
.yb39_c00001{bottom:315.075000px;}
.ya4b_c00001{bottom:315.405000px;}
.y1be_c00001{bottom:315.435000px;}
.y28c_c00001{bottom:315.795000px;}
.y523_c00001{bottom:315.975000px;}
.y4b8_c00001{bottom:316.335000px;}
.y7f4_c00001{bottom:316.515000px;}
.y2da_c00001{bottom:316.695000px;}
.y416_c00001{bottom:316.875000px;}
.y455_c00001{bottom:317.235000px;}
.ya0b_c00001{bottom:317.415000px;}
.y667_c00001{bottom:317.775000px;}
.y7e9_c00001{bottom:317.955000px;}
.y4c2_c00001{bottom:318.135000px;}
.y642_c00001{bottom:318.315000px;}
.y9ee_c00001{bottom:318.465000px;}
.y8d0_c00001{bottom:318.675000px;}
.y58a_c00001{bottom:318.855000px;}
.ya41_c00001{bottom:319.035000px;}
.y9a0_c00001{bottom:319.215000px;}
.yb06_c00001{bottom:319.575000px;}
.y8ae_c00001{bottom:319.749000px;}
.y128_c00001{bottom:319.755000px;}
.y1d2_c00001{bottom:320.115000px;}
.y2ab_c00001{bottom:320.295000px;}
.y844_c00001{bottom:320.655000px;}
.y966_c00001{bottom:321.009000px;}
.y5c3_c00001{bottom:321.015000px;}
.ya2c_c00001{bottom:321.165000px;}
.y6ec_c00001{bottom:321.375000px;}
.y36b_c00001{bottom:321.555000px;}
.ye3_c00001{bottom:321.915000px;}
.y952_c00001{bottom:322.089000px;}
.y575_c00001{bottom:322.455000px;}
.y209_c00001{bottom:322.635000px;}
.y536_c00001{bottom:322.815000px;}
.y339_c00001{bottom:323.355000px;}
.y2e3_c00001{bottom:323.535000px;}
.y3a6_c00001{bottom:323.715000px;}
.y230_c00001{bottom:324.075000px;}
.y66c_c00001{bottom:324.435000px;}
.yb73_c00001{bottom:324.615000px;}
.y5ec_c00001{bottom:324.975000px;}
.y49f_c00001{bottom:325.335000px;}
.y9ff_c00001{bottom:325.830000px;}
.y60d_c00001{bottom:326.055000px;}
.ya5_c00001{bottom:326.595000px;}
.y353_c00001{bottom:326.775000px;}
.y3c4_c00001{bottom:326.955000px;}
.y1a9_c00001{bottom:327.495000px;}
.y64_c00001{bottom:327.855000px;}
.y92e_c00001{bottom:328.215000px;}
.y3e1_c00001{bottom:328.395000px;}
.y13b_c00001{bottom:328.755000px;}
.y8da_c00001{bottom:328.935000px;}
.y7a6_c00001{bottom:329.469000px;}
.y168_c00001{bottom:329.655000px;}
.y75a_c00001{bottom:329.829000px;}
.y7e0_c00001{bottom:329.835000px;}
.y7b7_c00001{bottom:329.970000px;}
.y776_c00001{bottom:330.009000px;}
.y78a_c00001{bottom:330.015000px;}
.y7c_c00001{bottom:330.195000px;}
.y1e4_c00001{bottom:330.375000px;}
.y9d1_c00001{bottom:330.705000px;}
.y467_c00001{bottom:331.095000px;}
.y489_c00001{bottom:331.275000px;}
.y449_c00001{bottom:331.815000px;}
.yada_c00001{bottom:331.995000px;}
.y113_c00001{bottom:332.175000px;}
.y4f8_c00001{bottom:332.355000px;}
.y925_c00001{bottom:332.715000px;}
.y301_c00001{bottom:332.895000px;}
.y9b3_c00001{bottom:333.075000px;}
.ya4a_c00001{bottom:333.585000px;}
.y3c9_c00001{bottom:333.615000px;}
.yc1_c00001{bottom:333.975000px;}
.y415_c00001{bottom:334.155000px;}
.y979_c00001{bottom:334.515000px;}
.y522_c00001{bottom:334.875000px;}
.y3a5_c00001{bottom:335.055000px;}
.yb79_c00001{bottom:335.235000px;}
.y4b7_c00001{bottom:335.415000px;}
.y641_c00001{bottom:335.595000px;}
.y67e_c00001{bottom:336.135000px;}
.y722_c00001{bottom:336.315000px;}
.y28b_c00001{bottom:336.495000px;}
.y9ed_c00001{bottom:336.645000px;}
.y666_c00001{bottom:336.675000px;}
.y7f1_c00001{bottom:336.855000px;}
.y402_c00001{bottom:337.035000px;}
.y7f3_c00001{bottom:337.215000px;}
.y5ff_c00001{bottom:337.395000px;}
.y8ad_c00001{bottom:337.929000px;}
.y2c8_c00001{bottom:337.935000px;}
.y38c_c00001{bottom:338.295000px;}
.yb03_c00001{bottom:338.475000px;}
.y127_c00001{bottom:338.835000px;}
.y8c5_c00001{bottom:339.009000px;}
.y49_c00001{bottom:339.015000px;}
.yaef_c00001{bottom:339.195000px;}
.ya2b_c00001{bottom:339.345000px;}
.y843_c00001{bottom:339.735000px;}
.y85b_c00001{bottom:339.915000px;}
.y36a_c00001{bottom:340.455000px;}
.y346_c00001{bottom:340.815000px;}
.y2aa_c00001{bottom:340.995000px;}
.y951_c00001{bottom:341.349000px;}
.y22f_c00001{bottom:341.355000px;}
.y6eb_c00001{bottom:341.535000px;}
.y535_c00001{bottom:341.895000px;}
.y338_c00001{bottom:342.255000px;}
.y1f_c00001{bottom:342.615000px;}
.y81c_c00001{bottom:343.155000px;}
.y223_c00001{bottom:343.335000px;}
.y5b7_c00001{bottom:343.515000px;}
.yb72_c00001{bottom:343.695000px;}
.y9fe_c00001{bottom:344.010000px;}
.y5eb_c00001{bottom:344.055000px;}
.y189_c00001{bottom:344.235000px;}
.yb4e_c00001{bottom:344.775000px;}
.y1bd_c00001{bottom:345.135000px;}
.y251_c00001{bottom:345.315000px;}
.ya4_c00001{bottom:345.675000px;}
.y8cc_c00001{bottom:345.855000px;}
.y617_c00001{bottom:346.035000px;}
.y808_c00001{bottom:346.395000px;}
.y1a8_c00001{bottom:346.575000px;}
.y454_c00001{bottom:346.755000px;}
.y1e3_c00001{bottom:347.295000px;}
.y3e0_c00001{bottom:347.475000px;}
.y7a5_c00001{bottom:347.649000px;}
.y2d9_c00001{bottom:347.655000px;}
.y9c1_c00001{bottom:347.970000px;}
.y759_c00001{bottom:348.009000px;}
.y789_c00001{bottom:348.015000px;}
.ya72_c00001{bottom:348.150000px;}
.y7d0_c00001{bottom:348.195000px;}
.y9d0_c00001{bottom:348.705000px;}
.yb58_c00001{bottom:348.735000px;}
.y7b_c00001{bottom:349.095000px;}
.yb22_c00001{bottom:349.275000px;}
.y112_c00001{bottom:349.455000px;}
.ya40_c00001{bottom:350.175000px;}
.y448_c00001{bottom:350.895000px;}
.y1d1_c00001{bottom:351.075000px;}
.y4f7_c00001{bottom:351.255000px;}
.y414_c00001{bottom:351.435000px;}
.y327_c00001{bottom:351.615000px;}
.ya49_c00001{bottom:351.765000px;}
.y300_c00001{bottom:351.795000px;}
.y610_c00001{bottom:351.975000px;}
.y3c8_c00001{bottom:352.515000px;}
.ye2_c00001{bottom:352.875000px;}
.y5cf_c00001{bottom:353.415000px;}
.y208_c00001{bottom:353.775000px;}
.y521_c00001{bottom:353.955000px;}
.y7f2_c00001{bottom:354.135000px;}
.y4b6_c00001{bottom:354.315000px;}
.yb38_c00001{bottom:354.495000px;}
.y9ec_c00001{bottom:354.645000px;}
.y2e2_c00001{bottom:354.675000px;}
.y7cf_c00001{bottom:354.855000px;}
.y994_c00001{bottom:355.395000px;}
.y665_c00001{bottom:355.755000px;}
.y401_c00001{bottom:356.115000px;}
.y49e_c00001{bottom:356.295000px;}
.y574_c00001{bottom:356.835000px;}
.y8ac_c00001{bottom:357.189000px;}
.y28a_c00001{bottom:357.195000px;}
.ya2a_c00001{bottom:357.375000px;}
.y126_c00001{bottom:357.735000px;}
.y3c3_c00001{bottom:358.095000px;}
.y965_c00001{bottom:358.269000px;}
.y22e_c00001{bottom:358.635000px;}
.y63_c00001{bottom:358.995000px;}
.y950_c00001{bottom:359.349000px;}
.y369_c00001{bottom:359.535000px;}
.y13a_c00001{bottom:359.715000px;}
.y70c_c00001{bottom:359.895000px;}
.y6cd_c00001{bottom:360.255000px;}
.y6ea_c00001{bottom:360.435000px;}
.y167_c00001{bottom:360.615000px;}
.y534_c00001{bottom:360.795000px;}
.y337_c00001{bottom:361.155000px;}
.y244_c00001{bottom:361.515000px;}
.y2a9_c00001{bottom:361.695000px;}
.y81b_c00001{bottom:362.055000px;}
.y9fd_c00001{bottom:362.190000px;}
.y589_c00001{bottom:362.235000px;}
.y488_c00001{bottom:362.415000px;}
.yb71_c00001{bottom:362.595000px;}
.y5ea_c00001{bottom:362.955000px;}
.y692_c00001{bottom:363.135000px;}
.y9b2_c00001{bottom:364.035000px;}
.ya3_c00001{bottom:364.575000px;}
.yc0_c00001{bottom:364.935000px;}
.y1a7_c00001{bottom:365.475000px;}
.y7a4_c00001{bottom:365.829000px;}
.y918_c00001{bottom:365.835000px;}
.ya71_c00001{bottom:366.150000px;}
.y758_c00001{bottom:366.189000px;}
.y788_c00001{bottom:366.195000px;}
.y3df_c00001{bottom:366.375000px;}
.y82e_c00001{bottom:366.735000px;}
.y9cf_c00001{bottom:366.885000px;}
.y9c5_c00001{bottom:366.915000px;}
.y924_c00001{bottom:367.275000px;}
.y7a_c00001{bottom:368.175000px;}
.y699_c00001{bottom:368.355000px;}
.y413_c00001{bottom:368.715000px;}
.y2c7_c00001{bottom:369.075000px;}
.y5a2_c00001{bottom:369.255000px;}
.y92d_c00001{bottom:369.615000px;}
.ya48_c00001{bottom:369.765000px;}
.y447_c00001{bottom:369.795000px;}
.y48_c00001{bottom:370.155000px;}
.y4f6_c00001{bottom:370.335000px;}
.y2ff_c00001{bottom:370.695000px;}
.y85a_c00001{bottom:371.055000px;}
.y5fb_c00001{bottom:371.595000px;}
.y345_c00001{bottom:371.775000px;}
.y326_c00001{bottom:372.315000px;}
.y9eb_c00001{bottom:372.825000px;}
.y520_c00001{bottom:372.855000px;}
.y153_c00001{bottom:373.215000px;}
.yb37_c00001{bottom:373.395000px;}
.y1e_c00001{bottom:373.575000px;}
.ya6c_c00001{bottom:373.755000px;}
.y8cf_c00001{bottom:374.115000px;}
.y222_c00001{bottom:374.475000px;}
.y400_c00001{bottom:375.015000px;}
.y8ab_c00001{bottom:375.189000px;}
.y188_c00001{bottom:375.375000px;}
.y93d_c00001{bottom:375.555000px;}
.y22d_c00001{bottom:375.915000px;}
.y1bc_c00001{bottom:376.095000px;}
.y8c4_c00001{bottom:376.449000px;}
.y250_c00001{bottom:376.455000px;}
.y125_c00001{bottom:376.815000px;}
.y3a4_c00001{bottom:376.995000px;}
.y94f_c00001{bottom:377.529000px;}
.y842_c00001{bottom:377.535000px;}
.y289_c00001{bottom:377.895000px;}
.y598_c00001{bottom:378.435000px;}
.y2d8_c00001{bottom:378.795000px;}
.y70b_c00001{bottom:378.975000px;}
.y6cc_c00001{bottom:379.155000px;}
.y89c_c00001{bottom:379.335000px;}
.y6e9_c00001{bottom:379.515000px;}
.y533_c00001{bottom:379.695000px;}
.y9fc_c00001{bottom:380.190000px;}
.y559_c00001{bottom:380.235000px;}
.y657_c00001{bottom:380.415000px;}
.y81a_c00001{bottom:381.135000px;}
.yb70_c00001{bottom:381.675000px;}
.y5e9_c00001{bottom:381.855000px;}
.y1d0_c00001{bottom:382.215000px;}
.y2a8_c00001{bottom:382.395000px;}
.y84a_c00001{bottom:383.115000px;}
.ya2_c00001{bottom:383.475000px;}
.y352_c00001{bottom:383.655000px;}
.y7a3_c00001{bottom:383.829000px;}
.ye1_c00001{bottom:383.835000px;}
.y757_c00001{bottom:384.189000px;}
.y7b6_c00001{bottom:384.195000px;}
.ya70_c00001{bottom:384.330000px;}
.y7cb_c00001{bottom:384.375000px;}
.y1a6_c00001{bottom:384.555000px;}
.y207_c00001{bottom:384.735000px;}
.y9ce_c00001{bottom:385.065000px;}
.y3de_c00001{bottom:385.275000px;}
.y601_c00001{bottom:385.455000px;}
.y2e1_c00001{bottom:385.635000px;}
.y412_c00001{bottom:385.815000px;}
.y993_c00001{bottom:386.535000px;}
.y93c_c00001{bottom:386.895000px;}
.y79_c00001{bottom:387.075000px;}
.y49d_c00001{bottom:387.435000px;}
.yad9_c00001{bottom:387.795000px;}
.y5ce_c00001{bottom:387.975000px;}
.y60c_c00001{bottom:388.155000px;}
.y640_c00001{bottom:388.335000px;}
.y98b_c00001{bottom:388.695000px;}
.y446_c00001{bottom:388.875000px;}
.y368_c00001{bottom:389.055000px;}
.y4f5_c00001{bottom:389.235000px;}
.y2fe_c00001{bottom:389.415000px;}
.yb8e_c00001{bottom:389.595000px;}
.ya55_c00001{bottom:389.775000px;}
.y62_c00001{bottom:389.955000px;}
.y5fa_c00001{bottom:390.495000px;}
.y139_c00001{bottom:390.855000px;}
.y51f_c00001{bottom:391.395000px;}
.y166_c00001{bottom:391.755000px;}
.y152_c00001{bottom:392.295000px;}
.y243_c00001{bottom:392.475000px;}
.y325_c00001{bottom:393.015000px;}
.y8aa_c00001{bottom:393.369000px;}
.y487_c00001{bottom:393.375000px;}
.y3ff_c00001{bottom:393.915000px;}
.y691_c00001{bottom:394.275000px;}
.y8c3_c00001{bottom:394.449000px;}
.yaff_c00001{bottom:394.995000px;}
.y9b1_c00001{bottom:395.175000px;}
.y94e_c00001{bottom:395.709000px;}
.y124_c00001{bottom:395.715000px;}
.ybf_c00001{bottom:396.075000px;}
.y841_c00001{bottom:396.615000px;}
.y917_c00001{bottom:396.975000px;}
.y597_c00001{bottom:397.515000px;}
.y3b2_c00001{bottom:397.695000px;}
.y70a_c00001{bottom:397.875000px;}
.y6cb_c00001{bottom:398.055000px;}
.y89b_c00001{bottom:398.235000px;}
.y6e8_c00001{bottom:398.415000px;}
.y288_c00001{bottom:398.595000px;}
.y532_c00001{bottom:398.775000px;}
.y558_c00001{bottom:399.135000px;}
.y1e2_c00001{bottom:399.495000px;}
.y2c6_c00001{bottom:400.035000px;}
.y5a1_c00001{bottom:400.395000px;}
.yb6f_c00001{bottom:400.575000px;}
.y5e8_c00001{bottom:400.935000px;}
.y47_c00001{bottom:401.115000px;}
.y22c_c00001{bottom:401.475000px;}
.y923_c00001{bottom:401.655000px;}
.y7a2_c00001{bottom:402.009000px;}
.y859_c00001{bottom:402.015000px;}
.y498_c00001{bottom:402.195000px;}
.ya6f_c00001{bottom:402.330000px;}
.y756_c00001{bottom:402.369000px;}
.y7b5_c00001{bottom:402.375000px;}
.y461_c00001{bottom:402.555000px;}
.y2a7_c00001{bottom:402.735000px;}
.y344_c00001{bottom:402.915000px;}
.y9cd_c00001{bottom:403.065000px;}
.y411_c00001{bottom:403.095000px;}
.y1a5_c00001{bottom:403.455000px;}
.yb88_c00001{bottom:403.995000px;}
.yf1_c00001{bottom:404.355000px;}
.y1d_c00001{bottom:404.535000px;}
.y67d_c00001{bottom:405.255000px;}
.y221_c00001{bottom:405.435000px;}
.y588_c00001{bottom:405.795000px;}
.y78_c00001{bottom:405.975000px;}
.y869_c00001{bottom:406.155000px;}
.y187_c00001{bottom:406.335000px;}
.yb4d_c00001{bottom:406.875000px;}
.y98a_c00001{bottom:406.920000px;}
.y1bb_c00001{bottom:407.235000px;}
.y24f_c00001{bottom:407.415000px;}
.y445_c00001{bottom:407.775000px;}
.y978_c00001{bottom:408.000000px;}
.y3a3_c00001{bottom:408.135000px;}
.y2fd_c00001{bottom:408.315000px;}
.yb77_c00001{bottom:408.495000px;}
.y453_c00001{bottom:408.855000px;}
.y787_c00001{bottom:409.215000px;}
.y268_c00001{bottom:409.575000px;}
.y2d7_c00001{bottom:409.755000px;}
.y99e_c00001{bottom:410.295000px;}
.y51e_c00001{bottom:410.835000px;}
.y92c_c00001{bottom:411.015000px;}
.y4b5_c00001{bottom:411.195000px;}
.y8ce_c00001{bottom:411.375000px;}
.y656_c00001{bottom:411.555000px;}
.ya3f_c00001{bottom:412.275000px;}
.y8a9_c00001{bottom:412.629000px;}
.y351_c00001{bottom:412.815000px;}
.y3fe_c00001{bottom:412.995000px;}
.y1cf_c00001{bottom:413.175000px;}
.y721_c00001{bottom:413.355000px;}
.y8c2_c00001{bottom:413.709000px;}
.y324_c00001{bottom:413.715000px;}
.y801_c00001{bottom:413.895000px;}
.y22b_c00001{bottom:414.075000px;}
.yb36_c00001{bottom:414.435000px;}
.y123_c00001{bottom:414.615000px;}
.y94d_c00001{bottom:414.789000px;}
.ye0_c00001{bottom:414.975000px;}
.y840_c00001{bottom:415.515000px;}
.y206_c00001{bottom:415.875000px;}
.y738_c00001{bottom:416.235000px;}
.y596_c00001{bottom:416.415000px;}
.y1e1_c00001{bottom:416.595000px;}
.y2e0_c00001{bottom:416.775000px;}
.yb21_c00001{bottom:417.135000px;}
.y6e7_c00001{bottom:417.315000px;}
.y992_c00001{bottom:417.495000px;}
.y531_c00001{bottom:417.675000px;}
.yac3_c00001{bottom:417.855000px;}
.y557_c00001{bottom:418.215000px;}
.y111_c00001{bottom:418.395000px;}
.y819_c00001{bottom:418.935000px;}
.y287_c00001{bottom:419.295000px;}
.yb6e_c00001{bottom:419.475000px;}
.y5e7_c00001{bottom:419.835000px;}
.y7a1_c00001{bottom:420.189000px;}
.y367_c00001{bottom:420.195000px;}
.y755_c00001{bottom:420.369000px;}
.y410_c00001{bottom:420.375000px;}
.ya6e_c00001{bottom:420.510000px;}
.y775_c00001{bottom:420.549000px;}
.y7b4_c00001{bottom:420.555000px;}
.y61_c00001{bottom:421.095000px;}
.ya1_c00001{bottom:421.455000px;}
.y460_c00001{bottom:421.635000px;}
.y138_c00001{bottom:421.815000px;}
.yb87_c00001{bottom:421.995000px;}
.y5cd_c00001{bottom:422.355000px;}
.y1a4_c00001{bottom:422.535000px;}
.y165_c00001{bottom:422.715000px;}
.y745_c00001{bottom:422.895000px;}
.yf0_c00001{bottom:423.255000px;}
.y242_c00001{bottom:423.615000px;}
.y2a6_c00001{bottom:423.795000px;}
.yb97_c00001{bottom:424.335000px;}
.y486_c00001{bottom:424.515000px;}
.yad7_c00001{bottom:424.875000px;}
.y77_c00001{bottom:425.055000px;}
.y690_c00001{bottom:425.235000px;}
.y573_c00001{bottom:425.955000px;}
.y9b0_c00001{bottom:426.135000px;}
.y977_c00001{bottom:426.180000px;}
.y444_c00001{bottom:426.675000px;}
.ybe_c00001{bottom:427.035000px;}
.y4f4_c00001{bottom:427.215000px;}
.y2fc_c00001{bottom:427.245000px;}
.y916_c00001{bottom:427.935000px;}
.y267_c00001{bottom:428.475000px;}
.y3b1_c00001{bottom:428.835000px;}
.y99d_c00001{bottom:429.375000px;}
.y8cd_c00001{bottom:429.555000px;}
.y51d_c00001{bottom:429.735000px;}
.y151_c00001{bottom:430.275000px;}
.y698_c00001{bottom:430.455000px;}
.y8a8_c00001{bottom:430.809000px;}
.y2c5_c00001{bottom:431.175000px;}
.y5a0_c00001{bottom:431.355000px;}
.y664_c00001{bottom:431.535000px;}
.y8c1_c00001{bottom:431.889000px;}
.y3fd_c00001{bottom:431.895000px;}
.y46_c00001{bottom:432.255000px;}
.y800_c00001{bottom:432.795000px;}
.yb02_c00001{bottom:432.825000px;}
.y94c_c00001{bottom:432.969000px;}
.y858_c00001{bottom:433.155000px;}
.y720_c00001{bottom:433.335000px;}
.yb35_c00001{bottom:433.515000px;}
.yaee_c00001{bottom:433.545000px;}
.y1e0_c00001{bottom:433.875000px;}
.y323_c00001{bottom:434.415000px;}
.y83f_c00001{bottom:434.595000px;}
.ydf_c00001{bottom:435.315000px;}
.y1c_c00001{bottom:435.675000px;}
.y6c7_c00001{bottom:435.705000px;}
.y709_c00001{bottom:435.855000px;}
.yb20_c00001{bottom:436.035000px;}
.y922_c00001{bottom:436.215000px;}
.y9be_c00001{bottom:436.245000px;}
.y6e6_c00001{bottom:436.395000px;}
.y220_c00001{bottom:436.575000px;}
.y530_c00001{bottom:436.755000px;}
.y556_c00001{bottom:437.115000px;}
.y186_c00001{bottom:437.475000px;}
.y40f_c00001{bottom:437.655000px;}
.y818_c00001{bottom:438.015000px;}
.y7a0_c00001{bottom:438.189000px;}
.y1ba_c00001{bottom:438.195000px;}
.y754_c00001{bottom:438.549000px;}
.y24e_c00001{bottom:438.555000px;}
.y7df_c00001{bottom:438.600000px;}
.y7ca_c00001{bottom:438.735000px;}
.y5e6_c00001{bottom:438.915000px;}
.y3a2_c00001{bottom:439.095000px;}
.y67c_c00001{bottom:439.635000px;}
.y452_c00001{bottom:439.995000px;}
.yb86_c00001{bottom:440.175000px;}
.ya0_c00001{bottom:440.535000px;}
.y2d6_c00001{bottom:440.895000px;}
.y1a3_c00001{bottom:441.435000px;}
.y82d_c00001{bottom:441.975000px;}
.yef_c00001{bottom:442.335000px;}
.y655_c00001{bottom:442.515000px;}
.ya3e_c00001{bottom:443.235000px;}
.yad5_c00001{bottom:443.805000px;}
.y38b_c00001{bottom:443.955000px;}
.y86e_c00001{bottom:443.985000px;}
.y122_c00001{bottom:444.315000px;}
.y989_c00001{bottom:444.360000px;}
.y2a5_c00001{bottom:444.495000px;}
.yb9a_c00001{bottom:444.705000px;}
.y849_c00001{bottom:445.215000px;}
.y976_c00001{bottom:445.440000px;}
.y443_c00001{bottom:445.755000px;}
.y93b_c00001{bottom:445.935000px;}
.y4f3_c00001{bottom:446.115000px;}
.y2fb_c00001{bottom:446.145000px;}
.y205_c00001{bottom:446.835000px;}
.y266_c00001{bottom:447.375000px;}
.y2df_c00001{bottom:447.735000px;}
.y99c_c00001{bottom:448.275000px;}
.y991_c00001{bottom:448.635000px;}
.y51c_c00001{bottom:448.815000px;}
.y286_c00001{bottom:448.995000px;}
.y150_c00001{bottom:449.175000px;}
.y587_c00001{bottom:449.355000px;}
.y49c_c00001{bottom:449.535000px;}
.y8a7_c00001{bottom:449.889000px;}
.y8c0_c00001{bottom:450.069000px;}
.y60b_c00001{bottom:450.255000px;}
.y80c_c00001{bottom:450.795000px;}
.y60_c00001{bottom:450.975000px;}
.y94b_c00001{bottom:451.149000px;}
.y1df_c00001{bottom:451.155000px;}
.y321_c00001{bottom:451.335000px;}
.y888_c00001{bottom:451.515000px;}
.yb01_c00001{bottom:451.545000px;}
.y7ff_c00001{bottom:451.695000px;}
.yaec_c00001{bottom:452.265000px;}
.y71f_c00001{bottom:452.415000px;}
.yab1_c00001{bottom:452.595000px;}
.y110_c00001{bottom:452.955000px;}
.y737_c00001{bottom:453.165000px;}
.y83e_c00001{bottom:453.495000px;}
.y164_c00001{bottom:453.855000px;}
.yde_c00001{bottom:454.395000px;}
.y76_c00001{bottom:454.575000px;}
.y6c6_c00001{bottom:454.605000px;}
.y708_c00001{bottom:454.755000px;}
.y40e_c00001{bottom:454.935000px;}
.y485_c00001{bottom:455.475000px;}
.y52f_c00001{bottom:455.655000px;}
.y93e_c00001{bottom:455.835000px;}
.y555_c00001{bottom:456.015000px;}
.y79f_c00001{bottom:456.369000px;}
.y990_c00001{bottom:456.375000px;}
.y753_c00001{bottom:456.729000px;}
.y7b3_c00001{bottom:456.735000px;}
.y7c9_c00001{bottom:456.780000px;}
.y5cc_c00001{bottom:456.915000px;}
.yb6d_c00001{bottom:457.455000px;}
.y63a_c00001{bottom:457.815000px;}
.ybd_c00001{bottom:458.175000px;}
.y915_c00001{bottom:459.075000px;}
.y9f_c00001{bottom:459.435000px;}
.y45f_c00001{bottom:459.615000px;}
.y3b0_c00001{bottom:459.795000px;}
.y1a2_c00001{bottom:460.335000px;}
.y3dd_c00001{bottom:460.875000px;}
.yee_c00001{bottom:461.235000px;}
.y697_c00001{bottom:461.595000px;}
.y2c4_c00001{bottom:462.135000px;}
.y59f_c00001{bottom:462.315000px;}
.yad4_c00001{bottom:462.525000px;}
.yb89_c00001{bottom:462.885000px;}
.y38a_c00001{bottom:463.035000px;}
.y45_c00001{bottom:463.215000px;}
.y975_c00001{bottom:463.440000px;}
.y857_c00001{bottom:464.115000px;}
.y442_c00001{bottom:464.655000px;}
.y2a4_c00001{bottom:464.835000px;}
.y2fa_c00001{bottom:464.865000px;}
.y417_c00001{bottom:465.015000px;}
.y4f2_c00001{bottom:465.195000px;}
.y265_c00001{bottom:466.455000px;}
.y1b_c00001{bottom:466.635000px;}
.yac1_c00001{bottom:466.815000px;}
.y21f_c00001{bottom:467.535000px;}
.y51b_c00001{bottom:467.715000px;}
.y8a6_c00001{bottom:468.069000px;}
.y14f_c00001{bottom:468.075000px;}
.y185_c00001{bottom:468.435000px;}
.yb4c_c00001{bottom:468.975000px;}
.yb80_c00001{bottom:469.005000px;}
.y8bf_c00001{bottom:469.149000px;}
.y964_c00001{bottom:469.329000px;}
.y1b9_c00001{bottom:469.335000px;}
.y24d_c00001{bottom:469.515000px;}
.y3fc_c00001{bottom:469.875000px;}
.y10f_c00001{bottom:470.235000px;}
.y94a_c00001{bottom:470.409000px;}
.yafe_c00001{bottom:470.445000px;}
.y7fe_c00001{bottom:470.775000px;}
.y451_c00001{bottom:470.955000px;}
.yb34_c00001{bottom:471.315000px;}
.y80b_c00001{bottom:471.675000px;}
.y2d5_c00001{bottom:471.855000px;}
.y431_c00001{bottom:472.215000px;}
.y83d_c00001{bottom:472.395000px;}
.y71e_c00001{bottom:472.575000px;}
.ydd_c00001{bottom:473.295000px;}
.y6c5_c00001{bottom:473.505000px;}
.y654_c00001{bottom:473.655000px;}
.y707_c00001{bottom:473.835000px;}
.y67b_c00001{bottom:474.195000px;}
.y79e_c00001{bottom:474.369000px;}
.ya3d_c00001{bottom:474.375000px;}
.ya6d_c00001{bottom:474.555000px;}
.y752_c00001{bottom:474.729000px;}
.y7b2_c00001{bottom:474.735000px;}
.y7de_c00001{bottom:474.780000px;}
.y774_c00001{bottom:474.909000px;}
.y749_c00001{bottom:474.915000px;}
.y7c8_c00001{bottom:474.960000px;}
.y554_c00001{bottom:475.095000px;}
.y121_c00001{bottom:475.275000px;}
.y6e5_c00001{bottom:475.455000px;}
.y817_c00001{bottom:475.995000px;}
.y5fe_c00001{bottom:476.175000px;}
.yb6c_c00001{bottom:476.535000px;}
.y672_c00001{bottom:476.715000px;}
.y9b8_c00001{bottom:477.075000px;}
.y639_c00001{bottom:477.255000px;}
.y204_c00001{bottom:477.975000px;}
.y497_c00001{bottom:478.155000px;}
.y9e_c00001{bottom:478.335000px;}
.ybc_c00001{bottom:478.515000px;}
.y6a7_c00001{bottom:478.695000px;}
.y2de_c00001{bottom:478.875000px;}
.y40d_c00001{bottom:479.055000px;}
.y1a1_c00001{bottom:479.415000px;}
.y868_c00001{bottom:479.445000px;}
.y285_c00001{bottom:479.955000px;}
.yed_c00001{bottom:480.315000px;}
.y5f_c00001{bottom:480.495000px;}
.yb8d_c00001{bottom:480.885000px;}
.y60a_c00001{bottom:481.395000px;}
.yad1_c00001{bottom:481.425000px;}
.y974_c00001{bottom:481.620000px;}
.y389_c00001{bottom:481.935000px;}
.y366_c00001{bottom:482.295000px;}
.y887_c00001{bottom:482.655000px;}
.yb55_c00001{bottom:483.045000px;}
.y441_c00001{bottom:483.735000px;}
.y2f9_c00001{bottom:483.765000px;}
.y137_c00001{bottom:483.915000px;}
.y4f1_c00001{bottom:484.095000px;}
.y52e_c00001{bottom:484.635000px;}
.y163_c00001{bottom:484.815000px;}
.y264_c00001{bottom:485.355000px;}
.y2a3_c00001{bottom:485.535000px;}
.y75_c00001{bottom:485.715000px;}
.y484_c00001{bottom:486.615000px;}
.y14e_c00001{bottom:487.155000px;}
.y8a5_c00001{bottom:487.329000px;}
.y10e_c00001{bottom:487.335000px;}
.y674_c00001{bottom:487.515000px;}
.y9af_c00001{bottom:487.875000px;}
.y949_c00001{bottom:488.409000px;}
.y663_c00001{bottom:488.415000px;}
.y3fb_c00001{bottom:488.775000px;}
.y629_c00001{bottom:489.135000px;}
.y430_c00001{bottom:489.315000px;}
.yaeb_c00001{bottom:489.345000px;}
.y7fd_c00001{bottom:489.675000px;}
.y914_c00001{bottom:490.035000px;}
.y736_c00001{bottom:490.065000px;}
.y40c_c00001{bottom:490.215000px;}
.y3a1_c00001{bottom:490.575000px;}
.y3af_c00001{bottom:490.935000px;}
.y5cb_c00001{bottom:491.475000px;}
.y71d_c00001{bottom:491.655000px;}
.y903_c00001{bottom:491.835000px;}
.yb33_c00001{bottom:492.195000px;}
.ydc_c00001{bottom:492.375000px;}
.y6bf_c00001{bottom:492.405000px;}
.y696_c00001{bottom:492.555000px;}
.y586_c00001{bottom:492.735000px;}
.y751_c00001{bottom:492.909000px;}
.y7b1_c00001{bottom:492.915000px;}
.y773_c00001{bottom:492.954000px;}
.y7c7_c00001{bottom:492.960000px;}
.y2c3_c00001{bottom:493.275000px;}
.y59e_c00001{bottom:493.455000px;}
.y92b_c00001{bottom:493.815000px;}
.y553_c00001{bottom:493.995000px;}
.y44_c00001{bottom:494.355000px;}
.y6e4_c00001{bottom:494.535000px;}
.y572_c00001{bottom:494.895000px;}
.y856_c00001{bottom:495.255000px;}
.y64f_c00001{bottom:495.435000px;}
.y685_c00001{bottom:495.615000px;}
.y671_c00001{bottom:495.795000px;}
.y6a6_c00001{bottom:495.975000px;}
.y496_c00001{bottom:497.055000px;}
.y9d_c00001{bottom:497.415000px;}
.y1a_c00001{bottom:497.775000px;}
.y184_c00001{bottom:498.315000px;}
.y21e_c00001{bottom:498.675000px;}
.y82c_c00001{bottom:498.855000px;}
.yec_c00001{bottom:499.215000px;}
.y5e5_c00001{bottom:499.575000px;}
.y988_c00001{bottom:499.800000px;}
.yb4b_c00001{bottom:500.115000px;}
.y1b8_c00001{bottom:500.295000px;}
.yad3_c00001{bottom:500.325000px;}
.y24c_c00001{bottom:500.655000px;}
.y973_c00001{bottom:500.880000px;}
.y388_c00001{bottom:501.015000px;}
.y616_c00001{bottom:501.195000px;}
.yb54_c00001{bottom:501.945000px;}
.y450_c00001{bottom:502.095000px;}
.y1de_c00001{bottom:502.635000px;}
.y2f8_c00001{bottom:502.665000px;}
.y2d4_c00001{bottom:502.995000px;}
.y8e2_c00001{bottom:503.175000px;}
.y263_c00001{bottom:504.435000px;}
.y10d_c00001{bottom:504.615000px;}
.y921_c00001{bottom:505.155000px;}
.ya3c_c00001{bottom:505.335000px;}
.y8a4_c00001{bottom:505.554000px;}
.y51a_c00001{bottom:505.695000px;}
.y14d_c00001{bottom:506.055000px;}
.y120_c00001{bottom:506.415000px;}
.y2a2_c00001{bottom:506.595000px;}
.y948_c00001{bottom:506.634000px;}
.y848_c00001{bottom:507.315000px;}
.y662_c00001{bottom:507.495000px;}
.y3fa_c00001{bottom:507.855000px;}
.y9b7_c00001{bottom:508.035000px;}
.yaea_c00001{bottom:508.245000px;}
.yb19_c00001{bottom:508.605000px;}
.y67a_c00001{bottom:508.755000px;}
.y203_c00001{bottom:508.935000px;}
.yb15_c00001{bottom:508.965000px;}
.y3a0_c00001{bottom:509.475000px;}
.y9bc_c00001{bottom:509.505000px;}
.y34f_c00001{bottom:509.835000px;}
.y83c_c00001{bottom:510.375000px;}
.y284_c00001{bottom:510.915000px;}
.y750_c00001{bottom:510.954000px;}
.y6c2_c00001{bottom:511.125000px;}
.y772_c00001{bottom:511.134000px;}
.y7c6_c00001{bottom:511.140000px;}
.ydb_c00001{bottom:511.275000px;}
.yb7d_c00001{bottom:511.485000px;}
.y5e_c00001{bottom:511.635000px;}
.y902_c00001{bottom:512.175000px;}
.y609_c00001{bottom:512.355000px;}
.yb32_c00001{bottom:512.535000px;}
.y552_c00001{bottom:513.075000px;}
.y365_c00001{bottom:513.255000px;}
.y6e3_c00001{bottom:513.435000px;}
.y886_c00001{bottom:513.615000px;}
.y816_c00001{bottom:513.795000px;}
.yb6b_c00001{bottom:514.335000px;}
.y52d_c00001{bottom:514.515000px;}
.y162_c00001{bottom:514.695000px;}
.y136_c00001{bottom:515.055000px;}
.y466_c00001{bottom:515.955000px;}
.y9c_c00001{bottom:516.315000px;}
.ybb_c00001{bottom:516.495000px;}
.yb93_c00001{bottom:516.525000px;}
.y74_c00001{bottom:516.675000px;}
.y86d_c00001{bottom:517.245000px;}
.y183_c00001{bottom:517.395000px;}
.y483_c00001{bottom:517.575000px;}
.y7d8_c00001{bottom:517.965000px;}
.yeb_c00001{bottom:518.115000px;}
.y98f_c00001{bottom:518.475000px;}
.y972_c00001{bottom:519.060000px;}
.yad0_c00001{bottom:519.225000px;}
.y9ae_c00001{bottom:519.375000px;}
.y387_c00001{bottom:519.915000px;}
.y1dd_c00001{bottom:520.095000px;}
.y628_c00001{bottom:520.275000px;}
.ya18_c00001{bottom:520.455000px;}
.yb53_c00001{bottom:520.845000px;}
.y2f7_c00001{bottom:521.565000px;}
.y440_c00001{bottom:521.715000px;}
.y10c_c00001{bottom:521.895000px;}
.y4f0_c00001{bottom:522.075000px;}
.y262_c00001{bottom:523.335000px;}
.y88f_c00001{bottom:523.695000px;}
.y42f_c00001{bottom:523.875000px;}
.y2c2_c00001{bottom:524.235000px;}
.y59d_c00001{bottom:524.415000px;}
.y519_c00001{bottom:524.595000px;}
.y8a3_c00001{bottom:524.634000px;}
.y947_c00001{bottom:524.814000px;}
.y14c_c00001{bottom:525.135000px;}
.y43_c00001{bottom:525.315000px;}
.y5ca_c00001{bottom:525.855000px;}
.y855_c00001{bottom:526.215000px;}
.y661_c00001{bottom:526.395000px;}
.y3f9_c00001{bottom:526.755000px;}
.y612_c00001{bottom:526.935000px;}
.yae9_c00001{bottom:526.965000px;}
.y638_c00001{bottom:527.115000px;}
.y735_c00001{bottom:527.145000px;}
.y2a1_c00001{bottom:527.295000px;}
.y7fc_c00001{bottom:527.655000px;}
.y39f_c00001{bottom:528.555000px;}
.y19_c00001{bottom:528.735000px;}
.y74f_c00001{bottom:529.134000px;}
.y571_c00001{bottom:529.275000px;}
.y7c5_c00001{bottom:529.320000px;}
.y83b_c00001{bottom:529.455000px;}
.y21d_c00001{bottom:529.635000px;}
.yb14_c00001{bottom:529.665000px;}
.y6b8_c00001{bottom:530.025000px;}
.y343_c00001{bottom:530.175000px;}
.y5e4_c00001{bottom:530.535000px;}
.y706_c00001{bottom:530.715000px;}
.y901_c00001{bottom:531.075000px;}
.y1b7_c00001{bottom:531.435000px;}
.y24b_c00001{bottom:531.615000px;}
.y551_c00001{bottom:531.975000px;}
.y615_c00001{bottom:532.335000px;}
.y89a_c00001{bottom:532.875000px;}
.y44f_c00001{bottom:533.085000px;}
.y64e_c00001{bottom:533.445000px;}
.y161_c00001{bottom:533.805000px;}
.y2d3_c00001{bottom:533.985000px;}
.yb96_c00001{bottom:534.525000px;}
.yb1f_c00001{bottom:534.705000px;}
.y92a_c00001{bottom:535.065000px;}
.y9b_c00001{bottom:535.425000px;}
.y653_c00001{bottom:535.785000px;}
.y7d3_c00001{bottom:535.965000px;}
.y182_c00001{bottom:536.325000px;}
.ya3b_c00001{bottom:536.505000px;}
.y6ad_c00001{bottom:537.045000px;}
.y987_c00001{bottom:537.060000px;}
.yea_c00001{bottom:537.225000px;}
.y11f_c00001{bottom:537.405000px;}
.yacf_c00001{bottom:537.945000px;}
.y971_c00001{bottom:538.140000px;}
.y611_c00001{bottom:538.305000px;}
.y386_c00001{bottom:538.845000px;}
.y10b_c00001{bottom:539.205000px;}
.yb52_c00001{bottom:539.565000px;}
.y920_c00001{bottom:539.745000px;}
.y202_c00001{bottom:540.105000px;}
.y2f6_c00001{bottom:540.465000px;}
.y43f_c00001{bottom:540.645000px;}
.yda_c00001{bottom:540.825000px;}
.y4ef_c00001{bottom:541.005000px;}
.y42e_c00001{bottom:541.185000px;}
.y815_c00001{bottom:541.905000px;}
.y283_c00001{bottom:542.085000px;}
.y261_c00001{bottom:542.265000px;}
.y5d_c00001{bottom:542.625000px;}
.y679_c00001{bottom:543.165000px;}
.y608_c00001{bottom:543.525000px;}
.y518_c00001{bottom:543.705000px;}
.y946_c00001{bottom:543.894000px;}
.y14b_c00001{bottom:544.065000px;}
.y52c_c00001{bottom:544.245000px;}
.y364_c00001{bottom:544.425000px;}
.y885_c00001{bottom:544.785000px;}
.y827_c00001{bottom:544.965000px;}
.y660_c00001{bottom:545.505000px;}
.y3f8_c00001{bottom:545.865000px;}
.y135_c00001{bottom:546.045000px;}
.y7fb_c00001{bottom:546.585000px;}
.y74e_c00001{bottom:547.314000px;}
.y7c4_c00001{bottom:547.320000px;}
.y39e_c00001{bottom:547.485000px;}
.y73_c00001{bottom:547.845000px;}
.y2a0_c00001{bottom:548.025000px;}
.y83a_c00001{bottom:548.385000px;}
.y482_c00001{bottom:548.745000px;}
.y6be_c00001{bottom:548.925000px;}
.y18_c00001{bottom:549.285000px;}
.y98e_c00001{bottom:549.465000px;}
.y705_c00001{bottom:549.645000px;}
.ya16_c00001{bottom:550.155000px;}
.y900_c00001{bottom:550.185000px;}
.y550_c00001{bottom:550.905000px;}
.y627_c00001{bottom:551.265000px;}
.y6e2_c00001{bottom:551.445000px;}
.y899_c00001{bottom:551.805000px;}
.y64d_c00001{bottom:552.345000px;}
.y160_c00001{bottom:552.705000px;}
.y3ae_c00001{bottom:553.065000px;}
.yb7c_c00001{bottom:554.145000px;}
.y9a_c00001{bottom:554.325000px;}
.yba_c00001{bottom:554.505000px;}
.y1dc_c00001{bottom:554.685000px;}
.y181_c00001{bottom:555.225000px;}
.yb1e_c00001{bottom:555.405000px;}
.y59c_c00001{bottom:555.585000px;}
.ye9_c00001{bottom:556.125000px;}
.y970_c00001{bottom:556.320000px;}
.y42_c00001{bottom:556.485000px;}
.yace_c00001{bottom:556.845000px;}
.y854_c00001{bottom:557.385000px;}
.y385_c00001{bottom:557.925000px;}
.y637_c00001{bottom:558.105000px;}
.y42d_c00001{bottom:558.465000px;}
.y9ad_c00001{bottom:558.825000px;}
.y2f5_c00001{bottom:559.185000px;}
.y9ba_c00001{bottom:559.365000px;}
.y43e_c00001{bottom:559.545000px;}
.y1c8_c00001{bottom:559.905000px;}
.y5c9_c00001{bottom:560.445000px;}
.y21c_c00001{bottom:560.805000px;}
.y1b6_c00001{bottom:561.345000px;}
.y5e3_c00001{bottom:561.525000px;}
.yac6_c00001{bottom:561.705000px;}
.y517_c00001{bottom:562.245000px;}
.y828_c00001{bottom:562.425000px;}
.y561_c00001{bottom:562.605000px;}
.y24a_c00001{bottom:562.785000px;}
.y14a_c00001{bottom:562.965000px;}
.y614_c00001{bottom:563.325000px;}
.y570_c00001{bottom:563.865000px;}
.y734_c00001{bottom:564.045000px;}
.y44e_c00001{bottom:564.225000px;}
.y65f_c00001{bottom:564.405000px;}
.y3f7_c00001{bottom:564.765000px;}
.y2d2_c00001{bottom:565.125000px;}
.y5f9_c00001{bottom:565.305000px;}
.y7d7_c00001{bottom:565.314000px;}
.y7dd_c00001{bottom:565.320000px;}
.yb13_c00001{bottom:565.485000px;}
.y771_c00001{bottom:565.494000px;}
.y7c3_c00001{bottom:565.500000px;}
.y7fa_c00001{bottom:565.665000px;}
.y336_c00001{bottom:566.565000px;}
.y652_c00001{bottom:566.745000px;}
.y839_c00001{bottom:567.285000px;}
.ya3a_c00001{bottom:567.465000px;}
.y6bd_c00001{bottom:567.825000px;}
.ya15_c00001{bottom:568.155000px;}
.y17_c00001{bottom:568.185000px;}
.y11e_c00001{bottom:568.545000px;}
.y29f_c00001{bottom:568.725000px;}
.y8ff_c00001{bottom:569.085000px;}
.y847_c00001{bottom:569.445000px;}
.y54f_c00001{bottom:569.985000px;}
.y863_c00001{bottom:570.165000px;}
.y6e1_c00001{bottom:570.525000px;}
.y585_c00001{bottom:570.705000px;}
.y201_c00001{bottom:571.065000px;}
.y64c_c00001{bottom:571.245000px;}
.y15f_c00001{bottom:571.605000px;}
.y9cc_c00001{bottom:571.785000px;}
.yd9_c00001{bottom:571.965000px;}
.y7ec_c00001{bottom:572.325000px;}
.yb31_c00001{bottom:572.505000px;}
.y282_c00001{bottom:573.045000px;}
.y99_c00001{bottom:573.225000px;}
.yb9_c00001{bottom:573.405000px;}
.y10a_c00001{bottom:573.585000px;}
.y5c_c00001{bottom:573.765000px;}
.y52b_c00001{bottom:573.945000px;}
.y180_c00001{bottom:574.305000px;}
.y607_c00001{bottom:574.485000px;}
.ye8_c00001{bottom:575.205000px;}
.y363_c00001{bottom:575.385000px;}
.y42c_c00001{bottom:575.745000px;}
.y929_c00001{bottom:576.465000px;}
.y384_c00001{bottom:576.825000px;}
.y134_c00001{bottom:577.185000px;}
.yb51_c00001{bottom:577.365000px;}
.y678_c00001{bottom:577.725000px;}
.y2f4_c00001{bottom:578.085000px;}
.y43d_c00001{bottom:578.625000px;}
.y72_c00001{bottom:578.805000px;}
.y4ee_c00001{bottom:578.985000px;}
.y481_c00001{bottom:579.705000px;}
.y1b5_c00001{bottom:580.245000px;}
.y98d_c00001{bottom:580.605000px;}
.y516_c00001{bottom:581.145000px;}
.y560_c00001{bottom:581.505000px;}
.yb18_c00001{bottom:581.865000px;}
.y149_c00001{bottom:582.045000px;}
.y626_c00001{bottom:582.225000px;}
.yac5_c00001{bottom:582.405000px;}
.y826_c00001{bottom:582.945000px;}
.y770_c00001{bottom:583.494000px;}
.y7c2_c00001{bottom:583.500000px;}
.y3f6_c00001{bottom:583.665000px;}
.y3ad_c00001{bottom:584.025000px;}
.ya47_c00001{bottom:584.385000px;}
.y7f9_c00001{bottom:584.565000px;}
.y2c1_c00001{bottom:585.105000px;}
.y335_c00001{bottom:585.465000px;}
.y88e_c00001{bottom:585.825000px;}
.ya14_c00001{bottom:586.335000px;}
.y838_c00001{bottom:586.365000px;}
.y59b_c00001{bottom:586.545000px;}
.y16_c00001{bottom:587.265000px;}
.y41_c00001{bottom:587.445000px;}
.y5b6_c00001{bottom:587.625000px;}
.y853_c00001{bottom:588.345000px;}
.y54e_c00001{bottom:588.885000px;}
.y6a5_c00001{bottom:589.065000px;}
.y1db_c00001{bottom:589.245000px;}
.y29e_c00001{bottom:589.425000px;}
.y64b_c00001{bottom:590.325000px;}
.y6e0_c00001{bottom:590.505000px;}
.y15e_c00001{bottom:590.685000px;}
.y109_c00001{bottom:590.865000px;}
.yb30_c00001{bottom:591.405000px;}
.y21b_c00001{bottom:591.765000px;}
.y98_c00001{bottom:592.305000px;}
.y5e2_c00001{bottom:592.665000px;}
.y42b_c00001{bottom:592.845000px;}
.y17f_c00001{bottom:593.205000px;}
.y249_c00001{bottom:593.745000px;}
.ye7_c00001{bottom:594.105000px;}
.y613_c00001{bottom:594.465000px;}
.y5c8_c00001{bottom:595.005000px;}
.y807_c00001{bottom:595.185000px;}
.y80a_c00001{bottom:595.725000px;}
.y383_c00001{bottom:595.905000px;}
.y2d1_c00001{bottom:596.085000px;}
.yb50_c00001{bottom:596.265000px;}
.y9ac_c00001{bottom:596.625000px;}
.y2f2_c00001{bottom:596.985000px;}
.y43c_c00001{bottom:597.525000px;}
.y651_c00001{bottom:597.885000px;}
.y4ed_c00001{bottom:598.065000px;}
.y56f_c00001{bottom:598.425000px;}
.ya39_c00001{bottom:598.605000px;}
.y8fe_c00001{bottom:598.785000px;}
.y1b4_c00001{bottom:599.325000px;}
.y11d_c00001{bottom:599.505000px;}
.y5a9_c00001{bottom:599.685000px;}
.y6a4_c00001{bottom:600.405000px;}
.y515_c00001{bottom:600.585000px;}
.y148_c00001{bottom:600.945000px;}
.y733_c00001{bottom:601.125000px;}
.y862_c00001{bottom:601.305000px;}
.yaf7_c00001{bottom:601.665000px;}
.y76f_c00001{bottom:601.674000px;}
.y7c1_c00001{bottom:601.680000px;}
.y825_c00001{bottom:601.845000px;}
.y200_c00001{bottom:602.205000px;}
.yae8_c00001{bottom:602.565000px;}
.y3f5_c00001{bottom:602.745000px;}
.yd8_c00001{bottom:602.925000px;}
.y52a_c00001{bottom:603.645000px;}
.y281_c00001{bottom:604.185000px;}
.ya13_c00001{bottom:604.335000px;}
.y334_c00001{bottom:604.365000px;}
.y5b_c00001{bottom:604.725000px;}
.y584_c00001{bottom:605.265000px;}
.y6b2_c00001{bottom:605.445000px;}
.y606_c00001{bottom:605.625000px;}
.y15_c00001{bottom:606.165000px;}
.y1da_c00001{bottom:606.525000px;}
.y884_c00001{bottom:606.885000px;}
.yb91_c00001{bottom:607.785000px;}
.y54d_c00001{bottom:607.965000px;}
.y108_c00001{bottom:608.145000px;}
.y77d_c00001{bottom:608.505000px;}
.y91f_c00001{bottom:608.685000px;}
.y64a_c00001{bottom:609.225000px;}
.y15d_c00001{bottom:609.585000px;}
.y71_c00001{bottom:609.945000px;}
.y29d_c00001{bottom:610.125000px;}
.y480_c00001{bottom:610.845000px;}
.y9bb_c00001{bottom:611.025000px;}
.yb8_c00001{bottom:611.385000px;}
.y98c_c00001{bottom:611.565000px;}
.y677_c00001{bottom:612.105000px;}
.y17e_c00001{bottom:612.285000px;}
.y898_c00001{bottom:612.465000px;}
.y82b_c00001{bottom:612.645000px;}
.ye6_c00001{bottom:613.005000px;}
.y625_c00001{bottom:613.365000px;}
.y2c0_c00001{bottom:614.445000px;}
.yb65_c00001{bottom:614.625000px;}
.y382_c00001{bottom:614.805000px;}
.y865_c00001{bottom:615.165000px;}
.y9ab_c00001{bottom:615.705000px;}
.y320_c00001{bottom:615.885000px;}
.y43b_c00001{bottom:616.605000px;}
.y88d_c00001{bottom:616.785000px;}
.y42a_c00001{bottom:616.965000px;}
.y59a_c00001{bottom:617.685000px;}
.y1b3_c00001{bottom:618.225000px;}
.y40_c00001{bottom:618.585000px;}
.y514_c00001{bottom:619.485000px;}
.y76e_c00001{bottom:619.674000px;}
.y147_c00001{bottom:620.025000px;}
.y636_c00001{bottom:620.205000px;}
.yafc_c00001{bottom:620.565000px;}
.y824_c00001{bottom:620.925000px;}
.yade_c00001{bottom:621.285000px;}
.y3f4_c00001{bottom:621.645000px;}
.y97_c00001{bottom:621.825000px;}
.y5ae_c00001{bottom:622.005000px;}
.ya12_c00001{bottom:622.515000px;}
.yb2f_c00001{bottom:622.545000px;}
.y21a_c00001{bottom:622.905000px;}
.y333_c00001{bottom:623.445000px;}
.y1d9_c00001{bottom:623.625000px;}
.y837_c00001{bottom:624.345000px;}
.y14_c00001{bottom:625.065000px;}
.y107_c00001{bottom:625.425000px;}
.y704_c00001{bottom:625.605000px;}
.y867_c00001{bottom:625.830000px;}
.y806_c00001{bottom:626.325000px;}
.y798_c00001{bottom:626.730000px;}
.y54c_c00001{bottom:626.865000px;}
.y874_c00001{bottom:626.910000px;}
.y2d0_c00001{bottom:627.225000px;}
.y429_c00001{bottom:628.305000px;}
.y6df_c00001{bottom:628.485000px;}
.y15c_c00001{bottom:628.665000px;}
.y650_c00001{bottom:628.845000px;}
.y5c7_c00001{bottom:629.385000px;}
.ya38_c00001{bottom:629.565000px;}
.y8fd_c00001{bottom:629.745000px;}
.y70_c00001{bottom:630.285000px;}
.y684_c00001{bottom:630.465000px;}
.y11c_c00001{bottom:630.645000px;}
.y29c_c00001{bottom:630.825000px;}
.y17d_c00001{bottom:631.185000px;}
.ye5_c00001{bottom:632.085000px;}
.y861_c00001{bottom:632.265000px;}
.y56e_c00001{bottom:632.805000px;}
.y1ff_c00001{bottom:633.165000px;}
.y2bf_c00001{bottom:633.345000px;}
.yb64_c00001{bottom:633.525000px;}
.y381_c00001{bottom:633.705000px;}
.y2f1_c00001{bottom:633.930000px;}
.yd7_c00001{bottom:634.065000px;}
.y9aa_c00001{bottom:634.605000px;}
.yaca_c00001{bottom:634.830000px;}
.y280_c00001{bottom:635.145000px;}
.y43a_c00001{bottom:635.505000px;}
.y5a_c00001{bottom:635.865000px;}
.y605_c00001{bottom:636.585000px;}
.y1b2_c00001{bottom:637.305000px;}
.y362_c00001{bottom:637.485000px;}
.y883_c00001{bottom:637.845000px;}
.y76d_c00001{bottom:637.854000px;}
.y732_c00001{bottom:638.070000px;}
.y513_c00001{bottom:638.565000px;}
.y146_c00001{bottom:638.925000px;}
.y133_c00001{bottom:639.285000px;}
.yafb_c00001{bottom:639.510000px;}
.y583_c00001{bottom:639.825000px;}
.yae7_c00001{bottom:640.230000px;}
.ya11_c00001{bottom:640.695000px;}
.y3f3_c00001{bottom:640.725000px;}
.y241_c00001{bottom:640.905000px;}
.y47f_c00001{bottom:641.805000px;}
.y332_c00001{bottom:642.345000px;}
.y6b6_c00001{bottom:642.570000px;}
.y106_c00001{bottom:642.705000px;}
.y836_c00001{bottom:643.245000px;}
.y897_c00001{bottom:643.605000px;}
.y873_c00001{bottom:644.010000px;}
.y13_c00001{bottom:644.145000px;}
.y624_c00001{bottom:644.325000px;}
.y703_c00001{bottom:644.505000px;}
.yb92_c00001{bottom:644.730000px;}
.y54b_c00001{bottom:645.765000px;}
.y864_c00001{bottom:646.125000px;}
.y6de_c00001{bottom:647.385000px;}
.y649_c00001{bottom:647.565000px;}
.y88c_c00001{bottom:647.925000px;}
.y599_c00001{bottom:648.645000px;}
.y6f_c00001{bottom:649.365000px;}
.y3f_c00001{bottom:649.545000px;}
.y1d8_c00001{bottom:649.905000px;}
.y17c_c00001{bottom:650.085000px;}
.y852_c00001{bottom:650.445000px;}
.y44d_c00001{bottom:650.985000px;}
.y635_c00001{bottom:651.345000px;}
.y29b_c00001{bottom:651.525000px;}
.y2be_c00001{bottom:652.425000px;}
.y315_c00001{bottom:652.785000px;}
.y2f0_c00001{bottom:652.830000px;}
.y96_c00001{bottom:652.965000px;}
.yb2e_c00001{bottom:653.505000px;}
.y9a9_c00001{bottom:653.685000px;}
.y219_c00001{bottom:653.865000px;}
.y439_c00001{bottom:654.405000px;}
.y5e1_c00001{bottom:654.765000px;}
.y4ec_c00001{bottom:654.945000px;}
.y1b1_c00001{bottom:656.205000px;}
.y3ee_c00001{bottom:656.565000px;}
.y805_c00001{bottom:657.285000px;}
.y512_c00001{bottom:657.465000px;}
.y145_c00001{bottom:658.005000px;}
.y15b_c00001{bottom:658.185000px;}
.yaf6_c00001{bottom:658.410000px;}
.ya10_c00001{bottom:658.695000px;}
.y823_c00001{bottom:658.725000px;}
.y7e8_c00001{bottom:658.770000px;}
.yae6_c00001{bottom:659.130000px;}
.y465_c00001{bottom:659.625000px;}
.y105_c00001{bottom:659.985000px;}
.y8fc_c00001{bottom:660.705000px;}
.y350_c00001{bottom:661.245000px;}
.y6b5_c00001{bottom:661.290000px;}
.y331_c00001{bottom:661.425000px;}
.ye4_c00001{bottom:661.605000px;}
.y47e_c00001{bottom:662.145000px;}
.yb95_c00001{bottom:662.190000px;}
.y1d7_c00001{bottom:662.505000px;}
.y12_c00001{bottom:663.045000px;}
.y860_c00001{bottom:663.405000px;}
.y702_c00001{bottom:663.585000px;}
.yaac_c00001{bottom:663.945000px;}
.y1fe_c00001{bottom:664.305000px;}
.y54a_c00001{bottom:664.845000px;}
.yd6_c00001{bottom:665.025000px;}
.y27f_c00001{bottom:666.285000px;}
.y648_c00001{bottom:666.465000px;}
.y59_c00001{bottom:666.825000px;}
.y56d_c00001{bottom:667.365000px;}
.y604_c00001{bottom:667.725000px;}
.y8a2_c00001{bottom:668.130000px;}
.y6e_c00001{bottom:668.265000px;}
.ya37_c00001{bottom:668.445000px;}
.y361_c00001{bottom:668.625000px;}
.y882_c00001{bottom:668.985000px;}
.y1a0_c00001{bottom:669.165000px;}
.y44c_c00001{bottom:670.065000px;}
.y132_c00001{bottom:670.245000px;}
.yb4a_c00001{bottom:670.425000px;}
.y2bd_c00001{bottom:671.325000px;}
.y380_c00001{bottom:671.685000px;}
.y2ef_c00001{bottom:671.730000px;}
.y240_c00001{bottom:672.045000px;}
.y29a_c00001{bottom:672.225000px;}
.y9a8_c00001{bottom:672.585000px;}
.y913_c00001{bottom:673.125000px;}
.y438_c00001{bottom:673.485000px;}
.y90b_c00001{bottom:673.665000px;}
.y30e_c00001{bottom:673.710000px;}
.y4eb_c00001{bottom:673.845000px;}
.y582_c00001{bottom:674.205000px;}
.y896_c00001{bottom:674.565000px;}
.y731_c00001{bottom:674.970000px;}
.y1b0_c00001{bottom:675.105000px;}
.y428_c00001{bottom:675.465000px;}
.y9ea_c00001{bottom:675.825000px;}
.y511_c00001{bottom:676.545000px;}
.ya0f_c00001{bottom:676.875000px;}
.y144_c00001{bottom:676.905000px;}
.y104_c00001{bottom:677.085000px;}
.y68c_c00001{bottom:677.265000px;}
.yaf5_c00001{bottom:677.310000px;}
.y822_c00001{bottom:677.805000px;}
.y65e_c00001{bottom:678.345000px;}
.y464_c00001{bottom:678.705000px;}
.yb7_c00001{bottom:678.885000px;}
.y7e7_c00001{bottom:679.470000px;}
.y17b_c00001{bottom:679.785000px;}
.y6b1_c00001{bottom:680.190000px;}
.y330_c00001{bottom:680.325000px;}
.y3e_c00001{bottom:680.685000px;}
.y47d_c00001{bottom:680.865000px;}
.y7af_c00001{bottom:680.910000px;}
.y835_c00001{bottom:681.225000px;}
.y71c_c00001{bottom:681.405000px;}
.y80e_c00001{bottom:681.945000px;}
.y634_c00001{bottom:682.305000px;}
.y701_c00001{bottom:682.485000px;}
.y549_c00001{bottom:683.745000px;}
.y95_c00001{bottom:683.925000px;}
.y5ad_c00001{bottom:684.105000px;}
.yb2d_c00001{bottom:684.645000px;}
.y218_c00001{bottom:685.005000px;}
.y647_c00001{bottom:685.545000px;}
.y5e0_c00001{bottom:685.725000px;}
.y6dd_c00001{bottom:686.625000px;}
.y6d_c00001{bottom:687.165000px;}
.y3ed_c00001{bottom:687.525000px;}
.y19f_c00001{bottom:688.065000px;}
.y804_c00001{bottom:688.425000px;}
.y944_c00001{bottom:688.830000px;}
.y3c2_c00001{bottom:688.965000px;}
.y15a_c00001{bottom:689.325000px;}
.y2bc_c00001{bottom:690.405000px;}
.yb49_c00001{bottom:690.585000px;}
.y2ed_c00001{bottom:690.630000px;}
.y37f_c00001{bottom:690.765000px;}
.y5a6_c00001{bottom:690.945000px;}
.y74c_c00001{bottom:691.350000px;}
.y9a7_c00001{bottom:691.485000px;}
.y8fb_c00001{bottom:691.845000px;}
.y912_c00001{bottom:692.025000px;}
.ya36_c00001{bottom:692.205000px;}
.y437_c00001{bottom:692.385000px;}
.y11_c00001{bottom:692.745000px;}
.y299_c00001{bottom:692.925000px;}
.y1af_c00001{bottom:694.185000px;}
.y103_c00001{bottom:694.365000px;}
.y30d_c00001{bottom:694.410000px;}
.ya0e_c00001{bottom:695.055000px;}
.y510_c00001{bottom:695.085000px;}
.y1fd_c00001{bottom:695.265000px;}
.y55f_c00001{bottom:695.445000px;}
.y143_c00001{bottom:695.805000px;}
.yae5_c00001{bottom:696.030000px;}
.yd5_c00001{bottom:696.165000px;}
.y821_c00001{bottom:696.705000px;}
.y27e_c00001{bottom:697.245000px;}
.y463_c00001{bottom:697.605000px;}
.y58_c00001{bottom:697.965000px;}
.y6b0_c00001{bottom:699.090000px;}
.y39d_c00001{bottom:699.405000px;}
.y360_c00001{bottom:699.585000px;}
.y881_c00001{bottom:699.945000px;}
.y47c_c00001{bottom:700.125000px;}
.y7e6_c00001{bottom:700.170000px;}
.y71b_c00001{bottom:700.305000px;}
.y131_c00001{bottom:701.385000px;}
.y700_c00001{bottom:701.565000px;}
.y56c_c00001{bottom:701.925000px;}
.y548_c00001{bottom:702.825000px;}
.y23f_c00001{bottom:703.005000px;}
.y646_c00001{bottom:704.445000px;}
.y90a_c00001{bottom:704.805000px;}
.y6dc_c00001{bottom:705.525000px;}
.y895_c00001{bottom:705.705000px;}
.y6c_c00001{bottom:706.245000px;}
.y427_c00001{bottom:706.425000px;}
.y19e_c00001{bottom:707.145000px;}
.y3c1_c00001{bottom:707.865000px;}
.y68b_c00001{bottom:708.225000px;}
.y581_c00001{bottom:708.765000px;}
.y2bb_c00001{bottom:709.305000px;}
.y2eb_c00001{bottom:709.350000px;}
.yb48_c00001{bottom:709.485000px;}
.y37e_c00001{bottom:709.665000px;}
.yb6_c00001{bottom:710.025000px;}
.y9a6_c00001{bottom:710.565000px;}
.y17a_c00001{bottom:710.745000px;}
.y911_c00001{bottom:710.925000px;}
.y436_c00001{bottom:711.465000px;}
.y3d_c00001{bottom:711.645000px;}
.y730_c00001{bottom:712.050000px;}
.y91e_c00001{bottom:712.185000px;}
.y851_c00001{bottom:712.545000px;}
.y4ea_c00001{bottom:712.725000px;}
.ya0d_c00001{bottom:713.055000px;}
.y260_c00001{bottom:713.085000px;}
.y633_c00001{bottom:713.445000px;}
.y298_c00001{bottom:713.625000px;}
.y50f_c00001{bottom:713.985000px;}
.y55e_c00001{bottom:714.345000px;}
.y142_c00001{bottom:714.885000px;}
.yae4_c00001{bottom:714.930000px;}
.y94_c00001{bottom:715.065000px;}
.y30c_c00001{bottom:715.110000px;}
.yb2c_c00001{bottom:715.605000px;}
.y217_c00001{bottom:715.965000px;}
.y65d_c00001{bottom:716.145000px;}
.y462_c00001{bottom:716.505000px;}
.y5df_c00001{bottom:716.865000px;}
.y7e5_c00001{bottom:717.270000px;}
.y39c_c00001{bottom:718.305000px;}
.y3ec_c00001{bottom:718.485000px;}
.y47b_c00001{bottom:718.845000px;}
.y834_c00001{bottom:719.205000px;}
.y71a_c00001{bottom:719.385000px;}
.y159_c00001{bottom:720.285000px;}
.y6ff_c00001{bottom:720.465000px;}
.y547_c00001{bottom:721.725000px;}
.y5a5_c00001{bottom:722.085000px;}
.y891_c00001{bottom:722.265000px;}
.y8fa_c00001{bottom:722.805000px;}
.y91d_c00001{bottom:723.345000px;}
.y670_c00001{bottom:723.525000px;}
.y10_c00001{bottom:723.705000px;}
.y6db_c00001{bottom:724.605000px;}
.yb6a_c00001{bottom:724.785000px;}
.y6b_c00001{bottom:725.145000px;}
.y69d_c00001{bottom:725.505000px;}
.y4de_c00001{bottom:726.045000px;}
.y1fc_c00001{bottom:726.405000px;}
.y3c0_c00001{bottom:726.945000px;}
.yd4_c00001{bottom:727.125000px;}
.y2ba_c00001{bottom:728.205000px;}
.y37d_c00001{bottom:728.565000px;}
.y57_c00001{bottom:728.925000px;}
.y9a5_c00001{bottom:729.465000px;}
.y435_c00001{bottom:730.365000px;}
.y35f_c00001{bottom:730.725000px;}
.y880_c00001{bottom:731.085000px;}
.ya0c_c00001{bottom:731.235000px;}
.y25f_c00001{bottom:732.165000px;}
.y130_c00001{bottom:732.345000px;}
.y74b_c00001{bottom:732.390000px;}
.y6af_c00001{bottom:732.570000px;}
.y2ea_c00001{bottom:732.750000px;}
.y50e_c00001{bottom:733.425000px;}
.y141_c00001{bottom:733.785000px;}
.yae3_c00001{bottom:733.830000px;}
.y23e_c00001{bottom:734.145000px;}
.y297_c00001{bottom:734.325000px;}
.yb94_c00001{bottom:735.270000px;}
.y27d_c00001{bottom:735.585000px;}
.y909_c00001{bottom:735.765000px;}
.y30b_c00001{bottom:735.810000px;}
.y56b_c00001{bottom:736.305000px;}
.y894_c00001{bottom:736.665000px;}
.y39b_c00001{bottom:737.205000px;}
.y426_c00001{bottom:737.565000px;}
.y47a_c00001{bottom:738.105000px;}
.y68a_c00001{bottom:739.185000px;}
.y6fe_c00001{bottom:739.365000px;}
.y546_c00001{bottom:740.625000px;}
.yb5_c00001{bottom:740.985000px;}
.y5b5_c00001{bottom:741.165000px;}
.y4e9_c00001{bottom:741.705000px;}
.y179_c00001{bottom:741.885000px;}
.y66f_c00001{bottom:742.425000px;}
.y3c_c00001{bottom:742.785000px;}
.y580_c00001{bottom:743.325000px;}
.y6da_c00001{bottom:743.505000px;}
.yb69_c00001{bottom:743.865000px;}
.y80d_c00001{bottom:744.045000px;}
.y1c7_c00001{bottom:744.225000px;}
.y632_c00001{bottom:744.405000px;}
.y19d_c00001{bottom:744.945000px;}
.y3bf_c00001{bottom:745.845000px;}
.y93_c00001{bottom:746.025000px;}
.y102_c00001{bottom:746.205000px;}
.yb2b_c00001{bottom:746.745000px;}
.y216_c00001{bottom:747.105000px;}
.y2b9_c00001{bottom:747.285000px;}
.y37c_c00001{bottom:747.645000px;}
.y5de_c00001{bottom:747.825000px;}
.y9a4_c00001{bottom:748.545000px;}
.y434_c00001{bottom:749.265000px;}
.yb47_c00001{bottom:749.445000px;}
.y3eb_c00001{bottom:749.625000px;}
.y803_c00001{bottom:750.525000px;}
.y25e_c00001{bottom:751.065000px;}
.y158_c00001{bottom:751.425000px;}
.y50d_c00001{bottom:752.325000px;}
.y30a_c00001{bottom:752.730000px;}
.y12f_c00001{bottom:752.865000px;}
.y5a4_c00001{bottom:753.045000px;}
.y2e9_c00001{bottom:753.450000px;}
.y8f9_c00001{bottom:753.945000px;}
.y399_c00001{bottom:754.485000px;}
.yac2_c00001{bottom:754.665000px;}
.yf_c00001{bottom:754.845000px;}
.y27c_c00001{bottom:755.025000px;}
.y39a_c00001{bottom:756.285000px;}
.y69c_c00001{bottom:756.465000px;}
.y479_c00001{bottom:757.185000px;}
.y1fb_c00001{bottom:757.365000px;}
.y425_c00001{bottom:757.905000px;}
.yd3_c00001{bottom:758.265000px;}
.y6fd_c00001{bottom:758.445000px;}
.y56_c00001{bottom:758.805000px;}
.y63f_c00001{bottom:759.525000px;}
.y545_c00001{bottom:759.705000px;}
.y3dc_c00001{bottom:759.885000px;}
.y5b4_c00001{bottom:761.325000px;}
.y35e_c00001{bottom:761.685000px;}
.y87f_c00001{bottom:762.045000px;}
.y6d9_c00001{bottom:762.405000px;}
.y943_c00001{bottom:762.765000px;}
.y3b_c00001{bottom:763.125000px;}
.y101_c00001{bottom:763.485000px;}
.y19c_c00001{bottom:764.025000px;}
.yb63_c00001{bottom:764.745000px;}
.y3be_c00001{bottom:764.925000px;}
.y23d_c00001{bottom:765.105000px;}
.y910_c00001{bottom:765.285000px;}
.y2b8_c00001{bottom:766.185000px;}
.y92_c00001{bottom:766.545000px;}
.y908_c00001{bottom:766.905000px;}
.y8ec_c00001{bottom:767.445000px;}
.y893_c00001{bottom:767.805000px;}
.y433_c00001{bottom:768.345000px;}
.y623_c00001{bottom:768.525000px;}
.yb46_c00001{bottom:769.605000px;}
.y25d_c00001{bottom:769.965000px;}
.y689_c00001{bottom:770.325000px;}
.y56a_c00001{bottom:770.865000px;}
.y50c_c00001{bottom:771.405000px;}
.y309_c00001{bottom:771.450000px;}
.y12e_c00001{bottom:771.765000px;}
.yb4_c00001{bottom:772.125000px;}
.y178_c00001{bottom:772.845000px;}
.y398_c00001{bottom:773.565000px;}
.y2e8_c00001{bottom:774.150000px;}
.y850_c00001{bottom:774.645000px;}
.y631_c00001{bottom:775.545000px;}
.y27b_c00001{bottom:775.725000px;}
.y478_c00001{bottom:776.085000px;}
.y424_c00001{bottom:776.985000px;}
.y5ac_c00001{bottom:777.165000px;}
.y6fc_c00001{bottom:777.345000px;}
.y719_c00001{bottom:777.525000px;}
.y57f_c00001{bottom:777.705000px;}
.y215_c00001{bottom:778.065000px;}
.y34e_c00001{bottom:778.605000px;}
.y5dd_c00001{bottom:778.965000px;}
.y937_c00001{bottom:780.225000px;}
.y5b3_c00001{bottom:780.405000px;}
.y100_c00001{bottom:780.585000px;}
.y6d8_c00001{bottom:781.485000px;}
.yb68_c00001{bottom:781.665000px;}
.y3a_c00001{bottom:782.025000px;}
.y157_c00001{bottom:782.385000px;}
.y4dd_c00001{bottom:782.925000px;}
.yb60_c00001{bottom:783.645000px;}
.y3bd_c00001{bottom:783.825000px;}
.y5a3_c00001{bottom:784.185000px;}
.y8f8_c00001{bottom:784.905000px;}
.y91_c00001{bottom:785.625000px;}
.ye_c00001{bottom:785.805000px;}
.y90f_c00001{bottom:785.985000px;}
.y8eb_c00001{bottom:786.345000px;}
.y432_c00001{bottom:787.245000px;}
.y69b_c00001{bottom:787.605000px;}
.y55_c00001{bottom:788.505000px;}
.y25c_c00001{bottom:789.045000px;}
.yd2_c00001{bottom:789.225000px;}
.y50b_c00001{bottom:790.305000px;}
.y12d_c00001{bottom:790.665000px;}
.y3db_c00001{bottom:791.025000px;}
.y65c_c00001{bottom:792.105000px;}
.y397_c00001{bottom:792.465000px;}
.y35d_c00001{bottom:792.825000px;}
.y87e_c00001{bottom:793.185000px;}
.y19b_c00001{bottom:793.545000px;}
.y3f2_c00001{bottom:794.445000px;}
.y477_c00001{bottom:795.030000px;}
.y423_c00001{bottom:795.930000px;}
.y23c_c00001{bottom:796.290000px;}
.y27a_c00001{bottom:796.470000px;}
.y718_c00001{bottom:797.550000px;}
.y34d_c00001{bottom:797.730000px;}
.yff_c00001{bottom:797.910000px;}
.y892_c00001{bottom:798.810000px;}
.y5b2_c00001{bottom:799.350000px;}
.y622_c00001{bottom:799.710000px;}
.y93a_c00001{bottom:800.970000px;}
.y39_c00001{bottom:801.150000px;}
.y688_c00001{bottom:801.330000px;}
.y6d7_c00001{bottom:801.690000px;}
.y4dc_c00001{bottom:802.050000px;}
.yb62_c00001{bottom:802.590000px;}
.y3bc_c00001{bottom:802.770000px;}
.yb3_c00001{bottom:803.130000px;}
.y177_c00001{bottom:804.030000px;}
.y4a9_c00001{bottom:804.570000px;}
.y2b7_c00001{bottom:804.750000px;}
.y569_c00001{bottom:805.470000px;}
.y90_c00001{bottom:805.650000px;}
.y5c2_c00001{bottom:806.370000px;}
.y630_c00001{bottom:806.550000px;}
.yb45_c00001{bottom:807.630000px;}
.y25b_c00001{bottom:807.990000px;}
.y544_c00001{bottom:808.350000px;}
.y214_c00001{bottom:809.250000px;}
.yd1_c00001{bottom:809.790000px;}
.y5dc_c00001{bottom:809.970000px;}
.y396_c00001{bottom:811.410000px;}
.y57e_c00001{bottom:812.310000px;}
.y802_c00001{bottom:812.670000px;}
.y156_c00001{bottom:813.570000px;}
.y476_c00001{bottom:814.110000px;}
.y422_c00001{bottom:815.010000px;}
.y37b_c00001{bottom:815.190000px;}
.y8f7_c00001{bottom:816.090000px;}
.y342_c00001{bottom:816.630000px;}
.yd_c00001{bottom:816.990000px;}
.y279_c00001{bottom:817.170000px;}
.y69a_c00001{bottom:818.250000px;}
.y5b1_c00001{bottom:818.430000px;}
.y54_c00001{bottom:819.510000px;}
.y38_c00001{bottom:820.050000px;}
.y40b_c00001{bottom:820.410000px;}
.y6d6_c00001{bottom:820.590000px;}
.y4db_c00001{bottom:820.950000px;}
.y3bb_c00001{bottom:821.850000px;}
.yfe_c00001{bottom:822.030000px;}
.y4a8_c00001{bottom:823.470000px;}
.y35c_c00001{bottom:823.830000px;}
.y8ea_c00001{bottom:824.370000px;}
.y8f_c00001{bottom:824.550000px;}
.y19a_c00001{bottom:824.730000px;}
.y5c1_c00001{bottom:825.270000px;}
.y3f1_c00001{bottom:825.630000px;}
.y25a_c00001{bottom:827.070000px;}
.y595_c00001{bottom:827.250000px;}
.y50a_c00001{bottom:828.330000px;}
.yb44_c00001{bottom:828.510000px;}
.yd0_c00001{bottom:828.690000px;}
.y907_c00001{bottom:829.050000px;}
.y65b_c00001{bottom:830.130000px;}
.y395_c00001{bottom:830.490000px;}
.y621_c00001{bottom:830.670000px;}
.y87d_c00001{bottom:831.030000px;}
.yfd_c00001{bottom:832.470000px;}
.y833_c00001{bottom:833.010000px;}
.y421_c00001{bottom:833.910000px;}
.yb2_c00001{bottom:834.270000px;}
.y176_c00001{bottom:834.990000px;}
.y2b6_c00001{bottom:835.530000px;}
.y341_c00001{bottom:835.710000px;}
.y84f_c00001{bottom:836.790000px;}
.y62f_c00001{bottom:837.330000px;}
.y88b_c00001{bottom:837.690000px;}
.y278_c00001{bottom:837.870000px;}
.y37_c00001{bottom:839.130000px;}
.y543_c00001{bottom:839.310000px;}
.yb61_c00001{bottom:839.490000px;}
.y6d5_c00001{bottom:839.670000px;}
.y4da_c00001{bottom:839.850000px;}
.y213_c00001{bottom:840.210000px;}
.y3ba_c00001{bottom:840.750000px;}
.y5db_c00001{bottom:841.110000px;}
.y4a7_c00001{bottom:842.550000px;}
.y8e9_c00001{bottom:843.450000px;}
.y8e_c00001{bottom:843.630000px;}
.y5c0_c00001{bottom:844.170000px;}
.y155_c00001{bottom:844.530000px;}
.y259_c00001{bottom:845.970000px;}
.y37a_c00001{bottom:846.330000px;}
.y57d_c00001{bottom:846.870000px;}
.y8f6_c00001{bottom:847.050000px;}
.y509_c00001{bottom:847.230000px;}
.y568_c00001{bottom:847.590000px;}
.ycf_c00001{bottom:847.770000px;}
.yc_c00001{bottom:847.950000px;}
.y4b4_c00001{bottom:848.130000px;}
.yb43_c00001{bottom:848.670000px;}
.y394_c00001{bottom:849.390000px;}
.yfc_c00001{bottom:849.750000px;}
.y87c_c00001{bottom:849.930000px;}
.y53_c00001{bottom:850.650000px;}
.y40a_c00001{bottom:851.370000px;}
.y2e5_c00001{bottom:851.400000px;}
.y832_c00001{bottom:852.090000px;}
.y420_c00001{bottom:852.810000px;}
.y3da_c00001{bottom:853.170000px;}
.y6fb_c00001{bottom:854.430000px;}
.yb1_c00001{bottom:854.610000px;}
.y199_c00001{bottom:855.690000px;}
.y63e_c00001{bottom:856.410000px;}
.y3f0_c00001{bottom:856.590000px;}
.y495_c00001{bottom:857.670000px;}
.y36_c00001{bottom:858.030000px;}
.y66b_c00001{bottom:858.210000px;}
.y594_c00001{bottom:858.390000px;}
.y277_c00001{bottom:858.570000px;}
.y4d9_c00001{bottom:858.930000px;}
.y3b9_c00001{bottom:859.830000px;}
.y906_c00001{bottom:860.010000px;}
.y4a6_c00001{bottom:861.450000px;}
.y620_c00001{bottom:861.810000px;}
.y8e8_c00001{bottom:862.350000px;}
.y5bf_c00001{bottom:863.250000px;}
.y687_c00001{bottom:863.430000px;}
.ya67_c00001{bottom:863.610000px;}
.y8d_c00001{bottom:863.790000px;}
.y175_c00001{bottom:864.870000px;}
.y32f_c00001{bottom:865.230000px;}
.y508_c00001{bottom:866.310000px;}
.yce_c00001{bottom:866.670000px;}
.yfb_c00001{bottom:867.030000px;}
.y8f5_c00001{bottom:867.570000px;}
.y84e_c00001{bottom:867.750000px;}
.y87b_c00001{bottom:868.650000px;}
.y9e7_c00001{bottom:869.550000px;}
.y542_c00001{bottom:870.450000px;}
.y314_c00001{bottom:870.990000px;}
.y212_c00001{bottom:871.350000px;}
.y41f_c00001{bottom:871.890000px;}
.y5da_c00001{bottom:872.070000px;}
.yaa2_c00001{bottom:872.790000px;}
.yb0_c00001{bottom:873.510000px;}
.y717_c00001{bottom:874.590000px;}
.y475_c00001{bottom:874.770000px;}
.y63d_c00001{bottom:875.310000px;}
.y35b_c00001{bottom:875.490000px;}
.y154_c00001{bottom:875.670000px;}
.y5a7_c00001{bottom:875.850000px;}
.y494_c00001{bottom:876.750000px;}
.y35_c00001{bottom:877.110000px;}
.y379_c00001{bottom:877.290000px;}
.y6d4_c00001{bottom:877.650000px;}
.y4d8_c00001{bottom:877.830000px;}
.y3b8_c00001{bottom:878.730000px;}
.yb_c00001{bottom:879.090000px;}
.y276_c00001{bottom:879.270000px;}
.ya87_c00001{bottom:879.810000px;}
.y4a5_c00001{bottom:880.530000px;}
.y57c_c00001{bottom:881.250000px;}
.y52_c00001{bottom:881.610000px;}
.y5be_c00001{bottom:882.150000px;}
.y409_c00001{bottom:882.510000px;}
.y8c_c00001{bottom:882.690000px;}
.y174_c00001{bottom:883.950000px;}
.y567_c00001{bottom:884.130000px;}
.y507_c00001{bottom:884.850000px;}
.yfa_c00001{bottom:885.030000px;}
.y55d_c00001{bottom:885.210000px;}
.ycd_c00001{bottom:885.570000px;}
.y8f4_c00001{bottom:886.470000px;}
.yb42_c00001{bottom:886.650000px;}
.y198_c00001{bottom:886.830000px;}
.y87a_c00001{bottom:887.550000px;}
.y5f8_c00001{bottom:887.730000px;}
.y593_c00001{bottom:889.350000px;}
.y41e_c00001{bottom:890.790000px;}
.y905_c00001{bottom:891.150000px;}
.yaf_c00001{bottom:892.590000px;}
.y61f_c00001{bottom:892.770000px;}
.y8e1_c00001{bottom:892.950000px;}
.y6fa_c00001{bottom:893.670000px;}
.y63c_c00001{bottom:894.210000px;}
.y686_c00001{bottom:894.570000px;}
.y90c_c00001{bottom:894.750000px;}
.y3ea_c00001{bottom:895.650000px;}
.y34_c00001{bottom:896.010000px;}
.y4e8_c00001{bottom:896.190000px;}
.yb16_c00001{bottom:896.370000px;}
.y6d3_c00001{bottom:896.550000px;}
.y4d7_c00001{bottom:896.910000px;}
.y2b5_c00001{bottom:897.630000px;}
.y84d_c00001{bottom:898.890000px;}
.y936_c00001{bottom:899.790000px;}
.y275_c00001{bottom:899.970000px;}
.y8e7_c00001{bottom:900.330000px;}
.y5bd_c00001{bottom:901.230000px;}
.y541_c00001{bottom:901.410000px;}
.y8b_c00001{bottom:901.770000px;}
.y211_c00001{bottom:902.310000px;}
.y173_c00001{bottom:902.850000px;}
.y5d9_c00001{bottom:903.210000px;}
.y506_c00001{bottom:903.750000px;}
.y55c_c00001{bottom:904.110000px;}
.ycc_c00001{bottom:904.650000px;}
.y8f3_c00001{bottom:905.550000px;}
.y474_c00001{bottom:905.730000px;}
.y879_c00001{bottom:906.450000px;}
.y313_c00001{bottom:907.890000px;}
.y378_c00001{bottom:908.430000px;}
.y62b_c00001{bottom:909.690000px;}
.y41d_c00001{bottom:909.870000px;}
.ya_c00001{bottom:910.050000px;}
.yae_c00001{bottom:911.490000px;}
.y6f9_c00001{bottom:912.570000px;}
.y51_c00001{bottom:912.750000px;}
.y61e_c00001{bottom:913.290000px;}
.y408_c00001{bottom:913.470000px;}
.y3ef_c00001{bottom:914.550000px;}
.ya29_c00001{bottom:914.730000px;}
.y33_c00001{bottom:914.910000px;}
.yf9_c00001{bottom:915.270000px;}
.y6d2_c00001{bottom:915.630000px;}
.y57b_c00001{bottom:915.810000px;}
.y44b_c00001{bottom:916.710000px;}
.y197_c00001{bottom:917.790000px;}
.y5f7_c00001{bottom:918.690000px;}
.y8e6_c00001{bottom:919.230000px;}
.y5bc_c00001{bottom:920.130000px;}
.y592_c00001{bottom:920.490000px;}
.y274_c00001{bottom:920.670000px;}
.ya0a_c00001{bottom:921.750000px;}
.y8a_c00001{bottom:921.930000px;}
.y505_c00001{bottom:922.830000px;}
.y55b_c00001{bottom:923.190000px;}
.ycb_c00001{bottom:923.550000px;}
.y8f2_c00001{bottom:924.450000px;}
.y878_c00001{bottom:925.350000px;}
.y4e7_c00001{bottom:927.330000px;}
.y2b4_c00001{bottom:928.590000px;}
.y41c_c00001{bottom:928.770000px;}
.y84c_c00001{bottom:929.850000px;}
.y3d9_c00001{bottom:930.210000px;}
.y904_c00001{bottom:930.570000px;}
.y935_c00001{bottom:930.750000px;}
.y6f8_c00001{bottom:931.650000px;}
.y5ab_c00001{bottom:932.190000px;}
.y540_c00001{bottom:932.550000px;}
.y210_c00001{bottom:933.450000px;}
.y3e9_c00001{bottom:933.630000px;}
.yb5f_c00001{bottom:933.810000px;}
.y32_c00001{bottom:933.990000px;}
.y5d8_c00001{bottom:934.170000px;}
.yf8_c00001{bottom:935.610000px;}
.y473_c00001{bottom:936.870000px;}
.y8e5_c00001{bottom:938.310000px;}
.y377_c00001{bottom:939.390000px;}
.y5bb_c00001{bottom:939.570000px;}
.y89_c00001{bottom:940.830000px;}
.y9_c00001{bottom:941.190000px;}
.y273_c00001{bottom:941.370000px;}
.y504_c00001{bottom:942.090000px;}
.y50_c00001{bottom:942.630000px;}
.y8f1_c00001{bottom:943.350000px;}
.y1fa_c00001{bottom:943.710000px;}
.y877_c00001{bottom:944.070000px;}
.y9c7_c00001{bottom:944.610000px;}
.y312_c00001{bottom:944.970000px;}
.yb41_c00001{bottom:945.330000px;}
.y4d6_c00001{bottom:945.690000px;}
.y566_c00001{bottom:946.230000px;}
.y41b_c00001{bottom:947.670000px;}
.y196_c00001{bottom:948.930000px;}
.y3d8_c00001{bottom:949.470000px;}
.y5f6_c00001{bottom:949.830000px;}
.yb5a_c00001{bottom:950.010000px;}
.y57a_c00001{bottom:950.370000px;}
.y6f7_c00001{bottom:950.550000px;}
.y93f_c00001{bottom:951.090000px;}
.y61d_c00001{bottom:951.270000px;}
.y591_c00001{bottom:951.450000px;}
.y716_c00001{bottom:951.810000px;}
.y407_c00001{bottom:952.530000px;}
.yb5e_c00001{bottom:952.710000px;}
.y31_c00001{bottom:952.890000px;}
.yf7_c00001{bottom:954.690000px;}
.y8e4_c00001{bottom:957.210000px;}
.y4e6_c00001{bottom:958.290000px;}
.y88_c00001{bottom:959.730000px;}
.y84b_c00001{bottom:960.990000px;}
.y503_c00001{bottom:961.170000px;}
.y934_c00001{bottom:961.890000px;}
.y272_c00001{bottom:962.070000px;}
.y8f0_c00001{bottom:962.430000px;}
.y876_c00001{bottom:962.970000px;}
.y310_c00001{bottom:963.690000px;}
.y20f_c00001{bottom:964.410000px;}
.y5d7_c00001{bottom:965.310000px;}
.yb40_c00001{bottom:965.670000px;}
.y41a_c00001{bottom:966.750000px;}
.y472_c00001{bottom:967.830000px;}
.y3d7_c00001{bottom:968.370000px;}
.ya45_c00001{bottom:969.270000px;}
.y6f6_c00001{bottom:969.630000px;}
.y376_c00001{bottom:970.170000px;}
.y6a1_c00001{bottom:970.530000px;}
.y5f5_c00001{bottom:970.710000px;}
.y715_c00001{bottom:970.890000px;}
.y406_c00001{bottom:971.610000px;}
.y5fd_c00001{bottom:971.790000px;}
.y30_c00001{bottom:971.970000px;}
.y8_c00001{bottom:972.150000px;}
.y4cd_c00001{bottom:972.330000px;}
.yf6_c00001{bottom:973.590000px;}
.y1f9_c00001{bottom:974.850000px;}
.y4d5_c00001{bottom:975.390000px;}
.y9c6_c00001{bottom:975.570000px;}
.y8e3_c00001{bottom:976.290000px;}
.y5d4_c00001{bottom:976.830000px;}
.y565_c00001{bottom:977.370000px;}
.y87_c00001{bottom:978.810000px;}
.y195_c00001{bottom:979.890000px;}
.y502_c00001{bottom:980.070000px;}
.y2b3_c00001{bottom:980.610000px;}
.y8ef_c00001{bottom:980.970000px;}
.y875_c00001{bottom:981.870000px;}
.y590_c00001{bottom:982.590000px;}
.y271_c00001{bottom:982.770000px;}
.yb3f_c00001{bottom:984.570000px;}
.y579_c00001{bottom:984.750000px;}
.y419_c00001{bottom:985.650000px;}
.y3d6_c00001{bottom:987.450000px;}
.y61c_c00001{bottom:989.070000px;}
.y4e5_c00001{bottom:989.430000px;}
.y63b_c00001{bottom:989.610000px;}
.y9c9_c00001{bottom:989.790000px;}
.yb5c_c00001{bottom:990.330000px;}
.y2f_c00001{bottom:990.870000px;}
.y933_c00001{bottom:992.850000px;}
.ya44_c00001{bottom:994.650000px;}
.y5d6_c00001{bottom:996.270000px;}
.y86_c00001{bottom:997.710000px;}
.y471_c00001{bottom:998.970000px;}
.y8ee_c00001{bottom:1000.410000px;}
.y30f_c00001{bottom:1000.770000px;}
.y66a_c00001{bottom:1002.930000px;}
.y296_c00001{bottom:1003.110000px;}
.y7_c00001{bottom:1003.290000px;}
.y270_c00001{bottom:1003.470000px;}
.y9a3_c00001{bottom:1004.370000px;}
.y418_c00001{bottom:1004.730000px;}
.y4d4_c00001{bottom:1005.270000px;}
.y1f8_c00001{bottom:1005.810000px;}
.y3d5_c00001{bottom:1006.890000px;}
.y61b_c00001{bottom:1008.150000px;}
.y564_c00001{bottom:1008.330000px;}
.y6f5_c00001{bottom:1008.690000px;}
.y2e_c00001{bottom:1009.770000px;}
.y9c8_c00001{bottom:1015.350000px;}
.y85_c00001{bottom:1016.790000px;}
.y501_c00001{bottom:1018.050000px;}
.y58f_c00001{bottom:1018.230000px;}
.y578_c00001{bottom:1019.310000px;}
.y932_c00001{bottom:1023.630000px;}
.y295_c00001{bottom:1023.810000px;}
.yb5b_c00001{bottom:1023.990000px;}
.y26f_c00001{bottom:1024.170000px;}
.yb3e_c00001{bottom:1024.350000px;}
.y3d4_c00001{bottom:1027.050000px;}
.y890_c00001{bottom:1027.410000px;}
.y61a_c00001{bottom:1027.590000px;}
.y375_c00001{bottom:1028.490000px;}
.y2d_c00001{bottom:1028.850000px;}
.y695_c00001{bottom:1033.890000px;}
.y6_c00001{bottom:1034.250000px;}
.y4d3_c00001{bottom:1034.970000px;}
.y84_c00001{bottom:1035.690000px;}
.y500_c00001{bottom:1036.950000px;}
.y8ed_c00001{bottom:1038.210000px;}
.yb3d_c00001{bottom:1044.690000px;}
.y26e_c00001{bottom:1044.870000px;}
.y7f8_c00001{bottom:1046.130000px;}
.y3d3_c00001{bottom:1046.490000px;}
.y6f4_c00001{bottom:1046.670000px;}
.y2c_c00001{bottom:1047.750000px;}
.y577_c00001{bottom:1053.870000px;}
.y58e_c00001{bottom:1059.660000px;}
.y1f7_c00001{bottom:1065.060000px;}
.y5_c00001{bottom:1065.420000px;}
.y26d_c00001{bottom:1065.600000px;}
.y6f3_c00001{bottom:1065.780000px;}
.y4ff_c00001{bottom:1066.140000px;}
.y493_c00001{bottom:1066.500000px;}
.y2b_c00001{bottom:1066.860000px;}
.y1_c00001{bottom:1121.400000px;}
.h18_c00001{height:18.000000px;}
.h63_c00001{height:18.036000px;}
.h16_c00001{height:18.180000px;}
.h1a_c00001{height:18.216000px;}
.h88_c00001{height:19.800000px;}
.h7d_c00001{height:20.520000px;}
.h3_c00001{height:22.500000px;}
.h15_c00001{height:22.680000px;}
.h91_c00001{height:28.685391px;}
.h13_c00001{height:30.810234px;}
.h55_c00001{height:35.332031px;}
.h1c_c00001{height:36.180000px;}
.h19_c00001{height:36.216000px;}
.h1b_c00001{height:36.360000px;}
.h30_c00001{height:36.396000px;}
.h2c_c00001{height:36.900000px;}
.h81_c00001{height:36.936000px;}
.h7e_c00001{height:37.080000px;}
.hc_c00001{height:38.158594px;}
.h7c_c00001{height:39.420000px;}
.h8d_c00001{height:41.760000px;}
.h8c_c00001{height:41.940000px;}
.h11_c00001{height:47.344922px;}
.h2_c00001{height:48.871406px;}
.h56_c00001{height:52.998047px;}
.hf_c00001{height:53.573906px;}
.h71_c00001{height:54.180000px;}
.h2f_c00001{height:54.360000px;}
.h98_c00001{height:54.396000px;}
.h2b_c00001{height:55.800000px;}
.h8b_c00001{height:55.980000px;}
.h83_c00001{height:56.016000px;}
.h1e_c00001{height:56.801250px;}
.h7a_c00001{height:58.621992px;}
.hd_c00001{height:58.651172px;}
.h6_c00001{height:59.383125px;}
.h8_c00001{height:60.226875px;}
.h89_c00001{height:61.423863px;}
.h17_c00001{height:62.184375px;}
.h21_c00001{height:62.327813px;}
.h3a_c00001{height:63.855000px;}
.h5_c00001{height:64.546875px;}
.h26_c00001{height:64.978594px;}
.h1_c00001{height:65.010937px;}
.h32_c00001{height:65.124096px;}
.h7_c00001{height:66.757500px;}
.h22_c00001{height:67.837500px;}
.h28_c00001{height:68.084282px;}
.h9_c00001{height:69.086250px;}
.h27_c00001{height:70.628906px;}
.h4_c00001{height:70.664062px;}
.he_c00001{height:71.225156px;}
.h52_c00001{height:71.345156px;}
.h57_c00001{height:72.194063px;}
.h46_c00001{height:72.360000px;}
.h4e_c00001{height:72.396000px;}
.h1f_c00001{height:72.540000px;}
.ha_c00001{height:72.562500px;}
.h4f_c00001{height:72.576000px;}
.h7f_c00001{height:73.836000px;}
.h84_c00001{height:73.980000px;}
.h25_c00001{height:74.004654px;}
.h29_c00001{height:74.016000px;}
.h2a_c00001{height:74.700000px;}
.h2d_c00001{height:74.736000px;}
.h12_c00001{height:75.093750px;}
.h7b_c00001{height:80.441367px;}
.hb_c00001{height:80.464922px;}
.h10_c00001{height:80.644922px;}
.h44_c00001{height:90.540000px;}
.h20_c00001{height:90.576000px;}
.h8a_c00001{height:93.420000px;}
.h85_c00001{height:93.600000px;}
.h24_c00001{height:96.508125px;}
.h94_c00001{height:108.576000px;}
.h3b_c00001{height:108.720000px;}
.h95_c00001{height:108.756000px;}
.h82_c00001{height:112.536000px;}
.h23_c00001{height:121.179375px;}
.h86_c00001{height:126.756000px;}
.h8f_c00001{height:126.936000px;}
.h80_c00001{height:130.716000px;}
.h2e_c00001{height:131.220000px;}
.h96_c00001{height:144.900000px;}
.h3e_c00001{height:144.936000px;}
.h64_c00001{height:159.150000px;}
.h38_c00001{height:162.900000px;}
.h4c_c00001{height:163.110000px;}
.h6a_c00001{height:166.170000px;}
.h34_c00001{height:181.110000px;}
.h93_c00001{height:181.290000px;}
.h6f_c00001{height:190.980000px;}
.h6d_c00001{height:192.270000px;}
.h5f_c00001{height:192.990000px;}
.h70_c00001{height:193.890000px;}
.h60_c00001{height:196.590000px;}
.h62_c00001{height:197.100000px;}
.h66_c00001{height:197.670000px;}
.h49_c00001{height:199.110000px;}
.h8e_c00001{height:199.290000px;}
.h74_c00001{height:200.730000px;}
.h5b_c00001{height:200.910000px;}
.h75_c00001{height:201.090000px;}
.h67_c00001{height:202.170000px;}
.h68_c00001{height:202.320000px;}
.h69_c00001{height:202.530000px;}
.h5a_c00001{height:204.480000px;}
.h6c_c00001{height:204.510000px;}
.h77_c00001{height:208.110000px;}
.h5c_c00001{height:209.010000px;}
.h79_c00001{height:210.090000px;}
.h78_c00001{height:210.630000px;}
.h5d_c00001{height:211.350000px;}
.h58_c00001{height:212.070000px;}
.h41_c00001{height:217.290000px;}
.h1d_c00001{height:217.470000px;}
.h76_c00001{height:224.490000px;}
.h48_c00001{height:235.470000px;}
.h42_c00001{height:253.650000px;}
.h37_c00001{height:271.650000px;}
.h99_c00001{height:289.830000px;}
.h87_c00001{height:289.875000px;}
.h73_c00001{height:294.510000px;}
.h97_c00001{height:326.055000px;}
.h90_c00001{height:344.235000px;}
.h6b_c00001{height:371.595000px;}
.h36_c00001{height:380.415000px;}
.h6e_c00001{height:383.970000px;}
.h61_c00001{height:394.410000px;}
.h43_c00001{height:398.415000px;}
.h5e_c00001{height:405.075000px;}
.h4d_c00001{height:416.595000px;}
.h59_c00001{height:417.270000px;}
.h40_c00001{height:434.775000px;}
.h51_c00001{height:443.775000px;}
.h4b_c00001{height:452.775000px;}
.h92_c00001{height:454.395000px;}
.h35_c00001{height:470.955000px;}
.h39_c00001{height:488.625000px;}
.h4a_c00001{height:488.985000px;}
.h72_c00001{height:489.135000px;}
.h3d_c00001{height:507.135000px;}
.h50_c00001{height:538.845000px;}
.h3c_c00001{height:543.345000px;}
.h53_c00001{height:558.105000px;}
.h31_c00001{height:561.525000px;}
.h54_c00001{height:570.525000px;}
.h47_c00001{height:579.525000px;}
.h45_c00001{height:597.705000px;}
.h3f_c00001{height:615.885000px;}
.h33_c00001{height:652.065000px;}
.h65_c00001{height:763.485000px;}
.h14_c00001{height:918.000000px;}
.h0_c00001{height:1188.000000px;}
.w17_c00001{width:48.456000px;}
.wa_c00001{width:48.780000px;}
.w1_c00001{width:66.636000px;}
.w3_c00001{width:66.780000px;}
.w18_c00001{width:75.060000px;}
.wb_c00001{width:78.480000px;}
.w6_c00001{width:84.240000px;}
.w5_c00001{width:84.420000px;}
.w20_c00001{width:95.400000px;}
.w2d_c00001{width:113.616000px;}
.w34_c00001{width:116.316000px;}
.w15_c00001{width:126.720000px;}
.w14_c00001{width:126.756000px;}
.wd_c00001{width:127.980000px;}
.w28_c00001{width:130.356000px;}
.w1b_c00001{width:137.340000px;}
.w37_c00001{width:147.996000px;}
.w36_c00001{width:156.090000px;}
.we_c00001{width:156.240000px;}
.wf_c00001{width:156.450000px;}
.wc_c00001{width:167.790000px;}
.w8_c00001{width:169.380000px;}
.w1f_c00001{width:180.030000px;}
.w1c_c00001{width:190.830000px;}
.w13_c00001{width:199.110000px;}
.w19_c00001{width:206.310000px;}
.w1e_c00001{width:211.530000px;}
.w7_c00001{width:233.130000px;}
.w10_c00001{width:279.210000px;}
.w2b_c00001{width:286.410000px;}
.w2f_c00001{width:299.010000px;}
.w30_c00001{width:307.155000px;}
.w12_c00001{width:313.410000px;}
.w22_c00001{width:335.910000px;}
.w26_c00001{width:335.955000px;}
.w23_c00001{width:336.135000px;}
.w11_c00001{width:339.510000px;}
.w9_c00001{width:379.515000px;}
.w2a_c00001{width:390.135000px;}
.w25_c00001{width:456.555000px;}
.w32_c00001{width:485.175000px;}
.w33_c00001{width:490.935000px;}
.w35_c00001{width:494.535000px;}
.w16_c00001{width:501.195000px;}
.w21_c00001{width:506.955000px;}
.w24_c00001{width:509.115000px;}
.w1a_c00001{width:515.415000px;}
.w1d_c00001{width:551.415000px;}
.w2e_c00001{width:562.935000px;}
.w4_c00001{width:592.125000px;}
.w27_c00001{width:640.335000px;}
.w38_c00001{width:671.295000px;}
.w31_c00001{width:679.755000px;}
.w29_c00001{width:845.925000px;}
.w0_c00001{width:918.000000px;}
.w2c_c00001{width:977.010000px;}
.w2_c00001{width:1188.000000px;}
.x0_c00001{left:0.000000px;}
.x1e_c00001{left:7.560000px;}
.x95_c00001{left:8.820000px;}
.x28_c00001{left:9.900000px;}
.x7f_c00001{left:11.694000px;}
.x31_c00001{left:13.320000px;}
.x86_c00001{left:14.760000px;}
.x1c_c00001{left:16.200000px;}
.xb4_c00001{left:18.180000px;}
.x79_c00001{left:19.476000px;}
.x4_c00001{left:20.880000px;}
.x35_c00001{left:22.500000px;}
.x37_c00001{left:24.120000px;}
.xb1_c00001{left:25.560000px;}
.x38_c00001{left:26.640000px;}
.x1a_c00001{left:28.440000px;}
.x3a_c00001{left:30.240000px;}
.x7c_c00001{left:31.500000px;}
.x21_c00001{left:32.760000px;}
.x27_c00001{left:34.200000px;}
.x34_c00001{left:35.280000px;}
.x7a_c00001{left:36.570000px;}
.x1f_c00001{left:38.160000px;}
.xbd_c00001{left:39.240000px;}
.x5f_c00001{left:40.320000px;}
.x56_c00001{left:41.580000px;}
.x77_c00001{left:43.410000px;}
.x78_c00001{left:44.670000px;}
.x5d_c00001{left:46.080000px;}
.x39_c00001{left:47.700000px;}
.x3b_c00001{left:48.960000px;}
.x73_c00001{left:50.220000px;}
.x8b_c00001{left:51.840000px;}
.x85_c00001{left:52.920000px;}
.x7b_c00001{left:54.210000px;}
.x51_c00001{left:55.260000px;}
.x5e_c00001{left:56.880000px;}
.x2b_c00001{left:58.185000px;}
.x8c_c00001{left:59.790000px;}
.x2a_c00001{left:61.245000px;}
.x66_c00001{left:63.360000px;}
.x33_c00001{left:65.025000px;}
.x63_c00001{left:66.780000px;}
.x36_c00001{left:68.085000px;}
.x89_c00001{left:69.510000px;}
.x29_c00001{left:71.325000px;}
.x65_c00001{left:72.540000px;}
.x22_c00001{left:74.385000px;}
.x26_c00001{left:76.005000px;}
.x23_c00001{left:78.345000px;}
.x20_c00001{left:79.965000px;}
.x24_c00001{left:82.125000px;}
.x25_c00001{left:83.565000px;}
.x5c_c00001{left:86.400000px;}
.x94_c00001{left:90.045000px;}
.x6b_c00001{left:92.700000px;}
.x68_c00001{left:97.020000px;}
.x17_c00001{left:98.640000px;}
.xa0_c00001{left:100.110000px;}
.x67_c00001{left:101.520000px;}
.x59_c00001{left:102.780000px;}
.xb6_c00001{left:104.250000px;}
.x13_c00001{left:106.200000px;}
.x6a_c00001{left:109.800000px;}
.x5b_c00001{left:111.960000px;}
.xa7_c00001{left:113.040000px;}
.x57_c00001{left:115.020000px;}
.x8d_c00001{left:116.505000px;}
.x60_c00001{left:118.080000px;}
.x2e_c00001{left:119.916000px;}
.xaf_c00001{left:120.960000px;}
.x62_c00001{left:125.100000px;}
.x2_c00001{left:127.656000px;}
.xb7_c00001{left:129.810000px;}
.x40_c00001{left:131.076000px;}
.x3f_c00001{left:132.156000px;}
.x5a_c00001{left:134.640000px;}
.x64_c00001{left:136.440000px;}
.x3e_c00001{left:138.096000px;}
.x9c_c00001{left:140.430000px;}
.x61_c00001{left:142.200000px;}
.x69_c00001{left:143.460000px;}
.x3d_c00001{left:144.756000px;}
.x2f_c00001{left:145.974000px;}
.x7e_c00001{left:147.816000px;}
.x58_c00001{left:151.740000px;}
.x10_c00001{left:153.210000px;}
.x7_c00001{left:154.650000px;}
.x55_c00001{left:156.600000px;}
.x6c_c00001{left:160.230000px;}
.x87_c00001{left:168.330000px;}
.x4b_c00001{left:170.130000px;}
.x3c_c00001{left:171.390000px;}
.x76_c00001{left:176.790000px;}
.x5_c00001{left:180.750000px;}
.x44_c00001{left:185.250000px;}
.x45_c00001{left:187.050000px;}
.x42_c00001{left:188.130000px;}
.x6_c00001{left:191.550000px;}
.x46_c00001{left:192.630000px;}
.x2d_c00001{left:194.790000px;}
.x43_c00001{left:199.110000px;}
.xd_c00001{left:204.150000px;}
.xb_c00001{left:208.650000px;}
.x9e_c00001{left:211.530000px;}
.xad_c00001{left:212.970000px;}
.x49_c00001{left:214.050000px;}
.x93_c00001{left:215.310000px;}
.x11_c00001{left:218.190000px;}
.x80_c00001{left:223.590000px;}
.xbc_c00001{left:228.090000px;}
.xa3_c00001{left:229.710000px;}
.xc_c00001{left:230.970000px;}
.x8_c00001{left:234.030000px;}
.xa_c00001{left:235.650000px;}
.x83_c00001{left:236.730000px;}
.xae_c00001{left:238.905000px;}
.x4d_c00001{left:244.650000px;}
.x41_c00001{left:255.270000px;}
.x82_c00001{left:257.610000px;}
.x9_c00001{left:260.850000px;}
.xf_c00001{left:262.650000px;}
.x9f_c00001{left:268.410000px;}
.x8e_c00001{left:272.550000px;}
.x18_c00001{left:276.690000px;}
.x9b_c00001{left:278.670000px;}
.xa5_c00001{left:280.830000px;}
.x6f_c00001{left:286.950000px;}
.xe_c00001{left:289.650000px;}
.x97_c00001{left:292.710000px;}
.xa9_c00001{left:294.690000px;}
.xaa_c00001{left:297.255000px;}
.xab_c00001{left:306.750000px;}
.x52_c00001{left:309.630000px;}
.x90_c00001{left:310.890000px;}
.x6d_c00001{left:316.695000px;}
.x72_c00001{left:319.350000px;}
.x16_c00001{left:329.610000px;}
.xb5_c00001{left:330.690000px;}
.xa8_c00001{left:331.779000px;}
.xbf_c00001{left:335.550000px;}
.x70_c00001{left:340.095000px;}
.x6e_c00001{left:343.695000px;}
.x99_c00001{left:346.710000px;}
.x4a_c00001{left:351.615000px;}
.x8f_c00001{left:364.170000px;}
.x9d_c00001{left:369.255000px;}
.x48_c00001{left:375.015000px;}
.xa4_c00001{left:384.885000px;}
.x4c_c00001{left:393.015000px;}
.x4f_c00001{left:398.055000px;}
.xbe_c00001{left:404.355000px;}
.xac_c00001{left:405.975000px;}
.xb0_c00001{left:413.715000px;}
.x2c_c00001{left:414.975000px;}
.xb2_c00001{left:419.115000px;}
.xb8_c00001{left:423.435000px;}
.x7d_c00001{left:424.515000px;}
.x81_c00001{left:430.635000px;}
.xb3_c00001{left:432.975000px;}
.xa1_c00001{left:435.315000px;}
.x88_c00001{left:438.735000px;}
.x98_c00001{left:441.255000px;}
.xbb_c00001{left:442.695000px;}
.x74_c00001{left:447.015000px;}
.x96_c00001{left:456.555000px;}
.x1_c00001{left:459.075000px;}
.x53_c00001{left:466.815000px;}
.x47_c00001{left:469.695000px;}
.xa2_c00001{left:472.755000px;}
.x91_c00001{left:491.655000px;}
.x30_c00001{left:500.145000px;}
.xa6_c00001{left:510.765000px;}
.x71_c00001{left:516.495000px;}
.x15_c00001{left:549.795000px;}
.x75_c00001{left:574.455000px;}
.x4e_c00001{left:576.795000px;}
.xb9_c00001{left:584.715000px;}
.x92_c00001{left:587.775000px;}
.x12_c00001{left:593.895000px;}
.x9a_c00001{left:608.475000px;}
.x50_c00001{left:620.895000px;}
.x32_c00001{left:628.845000px;}
.x19_c00001{left:691.485000px;}
.x54_c00001{left:746.745000px;}
.x1b_c00001{left:776.625000px;}
.xba_c00001{left:790.530000px;}
.x3_c00001{left:820.950000px;}
.x8a_c00001{left:842.505000px;}
.x1d_c00001{left:861.585000px;}
.x84_c00001{left:946.770000px;}
.x14_c00001{left:1101.570000px;}
@media print{
.v9_c00001{vertical-align:-74.240000pt;}
.v7_c00001{vertical-align:-72.960000pt;}
.v8_c00001{vertical-align:-69.120000pt;}
.v1_c00001{vertical-align:-67.200000pt;}
.vb_c00001{vertical-align:-64.000000pt;}
.va_c00001{vertical-align:-61.440000pt;}
.v5_c00001{vertical-align:-29.440000pt;}
.v6_c00001{vertical-align:-26.880000pt;}
.v3_c00001{vertical-align:-24.320000pt;}
.vc_c00001{vertical-align:-21.120000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v4_c00001{vertical-align:26.880000pt;}
.v2_c00001{vertical-align:29.440000pt;}
.ls6e_c00001{letter-spacing:-1.920000pt;}
.ls3f_c00001{letter-spacing:-1.280000pt;}
.lsb7_c00001{letter-spacing:-1.130667pt;}
.ls4b_c00001{letter-spacing:-1.045333pt;}
.ls9c_c00001{letter-spacing:-1.008000pt;}
.ls69_c00001{letter-spacing:-0.960000pt;}
.ls31_c00001{letter-spacing:-0.938667pt;}
.lsb2_c00001{letter-spacing:-0.896000pt;}
.ls42_c00001{letter-spacing:-0.832000pt;}
.lsa6_c00001{letter-spacing:-0.752000pt;}
.lsa7_c00001{letter-spacing:-0.736000pt;}
.ls68_c00001{letter-spacing:-0.730667pt;}
.lsae_c00001{letter-spacing:-0.688000pt;}
.ls1c_c00001{letter-spacing:-0.640000pt;}
.ls72_c00001{letter-spacing:-0.592000pt;}
.ls39_c00001{letter-spacing:-0.576000pt;}
.ls7_c00001{letter-spacing:-0.544000pt;}
.ls26_c00001{letter-spacing:-0.512000pt;}
.ls2f_c00001{letter-spacing:-0.504533pt;}
.ls57_c00001{letter-spacing:-0.480000pt;}
.ls5d_c00001{letter-spacing:-0.412267pt;}
.ls4f_c00001{letter-spacing:-0.406933pt;}
.ls62_c00001{letter-spacing:-0.368533pt;}
.ls43_c00001{letter-spacing:-0.320000pt;}
.lsb6_c00001{letter-spacing:-0.297067pt;}
.ls8d_c00001{letter-spacing:-0.271467pt;}
.ls28_c00001{letter-spacing:-0.259733pt;}
.ls21_c00001{letter-spacing:-0.256000pt;}
.lsc3_c00001{letter-spacing:-0.242133pt;}
.lsb8_c00001{letter-spacing:-0.240533pt;}
.ls80_c00001{letter-spacing:-0.194667pt;}
.ls27_c00001{letter-spacing:-0.192000pt;}
.ls73_c00001{letter-spacing:-0.183467pt;}
.ls7f_c00001{letter-spacing:-0.148267pt;}
.ls96_c00001{letter-spacing:-0.135467pt;}
.ls1f_c00001{letter-spacing:-0.128000pt;}
.ls61_c00001{letter-spacing:-0.097067pt;}
.ls88_c00001{letter-spacing:-0.064000pt;}
.lse_c00001{letter-spacing:-0.047467pt;}
.ls79_c00001{letter-spacing:-0.045867pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.lsa8_c00001{letter-spacing:0.016000pt;}
.ls81_c00001{letter-spacing:0.045867pt;}
.ls37_c00001{letter-spacing:0.047467pt;}
.ls5f_c00001{letter-spacing:0.064000pt;}
.ls76_c00001{letter-spacing:0.071680pt;}
.ls29_c00001{letter-spacing:0.094720pt;}
.ls10_c00001{letter-spacing:0.094933pt;}
.ls19_c00001{letter-spacing:0.097067pt;}
.ls70_c00001{letter-spacing:0.106667pt;}
.ls46_c00001{letter-spacing:0.128000pt;}
.ls0_c00001{letter-spacing:0.133333pt;}
.ls91_c00001{letter-spacing:0.135467pt;}
.lsbe_c00001{letter-spacing:0.148267pt;}
.lsc2_c00001{letter-spacing:0.154880pt;}
.lsf_c00001{letter-spacing:0.160000pt;}
.ls83_c00001{letter-spacing:0.183467pt;}
.ls3a_c00001{letter-spacing:0.192000pt;}
.ls30_c00001{letter-spacing:0.194667pt;}
.ls77_c00001{letter-spacing:0.227733pt;}
.ls5c_c00001{letter-spacing:0.227840pt;}
.ls3_c00001{letter-spacing:0.230933pt;}
.ls36_c00001{letter-spacing:0.231040pt;}
.ls5_c00001{letter-spacing:0.232960pt;}
.ls2_c00001{letter-spacing:0.233067pt;}
.ls1e_c00001{letter-spacing:0.256000pt;}
.ls6f_c00001{letter-spacing:0.271360pt;}
.ls1d_c00001{letter-spacing:0.271467pt;}
.ls90_c00001{letter-spacing:0.296960pt;}
.ls4_c00001{letter-spacing:0.320000pt;}
.ls50_c00001{letter-spacing:0.368533pt;}
.ls33_c00001{letter-spacing:0.384000pt;}
.ls8_c00001{letter-spacing:0.448000pt;}
.ls66_c00001{letter-spacing:0.512000pt;}
.lsc0_c00001{letter-spacing:0.544000pt;}
.ls9e_c00001{letter-spacing:0.592000pt;}
.lsc_c00001{letter-spacing:0.640000pt;}
.ls7a_c00001{letter-spacing:0.688000pt;}
.ls5e_c00001{letter-spacing:0.736000pt;}
.ls86_c00001{letter-spacing:0.768000pt;}
.ls14_c00001{letter-spacing:0.773333pt;}
.ls82_c00001{letter-spacing:0.800000pt;}
.lsaa_c00001{letter-spacing:1.024000pt;}
.ls7b_c00001{letter-spacing:1.280000pt;}
.lsb1_c00001{letter-spacing:1.386667pt;}
.ls9a_c00001{letter-spacing:1.440000pt;}
.ls32_c00001{letter-spacing:1.920000pt;}
.ls85_c00001{letter-spacing:2.080000pt;}
.ls59_c00001{letter-spacing:2.560000pt;}
.ls55_c00001{letter-spacing:2.720000pt;}
.ls52_c00001{letter-spacing:3.200000pt;}
.ls34_c00001{letter-spacing:3.360000pt;}
.ls4c_c00001{letter-spacing:3.471360pt;}
.ls9b_c00001{letter-spacing:3.840000pt;}
.ls65_c00001{letter-spacing:4.480000pt;}
.ls9f_c00001{letter-spacing:4.640000pt;}
.ls2c_c00001{letter-spacing:4.751360pt;}
.ls35_c00001{letter-spacing:5.120000pt;}
.ls71_c00001{letter-spacing:5.280000pt;}
.ls53_c00001{letter-spacing:5.760000pt;}
.ls25_c00001{letter-spacing:5.920000pt;}
.ls4d_c00001{letter-spacing:6.031360pt;}
.ls9d_c00001{letter-spacing:6.400000pt;}
.ls98_c00001{letter-spacing:7.040000pt;}
.lsd_c00001{letter-spacing:7.200000pt;}
.ls3c_c00001{letter-spacing:7.680000pt;}
.ls56_c00001{letter-spacing:7.840000pt;}
.ls67_c00001{letter-spacing:7.946667pt;}
.lsad_c00001{letter-spacing:8.480000pt;}
.ls87_c00001{letter-spacing:8.938667pt;}
.lsa0_c00001{letter-spacing:9.600000pt;}
.ls24_c00001{letter-spacing:9.733120pt;}
.ls38_c00001{letter-spacing:9.760000pt;}
.lsa9_c00001{letter-spacing:10.240000pt;}
.lsa1_c00001{letter-spacing:10.400000pt;}
.ls5a_c00001{letter-spacing:10.880000pt;}
.ls8b_c00001{letter-spacing:11.040000pt;}
.lsb5_c00001{letter-spacing:11.520000pt;}
.ls49_c00001{letter-spacing:12.160000pt;}
.ls89_c00001{letter-spacing:12.778667pt;}
.lsaf_c00001{letter-spacing:12.800000pt;}
.ls75_c00001{letter-spacing:13.440000pt;}
.ls58_c00001{letter-spacing:13.600000pt;}
.ls8a_c00001{letter-spacing:14.080000pt;}
.ls84_c00001{letter-spacing:15.360000pt;}
.lsac_c00001{letter-spacing:15.520000pt;}
.lsab_c00001{letter-spacing:15.680000pt;}
.lsa5_c00001{letter-spacing:16.160000pt;}
.lsa2_c00001{letter-spacing:16.640000pt;}
.ls8c_c00001{letter-spacing:17.280000pt;}
.ls20_c00001{letter-spacing:17.920000pt;}
.ls94_c00001{letter-spacing:19.200000pt;}
.lsc5_c00001{letter-spacing:20.480000pt;}
.ls95_c00001{letter-spacing:21.120000pt;}
.ls54_c00001{letter-spacing:21.888000pt;}
.ls60_c00001{letter-spacing:21.920000pt;}
.ls2e_c00001{letter-spacing:22.400000pt;}
.ls6c_c00001{letter-spacing:22.671360pt;}
.lsb3_c00001{letter-spacing:24.320000pt;}
.ls51_c00001{letter-spacing:24.960000pt;}
.ls74_c00001{letter-spacing:25.600000pt;}
.lsb0_c00001{letter-spacing:26.240000pt;}
.lsc1_c00001{letter-spacing:26.880000pt;}
.ls22_c00001{letter-spacing:27.008000pt;}
.ls2d_c00001{letter-spacing:28.928000pt;}
.ls11_c00001{letter-spacing:30.080000pt;}
.ls16_c00001{letter-spacing:30.351360pt;}
.ls15_c00001{letter-spacing:33.551360pt;}
.ls2b_c00001{letter-spacing:34.191360pt;}
.ls12_c00001{letter-spacing:34.831360pt;}
.ls64_c00001{letter-spacing:35.471360pt;}
.ls8e_c00001{letter-spacing:38.671360pt;}
.ls3e_c00001{letter-spacing:39.632640pt;}
.ls1a_c00001{letter-spacing:39.951360pt;}
.ls97_c00001{letter-spacing:41.088000pt;}
.ls1b_c00001{letter-spacing:43.151360pt;}
.ls8f_c00001{letter-spacing:45.711360pt;}
.lsa_c00001{letter-spacing:46.080000pt;}
.ls3d_c00001{letter-spacing:47.520000pt;}
.ls18_c00001{letter-spacing:50.191360pt;}
.lsbb_c00001{letter-spacing:50.560000pt;}
.ls6a_c00001{letter-spacing:50.688000pt;}
.ls9_c00001{letter-spacing:52.111360pt;}
.lsb_c00001{letter-spacing:53.391360pt;}
.ls93_c00001{letter-spacing:53.463040pt;}
.ls92_c00001{letter-spacing:53.591040pt;}
.ls5b_c00001{letter-spacing:53.888000pt;}
.ls23_c00001{letter-spacing:55.808000pt;}
.ls6_c00001{letter-spacing:56.591360pt;}
.lsbf_c00001{letter-spacing:56.912640pt;}
.lsb4_c00001{letter-spacing:57.088000pt;}
.ls7d_c00001{letter-spacing:58.583040pt;}
.ls78_c00001{letter-spacing:60.503040pt;}
.ls45_c00001{letter-spacing:61.440000pt;}
.ls4a_c00001{letter-spacing:73.231360pt;}
.ls41_c00001{letter-spacing:75.008000pt;}
.ls99_c00001{letter-spacing:76.800000pt;}
.ls4e_c00001{letter-spacing:79.631360pt;}
.lsc4_c00001{letter-spacing:79.978667pt;}
.ls6b_c00001{letter-spacing:81.440000pt;}
.ls7c_c00001{letter-spacing:81.920000pt;}
.ls7e_c00001{letter-spacing:96.000000pt;}
.ls17_c00001{letter-spacing:97.920000pt;}
.ls3b_c00001{letter-spacing:133.098667pt;}
.ls40_c00001{letter-spacing:134.378667pt;}
.ls44_c00001{letter-spacing:135.680000pt;}
.ls2a_c00001{letter-spacing:172.778667pt;}
.lsa4_c00001{letter-spacing:174.080000pt;}
.ls63_c00001{letter-spacing:211.178667pt;}
.ls13_c00001{letter-spacing:212.458667pt;}
.lsbd_c00001{letter-spacing:241.280000pt;}
.lsa3_c00001{letter-spacing:324.480000pt;}
.ls48_c00001{letter-spacing:361.578667pt;}
.ls47_c00001{letter-spacing:437.738667pt;}
.ls6d_c00001{letter-spacing:657.418667pt;}
.lsb9_c00001{letter-spacing:1217.546667pt;}
.lsba_c00001{letter-spacing:1347.466667pt;}
.lsbc_c00001{letter-spacing:1362.186667pt;}
.ws7_c00001{word-spacing:-58.880000pt;}
.ws2f_c00001{word-spacing:-56.320000pt;}
.ws46_c00001{word-spacing:-53.120000pt;}
.ws35_c00001{word-spacing:-16.768000pt;}
.ws30_c00001{word-spacing:-16.640000pt;}
.ws25_c00001{word-spacing:-16.512000pt;}
.ws3a_c00001{word-spacing:-16.384000pt;}
.ws10_c00001{word-spacing:-16.256000pt;}
.ws19_c00001{word-spacing:-16.192000pt;}
.ws1d_c00001{word-spacing:-16.128000pt;}
.ws31_c00001{word-spacing:-16.064000pt;}
.ws0_c00001{word-spacing:-16.000000pt;}
.ws2c_c00001{word-spacing:-15.936000pt;}
.ws11_c00001{word-spacing:-15.872000pt;}
.ws13_c00001{word-spacing:-15.808000pt;}
.ws12_c00001{word-spacing:-15.744000pt;}
.wsc_c00001{word-spacing:-15.493333pt;}
.ws36_c00001{word-spacing:-15.488000pt;}
.ws21_c00001{word-spacing:-15.360000pt;}
.ws1b_c00001{word-spacing:-15.168000pt;}
.ws20_c00001{word-spacing:-15.088533pt;}
.wsf_c00001{word-spacing:-14.991467pt;}
.ws1_c00001{word-spacing:-14.953067pt;}
.ws2e_c00001{word-spacing:-14.855467pt;}
.wsd_c00001{word-spacing:-14.817067pt;}
.ws28_c00001{word-spacing:-14.768000pt;}
.ws6_c00001{word-spacing:-14.720000pt;}
.ws24_c00001{word-spacing:-14.622933pt;}
.ws32_c00001{word-spacing:-14.584533pt;}
.ws2d_c00001{word-spacing:-14.448533pt;}
.ws1f_c00001{word-spacing:-14.313067pt;}
.ws15_c00001{word-spacing:-14.274667pt;}
.ws45_c00001{word-spacing:-14.228267pt;}
.ws34_c00001{word-spacing:-14.176000pt;}
.ws2a_c00001{word-spacing:-14.125867pt;}
.wse_c00001{word-spacing:-14.080000pt;}
.ws27_c00001{word-spacing:-14.034133pt;}
.ws23_c00001{word-spacing:-14.016000pt;}
.ws29_c00001{word-spacing:-13.885333pt;}
.ws40_c00001{word-spacing:-13.839467pt;}
.ws47_c00001{word-spacing:-13.824000pt;}
.ws3c_c00001{word-spacing:-13.782933pt;}
.ws33_c00001{word-spacing:-13.712000pt;}
.ws1e_c00001{word-spacing:-13.674667pt;}
.ws4_c00001{word-spacing:-13.600000pt;}
.ws26_c00001{word-spacing:-13.534613pt;}
.ws3_c00001{word-spacing:-13.510933pt;}
.ws2b_c00001{word-spacing:-13.463467pt;}
.ws3d_c00001{word-spacing:-13.440000pt;}
.ws3e_c00001{word-spacing:-13.392000pt;}
.ws17_c00001{word-spacing:-13.374933pt;}
.ws18_c00001{word-spacing:-13.327467pt;}
.ws2_c00001{word-spacing:-13.280000pt;}
.wsa_c00001{word-spacing:-13.232533pt;}
.ws16_c00001{word-spacing:-13.141333pt;}
.ws48_c00001{word-spacing:-13.096533pt;}
.ws1c_c00001{word-spacing:-12.960000pt;}
.ws3f_c00001{word-spacing:-12.949333pt;}
.ws22_c00001{word-spacing:-12.894613pt;}
.wsb_c00001{word-spacing:-12.736000pt;}
.ws3b_c00001{word-spacing:-12.688000pt;}
.ws49_c00001{word-spacing:-12.272000pt;}
.ws39_c00001{word-spacing:-12.016000pt;}
.ws38_c00001{word-spacing:-11.264000pt;}
.ws1a_c00001{word-spacing:-11.040000pt;}
.ws9_c00001{word-spacing:-9.280000pt;}
.ws8_c00001{word-spacing:-8.640000pt;}
.ws14_c00001{word-spacing:-8.129387pt;}
.ws37_c00001{word-spacing:-8.000000pt;}
.ws4a_c00001{word-spacing:-7.568427pt;}
.ws5_c00001{word-spacing:0.000000pt;}
.ws43_c00001{word-spacing:1.745582pt;}
.ws41_c00001{word-spacing:2.196255pt;}
.ws44_c00001{word-spacing:8.898673pt;}
.ws42_c00001{word-spacing:25.064540pt;}
._66_c00001{margin-left:-12.321920pt;}
._27_c00001{margin-left:-11.393707pt;}
._47_c00001{margin-left:-10.304000pt;}
._f_c00001{margin-left:-7.952213pt;}
._63_c00001{margin-left:-6.584545pt;}
._2c_c00001{margin-left:-4.992000pt;}
._2d_c00001{margin-left:-3.072000pt;}
._19_c00001{margin-left:-1.920000pt;}
._4_c00001{margin-left:-1.024000pt;}
._6_c00001{width:0.896000pt;}
._2_c00001{width:1.834667pt;}
._7_c00001{width:3.264000pt;}
._3_c00001{width:4.224000pt;}
._0_c00001{width:5.952000pt;}
._1_c00001{width:7.424000pt;}
._5_c00001{width:8.384000pt;}
._9_c00001{width:9.344000pt;}
._8_c00001{width:10.752000pt;}
._10_c00001{width:11.664534pt;}
._a_c00001{width:12.864000pt;}
._d_c00001{width:13.888000pt;}
._c_c00001{width:14.848000pt;}
._11_c00001{width:15.861878pt;}
._22_c00001{width:17.066688pt;}
._e_c00001{width:18.429440pt;}
._26_c00001{width:20.096000pt;}
._23_c00001{width:21.020278pt;}
._1a_c00001{width:22.336000pt;}
._18_c00001{width:23.296000pt;}
._1b_c00001{width:24.448000pt;}
._21_c00001{width:26.112000pt;}
._24_c00001{width:27.555722pt;}
._25_c00001{width:28.958615pt;}
._1d_c00001{width:30.720000pt;}
._1e_c00001{width:31.808000pt;}
._2e_c00001{width:32.704000pt;}
._16_c00001{width:33.600000pt;}
._17_c00001{width:34.496000pt;}
._1c_c00001{width:35.648000pt;}
._28_c00001{width:36.544118pt;}
._14_c00001{width:37.568000pt;}
._15_c00001{width:38.464000pt;}
._2a_c00001{width:39.730964pt;}
._29_c00001{width:40.627259pt;}
._2b_c00001{width:41.599963pt;}
._3d_c00001{width:43.200000pt;}
._3a_c00001{width:44.589786pt;}
._39_c00001{width:45.632000pt;}
._38_c00001{width:46.891756pt;}
._34_c00001{width:48.768000pt;}
._3b_c00001{width:49.981440pt;}
._3c_c00001{width:51.379141pt;}
._2f_c00001{width:52.288000pt;}
._12_c00001{width:53.760000pt;}
._13_c00001{width:54.784000pt;}
._33_c00001{width:55.680000pt;}
._32_c00001{width:57.024000pt;}
._b_c00001{width:58.560000pt;}
._20_c00001{width:61.760000pt;}
._1f_c00001{width:62.848000pt;}
._3f_c00001{width:64.448000pt;}
._31_c00001{width:69.114711pt;}
._48_c00001{width:72.448000pt;}
._49_c00001{width:74.432000pt;}
._41_c00001{width:76.131840pt;}
._40_c00001{width:77.191503pt;}
._30_c00001{width:78.233600pt;}
._45_c00001{width:84.288000pt;}
._46_c00001{width:85.824000pt;}
._36_c00001{width:123.851520pt;}
._64_c00001{width:127.327894pt;}
._65_c00001{width:128.611625pt;}
._35_c00001{width:133.098688pt;}
._37_c00001{width:134.378762pt;}
._3e_c00001{width:170.240000pt;}
._62_c00001{width:172.778688pt;}
._43_c00001{width:199.040000pt;}
._44_c00001{width:200.640000pt;}
._4b_c00001{width:971.658667pt;}
._4c_c00001{width:975.498667pt;}
._4a_c00001{width:978.698667pt;}
._55_c00001{width:979.978667pt;}
._56_c00001{width:982.538667pt;}
._4d_c00001{width:984.458667pt;}
._54_c00001{width:985.738667pt;}
._4e_c00001{width:988.938667pt;}
._58_c00001{width:998.538667pt;}
._4f_c00001{width:1001.098667pt;}
._57_c00001{width:1006.218667pt;}
._50_c00001{width:1008.778667pt;}
._51_c00001{width:1022.218667pt;}
._59_c00001{width:1024.138667pt;}
._5a_c00001{width:1031.818667pt;}
._52_c00001{width:1045.898667pt;}
._5b_c00001{width:1050.378667pt;}
._53_c00001{width:1053.578667pt;}
._5c_c00001{width:1062.538667pt;}
._5d_c00001{width:1067.018667pt;}
._5e_c00001{width:1077.898667pt;}
._5f_c00001{width:1081.098667pt;}
._61_c00001{width:1088.778667pt;}
._60_c00001{width:1091.978667pt;}
._42_c00001{width:1334.186667pt;}
.fsb_c00001{font-size:32.000000pt;}
.fs4_c00001{font-size:34.560000pt;}
.fs5_c00001{font-size:37.120000pt;}
.fs3_c00001{font-size:42.880000pt;}
.fsa_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:53.120000pt;}
.fs6_c00001{font-size:56.320000pt;}
.fs0_c00001{font-size:58.880000pt;}
.fs7_c00001{font-size:61.440000pt;}
.fs2_c00001{font-size:64.000000pt;}
.fs9_c00001{font-size:85.120000pt;}
.fs8_c00001{font-size:106.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.ya66_c00001{bottom:3.040000pt;}
.yaa4_c00001{bottom:3.200000pt;}
.yb12_c00001{bottom:3.354667pt;}
.y2ee_c00001{bottom:3.360000pt;}
.yad8_c00001{bottom:3.386667pt;}
.y2ec_c00001{bottom:3.520000pt;}
.yb98_c00001{bottom:3.546667pt;}
.y871_c00001{bottom:3.560000pt;}
.y6c1_c00001{bottom:4.000000pt;}
.y4_c00001{bottom:4.160000pt;}
.yb0a_c00001{bottom:4.200000pt;}
.y2e7_c00001{bottom:4.320000pt;}
.ya84_c00001{bottom:4.480000pt;}
.yafa_c00001{bottom:4.800000pt;}
.yb56_c00001{bottom:4.960000pt;}
.yacd_c00001{bottom:5.600000pt;}
.yacc_c00001{bottom:6.240000pt;}
.ya28_c00001{bottom:6.400000pt;}
.y963_c00001{bottom:7.520000pt;}
.yb7f_c00001{bottom:8.480000pt;}
.ya5f_c00001{bottom:14.720000pt;}
.ya96_c00001{bottom:15.360000pt;}
.ya1e_c00001{bottom:16.000000pt;}
.y9db_c00001{bottom:16.160000pt;}
.ya1a_c00001{bottom:16.186667pt;}
.y9cb_c00001{bottom:16.200000pt;}
.ya94_c00001{bottom:16.640000pt;}
.ya65_c00001{bottom:19.200000pt;}
.y76b_c00001{bottom:19.514667pt;}
.y2f3_c00001{bottom:19.520000pt;}
.y739_c00001{bottom:19.546667pt;}
.y6b7_c00001{bottom:19.560000pt;}
.yb83_c00001{bottom:19.674667pt;}
.y311_c00001{bottom:19.680000pt;}
.y86a_c00001{bottom:19.706667pt;}
.y870_c00001{bottom:19.720000pt;}
.y6c0_c00001{bottom:20.160000pt;}
.yaed_c00001{bottom:20.186667pt;}
.yb09_c00001{bottom:20.200000pt;}
.yad2_c00001{bottom:20.320000pt;}
.y8be_c00001{bottom:20.634667pt;}
.ya83_c00001{bottom:20.800000pt;}
.yac9_c00001{bottom:20.840000pt;}
.y6bc_c00001{bottom:20.960000pt;}
.yaf9_c00001{bottom:21.000000pt;}
.yacb_c00001{bottom:22.080000pt;}
.yb0f_c00001{bottom:22.234667pt;}
.ya27_c00001{bottom:22.400000pt;}
.ya62_c00001{bottom:22.560000pt;}
.yb81_c00001{bottom:24.480000pt;}
.y962_c00001{bottom:24.634667pt;}
.yb7e_c00001{bottom:24.640000pt;}
.ya95_c00001{bottom:28.000000pt;}
.ya93_c00001{bottom:29.280000pt;}
.ya5e_c00001{bottom:30.880000pt;}
.y9e0_c00001{bottom:32.160000pt;}
.ya68_c00001{bottom:34.720000pt;}
.ya64_c00001{bottom:35.194667pt;}
.ya86_c00001{bottom:35.354667pt;}
.yaa1_c00001{bottom:35.360000pt;}
.y76a_c00001{bottom:35.514667pt;}
.y79d_c00001{bottom:35.520000pt;}
.y77c_c00001{bottom:35.674667pt;}
.y31f_c00001{bottom:35.680000pt;}
.y797_c00001{bottom:35.706667pt;}
.y784_c00001{bottom:35.720000pt;}
.y8bd_c00001{bottom:36.634667pt;}
.y986_c00001{bottom:36.680000pt;}
.y96f_c00001{bottom:36.794667pt;}
.y6bb_c00001{bottom:36.960000pt;}
.y6b4_c00001{bottom:37.000000pt;}
.yafd_c00001{bottom:37.120000pt;}
.y3_c00001{bottom:37.152000pt;}
.yaf8_c00001{bottom:37.160000pt;}
.y6ba_c00001{bottom:37.600000pt;}
.yb00_c00001{bottom:37.626667pt;}
.yb05_c00001{bottom:37.760000pt;}
.y6c4_c00001{bottom:37.786667pt;}
.yb0e_c00001{bottom:38.394667pt;}
.ya26_c00001{bottom:38.554667pt;}
.ya78_c00001{bottom:39.680000pt;}
.y961_c00001{bottom:40.634667pt;}
.y2e6_c00001{bottom:46.592000pt;}
.ya5d_c00001{bottom:47.040000pt;}
.y769_c00001{bottom:51.674667pt;}
.y322_c00001{bottom:51.680000pt;}
.yb78_c00001{bottom:51.706667pt;}
.y783_c00001{bottom:51.720000pt;}
.y872_c00001{bottom:51.834667pt;}
.y31e_c00001{bottom:51.840000pt;}
.y796_c00001{bottom:51.866667pt;}
.y7ce_c00001{bottom:51.880000pt;}
.ya77_c00001{bottom:52.320000pt;}
.y985_c00001{bottom:52.680000pt;}
.y8bc_c00001{bottom:52.794667pt;}
.y8d9_c00001{bottom:52.800000pt;}
.yac8_c00001{bottom:52.840000pt;}
.yad6_c00001{bottom:52.986667pt;}
.ya82_c00001{bottom:53.120000pt;}
.y6b3_c00001{bottom:53.160000pt;}
.ya90_c00001{bottom:53.440000pt;}
.y96e_c00001{bottom:53.754667pt;}
.y6b9_c00001{bottom:53.760000pt;}
.y6c3_c00001{bottom:53.786667pt;}
.yb0d_c00001{bottom:54.394667pt;}
.ya25_c00001{bottom:54.714667pt;}
.yaf0_c00001{bottom:55.080000pt;}
.yae2_c00001{bottom:55.240000pt;}
.y960_c00001{bottom:56.794667pt;}
.yaab_c00001{bottom:59.360000pt;}
.ya5c_c00001{bottom:63.040000pt;}
.y2_c00001{bottom:67.072000pt;}
.y768_c00001{bottom:67.834667pt;}
.y31d_c00001{bottom:67.840000pt;}
.y795_c00001{bottom:67.866667pt;}
.y782_c00001{bottom:67.880000pt;}
.y7d6_c00001{bottom:68.000000pt;}
.yb90_c00001{bottom:68.040000pt;}
.y984_c00001{bottom:68.840000pt;}
.y8d8_c00001{bottom:68.960000pt;}
.ya81_c00001{bottom:69.120000pt;}
.ya8f_c00001{bottom:69.600000pt;}
.y8bb_c00001{bottom:69.914667pt;}
.yb5d_c00001{bottom:70.400000pt;}
.yb0c_c00001{bottom:70.554667pt;}
.ya24_c00001{bottom:70.714667pt;}
.yae1_c00001{bottom:71.240000pt;}
.y6ca_c00001{bottom:71.840000pt;}
.y95f_c00001{bottom:72.954667pt;}
.ya9f_c00001{bottom:74.080000pt;}
.yaaa_c00001{bottom:75.840000pt;}
.y9e6_c00001{bottom:76.480000pt;}
.yabf_c00001{bottom:77.480000pt;}
.yab7_c00001{bottom:77.946667pt;}
.ya5b_c00001{bottom:79.200000pt;}
.y767_c00001{bottom:83.834667pt;}
.y79c_c00001{bottom:83.840000pt;}
.y7f0_c00001{bottom:83.866667pt;}
.y786_c00001{bottom:83.874667pt;}
.y7e3_c00001{bottom:83.880000pt;}
.y31c_c00001{bottom:84.000000pt;}
.y794_c00001{bottom:84.026667pt;}
.y77b_c00001{bottom:84.034667pt;}
.y781_c00001{bottom:84.040000pt;}
.y983_c00001{bottom:85.000000pt;}
.ya80_c00001{bottom:85.280000pt;}
.ya8e_c00001{bottom:85.600000pt;}
.y8ba_c00001{bottom:85.914667pt;}
.y8d7_c00001{bottom:85.946667pt;}
.ya23_c00001{bottom:86.874667pt;}
.y96d_c00001{bottom:87.034667pt;}
.yae0_c00001{bottom:87.400000pt;}
.y6c9_c00001{bottom:88.000000pt;}
.y95e_c00001{bottom:90.114667pt;}
.ya9e_c00001{bottom:90.240000pt;}
.yaa9_c00001{bottom:91.840000pt;}
.y9e5_c00001{bottom:92.640000pt;}
.yabe_c00001{bottom:93.640000pt;}
.yab6_c00001{bottom:93.946667pt;}
.ya5a_c00001{bottom:95.200000pt;}
.yaa0_c00001{bottom:96.832000pt;}
.y99b_c00001{bottom:97.312000pt;}
.y340_c00001{bottom:97.632000pt;}
.y645_c00001{bottom:98.912000pt;}
.y90e_c00001{bottom:99.072000pt;}
.y1f6_c00001{bottom:99.552000pt;}
.y79b_c00001{bottom:100.000000pt;}
.y793_c00001{bottom:100.026667pt;}
.y766_c00001{bottom:100.034667pt;}
.y780_c00001{bottom:100.040000pt;}
.y31b_c00001{bottom:100.160000pt;}
.y7d2_c00001{bottom:100.186667pt;}
.yb9b_c00001{bottom:100.192000pt;}
.yb7b_c00001{bottom:100.194667pt;}
.y7d5_c00001{bottom:100.200000pt;}
.y1f2_c00001{bottom:100.512000pt;}
.y32e_c00001{bottom:100.672000pt;}
.y6aa_c00001{bottom:100.992000pt;}
.y490_c00001{bottom:101.312000pt;}
.ya1c_c00001{bottom:101.472000pt;}
.ya7f_c00001{bottom:101.480000pt;}
.ya8d_c00001{bottom:101.760000pt;}
.y5c5_c00001{bottom:101.792000pt;}
.y8d6_c00001{bottom:102.106667pt;}
.yca_c00001{bottom:102.112000pt;}
.y8b9_c00001{bottom:102.114667pt;}
.y982_c00001{bottom:102.120000pt;}
.y2cf_c00001{bottom:102.272000pt;}
.y172_c00001{bottom:102.752000pt;}
.ya22_c00001{bottom:102.874667pt;}
.y5f4_c00001{bottom:103.072000pt;}
.y96c_c00001{bottom:103.234667pt;}
.yb59_c00001{bottom:103.392000pt;}
.y2a_c00001{bottom:103.552000pt;}
.yadf_c00001{bottom:103.560000pt;}
.ya63_c00001{bottom:103.712000pt;}
.y6c8_c00001{bottom:104.000000pt;}
.ya85_c00001{bottom:104.192000pt;}
.y748_c00001{bottom:104.352000pt;}
.y603_c00001{bottom:104.512000pt;}
.y35a_c00001{bottom:104.832000pt;}
.y4b3_c00001{bottom:105.152000pt;}
.y4e4_c00001{bottom:105.632000pt;}
.y95d_c00001{bottom:106.114667pt;}
.y2b2_c00001{bottom:106.432000pt;}
.ya9d_c00001{bottom:106.440000pt;}
.y743_c00001{bottom:106.592000pt;}
.y393_c00001{bottom:107.392000pt;}
.y931_c00001{bottom:107.712000pt;}
.y4b1_c00001{bottom:107.872000pt;}
.yaa8_c00001{bottom:108.000000pt;}
.y26c_c00001{bottom:108.192000pt;}
.yb2a_c00001{bottom:108.352000pt;}
.y470_c00001{bottom:108.672000pt;}
.y9e4_c00001{bottom:108.840000pt;}
.y6a2_c00001{bottom:108.992000pt;}
.y405_c00001{bottom:109.472000pt;}
.y1ee_c00001{bottom:109.632000pt;}
.yabd_c00001{bottom:109.640000pt;}
.y12c_c00001{bottom:109.792000pt;}
.yab5_c00001{bottom:110.106667pt;}
.y4f_c00001{bottom:110.432000pt;}
.y72f_c00001{bottom:110.912000pt;}
.y6a0_c00001{bottom:111.072000pt;}
.y3d1_c00001{bottom:111.232000pt;}
.ya59_c00001{bottom:111.360000pt;}
.y928_c00001{bottom:111.712000pt;}
.y22a_c00001{bottom:112.032000pt;}
.y529_c00001{bottom:112.192000pt;}
.y4c1_c00001{bottom:112.512000pt;}
.y194_c00001{bottom:112.832000pt;}
.y33f_c00001{bottom:112.992000pt;}
.y4d2_c00001{bottom:113.472000pt;}
.y258_c00001{bottom:113.792000pt;}
.y49b_c00001{bottom:114.112000pt;}
.yf5_c00001{bottom:114.272000pt;}
.y74d_c00001{bottom:114.752000pt;}
.y294_c00001{bottom:115.072000pt;}
.y945_c00001{bottom:115.392000pt;}
.y1f1_c00001{bottom:115.872000pt;}
.y79a_c00001{bottom:116.000000pt;}
.y7ef_c00001{bottom:116.026667pt;}
.y7eb_c00001{bottom:116.034667pt;}
.y9bd_c00001{bottom:116.040000pt;}
.y31a_c00001{bottom:116.160000pt;}
.y792_c00001{bottom:116.186667pt;}
.y765_c00001{bottom:116.194667pt;}
.y77f_c00001{bottom:116.200000pt;}
.y6a9_c00001{bottom:116.352000pt;}
.yb1d_c00001{bottom:116.672000pt;}
.y374_c00001{bottom:116.832000pt;}
.y86c_c00001{bottom:116.992000pt;}
.y68f_c00001{bottom:117.152000pt;}
.y1ce_c00001{bottom:117.312000pt;}
.y714_c00001{bottom:117.472000pt;}
.ya7e_c00001{bottom:117.480000pt;}
.y239_c00001{bottom:117.632000pt;}
.ya8c_c00001{bottom:117.920000pt;}
.y171_c00001{bottom:118.112000pt;}
.y981_c00001{bottom:118.120000pt;}
.y8d5_c00001{bottom:118.266667pt;}
.y53f_c00001{bottom:118.272000pt;}
.y5aa_c00001{bottom:118.592000pt;}
.y29_c00001{bottom:118.912000pt;}
.ya21_c00001{bottom:119.034667pt;}
.y3ac_c00001{bottom:119.072000pt;}
.y2ce_c00001{bottom:119.232000pt;}
.y8b8_c00001{bottom:119.234667pt;}
.yb7a_c00001{bottom:119.552000pt;}
.y747_c00001{bottom:119.712000pt;}
.y5f3_c00001{bottom:119.872000pt;}
.y68e_c00001{bottom:120.192000pt;}
.y96b_c00001{bottom:120.194667pt;}
.y83_c00001{bottom:120.512000pt;}
.y6a_c00001{bottom:120.672000pt;}
.y7ea_c00001{bottom:120.992000pt;}
.y20e_c00001{bottom:121.152000pt;}
.y88a_c00001{bottom:121.312000pt;}
.y785_c00001{bottom:121.632000pt;}
.y359_c00001{bottom:121.792000pt;}
.yad_c00001{bottom:121.952000pt;}
.y9f8_c00001{bottom:122.120000pt;}
.y76c_c00001{bottom:122.272000pt;}
.y95c_c00001{bottom:122.274667pt;}
.y4e3_c00001{bottom:122.432000pt;}
.ya9c_c00001{bottom:122.440000pt;}
.y812_c00001{bottom:122.752000pt;}
.y2b1_c00001{bottom:123.232000pt;}
.y4a4_c00001{bottom:123.552000pt;}
.yab0_c00001{bottom:124.040000pt;}
.yaa7_c00001{bottom:124.160000pt;}
.y60f_c00001{bottom:124.352000pt;}
.y1f5_c00001{bottom:124.832000pt;}
.y9e3_c00001{bottom:124.840000pt;}
.y1ed_c00001{bottom:124.992000pt;}
.yb3c_c00001{bottom:125.152000pt;}
.yb29_c00001{bottom:125.312000pt;}
.y46f_c00001{bottom:125.632000pt;}
.y820_c00001{bottom:125.792000pt;}
.yabc_c00001{bottom:125.800000pt;}
.yab4_c00001{bottom:126.266667pt;}
.y619_c00001{bottom:126.272000pt;}
.y140_c00001{bottom:126.592000pt;}
.y404_c00001{bottom:126.752000pt;}
.ya58_c00001{bottom:127.546667pt;}
.y69f_c00001{bottom:127.872000pt;}
.y193_c00001{bottom:128.032000pt;}
.y2ae_c00001{bottom:128.192000pt;}
.y32d_c00001{bottom:128.352000pt;}
.y1c6_c00001{bottom:128.672000pt;}
.y48f_c00001{bottom:128.832000pt;}
.y729_c00001{bottom:128.992000pt;}
.y942_c00001{bottom:129.152000pt;}
.y4c0_c00001{bottom:129.472000pt;}
.yc9_c00001{bottom:129.632000pt;}
.y45e_c00001{bottom:130.112000pt;}
.y49a_c00001{bottom:130.912000pt;}
.y1f0_c00001{bottom:131.232000pt;}
.yb1c_c00001{bottom:131.872000pt;}
.y91c_c00001{bottom:132.032000pt;}
.y799_c00001{bottom:132.160000pt;}
.y7bf_c00001{bottom:132.186667pt;}
.y764_c00001{bottom:132.194667pt;}
.y77e_c00001{bottom:132.200000pt;}
.y9c3_c00001{bottom:132.320000pt;}
.y791_c00001{bottom:132.346667pt;}
.yb99_c00001{bottom:132.354667pt;}
.y319_c00001{bottom:132.360000pt;}
.y1cd_c00001{bottom:132.672000pt;}
.y6f2_c00001{bottom:132.832000pt;}
.y8a1_c00001{bottom:133.152000pt;}
.y170_c00001{bottom:133.466667pt;}
.ya7d_c00001{bottom:133.640000pt;}
.y9dd_c00001{bottom:133.760000pt;}
.yaf4_c00001{bottom:133.786667pt;}
.ya8b_c00001{bottom:133.920000pt;}
.y28_c00001{bottom:133.946667pt;}
.y5a8_c00001{bottom:134.266667pt;}
.y980_c00001{bottom:134.280000pt;}
.y3d2_c00001{bottom:134.426667pt;}
.y238_c00001{bottom:134.746667pt;}
.y392_c00001{bottom:135.066667pt;}
.ya20_c00001{bottom:135.194667pt;}
.y8d4_c00001{bottom:135.226667pt;}
.y8b7_c00001{bottom:135.394667pt;}
.yac7_c00001{bottom:135.546667pt;}
.y26b_c00001{bottom:135.706667pt;}
.y2cd_c00001{bottom:136.026667pt;}
.y96a_c00001{bottom:136.354667pt;}
.y85f_c00001{bottom:136.506667pt;}
.y5f2_c00001{bottom:136.666667pt;}
.y68d_c00001{bottom:136.986667pt;}
.y12b_c00001{bottom:137.306667pt;}
.yb8c_c00001{bottom:137.626667pt;}
.y6a8_c00001{bottom:137.786667pt;}
.y4e_c00001{bottom:138.106667pt;}
.y9f7_c00001{bottom:138.120000pt;}
.y7f7_c00001{bottom:138.426667pt;}
.y358_c00001{bottom:138.586667pt;}
.ya9b_c00001{bottom:138.600000pt;}
.y3d0_c00001{bottom:138.906667pt;}
.y73f_c00001{bottom:139.226667pt;}
.y4e2_c00001{bottom:139.386667pt;}
.y95b_c00001{bottom:139.394667pt;}
.y229_c00001{bottom:139.546667pt;}
.y742_c00001{bottom:139.706667pt;}
.y939_c00001{bottom:139.866667pt;}
.yaa6_c00001{bottom:140.160000pt;}
.y2b0_c00001{bottom:140.186667pt;}
.yaaf_c00001{bottom:140.200000pt;}
.y1ec_c00001{bottom:140.346667pt;}
.y9e2_c00001{bottom:141.000000pt;}
.y72e_c00001{bottom:141.146667pt;}
.y257_c00001{bottom:141.306667pt;}
.y4b0_c00001{bottom:141.626667pt;}
.y11b_c00001{bottom:141.946667pt;}
.yabb_c00001{bottom:141.960000pt;}
.yb28_c00001{bottom:142.106667pt;}
.yab3_c00001{bottom:142.266667pt;}
.y46e_c00001{bottom:142.426667pt;}
.y9de_c00001{bottom:142.586667pt;}
.y683_c00001{bottom:142.746667pt;}
.y618_c00001{bottom:143.226667pt;}
.y192_c00001{bottom:143.386667pt;}
.y4fe_c00001{bottom:143.546667pt;}
.y33e_c00001{bottom:143.706667pt;}
.yb67_c00001{bottom:144.346667pt;}
.y809_c00001{bottom:144.506667pt;}
.y403_c00001{bottom:144.666667pt;}
.yb24_c00001{bottom:144.826667pt;}
.yf4_c00001{bottom:144.986667pt;}
.y1c5_c00001{bottom:145.466667pt;}
.y528_c00001{bottom:145.626667pt;}
.y5d5_c00001{bottom:145.786667pt;}
.y728_c00001{bottom:145.946667pt;}
.y4bf_c00001{bottom:146.266667pt;}
.y5c4_c00001{bottom:146.426667pt;}
.y1d6_c00001{bottom:146.586667pt;}
.y45d_c00001{bottom:147.066667pt;}
.y1ef_c00001{bottom:147.386667pt;}
.y499_c00001{bottom:147.866667pt;}
.y82_c00001{bottom:148.026667pt;}
.ya6a_c00001{bottom:148.320000pt;}
.y69_c00001{bottom:148.346667pt;}
.y763_c00001{bottom:148.354667pt;}
.y318_c00001{bottom:148.360000pt;}
.yb8b_c00001{bottom:148.506667pt;}
.y7d4_c00001{bottom:148.520000pt;}
.y16f_c00001{bottom:148.826667pt;}
.yb76_c00001{bottom:148.986667pt;}
.yac_c00001{bottom:149.466667pt;}
.y27_c00001{bottom:149.626667pt;}
.ya7c_c00001{bottom:149.640000pt;}
.y492_c00001{bottom:149.786667pt;}
.yb11_c00001{bottom:149.946667pt;}
.ya8a_c00001{bottom:150.080000pt;}
.y1f4_c00001{bottom:150.106667pt;}
.y746_c00001{bottom:150.266667pt;}
.y97f_c00001{bottom:150.280000pt;}
.yac4_c00001{bottom:150.586667pt;}
.y373_c00001{bottom:150.906667pt;}
.y4a3_c00001{bottom:151.066667pt;}
.y713_c00001{bottom:151.226667pt;}
.ya1f_c00001{bottom:151.234667pt;}
.y8d3_c00001{bottom:151.386667pt;}
.ya53_c00001{bottom:151.680000pt;}
.y293_c00001{bottom:151.866667pt;}
.y53e_c00001{bottom:152.026667pt;}
.y62e_c00001{bottom:152.346667pt;}
.y8b6_c00001{bottom:152.354667pt;}
.y99a_c00001{bottom:152.506667pt;}
.y969_c00001{bottom:152.514667pt;}
.y3c7_c00001{bottom:152.666667pt;}
.ya79_c00001{bottom:153.146667pt;}
.yb1b_c00001{bottom:153.306667pt;}
.y81f_c00001{bottom:153.466667pt;}
.y5f1_c00001{bottom:153.626667pt;}
.y7e4_c00001{bottom:153.786667pt;}
.y34c_c00001{bottom:153.946667pt;}
.y13f_c00001{bottom:154.106667pt;}
.y9f6_c00001{bottom:154.280000pt;}
.y7c0_c00001{bottom:154.426667pt;}
.ya9a_c00001{bottom:154.600000pt;}
.y357_c00001{bottom:155.386667pt;}
.y95a_c00001{bottom:155.394667pt;}
.y1eb_c00001{bottom:155.706667pt;}
.y32c_c00001{bottom:155.866667pt;}
.y4e1_c00001{bottom:156.186667pt;}
.yaa5_c00001{bottom:156.320000pt;}
.yaae_c00001{bottom:156.360000pt;}
.y48e_c00001{bottom:156.506667pt;}
.y831_c00001{bottom:156.666667pt;}
.ya34_c00001{bottom:156.680000pt;}
.ya54_c00001{bottom:156.800000pt;}
.y3e8_c00001{bottom:156.986667pt;}
.y9e1_c00001{bottom:157.000000pt;}
.yc8_c00001{bottom:157.306667pt;}
.y73e_c00001{bottom:157.626667pt;}
.ya46_c00001{bottom:157.960000pt;}
.yab2_c00001{bottom:158.426667pt;}
.y4af_c00001{bottom:158.586667pt;}
.y191_c00001{bottom:158.746667pt;}
.yb27_c00001{bottom:158.906667pt;}
.y9f9_c00001{bottom:158.920000pt;}
.y33d_c00001{bottom:159.066667pt;}
.y9e9_c00001{bottom:159.200000pt;}
.y46d_c00001{bottom:159.226667pt;}
.ya56_c00001{bottom:159.386667pt;}
.ya6b_c00001{bottom:159.400000pt;}
.y91b_c00001{bottom:159.546667pt;}
.ya57_c00001{bottom:159.706667pt;}
.y491_c00001{bottom:159.866667pt;}
.y644_c00001{bottom:160.026667pt;}
.y4b2_c00001{bottom:160.346667pt;}
.y4fd_c00001{bottom:160.506667pt;}
.ya07_c00001{bottom:160.800000pt;}
.y248_c00001{bottom:161.146667pt;}
.yb66_c00001{bottom:161.306667pt;}
.y69e_c00001{bottom:161.626667pt;}
.y308_c00001{bottom:161.786667pt;}
.y9fa_c00001{bottom:162.106667pt;}
.yadc_c00001{bottom:162.266667pt;}
.y1c4_c00001{bottom:162.426667pt;}
.ya08_c00001{bottom:162.560000pt;}
.y391_c00001{bottom:162.586667pt;}
.y727_c00001{bottom:162.746667pt;}
.yac0_c00001{bottom:162.906667pt;}
.y4be_c00001{bottom:163.066667pt;}
.ya17_c00001{bottom:163.080000pt;}
.y1cc_c00001{bottom:163.386667pt;}
.y45c_c00001{bottom:163.866667pt;}
.y7ae_c00001{bottom:164.034667pt;}
.ya61_c00001{bottom:164.040000pt;}
.y16e_c00001{bottom:164.186667pt;}
.y7ee_c00001{bottom:164.346667pt;}
.y762_c00001{bottom:164.354667pt;}
.y7ed_c00001{bottom:164.360000pt;}
.ya69_c00001{bottom:164.480000pt;}
.y790_c00001{bottom:164.506667pt;}
.y77a_c00001{bottom:164.514667pt;}
.y317_c00001{bottom:164.520000pt;}
.y4c9_c00001{bottom:164.666667pt;}
.y12a_c00001{bottom:164.826667pt;}
.y9d9_c00001{bottom:165.120000pt;}
.y941_c00001{bottom:165.146667pt;}
.y237_c00001{bottom:165.466667pt;}
.ya7a_c00001{bottom:165.480000pt;}
.y26_c00001{bottom:165.626667pt;}
.ya88_c00001{bottom:165.786667pt;}
.ya7b_c00001{bottom:165.800000pt;}
.y9dc_c00001{bottom:165.946667pt;}
.ya89_c00001{bottom:166.106667pt;}
.y999_c00001{bottom:166.266667pt;}
.yf3_c00001{bottom:166.426667pt;}
.y97e_c00001{bottom:166.440000pt;}
.yb10_c00001{bottom:166.586667pt;}
.y8a0_c00001{bottom:166.906667pt;}
.ya19_c00001{bottom:167.066667pt;}
.ya1b_c00001{bottom:167.200000pt;}
.y228_c00001{bottom:167.226667pt;}
.y58d_c00001{bottom:167.386667pt;}
.ya1d_c00001{bottom:167.394667pt;}
.y8d2_c00001{bottom:167.546667pt;}
.ya52_c00001{bottom:167.680000pt;}
.y372_c00001{bottom:167.706667pt;}
.yb8f_c00001{bottom:167.866667pt;}
.y4d1_c00001{bottom:168.026667pt;}
.y712_c00001{bottom:168.186667pt;}
.yb84_c00001{bottom:168.506667pt;}
.y8b5_c00001{bottom:168.514667pt;}
.y82a_c00001{bottom:168.666667pt;}
.y53d_c00001{bottom:168.826667pt;}
.y256_c00001{bottom:168.986667pt;}
.y9da_c00001{bottom:169.120000pt;}
.ya35_c00001{bottom:169.160000pt;}
.y62d_c00001{bottom:169.306667pt;}
.y1ae_c00001{bottom:169.466667pt;}
.y8cb_c00001{bottom:169.474667pt;}
.yb3b_c00001{bottom:169.626667pt;}
.y292_c00001{bottom:170.266667pt;}
.y5f0_c00001{bottom:170.426667pt;}
.y9f5_c00001{bottom:170.440000pt;}
.y7dc_c00001{bottom:170.586667pt;}
.y34b_c00001{bottom:170.746667pt;}
.ya99_c00001{bottom:170.760000pt;}
.y66e_c00001{bottom:170.906667pt;}
.y1ea_c00001{bottom:171.066667pt;}
.y959_c00001{bottom:171.554667pt;}
.y6ab_c00001{bottom:171.866667pt;}
.yaa3_c00001{bottom:172.026667pt;}
.yaad_c00001{bottom:172.040000pt;}
.y356_c00001{bottom:172.346667pt;}
.y11a_c00001{bottom:172.506667pt;}
.y73d_c00001{bottom:172.666667pt;}
.ya33_c00001{bottom:172.840000pt;}
.y927_c00001{bottom:172.986667pt;}
.y4e0_c00001{bottom:173.146667pt;}
.y9df_c00001{bottom:173.160000pt;}
.y65a_c00001{bottom:173.306667pt;}
.y3e7_c00001{bottom:173.786667pt;}
.yab9_c00001{bottom:173.800000pt;}
.y72d_c00001{bottom:173.946667pt;}
.y190_c00001{bottom:174.106667pt;}
.yaba_c00001{bottom:174.120000pt;}
.y2af_c00001{bottom:174.266667pt;}
.y600_c00001{bottom:174.906667pt;}
.y940_c00001{bottom:175.066667pt;}
.y9e8_c00001{bottom:175.226667pt;}
.y1f3_c00001{bottom:175.386667pt;}
.y81_c00001{bottom:175.706667pt;}
.y68_c00001{bottom:175.866667pt;}
.y9ca_c00001{bottom:175.880000pt;}
.y46c_c00001{bottom:176.186667pt;}
.y20d_c00001{bottom:176.346667pt;}
.yf2_c00001{bottom:176.506667pt;}
.ya06_c00001{bottom:176.960000pt;}
.y8e0_c00001{bottom:176.986667pt;}
.yab_c00001{bottom:177.146667pt;}
.y4fc_c00001{bottom:177.306667pt;}
.y811_c00001{bottom:177.946667pt;}
.y676_c00001{bottom:178.426667pt;}
.y307_c00001{bottom:178.586667pt;}
.y4a2_c00001{bottom:178.746667pt;}
.y1c3_c00001{bottom:179.226667pt;}
.y16d_c00001{bottom:179.386667pt;}
.y527_c00001{bottom:179.546667pt;}
.y726_c00001{bottom:179.706667pt;}
.y4bd_c00001{bottom:180.026667pt;}
.y3c6_c00001{bottom:180.186667pt;}
.y7ad_c00001{bottom:180.194667pt;}
.ya60_c00001{bottom:180.200000pt;}
.y3b7_c00001{bottom:180.346667pt;}
.y7be_c00001{bottom:180.506667pt;}
.y761_c00001{bottom:180.514667pt;}
.y7db_c00001{bottom:180.520000pt;}
.y236_c00001{bottom:180.666667pt;}
.y316_c00001{bottom:180.680000pt;}
.y45b_c00001{bottom:180.826667pt;}
.y682_c00001{bottom:180.986667pt;}
.y9d8_c00001{bottom:181.280000pt;}
.y930_c00001{bottom:181.306667pt;}
.y4c8_c00001{bottom:181.466667pt;}
.y13e_c00001{bottom:181.786667pt;}
.y889_c00001{bottom:182.586667pt;}
.y25_c00001{bottom:183.066667pt;}
.y2ad_c00001{bottom:183.226667pt;}
.y6f1_c00001{bottom:183.386667pt;}
.y32b_c00001{bottom:183.546667pt;}
.y97d_c00001{bottom:183.586667pt;}
.ya51_c00001{bottom:183.840000pt;}
.y89f_c00001{bottom:183.866667pt;}
.y48d_c00001{bottom:184.026667pt;}
.y371_c00001{bottom:184.506667pt;}
.y8d1_c00001{bottom:184.666667pt;}
.y8b4_c00001{bottom:184.674667pt;}
.yc7_c00001{bottom:184.826667pt;}
.y711_c00001{bottom:184.986667pt;}
.y998_c00001{bottom:185.306667pt;}
.yb75_c00001{bottom:185.626667pt;}
.y8ca_c00001{bottom:185.634667pt;}
.y53c_c00001{bottom:185.786667pt;}
.y62c_c00001{bottom:186.106667pt;}
.y5d3_c00001{bottom:186.266667pt;}
.y1e9_c00001{bottom:186.426667pt;}
.y9f4_c00001{bottom:186.440000pt;}
.ya97_c00001{bottom:186.600000pt;}
.ya98_c00001{bottom:186.920000pt;}
.y91a_c00001{bottom:187.226667pt;}
.y5ef_c00001{bottom:187.386667pt;}
.y34a_c00001{bottom:187.706667pt;}
.y958_c00001{bottom:187.714667pt;}
.y119_c00001{bottom:187.866667pt;}
.y291_c00001{bottom:188.666667pt;}
.ya32_c00001{bottom:188.840000pt;}
.y355_c00001{bottom:189.146667pt;}
.y602_c00001{bottom:189.306667pt;}
.y18f_c00001{bottom:189.466667pt;}
.y3ab_c00001{bottom:189.626667pt;}
.y2cc_c00001{bottom:189.946667pt;}
.y390_c00001{bottom:190.266667pt;}
.y3b6_c00001{bottom:190.426667pt;}
.y3e6_c00001{bottom:190.746667pt;}
.y26a_c00001{bottom:190.906667pt;}
.y85e_c00001{bottom:191.706667pt;}
.y4ae_c00001{bottom:192.186667pt;}
.y23b_c00001{bottom:192.506667pt;}
.yb26_c00001{bottom:192.666667pt;}
.y46b_c00001{bottom:192.986667pt;}
.ya05_c00001{bottom:193.120000pt;}
.y9bf_c00001{bottom:193.146667pt;}
.y4d_c00001{bottom:193.306667pt;}
.y8df_c00001{bottom:193.786667pt;}
.y3cf_c00001{bottom:194.106667pt;}
.y227_c00001{bottom:194.746667pt;}
.y1cb_c00001{bottom:194.906667pt;}
.y997_c00001{bottom:195.066667pt;}
.y306_c00001{bottom:195.226667pt;}
.y5c6_c00001{bottom:195.386667pt;}
.y4d0_c00001{bottom:195.546667pt;}
.y33c_c00001{bottom:195.706667pt;}
.y1c2_c00001{bottom:196.026667pt;}
.y5d2_c00001{bottom:196.346667pt;}
.y7ac_c00001{bottom:196.354667pt;}
.ya92_c00001{bottom:196.360000pt;}
.y255_c00001{bottom:196.506667pt;}
.y7bd_c00001{bottom:196.666667pt;}
.y760_c00001{bottom:196.674667pt;}
.y7cd_c00001{bottom:196.680000pt;}
.y78f_c00001{bottom:196.706667pt;}
.y4bc_c00001{bottom:196.826667pt;}
.y1ad_c00001{bottom:197.146667pt;}
.y9d7_c00001{bottom:197.280000pt;}
.y45a_c00001{bottom:197.626667pt;}
.y4c7_c00001{bottom:198.426667pt;}
.y2dd_c00001{bottom:198.586667pt;}
.y86b_c00001{bottom:198.746667pt;}
.y97c_c00001{bottom:199.746667pt;}
.y24_c00001{bottom:199.866667pt;}
.ya50_c00001{bottom:199.880000pt;}
.y86f_c00001{bottom:200.026667pt;}
.y659_c00001{bottom:200.186667pt;}
.ya76_c00001{bottom:200.506667pt;}
.y89e_c00001{bottom:200.666667pt;}
.y16c_c00001{bottom:200.826667pt;}
.y74a_c00001{bottom:200.986667pt;}
.y6d1_c00001{bottom:201.306667pt;}
.y370_c00001{bottom:201.466667pt;}
.y1d5_c00001{bottom:201.626667pt;}
.y5fc_c00001{bottom:201.786667pt;}
.y8b3_c00001{bottom:201.794667pt;}
.y23a_c00001{bottom:202.426667pt;}
.y53b_c00001{bottom:202.586667pt;}
.y9f3_c00001{bottom:202.600000pt;}
.y8c9_c00001{bottom:202.754667pt;}
.yc6_c00001{bottom:202.906667pt;}
.y80_c00001{bottom:203.226667pt;}
.y926_c00001{bottom:203.706667pt;}
.y20c_c00001{bottom:204.026667pt;}
.y349_c00001{bottom:204.506667pt;}
.yaa_c00001{bottom:204.666667pt;}
.y957_c00001{bottom:204.674667pt;}
.y18e_c00001{bottom:204.826667pt;}
.y3aa_c00001{bottom:204.986667pt;}
.ya31_c00001{bottom:205.000000pt;}
.y810_c00001{bottom:205.466667pt;}
.y73c_c00001{bottom:205.666667pt;}
.y33b_c00001{bottom:205.786667pt;}
.y58c_c00001{bottom:205.946667pt;}
.y247_c00001{bottom:206.106667pt;}
.y4a1_c00001{bottom:206.266667pt;}
.y4df_c00001{bottom:206.746667pt;}
.y72c_c00001{bottom:206.906667pt;}
.y290_c00001{bottom:207.066667pt;}
.y3b5_c00001{bottom:207.546667pt;}
.y3c5_c00001{bottom:207.866667pt;}
.y81e_c00001{bottom:208.666667pt;}
.ya04_c00001{bottom:209.120000pt;}
.y4ad_c00001{bottom:209.146667pt;}
.y13d_c00001{bottom:209.306667pt;}
.yb25_c00001{bottom:209.626667pt;}
.y67_c00001{bottom:209.946667pt;}
.y8de_c00001{bottom:210.586667pt;}
.y16b_c00001{bottom:210.906667pt;}
.y32a_c00001{bottom:211.066667pt;}
.y235_c00001{bottom:211.386667pt;}
.y48c_c00001{bottom:211.706667pt;}
.y681_c00001{bottom:211.866667pt;}
.yadd_c00001{bottom:211.906667pt;}
.y305_c00001{bottom:212.066667pt;}
.y3ce_c00001{bottom:212.186667pt;}
.y5ba_c00001{bottom:212.346667pt;}
.y7ab_c00001{bottom:212.354667pt;}
.y694_c00001{bottom:212.506667pt;}
.ya91_c00001{bottom:212.520000pt;}
.y7bc_c00001{bottom:212.666667pt;}
.y75f_c00001{bottom:212.674667pt;}
.y7da_c00001{bottom:212.680000pt;}
.y7e2_c00001{bottom:212.706667pt;}
.y7d1_c00001{bottom:212.826667pt;}
.y779_c00001{bottom:212.834667pt;}
.y7cc_c00001{bottom:212.840000pt;}
.y78e_c00001{bottom:212.866667pt;}
.y1c1_c00001{bottom:212.986667pt;}
.y9b6_c00001{bottom:213.146667pt;}
.y526_c00001{bottom:213.306667pt;}
.y725_c00001{bottom:213.466667pt;}
.y9d6_c00001{bottom:213.480000pt;}
.y4bb_c00001{bottom:213.786667pt;}
.y4cc_c00001{bottom:213.946667pt;}
.y459_c00001{bottom:214.426667pt;}
.y62a_c00001{bottom:214.746667pt;}
.yab8_c00001{bottom:214.906667pt;}
.y4c6_c00001{bottom:215.226667pt;}
.y830_c00001{bottom:215.546667pt;}
.y97b_c00001{bottom:215.746667pt;}
.ya4f_c00001{bottom:216.040000pt;}
.ya75_c00001{bottom:216.666667pt;}
.y23_c00001{bottom:216.826667pt;}
.yb85_c00001{bottom:216.866667pt;}
.y1e8_c00001{bottom:216.986667pt;}
.yb0b_c00001{bottom:217.026667pt;}
.y2cb_c00001{bottom:217.626667pt;}
.yaf3_c00001{bottom:217.666667pt;}
.y38f_c00001{bottom:217.786667pt;}
.y8b2_c00001{bottom:217.794667pt;}
.y6f0_c00001{bottom:218.106667pt;}
.y36f_c00001{bottom:218.266667pt;}
.y118_c00001{bottom:218.586667pt;}
.y9f2_c00001{bottom:218.600000pt;}
.y710_c00001{bottom:218.746667pt;}
.y8c8_c00001{bottom:218.754667pt;}
.y968_c00001{bottom:218.914667pt;}
.y9c4_c00001{bottom:219.266667pt;}
.y53a_c00001{bottom:219.386667pt;}
.y6d0_c00001{bottom:219.746667pt;}
.yc5_c00001{bottom:219.866667pt;}
.y18d_c00001{bottom:220.026667pt;}
.y3a9_c00001{bottom:220.346667pt;}
.y4c_c00001{bottom:220.826667pt;}
.y956_c00001{bottom:220.834667pt;}
.y814_c00001{bottom:221.146667pt;}
.ya30_c00001{bottom:221.160000pt;}
.y348_c00001{bottom:221.306667pt;}
.y1ca_c00001{bottom:221.626667pt;}
.y73b_c00001{bottom:222.306667pt;}
.y226_c00001{bottom:222.426667pt;}
.ya9_c00001{bottom:222.746667pt;}
.y246_c00001{bottom:222.906667pt;}
.y4cf_c00001{bottom:223.226667pt;}
.y1ac_c00001{bottom:223.706667pt;}
.y829_c00001{bottom:223.866667pt;}
.y254_c00001{bottom:224.186667pt;}
.y3e5_c00001{bottom:224.506667pt;}
.y55a_c00001{bottom:224.666667pt;}
.yb3a_c00001{bottom:224.826667pt;}
.ya03_c00001{bottom:225.306667pt;}
.y28f_c00001{bottom:225.466667pt;}
.y4ac_c00001{bottom:225.946667pt;}
.y740_c00001{bottom:226.106667pt;}
.y2dc_c00001{bottom:226.266667pt;}
.y563_c00001{bottom:226.426667pt;}
.y234_c00001{bottom:226.746667pt;}
.y5d1_c00001{bottom:227.226667pt;}
.y938_c00001{bottom:227.386667pt;}
.y8dd_c00001{bottom:227.546667pt;}
.y5b9_c00001{bottom:227.706667pt;}
.y4fb_c00001{bottom:227.866667pt;}
.yb57_c00001{bottom:228.066667pt;}
.ya43_c00001{bottom:228.346667pt;}
.y9a2_c00001{bottom:228.506667pt;}
.y7aa_c00001{bottom:228.514667pt;}
.yadb_c00001{bottom:228.706667pt;}
.y7bb_c00001{bottom:228.826667pt;}
.y75e_c00001{bottom:228.834667pt;}
.y7d9_c00001{bottom:228.840000pt;}
.y304_c00001{bottom:228.866667pt;}
.y3cd_c00001{bottom:228.986667pt;}
.yb1a_c00001{bottom:229.026667pt;}
.y1d4_c00001{bottom:229.306667pt;}
.y675_c00001{bottom:229.466667pt;}
.y9d5_c00001{bottom:229.480000pt;}
.y1c0_c00001{bottom:229.786667pt;}
.y6a3_c00001{bottom:230.106667pt;}
.y525_c00001{bottom:230.266667pt;}
.y4ba_c00001{bottom:230.586667pt;}
.y7f_c00001{bottom:230.906667pt;}
.y458_c00001{bottom:231.386667pt;}
.y20b_c00001{bottom:231.546667pt;}
.y744_c00001{bottom:231.706667pt;}
.y80f_c00001{bottom:231.866667pt;}
.y97a_c00001{bottom:231.906667pt;}
.y4c5_c00001{bottom:232.186667pt;}
.ya4e_c00001{bottom:232.200000pt;}
.y1e7_c00001{bottom:232.346667pt;}
.ya74_c00001{bottom:232.666667pt;}
.ya09_c00001{bottom:232.826667pt;}
.y996_c00001{bottom:233.146667pt;}
.y22_c00001{bottom:233.626667pt;}
.yb04_c00001{bottom:233.666667pt;}
.y117_c00001{bottom:233.946667pt;}
.y9c0_c00001{bottom:234.306667pt;}
.y846_c00001{bottom:234.426667pt;}
.yaf2_c00001{bottom:234.466667pt;}
.y60e_c00001{bottom:234.746667pt;}
.y9f1_c00001{bottom:234.760000pt;}
.y8b1_c00001{bottom:234.914667pt;}
.y6ef_c00001{bottom:235.066667pt;}
.y36e_c00001{bottom:235.226667pt;}
.y18c_c00001{bottom:235.386667pt;}
.y70f_c00001{bottom:235.546667pt;}
.y3a8_c00001{bottom:235.706667pt;}
.y967_c00001{bottom:235.874667pt;}
.y66_c00001{bottom:236.186667pt;}
.y539_c00001{bottom:236.346667pt;}
.y562_c00001{bottom:236.506667pt;}
.yc4_c00001{bottom:236.666667pt;}
.y13c_c00001{bottom:236.986667pt;}
.y955_c00001{bottom:236.994667pt;}
.ya2f_c00001{bottom:237.160000pt;}
.y680_c00001{bottom:237.466667pt;}
.y16a_c00001{bottom:237.786667pt;}
.y6cf_c00001{bottom:238.146667pt;}
.y3b4_c00001{bottom:238.266667pt;}
.y2ac_c00001{bottom:238.426667pt;}
.y329_c00001{bottom:238.746667pt;}
.yb82_c00001{bottom:239.106667pt;}
.y48b_c00001{bottom:239.226667pt;}
.ya8_c00001{bottom:239.706667pt;}
.y5b0_c00001{bottom:240.026667pt;}
.y72b_c00001{bottom:240.666667pt;}
.y9b5_c00001{bottom:240.826667pt;}
.ya02_c00001{bottom:241.306667pt;}
.y3e4_c00001{bottom:241.346667pt;}
.y6ac_c00001{bottom:241.506667pt;}
.y4cb_c00001{bottom:241.666667pt;}
.yb17_c00001{bottom:241.826667pt;}
.y233_c00001{bottom:242.146667pt;}
.y919_c00001{bottom:242.466667pt;}
.y4ab_c00001{bottom:242.946667pt;}
.y5b8_c00001{bottom:243.106667pt;}
.y46a_c00001{bottom:243.586667pt;}
.y28e_c00001{bottom:243.906667pt;}
.y8dc_c00001{bottom:244.386667pt;}
.y7f6_c00001{bottom:244.546667pt;}
.y7a9_c00001{bottom:244.674667pt;}
.y58b_c00001{bottom:244.706667pt;}
.y75d_c00001{bottom:244.834667pt;}
.y4fa_c00001{bottom:244.866667pt;}
.y7ba_c00001{bottom:244.986667pt;}
.y778_c00001{bottom:244.994667pt;}
.y78d_c00001{bottom:245.026667pt;}
.y2ca_c00001{bottom:245.186667pt;}
.y38e_c00001{bottom:245.506667pt;}
.y9d4_c00001{bottom:245.640000pt;}
.y303_c00001{bottom:245.666667pt;}
.y3cc_c00001{bottom:245.986667pt;}
.y269_c00001{bottom:246.146667pt;}
.y99f_c00001{bottom:246.786667pt;}
.y85d_c00001{bottom:246.946667pt;}
.y524_c00001{bottom:247.106667pt;}
.y724_c00001{bottom:247.266667pt;}
.y4b_c00001{bottom:247.426667pt;}
.y1e6_c00001{bottom:247.746667pt;}
.ya4d_c00001{bottom:248.200000pt;}
.y457_c00001{bottom:248.226667pt;}
.y669_c00001{bottom:248.706667pt;}
.ya73_c00001{bottom:248.826667pt;}
.y4c4_c00001{bottom:249.026667pt;}
.y116_c00001{bottom:249.186667pt;}
.y1c9_c00001{bottom:249.346667pt;}
.y9fb_c00001{bottom:249.506667pt;}
.yb8a_c00001{bottom:249.666667pt;}
.y225_c00001{bottom:249.986667pt;}
.y5af_c00001{bottom:250.146667pt;}
.yb08_c00001{bottom:250.466667pt;}
.y21_c00001{bottom:250.626667pt;}
.y4ce_c00001{bottom:250.786667pt;}
.y9f0_c00001{bottom:250.920000pt;}
.y3a7_c00001{bottom:250.946667pt;}
.y8b0_c00001{bottom:251.074667pt;}
.y7b0_c00001{bottom:251.106667pt;}
.y845_c00001{bottom:251.266667pt;}
.y18b_c00001{bottom:251.586667pt;}
.y253_c00001{bottom:251.746667pt;}
.y6ee_c00001{bottom:251.906667pt;}
.y8c7_c00001{bottom:252.034667pt;}
.y36d_c00001{bottom:252.066667pt;}
.y33a_c00001{bottom:252.386667pt;}
.y70e_c00001{bottom:252.546667pt;}
.y5d0_c00001{bottom:252.866667pt;}
.y538_c00001{bottom:253.186667pt;}
.ya2e_c00001{bottom:253.320000pt;}
.yc3_c00001{bottom:253.666667pt;}
.y2db_c00001{bottom:253.826667pt;}
.y954_c00001{bottom:254.114667pt;}
.y81d_c00001{bottom:254.306667pt;}
.y92f_c00001{bottom:254.946667pt;}
.y5ee_c00001{bottom:255.106667pt;}
.yb23_c00001{bottom:255.266667pt;}
.y658_c00001{bottom:255.426667pt;}
.y576_c00001{bottom:255.906667pt;}
.ya42_c00001{bottom:256.066667pt;}
.y9a1_c00001{bottom:256.226667pt;}
.ya7_c00001{bottom:256.546667pt;}
.y354_c00001{bottom:256.706667pt;}
.y1d3_c00001{bottom:256.866667pt;}
.y741_c00001{bottom:257.026667pt;}
.y232_c00001{bottom:257.346667pt;}
.ya01_c00001{bottom:257.466667pt;}
.y1ab_c00001{bottom:257.506667pt;}
.y6ae_c00001{bottom:257.666667pt;}
.y3e3_c00001{bottom:258.146667pt;}
.y866_c00001{bottom:258.306667pt;}
.y7e_c00001{bottom:258.466667pt;}
.y20a_c00001{bottom:259.266667pt;}
.y4aa_c00001{bottom:259.746667pt;}
.y2e4_c00001{bottom:260.066667pt;}
.y469_c00001{bottom:260.546667pt;}
.y7a8_c00001{bottom:260.701333pt;}
.y995_c00001{bottom:260.706667pt;}
.y7b9_c00001{bottom:260.986667pt;}
.y75c_c00001{bottom:260.994667pt;}
.y777_c00001{bottom:261.021333pt;}
.y7e1_c00001{bottom:261.026667pt;}
.y9c2_c00001{bottom:261.146667pt;}
.y78c_c00001{bottom:261.186667pt;}
.y8db_c00001{bottom:261.346667pt;}
.y4a0_c00001{bottom:261.506667pt;}
.y4f9_c00001{bottom:261.666667pt;}
.y9d3_c00001{bottom:261.800000pt;}
.y28d_c00001{bottom:262.306667pt;}
.y3cb_c00001{bottom:262.786667pt;}
.y7f5_c00001{bottom:262.946667pt;}
.y1e5_c00001{bottom:263.106667pt;}
.y1bf_c00001{bottom:263.586667pt;}
.y65_c00001{bottom:263.906667pt;}
.ya4c_c00001{bottom:264.360000pt;}
.y4b9_c00001{bottom:264.386667pt;}
.y115_c00001{bottom:264.546667pt;}
.y723_c00001{bottom:265.026667pt;}
.y456_c00001{bottom:265.186667pt;}
.y169_c00001{bottom:265.346667pt;}
.y668_c00001{bottom:265.506667pt;}
.y4c3_c00001{bottom:265.826667pt;}
.y245_c00001{bottom:266.146667pt;}
.y328_c00001{bottom:266.306667pt;}
.y9ef_c00001{bottom:266.920000pt;}
.y48a_c00001{bottom:266.946667pt;}
.y9b9_c00001{bottom:267.106667pt;}
.y8af_c00001{bottom:267.261333pt;}
.yb07_c00001{bottom:267.266667pt;}
.y129_c00001{bottom:267.426667pt;}
.y643_c00001{bottom:267.586667pt;}
.y693_c00001{bottom:267.746667pt;}
.yaf1_c00001{bottom:267.906667pt;}
.y8c6_c00001{bottom:268.221333pt;}
.y67f_c00001{bottom:268.226667pt;}
.y9b4_c00001{bottom:268.386667pt;}
.y6ed_c00001{bottom:268.706667pt;}
.y3b3_c00001{bottom:268.866667pt;}
.y36c_c00001{bottom:269.026667pt;}
.y4ca_c00001{bottom:269.186667pt;}
.y70d_c00001{bottom:269.346667pt;}
.ya2d_c00001{bottom:269.480000pt;}
.y89d_c00001{bottom:269.666667pt;}
.y6ce_c00001{bottom:269.986667pt;}
.y953_c00001{bottom:270.141333pt;}
.y537_c00001{bottom:270.146667pt;}
.yc2_c00001{bottom:270.466667pt;}
.y82f_c00001{bottom:270.786667pt;}
.y73a_c00001{bottom:271.266667pt;}
.y90d_c00001{bottom:271.586667pt;}
.yb74_c00001{bottom:271.746667pt;}
.y5ed_c00001{bottom:272.066667pt;}
.y673_c00001{bottom:272.226667pt;}
.y813_c00001{bottom:272.386667pt;}
.y231_c00001{bottom:272.706667pt;}
.y2c9_c00001{bottom:272.866667pt;}
.y38d_c00001{bottom:273.026667pt;}
.ya6_c00001{bottom:273.506667pt;}
.ya00_c00001{bottom:273.626667pt;}
.y4a_c00001{bottom:273.826667pt;}
.y1aa_c00001{bottom:274.306667pt;}
.y72a_c00001{bottom:274.466667pt;}
.y85c_c00001{bottom:274.626667pt;}
.y3e2_c00001{bottom:275.106667pt;}
.y347_c00001{bottom:275.266667pt;}
.y7d_c00001{bottom:276.546667pt;}
.y7a7_c00001{bottom:276.861333pt;}
.y20_c00001{bottom:276.866667pt;}
.y7b8_c00001{bottom:277.146667pt;}
.y75b_c00001{bottom:277.181333pt;}
.y78b_c00001{bottom:277.186667pt;}
.y468_c00001{bottom:277.346667pt;}
.y224_c00001{bottom:277.666667pt;}
.y9d2_c00001{bottom:277.800000pt;}
.y44a_c00001{bottom:278.146667pt;}
.y66d_c00001{bottom:278.306667pt;}
.y18a_c00001{bottom:278.466667pt;}
.yb4f_c00001{bottom:278.946667pt;}
.y302_c00001{bottom:279.106667pt;}
.y252_c00001{bottom:279.426667pt;}
.y3ca_c00001{bottom:279.746667pt;}
.y114_c00001{bottom:279.906667pt;}
.yb39_c00001{bottom:280.066667pt;}
.ya4b_c00001{bottom:280.360000pt;}
.y1be_c00001{bottom:280.386667pt;}
.y28c_c00001{bottom:280.706667pt;}
.y523_c00001{bottom:280.866667pt;}
.y4b8_c00001{bottom:281.186667pt;}
.y7f4_c00001{bottom:281.346667pt;}
.y2da_c00001{bottom:281.506667pt;}
.y416_c00001{bottom:281.666667pt;}
.y455_c00001{bottom:281.986667pt;}
.ya0b_c00001{bottom:282.146667pt;}
.y667_c00001{bottom:282.466667pt;}
.y7e9_c00001{bottom:282.626667pt;}
.y4c2_c00001{bottom:282.786667pt;}
.y642_c00001{bottom:282.946667pt;}
.y9ee_c00001{bottom:283.080000pt;}
.y8d0_c00001{bottom:283.266667pt;}
.y58a_c00001{bottom:283.426667pt;}
.ya41_c00001{bottom:283.586667pt;}
.y9a0_c00001{bottom:283.746667pt;}
.yb06_c00001{bottom:284.066667pt;}
.y8ae_c00001{bottom:284.221333pt;}
.y128_c00001{bottom:284.226667pt;}
.y1d2_c00001{bottom:284.546667pt;}
.y2ab_c00001{bottom:284.706667pt;}
.y844_c00001{bottom:285.026667pt;}
.y966_c00001{bottom:285.341333pt;}
.y5c3_c00001{bottom:285.346667pt;}
.ya2c_c00001{bottom:285.480000pt;}
.y6ec_c00001{bottom:285.666667pt;}
.y36b_c00001{bottom:285.826667pt;}
.ye3_c00001{bottom:286.146667pt;}
.y952_c00001{bottom:286.301333pt;}
.y575_c00001{bottom:286.626667pt;}
.y209_c00001{bottom:286.786667pt;}
.y536_c00001{bottom:286.946667pt;}
.y339_c00001{bottom:287.426667pt;}
.y2e3_c00001{bottom:287.586667pt;}
.y3a6_c00001{bottom:287.746667pt;}
.y230_c00001{bottom:288.066667pt;}
.y66c_c00001{bottom:288.386667pt;}
.yb73_c00001{bottom:288.546667pt;}
.y5ec_c00001{bottom:288.866667pt;}
.y49f_c00001{bottom:289.186667pt;}
.y9ff_c00001{bottom:289.626667pt;}
.y60d_c00001{bottom:289.826667pt;}
.ya5_c00001{bottom:290.306667pt;}
.y353_c00001{bottom:290.466667pt;}
.y3c4_c00001{bottom:290.626667pt;}
.y1a9_c00001{bottom:291.106667pt;}
.y64_c00001{bottom:291.426667pt;}
.y92e_c00001{bottom:291.746667pt;}
.y3e1_c00001{bottom:291.906667pt;}
.y13b_c00001{bottom:292.226667pt;}
.y8da_c00001{bottom:292.386667pt;}
.y7a6_c00001{bottom:292.861333pt;}
.y168_c00001{bottom:293.026667pt;}
.y75a_c00001{bottom:293.181333pt;}
.y7e0_c00001{bottom:293.186667pt;}
.y7b7_c00001{bottom:293.306667pt;}
.y776_c00001{bottom:293.341333pt;}
.y78a_c00001{bottom:293.346667pt;}
.y7c_c00001{bottom:293.506667pt;}
.y1e4_c00001{bottom:293.666667pt;}
.y9d1_c00001{bottom:293.960000pt;}
.y467_c00001{bottom:294.306667pt;}
.y489_c00001{bottom:294.466667pt;}
.y449_c00001{bottom:294.946667pt;}
.yada_c00001{bottom:295.106667pt;}
.y113_c00001{bottom:295.266667pt;}
.y4f8_c00001{bottom:295.426667pt;}
.y925_c00001{bottom:295.746667pt;}
.y301_c00001{bottom:295.906667pt;}
.y9b3_c00001{bottom:296.066667pt;}
.ya4a_c00001{bottom:296.520000pt;}
.y3c9_c00001{bottom:296.546667pt;}
.yc1_c00001{bottom:296.866667pt;}
.y415_c00001{bottom:297.026667pt;}
.y979_c00001{bottom:297.346667pt;}
.y522_c00001{bottom:297.666667pt;}
.y3a5_c00001{bottom:297.826667pt;}
.yb79_c00001{bottom:297.986667pt;}
.y4b7_c00001{bottom:298.146667pt;}
.y641_c00001{bottom:298.306667pt;}
.y67e_c00001{bottom:298.786667pt;}
.y722_c00001{bottom:298.946667pt;}
.y28b_c00001{bottom:299.106667pt;}
.y9ed_c00001{bottom:299.240000pt;}
.y666_c00001{bottom:299.266667pt;}
.y7f1_c00001{bottom:299.426667pt;}
.y402_c00001{bottom:299.586667pt;}
.y7f3_c00001{bottom:299.746667pt;}
.y5ff_c00001{bottom:299.906667pt;}
.y8ad_c00001{bottom:300.381333pt;}
.y2c8_c00001{bottom:300.386667pt;}
.y38c_c00001{bottom:300.706667pt;}
.yb03_c00001{bottom:300.866667pt;}
.y127_c00001{bottom:301.186667pt;}
.y8c5_c00001{bottom:301.341333pt;}
.y49_c00001{bottom:301.346667pt;}
.yaef_c00001{bottom:301.506667pt;}
.ya2b_c00001{bottom:301.640000pt;}
.y843_c00001{bottom:301.986667pt;}
.y85b_c00001{bottom:302.146667pt;}
.y36a_c00001{bottom:302.626667pt;}
.y346_c00001{bottom:302.946667pt;}
.y2aa_c00001{bottom:303.106667pt;}
.y951_c00001{bottom:303.421333pt;}
.y22f_c00001{bottom:303.426667pt;}
.y6eb_c00001{bottom:303.586667pt;}
.y535_c00001{bottom:303.906667pt;}
.y338_c00001{bottom:304.226667pt;}
.y1f_c00001{bottom:304.546667pt;}
.y81c_c00001{bottom:305.026667pt;}
.y223_c00001{bottom:305.186667pt;}
.y5b7_c00001{bottom:305.346667pt;}
.yb72_c00001{bottom:305.506667pt;}
.y9fe_c00001{bottom:305.786667pt;}
.y5eb_c00001{bottom:305.826667pt;}
.y189_c00001{bottom:305.986667pt;}
.yb4e_c00001{bottom:306.466667pt;}
.y1bd_c00001{bottom:306.786667pt;}
.y251_c00001{bottom:306.946667pt;}
.ya4_c00001{bottom:307.266667pt;}
.y8cc_c00001{bottom:307.426667pt;}
.y617_c00001{bottom:307.586667pt;}
.y808_c00001{bottom:307.906667pt;}
.y1a8_c00001{bottom:308.066667pt;}
.y454_c00001{bottom:308.226667pt;}
.y1e3_c00001{bottom:308.706667pt;}
.y3e0_c00001{bottom:308.866667pt;}
.y7a5_c00001{bottom:309.021333pt;}
.y2d9_c00001{bottom:309.026667pt;}
.y9c1_c00001{bottom:309.306667pt;}
.y759_c00001{bottom:309.341333pt;}
.y789_c00001{bottom:309.346667pt;}
.ya72_c00001{bottom:309.466667pt;}
.y7d0_c00001{bottom:309.506667pt;}
.y9d0_c00001{bottom:309.960000pt;}
.yb58_c00001{bottom:309.986667pt;}
.y7b_c00001{bottom:310.306667pt;}
.yb22_c00001{bottom:310.466667pt;}
.y112_c00001{bottom:310.626667pt;}
.ya40_c00001{bottom:311.266667pt;}
.y448_c00001{bottom:311.906667pt;}
.y1d1_c00001{bottom:312.066667pt;}
.y4f7_c00001{bottom:312.226667pt;}
.y414_c00001{bottom:312.386667pt;}
.y327_c00001{bottom:312.546667pt;}
.ya49_c00001{bottom:312.680000pt;}
.y300_c00001{bottom:312.706667pt;}
.y610_c00001{bottom:312.866667pt;}
.y3c8_c00001{bottom:313.346667pt;}
.ye2_c00001{bottom:313.666667pt;}
.y5cf_c00001{bottom:314.146667pt;}
.y208_c00001{bottom:314.466667pt;}
.y521_c00001{bottom:314.626667pt;}
.y7f2_c00001{bottom:314.786667pt;}
.y4b6_c00001{bottom:314.946667pt;}
.yb38_c00001{bottom:315.106667pt;}
.y9ec_c00001{bottom:315.240000pt;}
.y2e2_c00001{bottom:315.266667pt;}
.y7cf_c00001{bottom:315.426667pt;}
.y994_c00001{bottom:315.906667pt;}
.y665_c00001{bottom:316.226667pt;}
.y401_c00001{bottom:316.546667pt;}
.y49e_c00001{bottom:316.706667pt;}
.y574_c00001{bottom:317.186667pt;}
.y8ac_c00001{bottom:317.501333pt;}
.y28a_c00001{bottom:317.506667pt;}
.ya2a_c00001{bottom:317.666667pt;}
.y126_c00001{bottom:317.986667pt;}
.y3c3_c00001{bottom:318.306667pt;}
.y965_c00001{bottom:318.461333pt;}
.y22e_c00001{bottom:318.786667pt;}
.y63_c00001{bottom:319.106667pt;}
.y950_c00001{bottom:319.421333pt;}
.y369_c00001{bottom:319.586667pt;}
.y13a_c00001{bottom:319.746667pt;}
.y70c_c00001{bottom:319.906667pt;}
.y6cd_c00001{bottom:320.226667pt;}
.y6ea_c00001{bottom:320.386667pt;}
.y167_c00001{bottom:320.546667pt;}
.y534_c00001{bottom:320.706667pt;}
.y337_c00001{bottom:321.026667pt;}
.y244_c00001{bottom:321.346667pt;}
.y2a9_c00001{bottom:321.506667pt;}
.y81b_c00001{bottom:321.826667pt;}
.y9fd_c00001{bottom:321.946667pt;}
.y589_c00001{bottom:321.986667pt;}
.y488_c00001{bottom:322.146667pt;}
.yb71_c00001{bottom:322.306667pt;}
.y5ea_c00001{bottom:322.626667pt;}
.y692_c00001{bottom:322.786667pt;}
.y9b2_c00001{bottom:323.586667pt;}
.ya3_c00001{bottom:324.066667pt;}
.yc0_c00001{bottom:324.386667pt;}
.y1a7_c00001{bottom:324.866667pt;}
.y7a4_c00001{bottom:325.181333pt;}
.y918_c00001{bottom:325.186667pt;}
.ya71_c00001{bottom:325.466667pt;}
.y758_c00001{bottom:325.501333pt;}
.y788_c00001{bottom:325.506667pt;}
.y3df_c00001{bottom:325.666667pt;}
.y82e_c00001{bottom:325.986667pt;}
.y9cf_c00001{bottom:326.120000pt;}
.y9c5_c00001{bottom:326.146667pt;}
.y924_c00001{bottom:326.466667pt;}
.y7a_c00001{bottom:327.266667pt;}
.y699_c00001{bottom:327.426667pt;}
.y413_c00001{bottom:327.746667pt;}
.y2c7_c00001{bottom:328.066667pt;}
.y5a2_c00001{bottom:328.226667pt;}
.y92d_c00001{bottom:328.546667pt;}
.ya48_c00001{bottom:328.680000pt;}
.y447_c00001{bottom:328.706667pt;}
.y48_c00001{bottom:329.026667pt;}
.y4f6_c00001{bottom:329.186667pt;}
.y2ff_c00001{bottom:329.506667pt;}
.y85a_c00001{bottom:329.826667pt;}
.y5fb_c00001{bottom:330.306667pt;}
.y345_c00001{bottom:330.466667pt;}
.y326_c00001{bottom:330.946667pt;}
.y9eb_c00001{bottom:331.400000pt;}
.y520_c00001{bottom:331.426667pt;}
.y153_c00001{bottom:331.746667pt;}
.yb37_c00001{bottom:331.906667pt;}
.y1e_c00001{bottom:332.066667pt;}
.ya6c_c00001{bottom:332.226667pt;}
.y8cf_c00001{bottom:332.546667pt;}
.y222_c00001{bottom:332.866667pt;}
.y400_c00001{bottom:333.346667pt;}
.y8ab_c00001{bottom:333.501333pt;}
.y188_c00001{bottom:333.666667pt;}
.y93d_c00001{bottom:333.826667pt;}
.y22d_c00001{bottom:334.146667pt;}
.y1bc_c00001{bottom:334.306667pt;}
.y8c4_c00001{bottom:334.621333pt;}
.y250_c00001{bottom:334.626667pt;}
.y125_c00001{bottom:334.946667pt;}
.y3a4_c00001{bottom:335.106667pt;}
.y94f_c00001{bottom:335.581333pt;}
.y842_c00001{bottom:335.586667pt;}
.y289_c00001{bottom:335.906667pt;}
.y598_c00001{bottom:336.386667pt;}
.y2d8_c00001{bottom:336.706667pt;}
.y70b_c00001{bottom:336.866667pt;}
.y6cc_c00001{bottom:337.026667pt;}
.y89c_c00001{bottom:337.186667pt;}
.y6e9_c00001{bottom:337.346667pt;}
.y533_c00001{bottom:337.506667pt;}
.y9fc_c00001{bottom:337.946667pt;}
.y559_c00001{bottom:337.986667pt;}
.y657_c00001{bottom:338.146667pt;}
.y81a_c00001{bottom:338.786667pt;}
.yb70_c00001{bottom:339.266667pt;}
.y5e9_c00001{bottom:339.426667pt;}
.y1d0_c00001{bottom:339.746667pt;}
.y2a8_c00001{bottom:339.906667pt;}
.y84a_c00001{bottom:340.546667pt;}
.ya2_c00001{bottom:340.866667pt;}
.y352_c00001{bottom:341.026667pt;}
.y7a3_c00001{bottom:341.181333pt;}
.ye1_c00001{bottom:341.186667pt;}
.y757_c00001{bottom:341.501333pt;}
.y7b6_c00001{bottom:341.506667pt;}
.ya70_c00001{bottom:341.626667pt;}
.y7cb_c00001{bottom:341.666667pt;}
.y1a6_c00001{bottom:341.826667pt;}
.y207_c00001{bottom:341.986667pt;}
.y9ce_c00001{bottom:342.280000pt;}
.y3de_c00001{bottom:342.466667pt;}
.y601_c00001{bottom:342.626667pt;}
.y2e1_c00001{bottom:342.786667pt;}
.y412_c00001{bottom:342.946667pt;}
.y993_c00001{bottom:343.586667pt;}
.y93c_c00001{bottom:343.906667pt;}
.y79_c00001{bottom:344.066667pt;}
.y49d_c00001{bottom:344.386667pt;}
.yad9_c00001{bottom:344.706667pt;}
.y5ce_c00001{bottom:344.866667pt;}
.y60c_c00001{bottom:345.026667pt;}
.y640_c00001{bottom:345.186667pt;}
.y98b_c00001{bottom:345.506667pt;}
.y446_c00001{bottom:345.666667pt;}
.y368_c00001{bottom:345.826667pt;}
.y4f5_c00001{bottom:345.986667pt;}
.y2fe_c00001{bottom:346.146667pt;}
.yb8e_c00001{bottom:346.306667pt;}
.ya55_c00001{bottom:346.466667pt;}
.y62_c00001{bottom:346.626667pt;}
.y5fa_c00001{bottom:347.106667pt;}
.y139_c00001{bottom:347.426667pt;}
.y51f_c00001{bottom:347.906667pt;}
.y166_c00001{bottom:348.226667pt;}
.y152_c00001{bottom:348.706667pt;}
.y243_c00001{bottom:348.866667pt;}
.y325_c00001{bottom:349.346667pt;}
.y8aa_c00001{bottom:349.661333pt;}
.y487_c00001{bottom:349.666667pt;}
.y3ff_c00001{bottom:350.146667pt;}
.y691_c00001{bottom:350.466667pt;}
.y8c3_c00001{bottom:350.621333pt;}
.yaff_c00001{bottom:351.106667pt;}
.y9b1_c00001{bottom:351.266667pt;}
.y94e_c00001{bottom:351.741333pt;}
.y124_c00001{bottom:351.746667pt;}
.ybf_c00001{bottom:352.066667pt;}
.y841_c00001{bottom:352.546667pt;}
.y917_c00001{bottom:352.866667pt;}
.y597_c00001{bottom:353.346667pt;}
.y3b2_c00001{bottom:353.506667pt;}
.y70a_c00001{bottom:353.666667pt;}
.y6cb_c00001{bottom:353.826667pt;}
.y89b_c00001{bottom:353.986667pt;}
.y6e8_c00001{bottom:354.146667pt;}
.y288_c00001{bottom:354.306667pt;}
.y532_c00001{bottom:354.466667pt;}
.y558_c00001{bottom:354.786667pt;}
.y1e2_c00001{bottom:355.106667pt;}
.y2c6_c00001{bottom:355.586667pt;}
.y5a1_c00001{bottom:355.906667pt;}
.yb6f_c00001{bottom:356.066667pt;}
.y5e8_c00001{bottom:356.386667pt;}
.y47_c00001{bottom:356.546667pt;}
.y22c_c00001{bottom:356.866667pt;}
.y923_c00001{bottom:357.026667pt;}
.y7a2_c00001{bottom:357.341333pt;}
.y859_c00001{bottom:357.346667pt;}
.y498_c00001{bottom:357.506667pt;}
.ya6f_c00001{bottom:357.626667pt;}
.y756_c00001{bottom:357.661333pt;}
.y7b5_c00001{bottom:357.666667pt;}
.y461_c00001{bottom:357.826667pt;}
.y2a7_c00001{bottom:357.986667pt;}
.y344_c00001{bottom:358.146667pt;}
.y9cd_c00001{bottom:358.280000pt;}
.y411_c00001{bottom:358.306667pt;}
.y1a5_c00001{bottom:358.626667pt;}
.yb88_c00001{bottom:359.106667pt;}
.yf1_c00001{bottom:359.426667pt;}
.y1d_c00001{bottom:359.586667pt;}
.y67d_c00001{bottom:360.226667pt;}
.y221_c00001{bottom:360.386667pt;}
.y588_c00001{bottom:360.706667pt;}
.y78_c00001{bottom:360.866667pt;}
.y869_c00001{bottom:361.026667pt;}
.y187_c00001{bottom:361.186667pt;}
.yb4d_c00001{bottom:361.666667pt;}
.y98a_c00001{bottom:361.706667pt;}
.y1bb_c00001{bottom:361.986667pt;}
.y24f_c00001{bottom:362.146667pt;}
.y445_c00001{bottom:362.466667pt;}
.y978_c00001{bottom:362.666667pt;}
.y3a3_c00001{bottom:362.786667pt;}
.y2fd_c00001{bottom:362.946667pt;}
.yb77_c00001{bottom:363.106667pt;}
.y453_c00001{bottom:363.426667pt;}
.y787_c00001{bottom:363.746667pt;}
.y268_c00001{bottom:364.066667pt;}
.y2d7_c00001{bottom:364.226667pt;}
.y99e_c00001{bottom:364.706667pt;}
.y51e_c00001{bottom:365.186667pt;}
.y92c_c00001{bottom:365.346667pt;}
.y4b5_c00001{bottom:365.506667pt;}
.y8ce_c00001{bottom:365.666667pt;}
.y656_c00001{bottom:365.826667pt;}
.ya3f_c00001{bottom:366.466667pt;}
.y8a9_c00001{bottom:366.781333pt;}
.y351_c00001{bottom:366.946667pt;}
.y3fe_c00001{bottom:367.106667pt;}
.y1cf_c00001{bottom:367.266667pt;}
.y721_c00001{bottom:367.426667pt;}
.y8c2_c00001{bottom:367.741333pt;}
.y324_c00001{bottom:367.746667pt;}
.y801_c00001{bottom:367.906667pt;}
.y22b_c00001{bottom:368.066667pt;}
.yb36_c00001{bottom:368.386667pt;}
.y123_c00001{bottom:368.546667pt;}
.y94d_c00001{bottom:368.701333pt;}
.ye0_c00001{bottom:368.866667pt;}
.y840_c00001{bottom:369.346667pt;}
.y206_c00001{bottom:369.666667pt;}
.y738_c00001{bottom:369.986667pt;}
.y596_c00001{bottom:370.146667pt;}
.y1e1_c00001{bottom:370.306667pt;}
.y2e0_c00001{bottom:370.466667pt;}
.yb21_c00001{bottom:370.786667pt;}
.y6e7_c00001{bottom:370.946667pt;}
.y992_c00001{bottom:371.106667pt;}
.y531_c00001{bottom:371.266667pt;}
.yac3_c00001{bottom:371.426667pt;}
.y557_c00001{bottom:371.746667pt;}
.y111_c00001{bottom:371.906667pt;}
.y819_c00001{bottom:372.386667pt;}
.y287_c00001{bottom:372.706667pt;}
.yb6e_c00001{bottom:372.866667pt;}
.y5e7_c00001{bottom:373.186667pt;}
.y7a1_c00001{bottom:373.501333pt;}
.y367_c00001{bottom:373.506667pt;}
.y755_c00001{bottom:373.661333pt;}
.y410_c00001{bottom:373.666667pt;}
.ya6e_c00001{bottom:373.786667pt;}
.y775_c00001{bottom:373.821333pt;}
.y7b4_c00001{bottom:373.826667pt;}
.y61_c00001{bottom:374.306667pt;}
.ya1_c00001{bottom:374.626667pt;}
.y460_c00001{bottom:374.786667pt;}
.y138_c00001{bottom:374.946667pt;}
.yb87_c00001{bottom:375.106667pt;}
.y5cd_c00001{bottom:375.426667pt;}
.y1a4_c00001{bottom:375.586667pt;}
.y165_c00001{bottom:375.746667pt;}
.y745_c00001{bottom:375.906667pt;}
.yf0_c00001{bottom:376.226667pt;}
.y242_c00001{bottom:376.546667pt;}
.y2a6_c00001{bottom:376.706667pt;}
.yb97_c00001{bottom:377.186667pt;}
.y486_c00001{bottom:377.346667pt;}
.yad7_c00001{bottom:377.666667pt;}
.y77_c00001{bottom:377.826667pt;}
.y690_c00001{bottom:377.986667pt;}
.y573_c00001{bottom:378.626667pt;}
.y9b0_c00001{bottom:378.786667pt;}
.y977_c00001{bottom:378.826667pt;}
.y444_c00001{bottom:379.266667pt;}
.ybe_c00001{bottom:379.586667pt;}
.y4f4_c00001{bottom:379.746667pt;}
.y2fc_c00001{bottom:379.773333pt;}
.y916_c00001{bottom:380.386667pt;}
.y267_c00001{bottom:380.866667pt;}
.y3b1_c00001{bottom:381.186667pt;}
.y99d_c00001{bottom:381.666667pt;}
.y8cd_c00001{bottom:381.826667pt;}
.y51d_c00001{bottom:381.986667pt;}
.y151_c00001{bottom:382.466667pt;}
.y698_c00001{bottom:382.626667pt;}
.y8a8_c00001{bottom:382.941333pt;}
.y2c5_c00001{bottom:383.266667pt;}
.y5a0_c00001{bottom:383.426667pt;}
.y664_c00001{bottom:383.586667pt;}
.y8c1_c00001{bottom:383.901333pt;}
.y3fd_c00001{bottom:383.906667pt;}
.y46_c00001{bottom:384.226667pt;}
.y800_c00001{bottom:384.706667pt;}
.yb02_c00001{bottom:384.733333pt;}
.y94c_c00001{bottom:384.861333pt;}
.y858_c00001{bottom:385.026667pt;}
.y720_c00001{bottom:385.186667pt;}
.yb35_c00001{bottom:385.346667pt;}
.yaee_c00001{bottom:385.373333pt;}
.y1e0_c00001{bottom:385.666667pt;}
.y323_c00001{bottom:386.146667pt;}
.y83f_c00001{bottom:386.306667pt;}
.ydf_c00001{bottom:386.946667pt;}
.y1c_c00001{bottom:387.266667pt;}
.y6c7_c00001{bottom:387.293333pt;}
.y709_c00001{bottom:387.426667pt;}
.yb20_c00001{bottom:387.586667pt;}
.y922_c00001{bottom:387.746667pt;}
.y9be_c00001{bottom:387.773333pt;}
.y6e6_c00001{bottom:387.906667pt;}
.y220_c00001{bottom:388.066667pt;}
.y530_c00001{bottom:388.226667pt;}
.y556_c00001{bottom:388.546667pt;}
.y186_c00001{bottom:388.866667pt;}
.y40f_c00001{bottom:389.026667pt;}
.y818_c00001{bottom:389.346667pt;}
.y7a0_c00001{bottom:389.501333pt;}
.y1ba_c00001{bottom:389.506667pt;}
.y754_c00001{bottom:389.821333pt;}
.y24e_c00001{bottom:389.826667pt;}
.y7df_c00001{bottom:389.866667pt;}
.y7ca_c00001{bottom:389.986667pt;}
.y5e6_c00001{bottom:390.146667pt;}
.y3a2_c00001{bottom:390.306667pt;}
.y67c_c00001{bottom:390.786667pt;}
.y452_c00001{bottom:391.106667pt;}
.yb86_c00001{bottom:391.266667pt;}
.ya0_c00001{bottom:391.586667pt;}
.y2d6_c00001{bottom:391.906667pt;}
.y1a3_c00001{bottom:392.386667pt;}
.y82d_c00001{bottom:392.866667pt;}
.yef_c00001{bottom:393.186667pt;}
.y655_c00001{bottom:393.346667pt;}
.ya3e_c00001{bottom:393.986667pt;}
.yad5_c00001{bottom:394.493333pt;}
.y38b_c00001{bottom:394.626667pt;}
.y86e_c00001{bottom:394.653333pt;}
.y122_c00001{bottom:394.946667pt;}
.y989_c00001{bottom:394.986667pt;}
.y2a5_c00001{bottom:395.106667pt;}
.yb9a_c00001{bottom:395.293333pt;}
.y849_c00001{bottom:395.746667pt;}
.y976_c00001{bottom:395.946667pt;}
.y443_c00001{bottom:396.226667pt;}
.y93b_c00001{bottom:396.386667pt;}
.y4f3_c00001{bottom:396.546667pt;}
.y2fb_c00001{bottom:396.573333pt;}
.y205_c00001{bottom:397.186667pt;}
.y266_c00001{bottom:397.666667pt;}
.y2df_c00001{bottom:397.986667pt;}
.y99c_c00001{bottom:398.466667pt;}
.y991_c00001{bottom:398.786667pt;}
.y51c_c00001{bottom:398.946667pt;}
.y286_c00001{bottom:399.106667pt;}
.y150_c00001{bottom:399.266667pt;}
.y587_c00001{bottom:399.426667pt;}
.y49c_c00001{bottom:399.586667pt;}
.y8a7_c00001{bottom:399.901333pt;}
.y8c0_c00001{bottom:400.061333pt;}
.y60b_c00001{bottom:400.226667pt;}
.y80c_c00001{bottom:400.706667pt;}
.y60_c00001{bottom:400.866667pt;}
.y94b_c00001{bottom:401.021333pt;}
.y1df_c00001{bottom:401.026667pt;}
.y321_c00001{bottom:401.186667pt;}
.y888_c00001{bottom:401.346667pt;}
.yb01_c00001{bottom:401.373333pt;}
.y7ff_c00001{bottom:401.506667pt;}
.yaec_c00001{bottom:402.013333pt;}
.y71f_c00001{bottom:402.146667pt;}
.yab1_c00001{bottom:402.306667pt;}
.y110_c00001{bottom:402.626667pt;}
.y737_c00001{bottom:402.813333pt;}
.y83e_c00001{bottom:403.106667pt;}
.y164_c00001{bottom:403.426667pt;}
.yde_c00001{bottom:403.906667pt;}
.y76_c00001{bottom:404.066667pt;}
.y6c6_c00001{bottom:404.093333pt;}
.y708_c00001{bottom:404.226667pt;}
.y40e_c00001{bottom:404.386667pt;}
.y485_c00001{bottom:404.866667pt;}
.y52f_c00001{bottom:405.026667pt;}
.y93e_c00001{bottom:405.186667pt;}
.y555_c00001{bottom:405.346667pt;}
.y79f_c00001{bottom:405.661333pt;}
.y990_c00001{bottom:405.666667pt;}
.y753_c00001{bottom:405.981333pt;}
.y7b3_c00001{bottom:405.986667pt;}
.y7c9_c00001{bottom:406.026667pt;}
.y5cc_c00001{bottom:406.146667pt;}
.yb6d_c00001{bottom:406.626667pt;}
.y63a_c00001{bottom:406.946667pt;}
.ybd_c00001{bottom:407.266667pt;}
.y915_c00001{bottom:408.066667pt;}
.y9f_c00001{bottom:408.386667pt;}
.y45f_c00001{bottom:408.546667pt;}
.y3b0_c00001{bottom:408.706667pt;}
.y1a2_c00001{bottom:409.186667pt;}
.y3dd_c00001{bottom:409.666667pt;}
.yee_c00001{bottom:409.986667pt;}
.y697_c00001{bottom:410.306667pt;}
.y2c4_c00001{bottom:410.786667pt;}
.y59f_c00001{bottom:410.946667pt;}
.yad4_c00001{bottom:411.133333pt;}
.yb89_c00001{bottom:411.453333pt;}
.y38a_c00001{bottom:411.586667pt;}
.y45_c00001{bottom:411.746667pt;}
.y975_c00001{bottom:411.946667pt;}
.y857_c00001{bottom:412.546667pt;}
.y442_c00001{bottom:413.026667pt;}
.y2a4_c00001{bottom:413.186667pt;}
.y2fa_c00001{bottom:413.213333pt;}
.y417_c00001{bottom:413.346667pt;}
.y4f2_c00001{bottom:413.506667pt;}
.y265_c00001{bottom:414.626667pt;}
.y1b_c00001{bottom:414.786667pt;}
.yac1_c00001{bottom:414.946667pt;}
.y21f_c00001{bottom:415.586667pt;}
.y51b_c00001{bottom:415.746667pt;}
.y8a6_c00001{bottom:416.061333pt;}
.y14f_c00001{bottom:416.066667pt;}
.y185_c00001{bottom:416.386667pt;}
.yb4c_c00001{bottom:416.866667pt;}
.yb80_c00001{bottom:416.893333pt;}
.y8bf_c00001{bottom:417.021333pt;}
.y964_c00001{bottom:417.181333pt;}
.y1b9_c00001{bottom:417.186667pt;}
.y24d_c00001{bottom:417.346667pt;}
.y3fc_c00001{bottom:417.666667pt;}
.y10f_c00001{bottom:417.986667pt;}
.y94a_c00001{bottom:418.141333pt;}
.yafe_c00001{bottom:418.173333pt;}
.y7fe_c00001{bottom:418.466667pt;}
.y451_c00001{bottom:418.626667pt;}
.yb34_c00001{bottom:418.946667pt;}
.y80b_c00001{bottom:419.266667pt;}
.y2d5_c00001{bottom:419.426667pt;}
.y431_c00001{bottom:419.746667pt;}
.y83d_c00001{bottom:419.906667pt;}
.y71e_c00001{bottom:420.066667pt;}
.ydd_c00001{bottom:420.706667pt;}
.y6c5_c00001{bottom:420.893333pt;}
.y654_c00001{bottom:421.026667pt;}
.y707_c00001{bottom:421.186667pt;}
.y67b_c00001{bottom:421.506667pt;}
.y79e_c00001{bottom:421.661333pt;}
.ya3d_c00001{bottom:421.666667pt;}
.ya6d_c00001{bottom:421.826667pt;}
.y752_c00001{bottom:421.981333pt;}
.y7b2_c00001{bottom:421.986667pt;}
.y7de_c00001{bottom:422.026667pt;}
.y774_c00001{bottom:422.141333pt;}
.y749_c00001{bottom:422.146667pt;}
.y7c8_c00001{bottom:422.186667pt;}
.y554_c00001{bottom:422.306667pt;}
.y121_c00001{bottom:422.466667pt;}
.y6e5_c00001{bottom:422.626667pt;}
.y817_c00001{bottom:423.106667pt;}
.y5fe_c00001{bottom:423.266667pt;}
.yb6c_c00001{bottom:423.586667pt;}
.y672_c00001{bottom:423.746667pt;}
.y9b8_c00001{bottom:424.066667pt;}
.y639_c00001{bottom:424.226667pt;}
.y204_c00001{bottom:424.866667pt;}
.y497_c00001{bottom:425.026667pt;}
.y9e_c00001{bottom:425.186667pt;}
.ybc_c00001{bottom:425.346667pt;}
.y6a7_c00001{bottom:425.506667pt;}
.y2de_c00001{bottom:425.666667pt;}
.y40d_c00001{bottom:425.826667pt;}
.y1a1_c00001{bottom:426.146667pt;}
.y868_c00001{bottom:426.173333pt;}
.y285_c00001{bottom:426.626667pt;}
.yed_c00001{bottom:426.946667pt;}
.y5f_c00001{bottom:427.106667pt;}
.yb8d_c00001{bottom:427.453333pt;}
.y60a_c00001{bottom:427.906667pt;}
.yad1_c00001{bottom:427.933333pt;}
.y974_c00001{bottom:428.106667pt;}
.y389_c00001{bottom:428.386667pt;}
.y366_c00001{bottom:428.706667pt;}
.y887_c00001{bottom:429.026667pt;}
.yb55_c00001{bottom:429.373333pt;}
.y441_c00001{bottom:429.986667pt;}
.y2f9_c00001{bottom:430.013333pt;}
.y137_c00001{bottom:430.146667pt;}
.y4f1_c00001{bottom:430.306667pt;}
.y52e_c00001{bottom:430.786667pt;}
.y163_c00001{bottom:430.946667pt;}
.y264_c00001{bottom:431.426667pt;}
.y2a3_c00001{bottom:431.586667pt;}
.y75_c00001{bottom:431.746667pt;}
.y484_c00001{bottom:432.546667pt;}
.y14e_c00001{bottom:433.026667pt;}
.y8a5_c00001{bottom:433.181333pt;}
.y10e_c00001{bottom:433.186667pt;}
.y674_c00001{bottom:433.346667pt;}
.y9af_c00001{bottom:433.666667pt;}
.y949_c00001{bottom:434.141333pt;}
.y663_c00001{bottom:434.146667pt;}
.y3fb_c00001{bottom:434.466667pt;}
.y629_c00001{bottom:434.786667pt;}
.y430_c00001{bottom:434.946667pt;}
.yaeb_c00001{bottom:434.973333pt;}
.y7fd_c00001{bottom:435.266667pt;}
.y914_c00001{bottom:435.586667pt;}
.y736_c00001{bottom:435.613333pt;}
.y40c_c00001{bottom:435.746667pt;}
.y3a1_c00001{bottom:436.066667pt;}
.y3af_c00001{bottom:436.386667pt;}
.y5cb_c00001{bottom:436.866667pt;}
.y71d_c00001{bottom:437.026667pt;}
.y903_c00001{bottom:437.186667pt;}
.yb33_c00001{bottom:437.506667pt;}
.ydc_c00001{bottom:437.666667pt;}
.y6bf_c00001{bottom:437.693333pt;}
.y696_c00001{bottom:437.826667pt;}
.y586_c00001{bottom:437.986667pt;}
.y751_c00001{bottom:438.141333pt;}
.y7b1_c00001{bottom:438.146667pt;}
.y773_c00001{bottom:438.181333pt;}
.y7c7_c00001{bottom:438.186667pt;}
.y2c3_c00001{bottom:438.466667pt;}
.y59e_c00001{bottom:438.626667pt;}
.y92b_c00001{bottom:438.946667pt;}
.y553_c00001{bottom:439.106667pt;}
.y44_c00001{bottom:439.426667pt;}
.y6e4_c00001{bottom:439.586667pt;}
.y572_c00001{bottom:439.906667pt;}
.y856_c00001{bottom:440.226667pt;}
.y64f_c00001{bottom:440.386667pt;}
.y685_c00001{bottom:440.546667pt;}
.y671_c00001{bottom:440.706667pt;}
.y6a6_c00001{bottom:440.866667pt;}
.y496_c00001{bottom:441.826667pt;}
.y9d_c00001{bottom:442.146667pt;}
.y1a_c00001{bottom:442.466667pt;}
.y184_c00001{bottom:442.946667pt;}
.y21e_c00001{bottom:443.266667pt;}
.y82c_c00001{bottom:443.426667pt;}
.yec_c00001{bottom:443.746667pt;}
.y5e5_c00001{bottom:444.066667pt;}
.y988_c00001{bottom:444.266667pt;}
.yb4b_c00001{bottom:444.546667pt;}
.y1b8_c00001{bottom:444.706667pt;}
.yad3_c00001{bottom:444.733333pt;}
.y24c_c00001{bottom:445.026667pt;}
.y973_c00001{bottom:445.226667pt;}
.y388_c00001{bottom:445.346667pt;}
.y616_c00001{bottom:445.506667pt;}
.yb54_c00001{bottom:446.173333pt;}
.y450_c00001{bottom:446.306667pt;}
.y1de_c00001{bottom:446.786667pt;}
.y2f8_c00001{bottom:446.813333pt;}
.y2d4_c00001{bottom:447.106667pt;}
.y8e2_c00001{bottom:447.266667pt;}
.y263_c00001{bottom:448.386667pt;}
.y10d_c00001{bottom:448.546667pt;}
.y921_c00001{bottom:449.026667pt;}
.ya3c_c00001{bottom:449.186667pt;}
.y8a4_c00001{bottom:449.381333pt;}
.y51a_c00001{bottom:449.506667pt;}
.y14d_c00001{bottom:449.826667pt;}
.y120_c00001{bottom:450.146667pt;}
.y2a2_c00001{bottom:450.306667pt;}
.y948_c00001{bottom:450.341333pt;}
.y848_c00001{bottom:450.946667pt;}
.y662_c00001{bottom:451.106667pt;}
.y3fa_c00001{bottom:451.426667pt;}
.y9b7_c00001{bottom:451.586667pt;}
.yaea_c00001{bottom:451.773333pt;}
.yb19_c00001{bottom:452.093333pt;}
.y67a_c00001{bottom:452.226667pt;}
.y203_c00001{bottom:452.386667pt;}
.yb15_c00001{bottom:452.413333pt;}
.y3a0_c00001{bottom:452.866667pt;}
.y9bc_c00001{bottom:452.893333pt;}
.y34f_c00001{bottom:453.186667pt;}
.y83c_c00001{bottom:453.666667pt;}
.y284_c00001{bottom:454.146667pt;}
.y750_c00001{bottom:454.181333pt;}
.y6c2_c00001{bottom:454.333333pt;}
.y772_c00001{bottom:454.341333pt;}
.y7c6_c00001{bottom:454.346667pt;}
.ydb_c00001{bottom:454.466667pt;}
.yb7d_c00001{bottom:454.653333pt;}
.y5e_c00001{bottom:454.786667pt;}
.y902_c00001{bottom:455.266667pt;}
.y609_c00001{bottom:455.426667pt;}
.yb32_c00001{bottom:455.586667pt;}
.y552_c00001{bottom:456.066667pt;}
.y365_c00001{bottom:456.226667pt;}
.y6e3_c00001{bottom:456.386667pt;}
.y886_c00001{bottom:456.546667pt;}
.y816_c00001{bottom:456.706667pt;}
.yb6b_c00001{bottom:457.186667pt;}
.y52d_c00001{bottom:457.346667pt;}
.y162_c00001{bottom:457.506667pt;}
.y136_c00001{bottom:457.826667pt;}
.y466_c00001{bottom:458.626667pt;}
.y9c_c00001{bottom:458.946667pt;}
.ybb_c00001{bottom:459.106667pt;}
.yb93_c00001{bottom:459.133333pt;}
.y74_c00001{bottom:459.266667pt;}
.y86d_c00001{bottom:459.773333pt;}
.y183_c00001{bottom:459.906667pt;}
.y483_c00001{bottom:460.066667pt;}
.y7d8_c00001{bottom:460.413333pt;}
.yeb_c00001{bottom:460.546667pt;}
.y98f_c00001{bottom:460.866667pt;}
.y972_c00001{bottom:461.386667pt;}
.yad0_c00001{bottom:461.533333pt;}
.y9ae_c00001{bottom:461.666667pt;}
.y387_c00001{bottom:462.146667pt;}
.y1dd_c00001{bottom:462.306667pt;}
.y628_c00001{bottom:462.466667pt;}
.ya18_c00001{bottom:462.626667pt;}
.yb53_c00001{bottom:462.973333pt;}
.y2f7_c00001{bottom:463.613333pt;}
.y440_c00001{bottom:463.746667pt;}
.y10c_c00001{bottom:463.906667pt;}
.y4f0_c00001{bottom:464.066667pt;}
.y262_c00001{bottom:465.186667pt;}
.y88f_c00001{bottom:465.506667pt;}
.y42f_c00001{bottom:465.666667pt;}
.y2c2_c00001{bottom:465.986667pt;}
.y59d_c00001{bottom:466.146667pt;}
.y519_c00001{bottom:466.306667pt;}
.y8a3_c00001{bottom:466.341333pt;}
.y947_c00001{bottom:466.501333pt;}
.y14c_c00001{bottom:466.786667pt;}
.y43_c00001{bottom:466.946667pt;}
.y5ca_c00001{bottom:467.426667pt;}
.y855_c00001{bottom:467.746667pt;}
.y661_c00001{bottom:467.906667pt;}
.y3f9_c00001{bottom:468.226667pt;}
.y612_c00001{bottom:468.386667pt;}
.yae9_c00001{bottom:468.413333pt;}
.y638_c00001{bottom:468.546667pt;}
.y735_c00001{bottom:468.573333pt;}
.y2a1_c00001{bottom:468.706667pt;}
.y7fc_c00001{bottom:469.026667pt;}
.y39f_c00001{bottom:469.826667pt;}
.y19_c00001{bottom:469.986667pt;}
.y74f_c00001{bottom:470.341333pt;}
.y571_c00001{bottom:470.466667pt;}
.y7c5_c00001{bottom:470.506667pt;}
.y83b_c00001{bottom:470.626667pt;}
.y21d_c00001{bottom:470.786667pt;}
.yb14_c00001{bottom:470.813333pt;}
.y6b8_c00001{bottom:471.133333pt;}
.y343_c00001{bottom:471.266667pt;}
.y5e4_c00001{bottom:471.586667pt;}
.y706_c00001{bottom:471.746667pt;}
.y901_c00001{bottom:472.066667pt;}
.y1b7_c00001{bottom:472.386667pt;}
.y24b_c00001{bottom:472.546667pt;}
.y551_c00001{bottom:472.866667pt;}
.y615_c00001{bottom:473.186667pt;}
.y89a_c00001{bottom:473.666667pt;}
.y44f_c00001{bottom:473.853333pt;}
.y64e_c00001{bottom:474.173333pt;}
.y161_c00001{bottom:474.493333pt;}
.y2d3_c00001{bottom:474.653333pt;}
.yb96_c00001{bottom:475.133333pt;}
.yb1f_c00001{bottom:475.293333pt;}
.y92a_c00001{bottom:475.613333pt;}
.y9b_c00001{bottom:475.933333pt;}
.y653_c00001{bottom:476.253333pt;}
.y7d3_c00001{bottom:476.413333pt;}
.y182_c00001{bottom:476.733333pt;}
.ya3b_c00001{bottom:476.893333pt;}
.y6ad_c00001{bottom:477.373333pt;}
.y987_c00001{bottom:477.386667pt;}
.yea_c00001{bottom:477.533333pt;}
.y11f_c00001{bottom:477.693333pt;}
.yacf_c00001{bottom:478.173333pt;}
.y971_c00001{bottom:478.346667pt;}
.y611_c00001{bottom:478.493333pt;}
.y386_c00001{bottom:478.973333pt;}
.y10b_c00001{bottom:479.293333pt;}
.yb52_c00001{bottom:479.613333pt;}
.y920_c00001{bottom:479.773333pt;}
.y202_c00001{bottom:480.093333pt;}
.y2f6_c00001{bottom:480.413333pt;}
.y43f_c00001{bottom:480.573333pt;}
.yda_c00001{bottom:480.733333pt;}
.y4ef_c00001{bottom:480.893333pt;}
.y42e_c00001{bottom:481.053333pt;}
.y815_c00001{bottom:481.693333pt;}
.y283_c00001{bottom:481.853333pt;}
.y261_c00001{bottom:482.013333pt;}
.y5d_c00001{bottom:482.333333pt;}
.y679_c00001{bottom:482.813333pt;}
.y608_c00001{bottom:483.133333pt;}
.y518_c00001{bottom:483.293333pt;}
.y946_c00001{bottom:483.461333pt;}
.y14b_c00001{bottom:483.613333pt;}
.y52c_c00001{bottom:483.773333pt;}
.y364_c00001{bottom:483.933333pt;}
.y885_c00001{bottom:484.253333pt;}
.y827_c00001{bottom:484.413333pt;}
.y660_c00001{bottom:484.893333pt;}
.y3f8_c00001{bottom:485.213333pt;}
.y135_c00001{bottom:485.373333pt;}
.y7fb_c00001{bottom:485.853333pt;}
.y74e_c00001{bottom:486.501333pt;}
.y7c4_c00001{bottom:486.506667pt;}
.y39e_c00001{bottom:486.653333pt;}
.y73_c00001{bottom:486.973333pt;}
.y2a0_c00001{bottom:487.133333pt;}
.y83a_c00001{bottom:487.453333pt;}
.y482_c00001{bottom:487.773333pt;}
.y6be_c00001{bottom:487.933333pt;}
.y18_c00001{bottom:488.253333pt;}
.y98e_c00001{bottom:488.413333pt;}
.y705_c00001{bottom:488.573333pt;}
.ya16_c00001{bottom:489.026667pt;}
.y900_c00001{bottom:489.053333pt;}
.y550_c00001{bottom:489.693333pt;}
.y627_c00001{bottom:490.013333pt;}
.y6e2_c00001{bottom:490.173333pt;}
.y899_c00001{bottom:490.493333pt;}
.y64d_c00001{bottom:490.973333pt;}
.y160_c00001{bottom:491.293333pt;}
.y3ae_c00001{bottom:491.613333pt;}
.yb7c_c00001{bottom:492.573333pt;}
.y9a_c00001{bottom:492.733333pt;}
.yba_c00001{bottom:492.893333pt;}
.y1dc_c00001{bottom:493.053333pt;}
.y181_c00001{bottom:493.533333pt;}
.yb1e_c00001{bottom:493.693333pt;}
.y59c_c00001{bottom:493.853333pt;}
.ye9_c00001{bottom:494.333333pt;}
.y970_c00001{bottom:494.506667pt;}
.y42_c00001{bottom:494.653333pt;}
.yace_c00001{bottom:494.973333pt;}
.y854_c00001{bottom:495.453333pt;}
.y385_c00001{bottom:495.933333pt;}
.y637_c00001{bottom:496.093333pt;}
.y42d_c00001{bottom:496.413333pt;}
.y9ad_c00001{bottom:496.733333pt;}
.y2f5_c00001{bottom:497.053333pt;}
.y9ba_c00001{bottom:497.213333pt;}
.y43e_c00001{bottom:497.373333pt;}
.y1c8_c00001{bottom:497.693333pt;}
.y5c9_c00001{bottom:498.173333pt;}
.y21c_c00001{bottom:498.493333pt;}
.y1b6_c00001{bottom:498.973333pt;}
.y5e3_c00001{bottom:499.133333pt;}
.yac6_c00001{bottom:499.293333pt;}
.y517_c00001{bottom:499.773333pt;}
.y828_c00001{bottom:499.933333pt;}
.y561_c00001{bottom:500.093333pt;}
.y24a_c00001{bottom:500.253333pt;}
.y14a_c00001{bottom:500.413333pt;}
.y614_c00001{bottom:500.733333pt;}
.y570_c00001{bottom:501.213333pt;}
.y734_c00001{bottom:501.373333pt;}
.y44e_c00001{bottom:501.533333pt;}
.y65f_c00001{bottom:501.693333pt;}
.y3f7_c00001{bottom:502.013333pt;}
.y2d2_c00001{bottom:502.333333pt;}
.y5f9_c00001{bottom:502.493333pt;}
.y7d7_c00001{bottom:502.501333pt;}
.y7dd_c00001{bottom:502.506667pt;}
.yb13_c00001{bottom:502.653333pt;}
.y771_c00001{bottom:502.661333pt;}
.y7c3_c00001{bottom:502.666667pt;}
.y7fa_c00001{bottom:502.813333pt;}
.y336_c00001{bottom:503.613333pt;}
.y652_c00001{bottom:503.773333pt;}
.y839_c00001{bottom:504.253333pt;}
.ya3a_c00001{bottom:504.413333pt;}
.y6bd_c00001{bottom:504.733333pt;}
.ya15_c00001{bottom:505.026667pt;}
.y17_c00001{bottom:505.053333pt;}
.y11e_c00001{bottom:505.373333pt;}
.y29f_c00001{bottom:505.533333pt;}
.y8ff_c00001{bottom:505.853333pt;}
.y847_c00001{bottom:506.173333pt;}
.y54f_c00001{bottom:506.653333pt;}
.y863_c00001{bottom:506.813333pt;}
.y6e1_c00001{bottom:507.133333pt;}
.y585_c00001{bottom:507.293333pt;}
.y201_c00001{bottom:507.613333pt;}
.y64c_c00001{bottom:507.773333pt;}
.y15f_c00001{bottom:508.093333pt;}
.y9cc_c00001{bottom:508.253333pt;}
.yd9_c00001{bottom:508.413333pt;}
.y7ec_c00001{bottom:508.733333pt;}
.yb31_c00001{bottom:508.893333pt;}
.y282_c00001{bottom:509.373333pt;}
.y99_c00001{bottom:509.533333pt;}
.yb9_c00001{bottom:509.693333pt;}
.y10a_c00001{bottom:509.853333pt;}
.y5c_c00001{bottom:510.013333pt;}
.y52b_c00001{bottom:510.173333pt;}
.y180_c00001{bottom:510.493333pt;}
.y607_c00001{bottom:510.653333pt;}
.ye8_c00001{bottom:511.293333pt;}
.y363_c00001{bottom:511.453333pt;}
.y42c_c00001{bottom:511.773333pt;}
.y929_c00001{bottom:512.413333pt;}
.y384_c00001{bottom:512.733333pt;}
.y134_c00001{bottom:513.053333pt;}
.yb51_c00001{bottom:513.213333pt;}
.y678_c00001{bottom:513.533333pt;}
.y2f4_c00001{bottom:513.853333pt;}
.y43d_c00001{bottom:514.333333pt;}
.y72_c00001{bottom:514.493333pt;}
.y4ee_c00001{bottom:514.653333pt;}
.y481_c00001{bottom:515.293333pt;}
.y1b5_c00001{bottom:515.773333pt;}
.y98d_c00001{bottom:516.093333pt;}
.y516_c00001{bottom:516.573333pt;}
.y560_c00001{bottom:516.893333pt;}
.yb18_c00001{bottom:517.213333pt;}
.y149_c00001{bottom:517.373333pt;}
.y626_c00001{bottom:517.533333pt;}
.yac5_c00001{bottom:517.693333pt;}
.y826_c00001{bottom:518.173333pt;}
.y770_c00001{bottom:518.661333pt;}
.y7c2_c00001{bottom:518.666667pt;}
.y3f6_c00001{bottom:518.813333pt;}
.y3ad_c00001{bottom:519.133333pt;}
.ya47_c00001{bottom:519.453333pt;}
.y7f9_c00001{bottom:519.613333pt;}
.y2c1_c00001{bottom:520.093333pt;}
.y335_c00001{bottom:520.413333pt;}
.y88e_c00001{bottom:520.733333pt;}
.ya14_c00001{bottom:521.186667pt;}
.y838_c00001{bottom:521.213333pt;}
.y59b_c00001{bottom:521.373333pt;}
.y16_c00001{bottom:522.013333pt;}
.y41_c00001{bottom:522.173333pt;}
.y5b6_c00001{bottom:522.333333pt;}
.y853_c00001{bottom:522.973333pt;}
.y54e_c00001{bottom:523.453333pt;}
.y6a5_c00001{bottom:523.613333pt;}
.y1db_c00001{bottom:523.773333pt;}
.y29e_c00001{bottom:523.933333pt;}
.y64b_c00001{bottom:524.733333pt;}
.y6e0_c00001{bottom:524.893333pt;}
.y15e_c00001{bottom:525.053333pt;}
.y109_c00001{bottom:525.213333pt;}
.yb30_c00001{bottom:525.693333pt;}
.y21b_c00001{bottom:526.013333pt;}
.y98_c00001{bottom:526.493333pt;}
.y5e2_c00001{bottom:526.813333pt;}
.y42b_c00001{bottom:526.973333pt;}
.y17f_c00001{bottom:527.293333pt;}
.y249_c00001{bottom:527.773333pt;}
.ye7_c00001{bottom:528.093333pt;}
.y613_c00001{bottom:528.413333pt;}
.y5c8_c00001{bottom:528.893333pt;}
.y807_c00001{bottom:529.053333pt;}
.y80a_c00001{bottom:529.533333pt;}
.y383_c00001{bottom:529.693333pt;}
.y2d1_c00001{bottom:529.853333pt;}
.yb50_c00001{bottom:530.013333pt;}
.y9ac_c00001{bottom:530.333333pt;}
.y2f2_c00001{bottom:530.653333pt;}
.y43c_c00001{bottom:531.133333pt;}
.y651_c00001{bottom:531.453333pt;}
.y4ed_c00001{bottom:531.613333pt;}
.y56f_c00001{bottom:531.933333pt;}
.ya39_c00001{bottom:532.093333pt;}
.y8fe_c00001{bottom:532.253333pt;}
.y1b4_c00001{bottom:532.733333pt;}
.y11d_c00001{bottom:532.893333pt;}
.y5a9_c00001{bottom:533.053333pt;}
.y6a4_c00001{bottom:533.693333pt;}
.y515_c00001{bottom:533.853333pt;}
.y148_c00001{bottom:534.173333pt;}
.y733_c00001{bottom:534.333333pt;}
.y862_c00001{bottom:534.493333pt;}
.yaf7_c00001{bottom:534.813333pt;}
.y76f_c00001{bottom:534.821333pt;}
.y7c1_c00001{bottom:534.826667pt;}
.y825_c00001{bottom:534.973333pt;}
.y200_c00001{bottom:535.293333pt;}
.yae8_c00001{bottom:535.613333pt;}
.y3f5_c00001{bottom:535.773333pt;}
.yd8_c00001{bottom:535.933333pt;}
.y52a_c00001{bottom:536.573333pt;}
.y281_c00001{bottom:537.053333pt;}
.ya13_c00001{bottom:537.186667pt;}
.y334_c00001{bottom:537.213333pt;}
.y5b_c00001{bottom:537.533333pt;}
.y584_c00001{bottom:538.013333pt;}
.y6b2_c00001{bottom:538.173333pt;}
.y606_c00001{bottom:538.333333pt;}
.y15_c00001{bottom:538.813333pt;}
.y1da_c00001{bottom:539.133333pt;}
.y884_c00001{bottom:539.453333pt;}
.yb91_c00001{bottom:540.253333pt;}
.y54d_c00001{bottom:540.413333pt;}
.y108_c00001{bottom:540.573333pt;}
.y77d_c00001{bottom:540.893333pt;}
.y91f_c00001{bottom:541.053333pt;}
.y64a_c00001{bottom:541.533333pt;}
.y15d_c00001{bottom:541.853333pt;}
.y71_c00001{bottom:542.173333pt;}
.y29d_c00001{bottom:542.333333pt;}
.y480_c00001{bottom:542.973333pt;}
.y9bb_c00001{bottom:543.133333pt;}
.yb8_c00001{bottom:543.453333pt;}
.y98c_c00001{bottom:543.613333pt;}
.y677_c00001{bottom:544.093333pt;}
.y17e_c00001{bottom:544.253333pt;}
.y898_c00001{bottom:544.413333pt;}
.y82b_c00001{bottom:544.573333pt;}
.ye6_c00001{bottom:544.893333pt;}
.y625_c00001{bottom:545.213333pt;}
.y2c0_c00001{bottom:546.173333pt;}
.yb65_c00001{bottom:546.333333pt;}
.y382_c00001{bottom:546.493333pt;}
.y865_c00001{bottom:546.813333pt;}
.y9ab_c00001{bottom:547.293333pt;}
.y320_c00001{bottom:547.453333pt;}
.y43b_c00001{bottom:548.093333pt;}
.y88d_c00001{bottom:548.253333pt;}
.y42a_c00001{bottom:548.413333pt;}
.y59a_c00001{bottom:549.053333pt;}
.y1b3_c00001{bottom:549.533333pt;}
.y40_c00001{bottom:549.853333pt;}
.y514_c00001{bottom:550.653333pt;}
.y76e_c00001{bottom:550.821333pt;}
.y147_c00001{bottom:551.133333pt;}
.y636_c00001{bottom:551.293333pt;}
.yafc_c00001{bottom:551.613333pt;}
.y824_c00001{bottom:551.933333pt;}
.yade_c00001{bottom:552.253333pt;}
.y3f4_c00001{bottom:552.573333pt;}
.y97_c00001{bottom:552.733333pt;}
.y5ae_c00001{bottom:552.893333pt;}
.ya12_c00001{bottom:553.346667pt;}
.yb2f_c00001{bottom:553.373333pt;}
.y21a_c00001{bottom:553.693333pt;}
.y333_c00001{bottom:554.173333pt;}
.y1d9_c00001{bottom:554.333333pt;}
.y837_c00001{bottom:554.973333pt;}
.y14_c00001{bottom:555.613333pt;}
.y107_c00001{bottom:555.933333pt;}
.y704_c00001{bottom:556.093333pt;}
.y867_c00001{bottom:556.293333pt;}
.y806_c00001{bottom:556.733333pt;}
.y798_c00001{bottom:557.093333pt;}
.y54c_c00001{bottom:557.213333pt;}
.y874_c00001{bottom:557.253333pt;}
.y2d0_c00001{bottom:557.533333pt;}
.y429_c00001{bottom:558.493333pt;}
.y6df_c00001{bottom:558.653333pt;}
.y15c_c00001{bottom:558.813333pt;}
.y650_c00001{bottom:558.973333pt;}
.y5c7_c00001{bottom:559.453333pt;}
.ya38_c00001{bottom:559.613333pt;}
.y8fd_c00001{bottom:559.773333pt;}
.y70_c00001{bottom:560.253333pt;}
.y684_c00001{bottom:560.413333pt;}
.y11c_c00001{bottom:560.573333pt;}
.y29c_c00001{bottom:560.733333pt;}
.y17d_c00001{bottom:561.053333pt;}
.ye5_c00001{bottom:561.853333pt;}
.y861_c00001{bottom:562.013333pt;}
.y56e_c00001{bottom:562.493333pt;}
.y1ff_c00001{bottom:562.813333pt;}
.y2bf_c00001{bottom:562.973333pt;}
.yb64_c00001{bottom:563.133333pt;}
.y381_c00001{bottom:563.293333pt;}
.y2f1_c00001{bottom:563.493333pt;}
.yd7_c00001{bottom:563.613333pt;}
.y9aa_c00001{bottom:564.093333pt;}
.yaca_c00001{bottom:564.293333pt;}
.y280_c00001{bottom:564.573333pt;}
.y43a_c00001{bottom:564.893333pt;}
.y5a_c00001{bottom:565.213333pt;}
.y605_c00001{bottom:565.853333pt;}
.y1b2_c00001{bottom:566.493333pt;}
.y362_c00001{bottom:566.653333pt;}
.y883_c00001{bottom:566.973333pt;}
.y76d_c00001{bottom:566.981333pt;}
.y732_c00001{bottom:567.173333pt;}
.y513_c00001{bottom:567.613333pt;}
.y146_c00001{bottom:567.933333pt;}
.y133_c00001{bottom:568.253333pt;}
.yafb_c00001{bottom:568.453333pt;}
.y583_c00001{bottom:568.733333pt;}
.yae7_c00001{bottom:569.093333pt;}
.ya11_c00001{bottom:569.506667pt;}
.y3f3_c00001{bottom:569.533333pt;}
.y241_c00001{bottom:569.693333pt;}
.y47f_c00001{bottom:570.493333pt;}
.y332_c00001{bottom:570.973333pt;}
.y6b6_c00001{bottom:571.173333pt;}
.y106_c00001{bottom:571.293333pt;}
.y836_c00001{bottom:571.773333pt;}
.y897_c00001{bottom:572.093333pt;}
.y873_c00001{bottom:572.453333pt;}
.y13_c00001{bottom:572.573333pt;}
.y624_c00001{bottom:572.733333pt;}
.y703_c00001{bottom:572.893333pt;}
.yb92_c00001{bottom:573.093333pt;}
.y54b_c00001{bottom:574.013333pt;}
.y864_c00001{bottom:574.333333pt;}
.y6de_c00001{bottom:575.453333pt;}
.y649_c00001{bottom:575.613333pt;}
.y88c_c00001{bottom:575.933333pt;}
.y599_c00001{bottom:576.573333pt;}
.y6f_c00001{bottom:577.213333pt;}
.y3f_c00001{bottom:577.373333pt;}
.y1d8_c00001{bottom:577.693333pt;}
.y17c_c00001{bottom:577.853333pt;}
.y852_c00001{bottom:578.173333pt;}
.y44d_c00001{bottom:578.653333pt;}
.y635_c00001{bottom:578.973333pt;}
.y29b_c00001{bottom:579.133333pt;}
.y2be_c00001{bottom:579.933333pt;}
.y315_c00001{bottom:580.253333pt;}
.y2f0_c00001{bottom:580.293333pt;}
.y96_c00001{bottom:580.413333pt;}
.yb2e_c00001{bottom:580.893333pt;}
.y9a9_c00001{bottom:581.053333pt;}
.y219_c00001{bottom:581.213333pt;}
.y439_c00001{bottom:581.693333pt;}
.y5e1_c00001{bottom:582.013333pt;}
.y4ec_c00001{bottom:582.173333pt;}
.y1b1_c00001{bottom:583.293333pt;}
.y3ee_c00001{bottom:583.613333pt;}
.y805_c00001{bottom:584.253333pt;}
.y512_c00001{bottom:584.413333pt;}
.y145_c00001{bottom:584.893333pt;}
.y15b_c00001{bottom:585.053333pt;}
.yaf6_c00001{bottom:585.253333pt;}
.ya10_c00001{bottom:585.506667pt;}
.y823_c00001{bottom:585.533333pt;}
.y7e8_c00001{bottom:585.573333pt;}
.yae6_c00001{bottom:585.893333pt;}
.y465_c00001{bottom:586.333333pt;}
.y105_c00001{bottom:586.653333pt;}
.y8fc_c00001{bottom:587.293333pt;}
.y350_c00001{bottom:587.773333pt;}
.y6b5_c00001{bottom:587.813333pt;}
.y331_c00001{bottom:587.933333pt;}
.ye4_c00001{bottom:588.093333pt;}
.y47e_c00001{bottom:588.573333pt;}
.yb95_c00001{bottom:588.613333pt;}
.y1d7_c00001{bottom:588.893333pt;}
.y12_c00001{bottom:589.373333pt;}
.y860_c00001{bottom:589.693333pt;}
.y702_c00001{bottom:589.853333pt;}
.yaac_c00001{bottom:590.173333pt;}
.y1fe_c00001{bottom:590.493333pt;}
.y54a_c00001{bottom:590.973333pt;}
.yd6_c00001{bottom:591.133333pt;}
.y27f_c00001{bottom:592.253333pt;}
.y648_c00001{bottom:592.413333pt;}
.y59_c00001{bottom:592.733333pt;}
.y56d_c00001{bottom:593.213333pt;}
.y604_c00001{bottom:593.533333pt;}
.y8a2_c00001{bottom:593.893333pt;}
.y6e_c00001{bottom:594.013333pt;}
.ya37_c00001{bottom:594.173333pt;}
.y361_c00001{bottom:594.333333pt;}
.y882_c00001{bottom:594.653333pt;}
.y1a0_c00001{bottom:594.813333pt;}
.y44c_c00001{bottom:595.613333pt;}
.y132_c00001{bottom:595.773333pt;}
.yb4a_c00001{bottom:595.933333pt;}
.y2bd_c00001{bottom:596.733333pt;}
.y380_c00001{bottom:597.053333pt;}
.y2ef_c00001{bottom:597.093333pt;}
.y240_c00001{bottom:597.373333pt;}
.y29a_c00001{bottom:597.533333pt;}
.y9a8_c00001{bottom:597.853333pt;}
.y913_c00001{bottom:598.333333pt;}
.y438_c00001{bottom:598.653333pt;}
.y90b_c00001{bottom:598.813333pt;}
.y30e_c00001{bottom:598.853333pt;}
.y4eb_c00001{bottom:598.973333pt;}
.y582_c00001{bottom:599.293333pt;}
.y896_c00001{bottom:599.613333pt;}
.y731_c00001{bottom:599.973333pt;}
.y1b0_c00001{bottom:600.093333pt;}
.y428_c00001{bottom:600.413333pt;}
.y9ea_c00001{bottom:600.733333pt;}
.y511_c00001{bottom:601.373333pt;}
.ya0f_c00001{bottom:601.666667pt;}
.y144_c00001{bottom:601.693333pt;}
.y104_c00001{bottom:601.853333pt;}
.y68c_c00001{bottom:602.013333pt;}
.yaf5_c00001{bottom:602.053333pt;}
.y822_c00001{bottom:602.493333pt;}
.y65e_c00001{bottom:602.973333pt;}
.y464_c00001{bottom:603.293333pt;}
.yb7_c00001{bottom:603.453333pt;}
.y7e7_c00001{bottom:603.973333pt;}
.y17b_c00001{bottom:604.253333pt;}
.y6b1_c00001{bottom:604.613333pt;}
.y330_c00001{bottom:604.733333pt;}
.y3e_c00001{bottom:605.053333pt;}
.y47d_c00001{bottom:605.213333pt;}
.y7af_c00001{bottom:605.253333pt;}
.y835_c00001{bottom:605.533333pt;}
.y71c_c00001{bottom:605.693333pt;}
.y80e_c00001{bottom:606.173333pt;}
.y634_c00001{bottom:606.493333pt;}
.y701_c00001{bottom:606.653333pt;}
.y549_c00001{bottom:607.773333pt;}
.y95_c00001{bottom:607.933333pt;}
.y5ad_c00001{bottom:608.093333pt;}
.yb2d_c00001{bottom:608.573333pt;}
.y218_c00001{bottom:608.893333pt;}
.y647_c00001{bottom:609.373333pt;}
.y5e0_c00001{bottom:609.533333pt;}
.y6dd_c00001{bottom:610.333333pt;}
.y6d_c00001{bottom:610.813333pt;}
.y3ed_c00001{bottom:611.133333pt;}
.y19f_c00001{bottom:611.613333pt;}
.y804_c00001{bottom:611.933333pt;}
.y944_c00001{bottom:612.293333pt;}
.y3c2_c00001{bottom:612.413333pt;}
.y15a_c00001{bottom:612.733333pt;}
.y2bc_c00001{bottom:613.693333pt;}
.yb49_c00001{bottom:613.853333pt;}
.y2ed_c00001{bottom:613.893333pt;}
.y37f_c00001{bottom:614.013333pt;}
.y5a6_c00001{bottom:614.173333pt;}
.y74c_c00001{bottom:614.533333pt;}
.y9a7_c00001{bottom:614.653333pt;}
.y8fb_c00001{bottom:614.973333pt;}
.y912_c00001{bottom:615.133333pt;}
.ya36_c00001{bottom:615.293333pt;}
.y437_c00001{bottom:615.453333pt;}
.y11_c00001{bottom:615.773333pt;}
.y299_c00001{bottom:615.933333pt;}
.y1af_c00001{bottom:617.053333pt;}
.y103_c00001{bottom:617.213333pt;}
.y30d_c00001{bottom:617.253333pt;}
.ya0e_c00001{bottom:617.826667pt;}
.y510_c00001{bottom:617.853333pt;}
.y1fd_c00001{bottom:618.013333pt;}
.y55f_c00001{bottom:618.173333pt;}
.y143_c00001{bottom:618.493333pt;}
.yae5_c00001{bottom:618.693333pt;}
.yd5_c00001{bottom:618.813333pt;}
.y821_c00001{bottom:619.293333pt;}
.y27e_c00001{bottom:619.773333pt;}
.y463_c00001{bottom:620.093333pt;}
.y58_c00001{bottom:620.413333pt;}
.y6b0_c00001{bottom:621.413333pt;}
.y39d_c00001{bottom:621.693333pt;}
.y360_c00001{bottom:621.853333pt;}
.y881_c00001{bottom:622.173333pt;}
.y47c_c00001{bottom:622.333333pt;}
.y7e6_c00001{bottom:622.373333pt;}
.y71b_c00001{bottom:622.493333pt;}
.y131_c00001{bottom:623.453333pt;}
.y700_c00001{bottom:623.613333pt;}
.y56c_c00001{bottom:623.933333pt;}
.y548_c00001{bottom:624.733333pt;}
.y23f_c00001{bottom:624.893333pt;}
.y646_c00001{bottom:626.173333pt;}
.y90a_c00001{bottom:626.493333pt;}
.y6dc_c00001{bottom:627.133333pt;}
.y895_c00001{bottom:627.293333pt;}
.y6c_c00001{bottom:627.773333pt;}
.y427_c00001{bottom:627.933333pt;}
.y19e_c00001{bottom:628.573333pt;}
.y3c1_c00001{bottom:629.213333pt;}
.y68b_c00001{bottom:629.533333pt;}
.y581_c00001{bottom:630.013333pt;}
.y2bb_c00001{bottom:630.493333pt;}
.y2eb_c00001{bottom:630.533333pt;}
.yb48_c00001{bottom:630.653333pt;}
.y37e_c00001{bottom:630.813333pt;}
.yb6_c00001{bottom:631.133333pt;}
.y9a6_c00001{bottom:631.613333pt;}
.y17a_c00001{bottom:631.773333pt;}
.y911_c00001{bottom:631.933333pt;}
.y436_c00001{bottom:632.413333pt;}
.y3d_c00001{bottom:632.573333pt;}
.y730_c00001{bottom:632.933333pt;}
.y91e_c00001{bottom:633.053333pt;}
.y851_c00001{bottom:633.373333pt;}
.y4ea_c00001{bottom:633.533333pt;}
.ya0d_c00001{bottom:633.826667pt;}
.y260_c00001{bottom:633.853333pt;}
.y633_c00001{bottom:634.173333pt;}
.y298_c00001{bottom:634.333333pt;}
.y50f_c00001{bottom:634.653333pt;}
.y55e_c00001{bottom:634.973333pt;}
.y142_c00001{bottom:635.453333pt;}
.yae4_c00001{bottom:635.493333pt;}
.y94_c00001{bottom:635.613333pt;}
.y30c_c00001{bottom:635.653333pt;}
.yb2c_c00001{bottom:636.093333pt;}
.y217_c00001{bottom:636.413333pt;}
.y65d_c00001{bottom:636.573333pt;}
.y462_c00001{bottom:636.893333pt;}
.y5df_c00001{bottom:637.213333pt;}
.y7e5_c00001{bottom:637.573333pt;}
.y39c_c00001{bottom:638.493333pt;}
.y3ec_c00001{bottom:638.653333pt;}
.y47b_c00001{bottom:638.973333pt;}
.y834_c00001{bottom:639.293333pt;}
.y71a_c00001{bottom:639.453333pt;}
.y159_c00001{bottom:640.253333pt;}
.y6ff_c00001{bottom:640.413333pt;}
.y547_c00001{bottom:641.533333pt;}
.y5a5_c00001{bottom:641.853333pt;}
.y891_c00001{bottom:642.013333pt;}
.y8fa_c00001{bottom:642.493333pt;}
.y91d_c00001{bottom:642.973333pt;}
.y670_c00001{bottom:643.133333pt;}
.y10_c00001{bottom:643.293333pt;}
.y6db_c00001{bottom:644.093333pt;}
.yb6a_c00001{bottom:644.253333pt;}
.y6b_c00001{bottom:644.573333pt;}
.y69d_c00001{bottom:644.893333pt;}
.y4de_c00001{bottom:645.373333pt;}
.y1fc_c00001{bottom:645.693333pt;}
.y3c0_c00001{bottom:646.173333pt;}
.yd4_c00001{bottom:646.333333pt;}
.y2ba_c00001{bottom:647.293333pt;}
.y37d_c00001{bottom:647.613333pt;}
.y57_c00001{bottom:647.933333pt;}
.y9a5_c00001{bottom:648.413333pt;}
.y435_c00001{bottom:649.213333pt;}
.y35f_c00001{bottom:649.533333pt;}
.y880_c00001{bottom:649.853333pt;}
.ya0c_c00001{bottom:649.986667pt;}
.y25f_c00001{bottom:650.813333pt;}
.y130_c00001{bottom:650.973333pt;}
.y74b_c00001{bottom:651.013333pt;}
.y6af_c00001{bottom:651.173333pt;}
.y2ea_c00001{bottom:651.333333pt;}
.y50e_c00001{bottom:651.933333pt;}
.y141_c00001{bottom:652.253333pt;}
.yae3_c00001{bottom:652.293333pt;}
.y23e_c00001{bottom:652.573333pt;}
.y297_c00001{bottom:652.733333pt;}
.yb94_c00001{bottom:653.573333pt;}
.y27d_c00001{bottom:653.853333pt;}
.y909_c00001{bottom:654.013333pt;}
.y30b_c00001{bottom:654.053333pt;}
.y56b_c00001{bottom:654.493333pt;}
.y894_c00001{bottom:654.813333pt;}
.y39b_c00001{bottom:655.293333pt;}
.y426_c00001{bottom:655.613333pt;}
.y47a_c00001{bottom:656.093333pt;}
.y68a_c00001{bottom:657.053333pt;}
.y6fe_c00001{bottom:657.213333pt;}
.y546_c00001{bottom:658.333333pt;}
.yb5_c00001{bottom:658.653333pt;}
.y5b5_c00001{bottom:658.813333pt;}
.y4e9_c00001{bottom:659.293333pt;}
.y179_c00001{bottom:659.453333pt;}
.y66f_c00001{bottom:659.933333pt;}
.y3c_c00001{bottom:660.253333pt;}
.y580_c00001{bottom:660.733333pt;}
.y6da_c00001{bottom:660.893333pt;}
.yb69_c00001{bottom:661.213333pt;}
.y80d_c00001{bottom:661.373333pt;}
.y1c7_c00001{bottom:661.533333pt;}
.y632_c00001{bottom:661.693333pt;}
.y19d_c00001{bottom:662.173333pt;}
.y3bf_c00001{bottom:662.973333pt;}
.y93_c00001{bottom:663.133333pt;}
.y102_c00001{bottom:663.293333pt;}
.yb2b_c00001{bottom:663.773333pt;}
.y216_c00001{bottom:664.093333pt;}
.y2b9_c00001{bottom:664.253333pt;}
.y37c_c00001{bottom:664.573333pt;}
.y5de_c00001{bottom:664.733333pt;}
.y9a4_c00001{bottom:665.373333pt;}
.y434_c00001{bottom:666.013333pt;}
.yb47_c00001{bottom:666.173333pt;}
.y3eb_c00001{bottom:666.333333pt;}
.y803_c00001{bottom:667.133333pt;}
.y25e_c00001{bottom:667.613333pt;}
.y158_c00001{bottom:667.933333pt;}
.y50d_c00001{bottom:668.733333pt;}
.y30a_c00001{bottom:669.093333pt;}
.y12f_c00001{bottom:669.213333pt;}
.y5a4_c00001{bottom:669.373333pt;}
.y2e9_c00001{bottom:669.733333pt;}
.y8f9_c00001{bottom:670.173333pt;}
.y399_c00001{bottom:670.653333pt;}
.yac2_c00001{bottom:670.813333pt;}
.yf_c00001{bottom:670.973333pt;}
.y27c_c00001{bottom:671.133333pt;}
.y39a_c00001{bottom:672.253333pt;}
.y69c_c00001{bottom:672.413333pt;}
.y479_c00001{bottom:673.053333pt;}
.y1fb_c00001{bottom:673.213333pt;}
.y425_c00001{bottom:673.693333pt;}
.yd3_c00001{bottom:674.013333pt;}
.y6fd_c00001{bottom:674.173333pt;}
.y56_c00001{bottom:674.493333pt;}
.y63f_c00001{bottom:675.133333pt;}
.y545_c00001{bottom:675.293333pt;}
.y3dc_c00001{bottom:675.453333pt;}
.y5b4_c00001{bottom:676.733333pt;}
.y35e_c00001{bottom:677.053333pt;}
.y87f_c00001{bottom:677.373333pt;}
.y6d9_c00001{bottom:677.693333pt;}
.y943_c00001{bottom:678.013333pt;}
.y3b_c00001{bottom:678.333333pt;}
.y101_c00001{bottom:678.653333pt;}
.y19c_c00001{bottom:679.133333pt;}
.yb63_c00001{bottom:679.773333pt;}
.y3be_c00001{bottom:679.933333pt;}
.y23d_c00001{bottom:680.093333pt;}
.y910_c00001{bottom:680.253333pt;}
.y2b8_c00001{bottom:681.053333pt;}
.y92_c00001{bottom:681.373333pt;}
.y908_c00001{bottom:681.693333pt;}
.y8ec_c00001{bottom:682.173333pt;}
.y893_c00001{bottom:682.493333pt;}
.y433_c00001{bottom:682.973333pt;}
.y623_c00001{bottom:683.133333pt;}
.yb46_c00001{bottom:684.093333pt;}
.y25d_c00001{bottom:684.413333pt;}
.y689_c00001{bottom:684.733333pt;}
.y56a_c00001{bottom:685.213333pt;}
.y50c_c00001{bottom:685.693333pt;}
.y309_c00001{bottom:685.733333pt;}
.y12e_c00001{bottom:686.013333pt;}
.yb4_c00001{bottom:686.333333pt;}
.y178_c00001{bottom:686.973333pt;}
.y398_c00001{bottom:687.613333pt;}
.y2e8_c00001{bottom:688.133333pt;}
.y850_c00001{bottom:688.573333pt;}
.y631_c00001{bottom:689.373333pt;}
.y27b_c00001{bottom:689.533333pt;}
.y478_c00001{bottom:689.853333pt;}
.y424_c00001{bottom:690.653333pt;}
.y5ac_c00001{bottom:690.813333pt;}
.y6fc_c00001{bottom:690.973333pt;}
.y719_c00001{bottom:691.133333pt;}
.y57f_c00001{bottom:691.293333pt;}
.y215_c00001{bottom:691.613333pt;}
.y34e_c00001{bottom:692.093333pt;}
.y5dd_c00001{bottom:692.413333pt;}
.y937_c00001{bottom:693.533333pt;}
.y5b3_c00001{bottom:693.693333pt;}
.y100_c00001{bottom:693.853333pt;}
.y6d8_c00001{bottom:694.653333pt;}
.yb68_c00001{bottom:694.813333pt;}
.y3a_c00001{bottom:695.133333pt;}
.y157_c00001{bottom:695.453333pt;}
.y4dd_c00001{bottom:695.933333pt;}
.yb60_c00001{bottom:696.573333pt;}
.y3bd_c00001{bottom:696.733333pt;}
.y5a3_c00001{bottom:697.053333pt;}
.y8f8_c00001{bottom:697.693333pt;}
.y91_c00001{bottom:698.333333pt;}
.ye_c00001{bottom:698.493333pt;}
.y90f_c00001{bottom:698.653333pt;}
.y8eb_c00001{bottom:698.973333pt;}
.y432_c00001{bottom:699.773333pt;}
.y69b_c00001{bottom:700.093333pt;}
.y55_c00001{bottom:700.893333pt;}
.y25c_c00001{bottom:701.373333pt;}
.yd2_c00001{bottom:701.533333pt;}
.y50b_c00001{bottom:702.493333pt;}
.y12d_c00001{bottom:702.813333pt;}
.y3db_c00001{bottom:703.133333pt;}
.y65c_c00001{bottom:704.093333pt;}
.y397_c00001{bottom:704.413333pt;}
.y35d_c00001{bottom:704.733333pt;}
.y87e_c00001{bottom:705.053333pt;}
.y19b_c00001{bottom:705.373333pt;}
.y3f2_c00001{bottom:706.173333pt;}
.y477_c00001{bottom:706.693333pt;}
.y423_c00001{bottom:707.493333pt;}
.y23c_c00001{bottom:707.813333pt;}
.y27a_c00001{bottom:707.973333pt;}
.y718_c00001{bottom:708.933333pt;}
.y34d_c00001{bottom:709.093333pt;}
.yff_c00001{bottom:709.253333pt;}
.y892_c00001{bottom:710.053333pt;}
.y5b2_c00001{bottom:710.533333pt;}
.y622_c00001{bottom:710.853333pt;}
.y93a_c00001{bottom:711.973333pt;}
.y39_c00001{bottom:712.133333pt;}
.y688_c00001{bottom:712.293333pt;}
.y6d7_c00001{bottom:712.613333pt;}
.y4dc_c00001{bottom:712.933333pt;}
.yb62_c00001{bottom:713.413333pt;}
.y3bc_c00001{bottom:713.573333pt;}
.yb3_c00001{bottom:713.893333pt;}
.y177_c00001{bottom:714.693333pt;}
.y4a9_c00001{bottom:715.173333pt;}
.y2b7_c00001{bottom:715.333333pt;}
.y569_c00001{bottom:715.973333pt;}
.y90_c00001{bottom:716.133333pt;}
.y5c2_c00001{bottom:716.773333pt;}
.y630_c00001{bottom:716.933333pt;}
.yb45_c00001{bottom:717.893333pt;}
.y25b_c00001{bottom:718.213333pt;}
.y544_c00001{bottom:718.533333pt;}
.y214_c00001{bottom:719.333333pt;}
.yd1_c00001{bottom:719.813333pt;}
.y5dc_c00001{bottom:719.973333pt;}
.y396_c00001{bottom:721.253333pt;}
.y57e_c00001{bottom:722.053333pt;}
.y802_c00001{bottom:722.373333pt;}
.y156_c00001{bottom:723.173333pt;}
.y476_c00001{bottom:723.653333pt;}
.y422_c00001{bottom:724.453333pt;}
.y37b_c00001{bottom:724.613333pt;}
.y8f7_c00001{bottom:725.413333pt;}
.y342_c00001{bottom:725.893333pt;}
.yd_c00001{bottom:726.213333pt;}
.y279_c00001{bottom:726.373333pt;}
.y69a_c00001{bottom:727.333333pt;}
.y5b1_c00001{bottom:727.493333pt;}
.y54_c00001{bottom:728.453333pt;}
.y38_c00001{bottom:728.933333pt;}
.y40b_c00001{bottom:729.253333pt;}
.y6d6_c00001{bottom:729.413333pt;}
.y4db_c00001{bottom:729.733333pt;}
.y3bb_c00001{bottom:730.533333pt;}
.yfe_c00001{bottom:730.693333pt;}
.y4a8_c00001{bottom:731.973333pt;}
.y35c_c00001{bottom:732.293333pt;}
.y8ea_c00001{bottom:732.773333pt;}
.y8f_c00001{bottom:732.933333pt;}
.y19a_c00001{bottom:733.093333pt;}
.y5c1_c00001{bottom:733.573333pt;}
.y3f1_c00001{bottom:733.893333pt;}
.y25a_c00001{bottom:735.173333pt;}
.y595_c00001{bottom:735.333333pt;}
.y50a_c00001{bottom:736.293333pt;}
.yb44_c00001{bottom:736.453333pt;}
.yd0_c00001{bottom:736.613333pt;}
.y907_c00001{bottom:736.933333pt;}
.y65b_c00001{bottom:737.893333pt;}
.y395_c00001{bottom:738.213333pt;}
.y621_c00001{bottom:738.373333pt;}
.y87d_c00001{bottom:738.693333pt;}
.yfd_c00001{bottom:739.973333pt;}
.y833_c00001{bottom:740.453333pt;}
.y421_c00001{bottom:741.253333pt;}
.yb2_c00001{bottom:741.573333pt;}
.y176_c00001{bottom:742.213333pt;}
.y2b6_c00001{bottom:742.693333pt;}
.y341_c00001{bottom:742.853333pt;}
.y84f_c00001{bottom:743.813333pt;}
.y62f_c00001{bottom:744.293333pt;}
.y88b_c00001{bottom:744.613333pt;}
.y278_c00001{bottom:744.773333pt;}
.y37_c00001{bottom:745.893333pt;}
.y543_c00001{bottom:746.053333pt;}
.yb61_c00001{bottom:746.213333pt;}
.y6d5_c00001{bottom:746.373333pt;}
.y4da_c00001{bottom:746.533333pt;}
.y213_c00001{bottom:746.853333pt;}
.y3ba_c00001{bottom:747.333333pt;}
.y5db_c00001{bottom:747.653333pt;}
.y4a7_c00001{bottom:748.933333pt;}
.y8e9_c00001{bottom:749.733333pt;}
.y8e_c00001{bottom:749.893333pt;}
.y5c0_c00001{bottom:750.373333pt;}
.y155_c00001{bottom:750.693333pt;}
.y259_c00001{bottom:751.973333pt;}
.y37a_c00001{bottom:752.293333pt;}
.y57d_c00001{bottom:752.773333pt;}
.y8f6_c00001{bottom:752.933333pt;}
.y509_c00001{bottom:753.093333pt;}
.y568_c00001{bottom:753.413333pt;}
.ycf_c00001{bottom:753.573333pt;}
.yc_c00001{bottom:753.733333pt;}
.y4b4_c00001{bottom:753.893333pt;}
.yb43_c00001{bottom:754.373333pt;}
.y394_c00001{bottom:755.013333pt;}
.yfc_c00001{bottom:755.333333pt;}
.y87c_c00001{bottom:755.493333pt;}
.y53_c00001{bottom:756.133333pt;}
.y40a_c00001{bottom:756.773333pt;}
.y2e5_c00001{bottom:756.800000pt;}
.y832_c00001{bottom:757.413333pt;}
.y420_c00001{bottom:758.053333pt;}
.y3da_c00001{bottom:758.373333pt;}
.y6fb_c00001{bottom:759.493333pt;}
.yb1_c00001{bottom:759.653333pt;}
.y199_c00001{bottom:760.613333pt;}
.y63e_c00001{bottom:761.253333pt;}
.y3f0_c00001{bottom:761.413333pt;}
.y495_c00001{bottom:762.373333pt;}
.y36_c00001{bottom:762.693333pt;}
.y66b_c00001{bottom:762.853333pt;}
.y594_c00001{bottom:763.013333pt;}
.y277_c00001{bottom:763.173333pt;}
.y4d9_c00001{bottom:763.493333pt;}
.y3b9_c00001{bottom:764.293333pt;}
.y906_c00001{bottom:764.453333pt;}
.y4a6_c00001{bottom:765.733333pt;}
.y620_c00001{bottom:766.053333pt;}
.y8e8_c00001{bottom:766.533333pt;}
.y5bf_c00001{bottom:767.333333pt;}
.y687_c00001{bottom:767.493333pt;}
.ya67_c00001{bottom:767.653333pt;}
.y8d_c00001{bottom:767.813333pt;}
.y175_c00001{bottom:768.773333pt;}
.y32f_c00001{bottom:769.093333pt;}
.y508_c00001{bottom:770.053333pt;}
.yce_c00001{bottom:770.373333pt;}
.yfb_c00001{bottom:770.693333pt;}
.y8f5_c00001{bottom:771.173333pt;}
.y84e_c00001{bottom:771.333333pt;}
.y87b_c00001{bottom:772.133333pt;}
.y9e7_c00001{bottom:772.933333pt;}
.y542_c00001{bottom:773.733333pt;}
.y314_c00001{bottom:774.213333pt;}
.y212_c00001{bottom:774.533333pt;}
.y41f_c00001{bottom:775.013333pt;}
.y5da_c00001{bottom:775.173333pt;}
.yaa2_c00001{bottom:775.813333pt;}
.yb0_c00001{bottom:776.453333pt;}
.y717_c00001{bottom:777.413333pt;}
.y475_c00001{bottom:777.573333pt;}
.y63d_c00001{bottom:778.053333pt;}
.y35b_c00001{bottom:778.213333pt;}
.y154_c00001{bottom:778.373333pt;}
.y5a7_c00001{bottom:778.533333pt;}
.y494_c00001{bottom:779.333333pt;}
.y35_c00001{bottom:779.653333pt;}
.y379_c00001{bottom:779.813333pt;}
.y6d4_c00001{bottom:780.133333pt;}
.y4d8_c00001{bottom:780.293333pt;}
.y3b8_c00001{bottom:781.093333pt;}
.yb_c00001{bottom:781.413333pt;}
.y276_c00001{bottom:781.573333pt;}
.ya87_c00001{bottom:782.053333pt;}
.y4a5_c00001{bottom:782.693333pt;}
.y57c_c00001{bottom:783.333333pt;}
.y52_c00001{bottom:783.653333pt;}
.y5be_c00001{bottom:784.133333pt;}
.y409_c00001{bottom:784.453333pt;}
.y8c_c00001{bottom:784.613333pt;}
.y174_c00001{bottom:785.733333pt;}
.y567_c00001{bottom:785.893333pt;}
.y507_c00001{bottom:786.533333pt;}
.yfa_c00001{bottom:786.693333pt;}
.y55d_c00001{bottom:786.853333pt;}
.ycd_c00001{bottom:787.173333pt;}
.y8f4_c00001{bottom:787.973333pt;}
.yb42_c00001{bottom:788.133333pt;}
.y198_c00001{bottom:788.293333pt;}
.y87a_c00001{bottom:788.933333pt;}
.y5f8_c00001{bottom:789.093333pt;}
.y593_c00001{bottom:790.533333pt;}
.y41e_c00001{bottom:791.813333pt;}
.y905_c00001{bottom:792.133333pt;}
.yaf_c00001{bottom:793.413333pt;}
.y61f_c00001{bottom:793.573333pt;}
.y8e1_c00001{bottom:793.733333pt;}
.y6fa_c00001{bottom:794.373333pt;}
.y63c_c00001{bottom:794.853333pt;}
.y686_c00001{bottom:795.173333pt;}
.y90c_c00001{bottom:795.333333pt;}
.y3ea_c00001{bottom:796.133333pt;}
.y34_c00001{bottom:796.453333pt;}
.y4e8_c00001{bottom:796.613333pt;}
.yb16_c00001{bottom:796.773333pt;}
.y6d3_c00001{bottom:796.933333pt;}
.y4d7_c00001{bottom:797.253333pt;}
.y2b5_c00001{bottom:797.893333pt;}
.y84d_c00001{bottom:799.013333pt;}
.y936_c00001{bottom:799.813333pt;}
.y275_c00001{bottom:799.973333pt;}
.y8e7_c00001{bottom:800.293333pt;}
.y5bd_c00001{bottom:801.093333pt;}
.y541_c00001{bottom:801.253333pt;}
.y8b_c00001{bottom:801.573333pt;}
.y211_c00001{bottom:802.053333pt;}
.y173_c00001{bottom:802.533333pt;}
.y5d9_c00001{bottom:802.853333pt;}
.y506_c00001{bottom:803.333333pt;}
.y55c_c00001{bottom:803.653333pt;}
.ycc_c00001{bottom:804.133333pt;}
.y8f3_c00001{bottom:804.933333pt;}
.y474_c00001{bottom:805.093333pt;}
.y879_c00001{bottom:805.733333pt;}
.y313_c00001{bottom:807.013333pt;}
.y378_c00001{bottom:807.493333pt;}
.y62b_c00001{bottom:808.613333pt;}
.y41d_c00001{bottom:808.773333pt;}
.ya_c00001{bottom:808.933333pt;}
.yae_c00001{bottom:810.213333pt;}
.y6f9_c00001{bottom:811.173333pt;}
.y51_c00001{bottom:811.333333pt;}
.y61e_c00001{bottom:811.813333pt;}
.y408_c00001{bottom:811.973333pt;}
.y3ef_c00001{bottom:812.933333pt;}
.ya29_c00001{bottom:813.093333pt;}
.y33_c00001{bottom:813.253333pt;}
.yf9_c00001{bottom:813.573333pt;}
.y6d2_c00001{bottom:813.893333pt;}
.y57b_c00001{bottom:814.053333pt;}
.y44b_c00001{bottom:814.853333pt;}
.y197_c00001{bottom:815.813333pt;}
.y5f7_c00001{bottom:816.613333pt;}
.y8e6_c00001{bottom:817.093333pt;}
.y5bc_c00001{bottom:817.893333pt;}
.y592_c00001{bottom:818.213333pt;}
.y274_c00001{bottom:818.373333pt;}
.ya0a_c00001{bottom:819.333333pt;}
.y8a_c00001{bottom:819.493333pt;}
.y505_c00001{bottom:820.293333pt;}
.y55b_c00001{bottom:820.613333pt;}
.ycb_c00001{bottom:820.933333pt;}
.y8f2_c00001{bottom:821.733333pt;}
.y878_c00001{bottom:822.533333pt;}
.y4e7_c00001{bottom:824.293333pt;}
.y2b4_c00001{bottom:825.413333pt;}
.y41c_c00001{bottom:825.573333pt;}
.y84c_c00001{bottom:826.533333pt;}
.y3d9_c00001{bottom:826.853333pt;}
.y904_c00001{bottom:827.173333pt;}
.y935_c00001{bottom:827.333333pt;}
.y6f8_c00001{bottom:828.133333pt;}
.y5ab_c00001{bottom:828.613333pt;}
.y540_c00001{bottom:828.933333pt;}
.y210_c00001{bottom:829.733333pt;}
.y3e9_c00001{bottom:829.893333pt;}
.yb5f_c00001{bottom:830.053333pt;}
.y32_c00001{bottom:830.213333pt;}
.y5d8_c00001{bottom:830.373333pt;}
.yf8_c00001{bottom:831.653333pt;}
.y473_c00001{bottom:832.773333pt;}
.y8e5_c00001{bottom:834.053333pt;}
.y377_c00001{bottom:835.013333pt;}
.y5bb_c00001{bottom:835.173333pt;}
.y89_c00001{bottom:836.293333pt;}
.y9_c00001{bottom:836.613333pt;}
.y273_c00001{bottom:836.773333pt;}
.y504_c00001{bottom:837.413333pt;}
.y50_c00001{bottom:837.893333pt;}
.y8f1_c00001{bottom:838.533333pt;}
.y1fa_c00001{bottom:838.853333pt;}
.y877_c00001{bottom:839.173333pt;}
.y9c7_c00001{bottom:839.653333pt;}
.y312_c00001{bottom:839.973333pt;}
.yb41_c00001{bottom:840.293333pt;}
.y4d6_c00001{bottom:840.613333pt;}
.y566_c00001{bottom:841.093333pt;}
.y41b_c00001{bottom:842.373333pt;}
.y196_c00001{bottom:843.493333pt;}
.y3d8_c00001{bottom:843.973333pt;}
.y5f6_c00001{bottom:844.293333pt;}
.yb5a_c00001{bottom:844.453333pt;}
.y57a_c00001{bottom:844.773333pt;}
.y6f7_c00001{bottom:844.933333pt;}
.y93f_c00001{bottom:845.413333pt;}
.y61d_c00001{bottom:845.573333pt;}
.y591_c00001{bottom:845.733333pt;}
.y716_c00001{bottom:846.053333pt;}
.y407_c00001{bottom:846.693333pt;}
.yb5e_c00001{bottom:846.853333pt;}
.y31_c00001{bottom:847.013333pt;}
.yf7_c00001{bottom:848.613333pt;}
.y8e4_c00001{bottom:850.853333pt;}
.y4e6_c00001{bottom:851.813333pt;}
.y88_c00001{bottom:853.093333pt;}
.y84b_c00001{bottom:854.213333pt;}
.y503_c00001{bottom:854.373333pt;}
.y934_c00001{bottom:855.013333pt;}
.y272_c00001{bottom:855.173333pt;}
.y8f0_c00001{bottom:855.493333pt;}
.y876_c00001{bottom:855.973333pt;}
.y310_c00001{bottom:856.613333pt;}
.y20f_c00001{bottom:857.253333pt;}
.y5d7_c00001{bottom:858.053333pt;}
.yb40_c00001{bottom:858.373333pt;}
.y41a_c00001{bottom:859.333333pt;}
.y472_c00001{bottom:860.293333pt;}
.y3d7_c00001{bottom:860.773333pt;}
.ya45_c00001{bottom:861.573333pt;}
.y6f6_c00001{bottom:861.893333pt;}
.y376_c00001{bottom:862.373333pt;}
.y6a1_c00001{bottom:862.693333pt;}
.y5f5_c00001{bottom:862.853333pt;}
.y715_c00001{bottom:863.013333pt;}
.y406_c00001{bottom:863.653333pt;}
.y5fd_c00001{bottom:863.813333pt;}
.y30_c00001{bottom:863.973333pt;}
.y8_c00001{bottom:864.133333pt;}
.y4cd_c00001{bottom:864.293333pt;}
.yf6_c00001{bottom:865.413333pt;}
.y1f9_c00001{bottom:866.533333pt;}
.y4d5_c00001{bottom:867.013333pt;}
.y9c6_c00001{bottom:867.173333pt;}
.y8e3_c00001{bottom:867.813333pt;}
.y5d4_c00001{bottom:868.293333pt;}
.y565_c00001{bottom:868.773333pt;}
.y87_c00001{bottom:870.053333pt;}
.y195_c00001{bottom:871.013333pt;}
.y502_c00001{bottom:871.173333pt;}
.y2b3_c00001{bottom:871.653333pt;}
.y8ef_c00001{bottom:871.973333pt;}
.y875_c00001{bottom:872.773333pt;}
.y590_c00001{bottom:873.413333pt;}
.y271_c00001{bottom:873.573333pt;}
.yb3f_c00001{bottom:875.173333pt;}
.y579_c00001{bottom:875.333333pt;}
.y419_c00001{bottom:876.133333pt;}
.y3d6_c00001{bottom:877.733333pt;}
.y61c_c00001{bottom:879.173333pt;}
.y4e5_c00001{bottom:879.493333pt;}
.y63b_c00001{bottom:879.653333pt;}
.y9c9_c00001{bottom:879.813333pt;}
.yb5c_c00001{bottom:880.293333pt;}
.y2f_c00001{bottom:880.773333pt;}
.y933_c00001{bottom:882.533333pt;}
.ya44_c00001{bottom:884.133333pt;}
.y5d6_c00001{bottom:885.573333pt;}
.y86_c00001{bottom:886.853333pt;}
.y471_c00001{bottom:887.973333pt;}
.y8ee_c00001{bottom:889.253333pt;}
.y30f_c00001{bottom:889.573333pt;}
.y66a_c00001{bottom:891.493333pt;}
.y296_c00001{bottom:891.653333pt;}
.y7_c00001{bottom:891.813333pt;}
.y270_c00001{bottom:891.973333pt;}
.y9a3_c00001{bottom:892.773333pt;}
.y418_c00001{bottom:893.093333pt;}
.y4d4_c00001{bottom:893.573333pt;}
.y1f8_c00001{bottom:894.053333pt;}
.y3d5_c00001{bottom:895.013333pt;}
.y61b_c00001{bottom:896.133333pt;}
.y564_c00001{bottom:896.293333pt;}
.y6f5_c00001{bottom:896.613333pt;}
.y2e_c00001{bottom:897.573333pt;}
.y9c8_c00001{bottom:902.533333pt;}
.y85_c00001{bottom:903.813333pt;}
.y501_c00001{bottom:904.933333pt;}
.y58f_c00001{bottom:905.093333pt;}
.y578_c00001{bottom:906.053333pt;}
.y932_c00001{bottom:909.893333pt;}
.y295_c00001{bottom:910.053333pt;}
.yb5b_c00001{bottom:910.213333pt;}
.y26f_c00001{bottom:910.373333pt;}
.yb3e_c00001{bottom:910.533333pt;}
.y3d4_c00001{bottom:912.933333pt;}
.y890_c00001{bottom:913.253333pt;}
.y61a_c00001{bottom:913.413333pt;}
.y375_c00001{bottom:914.213333pt;}
.y2d_c00001{bottom:914.533333pt;}
.y695_c00001{bottom:919.013333pt;}
.y6_c00001{bottom:919.333333pt;}
.y4d3_c00001{bottom:919.973333pt;}
.y84_c00001{bottom:920.613333pt;}
.y500_c00001{bottom:921.733333pt;}
.y8ed_c00001{bottom:922.853333pt;}
.yb3d_c00001{bottom:928.613333pt;}
.y26e_c00001{bottom:928.773333pt;}
.y7f8_c00001{bottom:929.893333pt;}
.y3d3_c00001{bottom:930.213333pt;}
.y6f4_c00001{bottom:930.373333pt;}
.y2c_c00001{bottom:931.333333pt;}
.y577_c00001{bottom:936.773333pt;}
.y58e_c00001{bottom:941.920000pt;}
.y1f7_c00001{bottom:946.720000pt;}
.y5_c00001{bottom:947.040000pt;}
.y26d_c00001{bottom:947.200000pt;}
.y6f3_c00001{bottom:947.360000pt;}
.y4ff_c00001{bottom:947.680000pt;}
.y493_c00001{bottom:948.000000pt;}
.y2b_c00001{bottom:948.320000pt;}
.y1_c00001{bottom:996.800000pt;}
.h18_c00001{height:16.000000pt;}
.h63_c00001{height:16.032000pt;}
.h16_c00001{height:16.160000pt;}
.h1a_c00001{height:16.192000pt;}
.h88_c00001{height:17.600000pt;}
.h7d_c00001{height:18.240000pt;}
.h3_c00001{height:20.000000pt;}
.h15_c00001{height:20.160000pt;}
.h91_c00001{height:25.498125pt;}
.h13_c00001{height:27.386875pt;}
.h55_c00001{height:31.406250pt;}
.h1c_c00001{height:32.160000pt;}
.h19_c00001{height:32.192000pt;}
.h1b_c00001{height:32.320000pt;}
.h30_c00001{height:32.352000pt;}
.h2c_c00001{height:32.800000pt;}
.h81_c00001{height:32.832000pt;}
.h7e_c00001{height:32.960000pt;}
.hc_c00001{height:33.918750pt;}
.h7c_c00001{height:35.040000pt;}
.h8d_c00001{height:37.120000pt;}
.h8c_c00001{height:37.280000pt;}
.h11_c00001{height:42.084375pt;}
.h2_c00001{height:43.441250pt;}
.h56_c00001{height:47.109375pt;}
.hf_c00001{height:47.621250pt;}
.h71_c00001{height:48.160000pt;}
.h2f_c00001{height:48.320000pt;}
.h98_c00001{height:48.352000pt;}
.h2b_c00001{height:49.600000pt;}
.h8b_c00001{height:49.760000pt;}
.h83_c00001{height:49.792000pt;}
.h1e_c00001{height:50.490000pt;}
.h7a_c00001{height:52.108438pt;}
.hd_c00001{height:52.134375pt;}
.h6_c00001{height:52.785000pt;}
.h8_c00001{height:53.535000pt;}
.h89_c00001{height:54.598989pt;}
.h17_c00001{height:55.275000pt;}
.h21_c00001{height:55.402500pt;}
.h3a_c00001{height:56.760000pt;}
.h5_c00001{height:57.375000pt;}
.h26_c00001{height:57.758750pt;}
.h1_c00001{height:57.787500pt;}
.h32_c00001{height:57.888085pt;}
.h7_c00001{height:59.340000pt;}
.h22_c00001{height:60.300000pt;}
.h28_c00001{height:60.519362pt;}
.h9_c00001{height:61.410000pt;}
.h27_c00001{height:62.781250pt;}
.h4_c00001{height:62.812500pt;}
.he_c00001{height:63.311250pt;}
.h52_c00001{height:63.417917pt;}
.h57_c00001{height:64.172500pt;}
.h46_c00001{height:64.320000pt;}
.h4e_c00001{height:64.352000pt;}
.h1f_c00001{height:64.480000pt;}
.ha_c00001{height:64.500000pt;}
.h4f_c00001{height:64.512000pt;}
.h7f_c00001{height:65.632000pt;}
.h84_c00001{height:65.760000pt;}
.h25_c00001{height:65.781915pt;}
.h29_c00001{height:65.792000pt;}
.h2a_c00001{height:66.400000pt;}
.h2d_c00001{height:66.432000pt;}
.h12_c00001{height:66.750000pt;}
.h7b_c00001{height:71.503437pt;}
.hb_c00001{height:71.524375pt;}
.h10_c00001{height:71.684375pt;}
.h44_c00001{height:80.480000pt;}
.h20_c00001{height:80.512000pt;}
.h8a_c00001{height:83.040000pt;}
.h85_c00001{height:83.200000pt;}
.h24_c00001{height:85.785000pt;}
.h94_c00001{height:96.512000pt;}
.h3b_c00001{height:96.640000pt;}
.h95_c00001{height:96.672000pt;}
.h82_c00001{height:100.032000pt;}
.h23_c00001{height:107.715000pt;}
.h86_c00001{height:112.672000pt;}
.h8f_c00001{height:112.832000pt;}
.h80_c00001{height:116.192000pt;}
.h2e_c00001{height:116.640000pt;}
.h96_c00001{height:128.800000pt;}
.h3e_c00001{height:128.832000pt;}
.h64_c00001{height:141.466667pt;}
.h38_c00001{height:144.800000pt;}
.h4c_c00001{height:144.986667pt;}
.h6a_c00001{height:147.706667pt;}
.h34_c00001{height:160.986667pt;}
.h93_c00001{height:161.146667pt;}
.h6f_c00001{height:169.760000pt;}
.h6d_c00001{height:170.906667pt;}
.h5f_c00001{height:171.546667pt;}
.h70_c00001{height:172.346667pt;}
.h60_c00001{height:174.746667pt;}
.h62_c00001{height:175.200000pt;}
.h66_c00001{height:175.706667pt;}
.h49_c00001{height:176.986667pt;}
.h8e_c00001{height:177.146667pt;}
.h74_c00001{height:178.426667pt;}
.h5b_c00001{height:178.586667pt;}
.h75_c00001{height:178.746667pt;}
.h67_c00001{height:179.706667pt;}
.h68_c00001{height:179.840000pt;}
.h69_c00001{height:180.026667pt;}
.h5a_c00001{height:181.760000pt;}
.h6c_c00001{height:181.786667pt;}
.h77_c00001{height:184.986667pt;}
.h5c_c00001{height:185.786667pt;}
.h79_c00001{height:186.746667pt;}
.h78_c00001{height:187.226667pt;}
.h5d_c00001{height:187.866667pt;}
.h58_c00001{height:188.506667pt;}
.h41_c00001{height:193.146667pt;}
.h1d_c00001{height:193.306667pt;}
.h76_c00001{height:199.546667pt;}
.h48_c00001{height:209.306667pt;}
.h42_c00001{height:225.466667pt;}
.h37_c00001{height:241.466667pt;}
.h99_c00001{height:257.626667pt;}
.h87_c00001{height:257.666667pt;}
.h73_c00001{height:261.786667pt;}
.h97_c00001{height:289.826667pt;}
.h90_c00001{height:305.986667pt;}
.h6b_c00001{height:330.306667pt;}
.h36_c00001{height:338.146667pt;}
.h6e_c00001{height:341.306667pt;}
.h61_c00001{height:350.586667pt;}
.h43_c00001{height:354.146667pt;}
.h5e_c00001{height:360.066667pt;}
.h4d_c00001{height:370.306667pt;}
.h59_c00001{height:370.906667pt;}
.h40_c00001{height:386.466667pt;}
.h51_c00001{height:394.466667pt;}
.h4b_c00001{height:402.466667pt;}
.h92_c00001{height:403.906667pt;}
.h35_c00001{height:418.626667pt;}
.h39_c00001{height:434.333333pt;}
.h4a_c00001{height:434.653333pt;}
.h72_c00001{height:434.786667pt;}
.h3d_c00001{height:450.786667pt;}
.h50_c00001{height:478.973333pt;}
.h3c_c00001{height:482.973333pt;}
.h53_c00001{height:496.093333pt;}
.h31_c00001{height:499.133333pt;}
.h54_c00001{height:507.133333pt;}
.h47_c00001{height:515.133333pt;}
.h45_c00001{height:531.293333pt;}
.h3f_c00001{height:547.453333pt;}
.h33_c00001{height:579.613333pt;}
.h65_c00001{height:678.653333pt;}
.h14_c00001{height:816.000000pt;}
.h0_c00001{height:1056.000000pt;}
.w17_c00001{width:43.072000pt;}
.wa_c00001{width:43.360000pt;}
.w1_c00001{width:59.232000pt;}
.w3_c00001{width:59.360000pt;}
.w18_c00001{width:66.720000pt;}
.wb_c00001{width:69.760000pt;}
.w6_c00001{width:74.880000pt;}
.w5_c00001{width:75.040000pt;}
.w20_c00001{width:84.800000pt;}
.w2d_c00001{width:100.992000pt;}
.w34_c00001{width:103.392000pt;}
.w15_c00001{width:112.640000pt;}
.w14_c00001{width:112.672000pt;}
.wd_c00001{width:113.760000pt;}
.w28_c00001{width:115.872000pt;}
.w1b_c00001{width:122.080000pt;}
.w37_c00001{width:131.552000pt;}
.w36_c00001{width:138.746667pt;}
.we_c00001{width:138.880000pt;}
.wf_c00001{width:139.066667pt;}
.wc_c00001{width:149.146667pt;}
.w8_c00001{width:150.560000pt;}
.w1f_c00001{width:160.026667pt;}
.w1c_c00001{width:169.626667pt;}
.w13_c00001{width:176.986667pt;}
.w19_c00001{width:183.386667pt;}
.w1e_c00001{width:188.026667pt;}
.w7_c00001{width:207.226667pt;}
.w10_c00001{width:248.186667pt;}
.w2b_c00001{width:254.586667pt;}
.w2f_c00001{width:265.786667pt;}
.w30_c00001{width:273.026667pt;}
.w12_c00001{width:278.586667pt;}
.w22_c00001{width:298.586667pt;}
.w26_c00001{width:298.626667pt;}
.w23_c00001{width:298.786667pt;}
.w11_c00001{width:301.786667pt;}
.w9_c00001{width:337.346667pt;}
.w2a_c00001{width:346.786667pt;}
.w25_c00001{width:405.826667pt;}
.w32_c00001{width:431.266667pt;}
.w33_c00001{width:436.386667pt;}
.w35_c00001{width:439.586667pt;}
.w16_c00001{width:445.506667pt;}
.w21_c00001{width:450.626667pt;}
.w24_c00001{width:452.546667pt;}
.w1a_c00001{width:458.146667pt;}
.w1d_c00001{width:490.146667pt;}
.w2e_c00001{width:500.386667pt;}
.w4_c00001{width:526.333333pt;}
.w27_c00001{width:569.186667pt;}
.w38_c00001{width:596.706667pt;}
.w31_c00001{width:604.226667pt;}
.w29_c00001{width:751.933333pt;}
.w0_c00001{width:816.000000pt;}
.w2c_c00001{width:868.453333pt;}
.w2_c00001{width:1056.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1e_c00001{left:6.720000pt;}
.x95_c00001{left:7.840000pt;}
.x28_c00001{left:8.800000pt;}
.x7f_c00001{left:10.394667pt;}
.x31_c00001{left:11.840000pt;}
.x86_c00001{left:13.120000pt;}
.x1c_c00001{left:14.400000pt;}
.xb4_c00001{left:16.160000pt;}
.x79_c00001{left:17.312000pt;}
.x4_c00001{left:18.560000pt;}
.x35_c00001{left:20.000000pt;}
.x37_c00001{left:21.440000pt;}
.xb1_c00001{left:22.720000pt;}
.x38_c00001{left:23.680000pt;}
.x1a_c00001{left:25.280000pt;}
.x3a_c00001{left:26.880000pt;}
.x7c_c00001{left:28.000000pt;}
.x21_c00001{left:29.120000pt;}
.x27_c00001{left:30.400000pt;}
.x34_c00001{left:31.360000pt;}
.x7a_c00001{left:32.506667pt;}
.x1f_c00001{left:33.920000pt;}
.xbd_c00001{left:34.880000pt;}
.x5f_c00001{left:35.840000pt;}
.x56_c00001{left:36.960000pt;}
.x77_c00001{left:38.586667pt;}
.x78_c00001{left:39.706667pt;}
.x5d_c00001{left:40.960000pt;}
.x39_c00001{left:42.400000pt;}
.x3b_c00001{left:43.520000pt;}
.x73_c00001{left:44.640000pt;}
.x8b_c00001{left:46.080000pt;}
.x85_c00001{left:47.040000pt;}
.x7b_c00001{left:48.186667pt;}
.x51_c00001{left:49.120000pt;}
.x5e_c00001{left:50.560000pt;}
.x2b_c00001{left:51.720000pt;}
.x8c_c00001{left:53.146667pt;}
.x2a_c00001{left:54.440000pt;}
.x66_c00001{left:56.320000pt;}
.x33_c00001{left:57.800000pt;}
.x63_c00001{left:59.360000pt;}
.x36_c00001{left:60.520000pt;}
.x89_c00001{left:61.786667pt;}
.x29_c00001{left:63.400000pt;}
.x65_c00001{left:64.480000pt;}
.x22_c00001{left:66.120000pt;}
.x26_c00001{left:67.560000pt;}
.x23_c00001{left:69.640000pt;}
.x20_c00001{left:71.080000pt;}
.x24_c00001{left:73.000000pt;}
.x25_c00001{left:74.280000pt;}
.x5c_c00001{left:76.800000pt;}
.x94_c00001{left:80.040000pt;}
.x6b_c00001{left:82.400000pt;}
.x68_c00001{left:86.240000pt;}
.x17_c00001{left:87.680000pt;}
.xa0_c00001{left:88.986667pt;}
.x67_c00001{left:90.240000pt;}
.x59_c00001{left:91.360000pt;}
.xb6_c00001{left:92.666667pt;}
.x13_c00001{left:94.400000pt;}
.x6a_c00001{left:97.600000pt;}
.x5b_c00001{left:99.520000pt;}
.xa7_c00001{left:100.480000pt;}
.x57_c00001{left:102.240000pt;}
.x8d_c00001{left:103.560000pt;}
.x60_c00001{left:104.960000pt;}
.x2e_c00001{left:106.592000pt;}
.xaf_c00001{left:107.520000pt;}
.x62_c00001{left:111.200000pt;}
.x2_c00001{left:113.472000pt;}
.xb7_c00001{left:115.386667pt;}
.x40_c00001{left:116.512000pt;}
.x3f_c00001{left:117.472000pt;}
.x5a_c00001{left:119.680000pt;}
.x64_c00001{left:121.280000pt;}
.x3e_c00001{left:122.752000pt;}
.x9c_c00001{left:124.826667pt;}
.x61_c00001{left:126.400000pt;}
.x69_c00001{left:127.520000pt;}
.x3d_c00001{left:128.672000pt;}
.x2f_c00001{left:129.754667pt;}
.x7e_c00001{left:131.392000pt;}
.x58_c00001{left:134.880000pt;}
.x10_c00001{left:136.186667pt;}
.x7_c00001{left:137.466667pt;}
.x55_c00001{left:139.200000pt;}
.x6c_c00001{left:142.426667pt;}
.x87_c00001{left:149.626667pt;}
.x4b_c00001{left:151.226667pt;}
.x3c_c00001{left:152.346667pt;}
.x76_c00001{left:157.146667pt;}
.x5_c00001{left:160.666667pt;}
.x44_c00001{left:164.666667pt;}
.x45_c00001{left:166.266667pt;}
.x42_c00001{left:167.226667pt;}
.x6_c00001{left:170.266667pt;}
.x46_c00001{left:171.226667pt;}
.x2d_c00001{left:173.146667pt;}
.x43_c00001{left:176.986667pt;}
.xd_c00001{left:181.466667pt;}
.xb_c00001{left:185.466667pt;}
.x9e_c00001{left:188.026667pt;}
.xad_c00001{left:189.306667pt;}
.x49_c00001{left:190.266667pt;}
.x93_c00001{left:191.386667pt;}
.x11_c00001{left:193.946667pt;}
.x80_c00001{left:198.746667pt;}
.xbc_c00001{left:202.746667pt;}
.xa3_c00001{left:204.186667pt;}
.xc_c00001{left:205.306667pt;}
.x8_c00001{left:208.026667pt;}
.xa_c00001{left:209.466667pt;}
.x83_c00001{left:210.426667pt;}
.xae_c00001{left:212.360000pt;}
.x4d_c00001{left:217.466667pt;}
.x41_c00001{left:226.906667pt;}
.x82_c00001{left:228.986667pt;}
.x9_c00001{left:231.866667pt;}
.xf_c00001{left:233.466667pt;}
.x9f_c00001{left:238.586667pt;}
.x8e_c00001{left:242.266667pt;}
.x18_c00001{left:245.946667pt;}
.x9b_c00001{left:247.706667pt;}
.xa5_c00001{left:249.626667pt;}
.x6f_c00001{left:255.066667pt;}
.xe_c00001{left:257.466667pt;}
.x97_c00001{left:260.186667pt;}
.xa9_c00001{left:261.946667pt;}
.xaa_c00001{left:264.226667pt;}
.xab_c00001{left:272.666667pt;}
.x52_c00001{left:275.226667pt;}
.x90_c00001{left:276.346667pt;}
.x6d_c00001{left:281.506667pt;}
.x72_c00001{left:283.866667pt;}
.x16_c00001{left:292.986667pt;}
.xb5_c00001{left:293.946667pt;}
.xa8_c00001{left:294.914667pt;}
.xbf_c00001{left:298.266667pt;}
.x70_c00001{left:302.306667pt;}
.x6e_c00001{left:305.506667pt;}
.x99_c00001{left:308.186667pt;}
.x4a_c00001{left:312.546667pt;}
.x8f_c00001{left:323.706667pt;}
.x9d_c00001{left:328.226667pt;}
.x48_c00001{left:333.346667pt;}
.xa4_c00001{left:342.120000pt;}
.x4c_c00001{left:349.346667pt;}
.x4f_c00001{left:353.826667pt;}
.xbe_c00001{left:359.426667pt;}
.xac_c00001{left:360.866667pt;}
.xb0_c00001{left:367.746667pt;}
.x2c_c00001{left:368.866667pt;}
.xb2_c00001{left:372.546667pt;}
.xb8_c00001{left:376.386667pt;}
.x7d_c00001{left:377.346667pt;}
.x81_c00001{left:382.786667pt;}
.xb3_c00001{left:384.866667pt;}
.xa1_c00001{left:386.946667pt;}
.x88_c00001{left:389.986667pt;}
.x98_c00001{left:392.226667pt;}
.xbb_c00001{left:393.506667pt;}
.x74_c00001{left:397.346667pt;}
.x96_c00001{left:405.826667pt;}
.x1_c00001{left:408.066667pt;}
.x53_c00001{left:414.946667pt;}
.x47_c00001{left:417.506667pt;}
.xa2_c00001{left:420.226667pt;}
.x91_c00001{left:437.026667pt;}
.x30_c00001{left:444.573333pt;}
.xa6_c00001{left:454.013333pt;}
.x71_c00001{left:459.106667pt;}
.x15_c00001{left:488.706667pt;}
.x75_c00001{left:510.626667pt;}
.x4e_c00001{left:512.706667pt;}
.xb9_c00001{left:519.746667pt;}
.x92_c00001{left:522.466667pt;}
.x12_c00001{left:527.906667pt;}
.x9a_c00001{left:540.866667pt;}
.x50_c00001{left:551.906667pt;}
.x32_c00001{left:558.973333pt;}
.x19_c00001{left:614.653333pt;}
.x54_c00001{left:663.773333pt;}
.x1b_c00001{left:690.333333pt;}
.xba_c00001{left:702.693333pt;}
.x3_c00001{left:729.733333pt;}
.x8a_c00001{left:748.893333pt;}
.x1d_c00001{left:765.853333pt;}
.x84_c00001{left:841.573333pt;}
.x14_c00001{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02000 {
    display:none;
  }
  .loading-indicator_c02000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02000 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02000 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02000" -> "#page-container .classname_c02000")
 */
.pf_c02000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02000 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02000 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02000 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02000 {overflow:visible;}
  }
}
.c_c02000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02000 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02000:after { /* webkit #35443 */
  content: '';
}
.t_c02000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02000 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02000 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02000 { /* info for Javascript */
  display:none;
}
.l_c02000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02000:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02000 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02000.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02000;src:url('chunks/assets/font_f2c58d3c8a46f9172ee5afca.woff2')format("woff");}.ff1_c02000{font-family:ff1_c02000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02000;src:url('chunks/assets/font_890cda062001eadc73d2e7ce.woff2')format("woff");}.ff2_c02000{font-family:ff2_c02000;line-height:0.863770;font-style:normal;font-weight: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_c02000;src:url('chunks/assets/font_d48924b504a023063e28f68f.woff2')format("woff");}.ff3_c02000{font-family:ff3_c02000;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02000{vertical-align:0.000000px;}
.ls0_c02000{letter-spacing:0.000000px;}
.sc__c02000{text-shadow:none;}
.sc0_c02000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02000{-webkit-text-stroke:0px transparent;}
.sc0_c02000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02000{word-spacing:-16.560000px;}
.ws1_c02000{word-spacing:0.000000px;}
._4_c02000{margin-left:-1.192188px;}
._8_c02000{width:1.060237px;}
._7_c02000{width:2.185788px;}
._5_c02000{width:3.510588px;}
._6_c02000{width:4.845588px;}
._a_c02000{width:6.425412px;}
._9_c02000{width:7.484988px;}
._2_c02000{width:8.809125px;}
._1_c02000{width:9.870025px;}
._3_c02000{width:11.064796px;}
._f_c02000{width:12.456000px;}
._e_c02000{width:14.256000px;}
._14_c02000{width:16.848000px;}
._c_c02000{width:18.547266px;}
._b_c02000{width:19.739388px;}
._d_c02000{width:24.641412px;}
._15_c02000{width:26.101175px;}
._12_c02000{width:27.754825px;}
._13_c02000{width:28.879845px;}
._10_c02000{width:43.776000px;}
._11_c02000{width:45.072000px;}
._0_c02000{width:1500.936000px;}
.fc1_c02000{color:rgb(192,80,77);}
.fc0_c02000{color:rgb(0,0,0);}
.fs0_c02000{font-size:59.760000px;}
.fs1_c02000{font-size:66.240000px;}
.fs2_c02000{font-size:72.000000px;}
.y0_c02000{bottom:0.000000px;}
.y4_c02000{bottom:4.680000px;}
.y3_c02000{bottom:41.796000px;}
.y2_c02000{bottom:75.456000px;}
.y2b_c02000{bottom:138.996000px;}
.y2a_c02000{bottom:169.950000px;}
.y29_c02000{bottom:201.090000px;}
.y28_c02000{bottom:232.050000px;}
.y27_c02000{bottom:263.190000px;}
.y26_c02000{bottom:283.575000px;}
.y25_c02000{bottom:302.655000px;}
.y24_c02000{bottom:321.555000px;}
.y23_c02000{bottom:340.455000px;}
.y22_c02000{bottom:359.535000px;}
.y21_c02000{bottom:378.435000px;}
.y20_c02000{bottom:408.135000px;}
.y1f_c02000{bottom:439.095000px;}
.y1e_c02000{bottom:470.235000px;}
.y1d_c02000{bottom:501.195000px;}
.y1c_c02000{bottom:532.335000px;}
.y1b_c02000{bottom:563.325000px;}
.y1a_c02000{bottom:594.465000px;}
.y19_c02000{bottom:625.425000px;}
.y18_c02000{bottom:656.565000px;}
.y17_c02000{bottom:687.525000px;}
.y16_c02000{bottom:718.485000px;}
.y15_c02000{bottom:749.625000px;}
.y14_c02000{bottom:780.585000px;}
.y13_c02000{bottom:801.150000px;}
.y12_c02000{bottom:820.050000px;}
.y11_c02000{bottom:839.130000px;}
.y10_c02000{bottom:858.030000px;}
.yf_c02000{bottom:877.110000px;}
.ye_c02000{bottom:896.010000px;}
.yd_c02000{bottom:914.910000px;}
.yc_c02000{bottom:933.990000px;}
.yb_c02000{bottom:952.890000px;}
.ya_c02000{bottom:971.970000px;}
.y9_c02000{bottom:990.870000px;}
.y8_c02000{bottom:1009.770000px;}
.y7_c02000{bottom:1028.850000px;}
.y6_c02000{bottom:1047.750000px;}
.y5_c02000{bottom:1066.860000px;}
.y1_c02000{bottom:1121.400000px;}
.h3_c02000{height:22.500000px;}
.h2_c02000{height:48.871406px;}
.h1_c02000{height:58.651172px;}
.h5_c02000{height:59.383125px;}
.h7_c02000{height:64.546875px;}
.h4_c02000{height:65.010937px;}
.h6_c02000{height:70.664062px;}
.h0_c02000{height:1188.000000px;}
.w1_c02000{width:66.636000px;}
.w0_c02000{width:918.000000px;}
.x0_c02000{left:0.000000px;}
.x3_c02000{left:20.880000px;}
.x1_c02000{left:127.656000px;}
.x5_c02000{left:180.750000px;}
.x6_c02000{left:191.550000px;}
.x4_c02000{left:244.650000px;}
.x2_c02000{left:820.950000px;}
@media print{
.v0_c02000{vertical-align:0.000000pt;}
.ls0_c02000{letter-spacing:0.000000pt;}
.ws0_c02000{word-spacing:-14.720000pt;}
.ws1_c02000{word-spacing:0.000000pt;}
._4_c02000{margin-left:-1.059722pt;}
._8_c02000{width:0.942433pt;}
._7_c02000{width:1.942922pt;}
._5_c02000{width:3.120522pt;}
._6_c02000{width:4.307190pt;}
._a_c02000{width:5.711478pt;}
._9_c02000{width:6.653322pt;}
._2_c02000{width:7.830333pt;}
._1_c02000{width:8.773356pt;}
._3_c02000{width:9.835374pt;}
._f_c02000{width:11.072000pt;}
._e_c02000{width:12.672000pt;}
._14_c02000{width:14.976000pt;}
._c_c02000{width:16.486459pt;}
._b_c02000{width:17.546122pt;}
._d_c02000{width:21.903478pt;}
._15_c02000{width:23.201044pt;}
._12_c02000{width:24.670956pt;}
._13_c02000{width:25.670973pt;}
._10_c02000{width:38.912000pt;}
._11_c02000{width:40.064000pt;}
._0_c02000{width:1334.165333pt;}
.fs0_c02000{font-size:53.120000pt;}
.fs1_c02000{font-size:58.880000pt;}
.fs2_c02000{font-size:64.000000pt;}
.y0_c02000{bottom:0.000000pt;}
.y4_c02000{bottom:4.160000pt;}
.y3_c02000{bottom:37.152000pt;}
.y2_c02000{bottom:67.072000pt;}
.y2b_c02000{bottom:123.552000pt;}
.y2a_c02000{bottom:151.066667pt;}
.y29_c02000{bottom:178.746667pt;}
.y28_c02000{bottom:206.266667pt;}
.y27_c02000{bottom:233.946667pt;}
.y26_c02000{bottom:252.066667pt;}
.y25_c02000{bottom:269.026667pt;}
.y24_c02000{bottom:285.826667pt;}
.y23_c02000{bottom:302.626667pt;}
.y22_c02000{bottom:319.586667pt;}
.y21_c02000{bottom:336.386667pt;}
.y20_c02000{bottom:362.786667pt;}
.y1f_c02000{bottom:390.306667pt;}
.y1e_c02000{bottom:417.986667pt;}
.y1d_c02000{bottom:445.506667pt;}
.y1c_c02000{bottom:473.186667pt;}
.y1b_c02000{bottom:500.733333pt;}
.y1a_c02000{bottom:528.413333pt;}
.y19_c02000{bottom:555.933333pt;}
.y18_c02000{bottom:583.613333pt;}
.y17_c02000{bottom:611.133333pt;}
.y16_c02000{bottom:638.653333pt;}
.y15_c02000{bottom:666.333333pt;}
.y14_c02000{bottom:693.853333pt;}
.y13_c02000{bottom:712.133333pt;}
.y12_c02000{bottom:728.933333pt;}
.y11_c02000{bottom:745.893333pt;}
.y10_c02000{bottom:762.693333pt;}
.yf_c02000{bottom:779.653333pt;}
.ye_c02000{bottom:796.453333pt;}
.yd_c02000{bottom:813.253333pt;}
.yc_c02000{bottom:830.213333pt;}
.yb_c02000{bottom:847.013333pt;}
.ya_c02000{bottom:863.973333pt;}
.y9_c02000{bottom:880.773333pt;}
.y8_c02000{bottom:897.573333pt;}
.y7_c02000{bottom:914.533333pt;}
.y6_c02000{bottom:931.333333pt;}
.y5_c02000{bottom:948.320000pt;}
.y1_c02000{bottom:996.800000pt;}
.h3_c02000{height:20.000000pt;}
.h2_c02000{height:43.441250pt;}
.h1_c02000{height:52.134375pt;}
.h5_c02000{height:52.785000pt;}
.h7_c02000{height:57.375000pt;}
.h4_c02000{height:57.787500pt;}
.h6_c02000{height:62.812500pt;}
.h0_c02000{height:1056.000000pt;}
.w1_c02000{width:59.232000pt;}
.w0_c02000{width:816.000000pt;}
.x0_c02000{left:0.000000pt;}
.x3_c02000{left:18.560000pt;}
.x1_c02000{left:113.472000pt;}
.x5_c02000{left:160.666667pt;}
.x6_c02000{left:170.266667pt;}
.x4_c02000{left:217.466667pt;}
.x2_c02000{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02001 {
    display:none;
  }
  .loading-indicator_c02001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02001 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02001 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02001" -> "#page-container .classname_c02001")
 */
.pf_c02001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02001 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02001 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02001 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02001 {overflow:visible;}
  }
}
.c_c02001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02001 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02001:after { /* webkit #35443 */
  content: '';
}
.t_c02001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02001 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02001 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02001 { /* info for Javascript */
  display:none;
}
.l_c02001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02001:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02001 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02001.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02001;src:url('chunks/assets/font_d46263b7cb0585a37f7cab4e.woff2')format("woff");}.ff1_c02001{font-family:ff1_c02001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02001;src:url('chunks/assets/font_d60adec49e9ac8a724219067.woff2')format("woff");}.ff2_c02001{font-family:ff2_c02001;line-height:0.863770;font-style:normal;font-weight: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_c02001;src:url('chunks/assets/font_815037cb74463e6559061d5a.woff2')format("woff");}.ff3_c02001{font-family:ff3_c02001;line-height:1.112305;font-style:normal;font-weight: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_c02001;src:url('chunks/assets/font_60757e8d75d1b0cfd133fb5c.woff2')format("woff");}.ff4_c02001{font-family:ff4_c02001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02001{vertical-align:0.000000px;}
.ls0_c02001{letter-spacing:0.000000px;}
.sc__c02001{text-shadow:none;}
.sc0_c02001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02001{-webkit-text-stroke:0px transparent;}
.sc0_c02001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02001{word-spacing:0.000000px;}
._2_c02001{margin-left:-1.440000px;}
._6_c02001{width:1.368000px;}
._4_c02001{width:3.384000px;}
._5_c02001{width:4.464000px;}
._3_c02001{width:5.544000px;}
._1_c02001{width:6.768000px;}
._e_c02001{width:8.014908px;}
._f_c02001{width:9.057666px;}
._11_c02001{width:10.086091px;}
._12_c02001{width:11.677523px;}
._19_c02001{width:12.731976px;}
._a_c02001{width:13.752000px;}
._9_c02001{width:15.480000px;}
._10_c02001{width:17.587117px;}
._d_c02001{width:18.613175px;}
._15_c02001{width:19.944000px;}
._16_c02001{width:21.153626px;}
._13_c02001{width:22.608000px;}
._14_c02001{width:23.988000px;}
._7_c02001{width:26.568000px;}
._8_c02001{width:27.792000px;}
._17_c02001{width:33.624000px;}
._18_c02001{width:34.704000px;}
._b_c02001{width:40.248000px;}
._c_c02001{width:41.304000px;}
._0_c02001{width:1500.936000px;}
.fc1_c02001{color:rgb(192,80,77);}
.fc0_c02001{color:rgb(0,0,0);}
.fs0_c02001{font-size:59.760000px;}
.fs1_c02001{font-size:66.240000px;}
.fs2_c02001{font-size:72.000000px;}
.y0_c02001{bottom:0.000000px;}
.y4_c02001{bottom:4.680000px;}
.y3_c02001{bottom:41.796000px;}
.y2_c02001{bottom:75.456000px;}
.y27_c02001{bottom:131.796000px;}
.y26_c02001{bottom:161.310000px;}
.y25_c02001{bottom:192.450000px;}
.y24_c02001{bottom:223.410000px;}
.y23_c02001{bottom:254.550000px;}
.y22_c02001{bottom:285.555000px;}
.y21_c02001{bottom:316.695000px;}
.y20_c02001{bottom:347.655000px;}
.y1f_c02001{bottom:378.795000px;}
.y1e_c02001{bottom:409.755000px;}
.y1d_c02001{bottom:440.895000px;}
.y1c_c02001{bottom:471.855000px;}
.y1b_c02001{bottom:502.995000px;}
.y1a_c02001{bottom:533.985000px;}
.y19_c02001{bottom:565.125000px;}
.y18_c02001{bottom:596.085000px;}
.y17_c02001{bottom:627.225000px;}
.y16_c02001{bottom:658.185000px;}
.y15_c02001{bottom:678.705000px;}
.y14_c02001{bottom:697.605000px;}
.y13_c02001{bottom:716.505000px;}
.y12_c02001{bottom:735.585000px;}
.y11_c02001{bottom:754.485000px;}
.y10_c02001{bottom:773.565000px;}
.yf_c02001{bottom:792.465000px;}
.ye_c02001{bottom:811.410000px;}
.yd_c02001{bottom:830.490000px;}
.yc_c02001{bottom:849.390000px;}
.yb_c02001{bottom:879.090000px;}
.ya_c02001{bottom:910.050000px;}
.y9_c02001{bottom:941.190000px;}
.y8_c02001{bottom:972.150000px;}
.y7_c02001{bottom:1003.290000px;}
.y6_c02001{bottom:1034.250000px;}
.y5_c02001{bottom:1065.420000px;}
.y1_c02001{bottom:1121.400000px;}
.h3_c02001{height:22.500000px;}
.h2_c02001{height:48.871406px;}
.h1_c02001{height:58.651172px;}
.h5_c02001{height:64.546875px;}
.h6_c02001{height:65.010937px;}
.h4_c02001{height:70.664062px;}
.h0_c02001{height:1188.000000px;}
.w1_c02001{width:66.636000px;}
.w0_c02001{width:918.000000px;}
.x0_c02001{left:0.000000px;}
.x3_c02001{left:20.880000px;}
.x1_c02001{left:127.656000px;}
.x5_c02001{left:180.750000px;}
.x4_c02001{left:191.550000px;}
.x2_c02001{left:820.950000px;}
@media print{
.v0_c02001{vertical-align:0.000000pt;}
.ls0_c02001{letter-spacing:0.000000pt;}
.ws0_c02001{word-spacing:0.000000pt;}
._2_c02001{margin-left:-1.280000pt;}
._6_c02001{width:1.216000pt;}
._4_c02001{width:3.008000pt;}
._5_c02001{width:3.968000pt;}
._3_c02001{width:4.928000pt;}
._1_c02001{width:6.016000pt;}
._e_c02001{width:7.124362pt;}
._f_c02001{width:8.051259pt;}
._11_c02001{width:8.965414pt;}
._12_c02001{width:10.380020pt;}
._19_c02001{width:11.317312pt;}
._a_c02001{width:12.224000pt;}
._9_c02001{width:13.760000pt;}
._10_c02001{width:15.632993pt;}
._d_c02001{width:16.545044pt;}
._15_c02001{width:17.728000pt;}
._16_c02001{width:18.803223pt;}
._13_c02001{width:20.096000pt;}
._14_c02001{width:21.322667pt;}
._7_c02001{width:23.616000pt;}
._8_c02001{width:24.704000pt;}
._17_c02001{width:29.888000pt;}
._18_c02001{width:30.848000pt;}
._b_c02001{width:35.776000pt;}
._c_c02001{width:36.714667pt;}
._0_c02001{width:1334.165333pt;}
.fs0_c02001{font-size:53.120000pt;}
.fs1_c02001{font-size:58.880000pt;}
.fs2_c02001{font-size:64.000000pt;}
.y0_c02001{bottom:0.000000pt;}
.y4_c02001{bottom:4.160000pt;}
.y3_c02001{bottom:37.152000pt;}
.y2_c02001{bottom:67.072000pt;}
.y27_c02001{bottom:117.152000pt;}
.y26_c02001{bottom:143.386667pt;}
.y25_c02001{bottom:171.066667pt;}
.y24_c02001{bottom:198.586667pt;}
.y23_c02001{bottom:226.266667pt;}
.y22_c02001{bottom:253.826667pt;}
.y21_c02001{bottom:281.506667pt;}
.y20_c02001{bottom:309.026667pt;}
.y1f_c02001{bottom:336.706667pt;}
.y1e_c02001{bottom:364.226667pt;}
.y1d_c02001{bottom:391.906667pt;}
.y1c_c02001{bottom:419.426667pt;}
.y1b_c02001{bottom:447.106667pt;}
.y1a_c02001{bottom:474.653333pt;}
.y19_c02001{bottom:502.333333pt;}
.y18_c02001{bottom:529.853333pt;}
.y17_c02001{bottom:557.533333pt;}
.y16_c02001{bottom:585.053333pt;}
.y15_c02001{bottom:603.293333pt;}
.y14_c02001{bottom:620.093333pt;}
.y13_c02001{bottom:636.893333pt;}
.y12_c02001{bottom:653.853333pt;}
.y11_c02001{bottom:670.653333pt;}
.y10_c02001{bottom:687.613333pt;}
.yf_c02001{bottom:704.413333pt;}
.ye_c02001{bottom:721.253333pt;}
.yd_c02001{bottom:738.213333pt;}
.yc_c02001{bottom:755.013333pt;}
.yb_c02001{bottom:781.413333pt;}
.ya_c02001{bottom:808.933333pt;}
.y9_c02001{bottom:836.613333pt;}
.y8_c02001{bottom:864.133333pt;}
.y7_c02001{bottom:891.813333pt;}
.y6_c02001{bottom:919.333333pt;}
.y5_c02001{bottom:947.040000pt;}
.y1_c02001{bottom:996.800000pt;}
.h3_c02001{height:20.000000pt;}
.h2_c02001{height:43.441250pt;}
.h1_c02001{height:52.134375pt;}
.h5_c02001{height:57.375000pt;}
.h6_c02001{height:57.787500pt;}
.h4_c02001{height:62.812500pt;}
.h0_c02001{height:1056.000000pt;}
.w1_c02001{width:59.232000pt;}
.w0_c02001{width:816.000000pt;}
.x0_c02001{left:0.000000pt;}
.x3_c02001{left:18.560000pt;}
.x1_c02001{left:113.472000pt;}
.x5_c02001{left:160.666667pt;}
.x4_c02001{left:170.266667pt;}
.x2_c02001{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02002 {
    display:none;
  }
  .loading-indicator_c02002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02002 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02002 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02002" -> "#page-container .classname_c02002")
 */
.pf_c02002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02002 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02002 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02002 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02002 {overflow:visible;}
  }
}
.c_c02002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02002 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02002:after { /* webkit #35443 */
  content: '';
}
.t_c02002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02002 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02002 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02002 { /* info for Javascript */
  display:none;
}
.l_c02002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02002:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02002 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02002.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02002;src:url('chunks/assets/font_f71c4cf6cfa791c0f8b49476.woff2')format("woff");}.ff1_c02002{font-family:ff1_c02002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02002;src:url('chunks/assets/font_90ff2cfd4125158ac672eddc.woff2')format("woff");}.ff2_c02002{font-family:ff2_c02002;line-height:0.863770;font-style:normal;font-weight: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_c02002;src:url('chunks/assets/font_4a98c77c6c659b117c5ecac7.woff2')format("woff");}.ff3_c02002{font-family:ff3_c02002;line-height:1.112305;font-style:normal;font-weight: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_c02002;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02002{font-family:ff4_c02002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02002{vertical-align:-27.360000px;}
.v0_c02002{vertical-align:0.000000px;}
.v1_c02002{vertical-align:33.120000px;}
.ls3_c02002{letter-spacing:0.000000px;}
.ls1_c02002{letter-spacing:0.150000px;}
.ls2_c02002{letter-spacing:0.180000px;}
.ls0_c02002{letter-spacing:0.360000px;}
.sc__c02002{text-shadow:none;}
.sc0_c02002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02002{-webkit-text-stroke:0px transparent;}
.sc0_c02002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02002{word-spacing:-18.000000px;}
.ws2_c02002{word-spacing:-14.940000px;}
.ws1_c02002{word-spacing:-9.720000px;}
.ws3_c02002{word-spacing:0.000000px;}
._13_c02002{margin-left:-12.817920px;}
._12_c02002{margin-left:-2.354715px;}
._2_c02002{margin-left:-1.324866px;}
._6_c02002{width:1.126212px;}
._c_c02002{width:2.517120px;}
._4_c02002{width:3.643200px;}
._f_c02002{width:5.763807px;}
._e_c02002{width:7.551228px;}
._10_c02002{width:8.744409px;}
._a_c02002{width:9.936000px;}
._b_c02002{width:11.724679px;}
._3_c02002{width:15.103117px;}
._11_c02002{width:16.200000px;}
._14_c02002{width:18.190908px;}
._8_c02002{width:19.275641px;}
._9_c02002{width:20.600971px;}
._5_c02002{width:22.852800px;}
._7_c02002{width:24.309616px;}
._d_c02002{width:25.834329px;}
._1_c02002{width:39.280254px;}
._15_c02002{width:117.308940px;}
._0_c02002{width:1500.936000px;}
.fc1_c02002{color:rgb(192,80,77);}
.fc2_c02002{color:rgb(51,51,51);}
.fc0_c02002{color:rgb(0,0,0);}
.fs4_c02002{font-size:38.880000px;}
.fs3_c02002{font-size:48.240000px;}
.fs0_c02002{font-size:59.760000px;}
.fs1_c02002{font-size:66.240000px;}
.fs2_c02002{font-size:72.000000px;}
.y0_c02002{bottom:0.000000px;}
.y4_c02002{bottom:4.680000px;}
.y3_c02002{bottom:41.796000px;}
.y2_c02002{bottom:75.456000px;}
.y2f_c02002{bottom:109.836000px;}
.y2e_c02002{bottom:127.116000px;}
.y2d_c02002{bottom:144.396000px;}
.y2c_c02002{bottom:161.670000px;}
.y2b_c02002{bottom:178.950000px;}
.y2a_c02002{bottom:196.050000px;}
.y29_c02002{bottom:213.330000px;}
.y28_c02002{bottom:230.610000px;}
.y27_c02002{bottom:247.890000px;}
.y26_c02002{bottom:265.170000px;}
.y25_c02002{bottom:282.315000px;}
.y24_c02002{bottom:299.595000px;}
.y23_c02002{bottom:323.715000px;}
.y22_c02002{bottom:335.055000px;}
.y21_c02002{bottom:376.995000px;}
.y20_c02002{bottom:408.135000px;}
.y1f_c02002{bottom:439.095000px;}
.y1e_c02002{bottom:470.235000px;}
.y1d_c02002{bottom:501.195000px;}
.y1c_c02002{bottom:532.335000px;}
.y1b_c02002{bottom:563.325000px;}
.y1a_c02002{bottom:594.465000px;}
.y19_c02002{bottom:625.425000px;}
.y18_c02002{bottom:656.565000px;}
.y17_c02002{bottom:687.525000px;}
.y16_c02002{bottom:718.485000px;}
.y15_c02002{bottom:749.625000px;}
.y14_c02002{bottom:780.225000px;}
.y13_c02002{bottom:801.150000px;}
.y12_c02002{bottom:820.050000px;}
.y11_c02002{bottom:839.130000px;}
.y10_c02002{bottom:858.030000px;}
.yf_c02002{bottom:877.110000px;}
.ye_c02002{bottom:896.010000px;}
.yd_c02002{bottom:914.910000px;}
.yc_c02002{bottom:933.990000px;}
.yb_c02002{bottom:952.890000px;}
.ya_c02002{bottom:971.970000px;}
.y9_c02002{bottom:990.870000px;}
.y8_c02002{bottom:1009.770000px;}
.y7_c02002{bottom:1028.850000px;}
.y6_c02002{bottom:1047.750000px;}
.y5_c02002{bottom:1066.860000px;}
.y1_c02002{bottom:1121.400000px;}
.h3_c02002{height:22.500000px;}
.hb_c02002{height:38.158594px;}
.h2_c02002{height:48.871406px;}
.h1_c02002{height:58.651172px;}
.h5_c02002{height:59.383125px;}
.hc_c02002{height:60.226875px;}
.h9_c02002{height:64.546875px;}
.h4_c02002{height:65.010937px;}
.h6_c02002{height:66.757500px;}
.h8_c02002{height:70.664062px;}
.h7_c02002{height:72.562500px;}
.ha_c02002{height:80.464922px;}
.h0_c02002{height:1188.000000px;}
.w1_c02002{width:66.636000px;}
.w0_c02002{width:918.000000px;}
.x0_c02002{left:0.000000px;}
.x3_c02002{left:20.880000px;}
.x1_c02002{left:127.656000px;}
.x5_c02002{left:180.750000px;}
.x4_c02002{left:191.550000px;}
.x2_c02002{left:820.950000px;}
@media print{
.v2_c02002{vertical-align:-24.320000pt;}
.v0_c02002{vertical-align:0.000000pt;}
.v1_c02002{vertical-align:29.440000pt;}
.ls3_c02002{letter-spacing:0.000000pt;}
.ls1_c02002{letter-spacing:0.133333pt;}
.ls2_c02002{letter-spacing:0.160000pt;}
.ls0_c02002{letter-spacing:0.320000pt;}
.ws0_c02002{word-spacing:-16.000000pt;}
.ws2_c02002{word-spacing:-13.280000pt;}
.ws1_c02002{word-spacing:-8.640000pt;}
.ws3_c02002{word-spacing:0.000000pt;}
._13_c02002{margin-left:-11.393707pt;}
._12_c02002{margin-left:-2.093080pt;}
._2_c02002{margin-left:-1.177659pt;}
._6_c02002{width:1.001078pt;}
._c_c02002{width:2.237440pt;}
._4_c02002{width:3.238400pt;}
._f_c02002{width:5.123384pt;}
._e_c02002{width:6.712202pt;}
._10_c02002{width:7.772808pt;}
._a_c02002{width:8.832000pt;}
._b_c02002{width:10.421937pt;}
._3_c02002{width:13.424993pt;}
._11_c02002{width:14.400000pt;}
._14_c02002{width:16.169696pt;}
._8_c02002{width:17.133903pt;}
._9_c02002{width:18.311974pt;}
._5_c02002{width:20.313600pt;}
._7_c02002{width:21.608548pt;}
._d_c02002{width:22.963848pt;}
._1_c02002{width:34.915781pt;}
._15_c02002{width:104.274613pt;}
._0_c02002{width:1334.165333pt;}
.fs4_c02002{font-size:34.560000pt;}
.fs3_c02002{font-size:42.880000pt;}
.fs0_c02002{font-size:53.120000pt;}
.fs1_c02002{font-size:58.880000pt;}
.fs2_c02002{font-size:64.000000pt;}
.y0_c02002{bottom:0.000000pt;}
.y4_c02002{bottom:4.160000pt;}
.y3_c02002{bottom:37.152000pt;}
.y2_c02002{bottom:67.072000pt;}
.y2f_c02002{bottom:97.632000pt;}
.y2e_c02002{bottom:112.992000pt;}
.y2d_c02002{bottom:128.352000pt;}
.y2c_c02002{bottom:143.706667pt;}
.y2b_c02002{bottom:159.066667pt;}
.y2a_c02002{bottom:174.266667pt;}
.y29_c02002{bottom:189.626667pt;}
.y28_c02002{bottom:204.986667pt;}
.y27_c02002{bottom:220.346667pt;}
.y26_c02002{bottom:235.706667pt;}
.y25_c02002{bottom:250.946667pt;}
.y24_c02002{bottom:266.306667pt;}
.y23_c02002{bottom:287.746667pt;}
.y22_c02002{bottom:297.826667pt;}
.y21_c02002{bottom:335.106667pt;}
.y20_c02002{bottom:362.786667pt;}
.y1f_c02002{bottom:390.306667pt;}
.y1e_c02002{bottom:417.986667pt;}
.y1d_c02002{bottom:445.506667pt;}
.y1c_c02002{bottom:473.186667pt;}
.y1b_c02002{bottom:500.733333pt;}
.y1a_c02002{bottom:528.413333pt;}
.y19_c02002{bottom:555.933333pt;}
.y18_c02002{bottom:583.613333pt;}
.y17_c02002{bottom:611.133333pt;}
.y16_c02002{bottom:638.653333pt;}
.y15_c02002{bottom:666.333333pt;}
.y14_c02002{bottom:693.533333pt;}
.y13_c02002{bottom:712.133333pt;}
.y12_c02002{bottom:728.933333pt;}
.y11_c02002{bottom:745.893333pt;}
.y10_c02002{bottom:762.693333pt;}
.yf_c02002{bottom:779.653333pt;}
.ye_c02002{bottom:796.453333pt;}
.yd_c02002{bottom:813.253333pt;}
.yc_c02002{bottom:830.213333pt;}
.yb_c02002{bottom:847.013333pt;}
.ya_c02002{bottom:863.973333pt;}
.y9_c02002{bottom:880.773333pt;}
.y8_c02002{bottom:897.573333pt;}
.y7_c02002{bottom:914.533333pt;}
.y6_c02002{bottom:931.333333pt;}
.y5_c02002{bottom:948.320000pt;}
.y1_c02002{bottom:996.800000pt;}
.h3_c02002{height:20.000000pt;}
.hb_c02002{height:33.918750pt;}
.h2_c02002{height:43.441250pt;}
.h1_c02002{height:52.134375pt;}
.h5_c02002{height:52.785000pt;}
.hc_c02002{height:53.535000pt;}
.h9_c02002{height:57.375000pt;}
.h4_c02002{height:57.787500pt;}
.h6_c02002{height:59.340000pt;}
.h8_c02002{height:62.812500pt;}
.h7_c02002{height:64.500000pt;}
.ha_c02002{height:71.524375pt;}
.h0_c02002{height:1056.000000pt;}
.w1_c02002{width:59.232000pt;}
.w0_c02002{width:816.000000pt;}
.x0_c02002{left:0.000000pt;}
.x3_c02002{left:18.560000pt;}
.x1_c02002{left:113.472000pt;}
.x5_c02002{left:160.666667pt;}
.x4_c02002{left:170.266667pt;}
.x2_c02002{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02003 {
    display:none;
  }
  .loading-indicator_c02003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02003 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02003 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02003" -> "#page-container .classname_c02003")
 */
.pf_c02003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02003 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02003 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02003 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02003 {overflow:visible;}
  }
}
.c_c02003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02003 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02003:after { /* webkit #35443 */
  content: '';
}
.t_c02003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02003 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02003 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02003 { /* info for Javascript */
  display:none;
}
.l_c02003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02003:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02003 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02003.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02003;src:url('chunks/assets/font_acd50c07ac2ef82779f70a70.woff2')format("woff");}.ff1_c02003{font-family:ff1_c02003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02003;src:url('chunks/assets/font_418adbb6bf6a6e0530950662.woff2')format("woff");}.ff2_c02003{font-family:ff2_c02003;line-height:0.863770;font-style:normal;font-weight: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_c02003;src:url('chunks/assets/font_805d5aff7b311ebf333e1a86.woff2')format("woff");}.ff3_c02003{font-family:ff3_c02003;line-height:0.682617;font-style:normal;font-weight: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_c02003;src:url('chunks/assets/font_3f2628b24ab6ca555569b647.woff2')format("woff");}.ff4_c02003{font-family:ff4_c02003;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02003{vertical-align:0.000000px;}
.ls1_c02003{letter-spacing:0.000000px;}
.ls0_c02003{letter-spacing:42.785280px;}
.sc__c02003{text-shadow:none;}
.sc0_c02003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02003{-webkit-text-stroke:0px transparent;}
.sc0_c02003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02003{word-spacing:-0.066240px;}
.ws1_c02003{word-spacing:0.000000px;}
._3_c02003{margin-left:-1.080000px;}
._2_c02003{width:1.224000px;}
._1_c02003{width:2.424000px;}
._b_c02003{width:4.107012px;}
._d_c02003{width:5.981959px;}
._e_c02003{width:7.732858px;}
._4_c02003{width:9.360000px;}
._5_c02003{width:11.232000px;}
._8_c02003{width:12.384000px;}
._9_c02003{width:13.548024px;}
._f_c02003{width:14.800254px;}
._10_c02003{width:15.912000px;}
._a_c02003{width:21.528000px;}
._6_c02003{width:22.824000px;}
._7_c02003{width:23.832000px;}
._c_c02003{width:24.953797px;}
._0_c02003{width:1500.936000px;}
.fc1_c02003{color:rgb(192,80,77);}
.fc0_c02003{color:rgb(0,0,0);}
.fs0_c02003{font-size:59.760000px;}
.fs1_c02003{font-size:66.240000px;}
.fs2_c02003{font-size:72.000000px;}
.y0_c02003{bottom:0.000000px;}
.y4_c02003{bottom:4.680000px;}
.y3_c02003{bottom:41.796000px;}
.y2_c02003{bottom:75.456000px;}
.y2f_c02003{bottom:112.176000px;}
.y2e_c02003{bottom:143.316000px;}
.y2d_c02003{bottom:174.270000px;}
.y2c_c02003{bottom:204.150000px;}
.y2b_c02003{bottom:223.230000px;}
.y2a_c02003{bottom:242.130000px;}
.y29_c02003{bottom:261.210000px;}
.y28_c02003{bottom:280.155000px;}
.y27_c02003{bottom:299.055000px;}
.y26_c02003{bottom:318.135000px;}
.y25_c02003{bottom:337.035000px;}
.y24_c02003{bottom:356.115000px;}
.y23_c02003{bottom:375.015000px;}
.y22_c02003{bottom:393.915000px;}
.y21_c02003{bottom:412.995000px;}
.y20_c02003{bottom:431.895000px;}
.y1f_c02003{bottom:450.975000px;}
.y1e_c02003{bottom:469.875000px;}
.y1d_c02003{bottom:488.775000px;}
.y1c_c02003{bottom:507.855000px;}
.y1b_c02003{bottom:526.755000px;}
.y1a_c02003{bottom:545.865000px;}
.y19_c02003{bottom:564.765000px;}
.y18_c02003{bottom:583.665000px;}
.y17_c02003{bottom:602.745000px;}
.y16_c02003{bottom:621.645000px;}
.y15_c02003{bottom:640.725000px;}
.y14_c02003{bottom:659.625000px;}
.y13_c02003{bottom:678.705000px;}
.y12_c02003{bottom:697.605000px;}
.y11_c02003{bottom:716.505000px;}
.y10_c02003{bottom:735.945000px;}
.yf_c02003{bottom:756.285000px;}
.ye_c02003{bottom:785.805000px;}
.yd_c02003{bottom:816.990000px;}
.yc_c02003{bottom:847.950000px;}
.yb_c02003{bottom:879.090000px;}
.ya_c02003{bottom:910.050000px;}
.y9_c02003{bottom:941.190000px;}
.y8_c02003{bottom:972.150000px;}
.y7_c02003{bottom:1003.290000px;}
.y6_c02003{bottom:1034.250000px;}
.y5_c02003{bottom:1065.420000px;}
.y1_c02003{bottom:1121.400000px;}
.h3_c02003{height:22.500000px;}
.h2_c02003{height:48.871406px;}
.h1_c02003{height:58.651172px;}
.h5_c02003{height:65.010937px;}
.h6_c02003{height:68.084282px;}
.h4_c02003{height:70.664062px;}
.h0_c02003{height:1188.000000px;}
.w1_c02003{width:66.636000px;}
.w0_c02003{width:918.000000px;}
.x0_c02003{left:0.000000px;}
.x3_c02003{left:20.880000px;}
.x1_c02003{left:127.656000px;}
.x4_c02003{left:180.750000px;}
.x5_c02003{left:191.550000px;}
.x6_c02003{left:208.650000px;}
.x7_c02003{left:235.650000px;}
.x2_c02003{left:820.950000px;}
@media print{
.v0_c02003{vertical-align:0.000000pt;}
.ls1_c02003{letter-spacing:0.000000pt;}
.ls0_c02003{letter-spacing:38.031360pt;}
.ws0_c02003{word-spacing:-0.058880pt;}
.ws1_c02003{word-spacing:0.000000pt;}
._3_c02003{margin-left:-0.960000pt;}
._2_c02003{width:1.088000pt;}
._1_c02003{width:2.154667pt;}
._b_c02003{width:3.650678pt;}
._d_c02003{width:5.317297pt;}
._e_c02003{width:6.873651pt;}
._4_c02003{width:8.320000pt;}
._5_c02003{width:9.984000pt;}
._8_c02003{width:11.008000pt;}
._9_c02003{width:12.042688pt;}
._f_c02003{width:13.155781pt;}
._10_c02003{width:14.144000pt;}
._a_c02003{width:19.136000pt;}
._6_c02003{width:20.288000pt;}
._7_c02003{width:21.184000pt;}
._c_c02003{width:22.181153pt;}
._0_c02003{width:1334.165333pt;}
.fs0_c02003{font-size:53.120000pt;}
.fs1_c02003{font-size:58.880000pt;}
.fs2_c02003{font-size:64.000000pt;}
.y0_c02003{bottom:0.000000pt;}
.y4_c02003{bottom:4.160000pt;}
.y3_c02003{bottom:37.152000pt;}
.y2_c02003{bottom:67.072000pt;}
.y2f_c02003{bottom:99.712000pt;}
.y2e_c02003{bottom:127.392000pt;}
.y2d_c02003{bottom:154.906667pt;}
.y2c_c02003{bottom:181.466667pt;}
.y2b_c02003{bottom:198.426667pt;}
.y2a_c02003{bottom:215.226667pt;}
.y29_c02003{bottom:232.186667pt;}
.y28_c02003{bottom:249.026667pt;}
.y27_c02003{bottom:265.826667pt;}
.y26_c02003{bottom:282.786667pt;}
.y25_c02003{bottom:299.586667pt;}
.y24_c02003{bottom:316.546667pt;}
.y23_c02003{bottom:333.346667pt;}
.y22_c02003{bottom:350.146667pt;}
.y21_c02003{bottom:367.106667pt;}
.y20_c02003{bottom:383.906667pt;}
.y1f_c02003{bottom:400.866667pt;}
.y1e_c02003{bottom:417.666667pt;}
.y1d_c02003{bottom:434.466667pt;}
.y1c_c02003{bottom:451.426667pt;}
.y1b_c02003{bottom:468.226667pt;}
.y1a_c02003{bottom:485.213333pt;}
.y19_c02003{bottom:502.013333pt;}
.y18_c02003{bottom:518.813333pt;}
.y17_c02003{bottom:535.773333pt;}
.y16_c02003{bottom:552.573333pt;}
.y15_c02003{bottom:569.533333pt;}
.y14_c02003{bottom:586.333333pt;}
.y13_c02003{bottom:603.293333pt;}
.y12_c02003{bottom:620.093333pt;}
.y11_c02003{bottom:636.893333pt;}
.y10_c02003{bottom:654.173333pt;}
.yf_c02003{bottom:672.253333pt;}
.ye_c02003{bottom:698.493333pt;}
.yd_c02003{bottom:726.213333pt;}
.yc_c02003{bottom:753.733333pt;}
.yb_c02003{bottom:781.413333pt;}
.ya_c02003{bottom:808.933333pt;}
.y9_c02003{bottom:836.613333pt;}
.y8_c02003{bottom:864.133333pt;}
.y7_c02003{bottom:891.813333pt;}
.y6_c02003{bottom:919.333333pt;}
.y5_c02003{bottom:947.040000pt;}
.y1_c02003{bottom:996.800000pt;}
.h3_c02003{height:20.000000pt;}
.h2_c02003{height:43.441250pt;}
.h1_c02003{height:52.134375pt;}
.h5_c02003{height:57.787500pt;}
.h6_c02003{height:60.519362pt;}
.h4_c02003{height:62.812500pt;}
.h0_c02003{height:1056.000000pt;}
.w1_c02003{width:59.232000pt;}
.w0_c02003{width:816.000000pt;}
.x0_c02003{left:0.000000pt;}
.x3_c02003{left:18.560000pt;}
.x1_c02003{left:113.472000pt;}
.x4_c02003{left:160.666667pt;}
.x5_c02003{left:170.266667pt;}
.x6_c02003{left:185.466667pt;}
.x7_c02003{left:209.466667pt;}
.x2_c02003{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02004 {
    display:none;
  }
  .loading-indicator_c02004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02004" -> "#page-container .classname_c02004")
 */
.pf_c02004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02004 {overflow:visible;}
  }
}
.c_c02004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02004:after { /* webkit #35443 */
  content: '';
}
.t_c02004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02004 { /* info for Javascript */
  display:none;
}
.l_c02004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02004:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02004 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02004.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02004;src:url('chunks/assets/font_7a7bd65b5a69bd379f2f9572.woff2')format("woff");}.ff1_c02004{font-family:ff1_c02004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02004;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02004{font-family:ff2_c02004;line-height:0.863770;font-style:normal;font-weight: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_c02004;src:url('chunks/assets/font_8f63e7436a942c8ed1f0f4bc.woff2')format("woff");}.ff3_c02004{font-family:ff3_c02004;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02004{vertical-align:0.000000px;}
.ls1_c02004{letter-spacing:-0.144000px;}
.ls0_c02004{letter-spacing:0.000000px;}
.sc__c02004{text-shadow:none;}
.sc0_c02004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02004{-webkit-text-stroke:0px transparent;}
.sc0_c02004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02004{word-spacing:-18.000000px;}
.ws1_c02004{word-spacing:-17.856000px;}
.ws2_c02004{word-spacing:0.000000px;}
._4_c02004{margin-left:-1.800000px;}
._3_c02004{width:1.152000px;}
._9_c02004{width:2.183976px;}
._d_c02004{width:3.360024px;}
._b_c02004{width:4.392000px;}
._1_c02004{width:5.616000px;}
._2_c02004{width:6.768000px;}
._a_c02004{width:7.776000px;}
._6_c02004{width:8.856000px;}
._5_c02004{width:9.864000px;}
._12_c02004{width:12.660000px;}
._11_c02004{width:13.896000px;}
._13_c02004{width:15.312000px;}
._14_c02004{width:19.008000px;}
._7_c02004{width:24.840000px;}
._8_c02004{width:25.920000px;}
._f_c02004{width:30.600000px;}
._10_c02004{width:31.956048px;}
._c_c02004{width:32.976000px;}
._e_c02004{width:47.160000px;}
._0_c02004{width:1500.936000px;}
.fc1_c02004{color:rgb(192,80,77);}
.fc0_c02004{color:rgb(0,0,0);}
.fs0_c02004{font-size:59.760000px;}
.fs1_c02004{font-size:66.240000px;}
.fs2_c02004{font-size:72.000000px;}
.y0_c02004{bottom:0.000000px;}
.y4_c02004{bottom:4.680000px;}
.y3_c02004{bottom:41.796000px;}
.y2_c02004{bottom:75.456000px;}
.y22_c02004{bottom:164.910000px;}
.y21_c02004{bottom:195.870000px;}
.y20_c02004{bottom:226.830000px;}
.y1f_c02004{bottom:257.970000px;}
.y1e_c02004{bottom:288.975000px;}
.y1d_c02004{bottom:320.115000px;}
.y1c_c02004{bottom:351.075000px;}
.y1b_c02004{bottom:382.215000px;}
.y1a_c02004{bottom:413.175000px;}
.y19_c02004{bottom:444.315000px;}
.y18_c02004{bottom:475.275000px;}
.y17_c02004{bottom:506.415000px;}
.y16_c02004{bottom:537.405000px;}
.y15_c02004{bottom:568.545000px;}
.y14_c02004{bottom:599.505000px;}
.y13_c02004{bottom:630.645000px;}
.y12_c02004{bottom:661.605000px;}
.y11_c02004{bottom:692.745000px;}
.y10_c02004{bottom:723.705000px;}
.yf_c02004{bottom:754.845000px;}
.ye_c02004{bottom:785.805000px;}
.yd_c02004{bottom:816.990000px;}
.yc_c02004{bottom:847.950000px;}
.yb_c02004{bottom:879.090000px;}
.ya_c02004{bottom:910.050000px;}
.y9_c02004{bottom:941.190000px;}
.y8_c02004{bottom:972.150000px;}
.y7_c02004{bottom:1003.290000px;}
.y6_c02004{bottom:1034.250000px;}
.y5_c02004{bottom:1065.420000px;}
.y1_c02004{bottom:1121.400000px;}
.h3_c02004{height:22.500000px;}
.h2_c02004{height:48.871406px;}
.h1_c02004{height:58.651172px;}
.h5_c02004{height:64.546875px;}
.h4_c02004{height:70.664062px;}
.h0_c02004{height:1188.000000px;}
.w1_c02004{width:66.636000px;}
.w0_c02004{width:918.000000px;}
.x0_c02004{left:0.000000px;}
.x3_c02004{left:16.560000px;}
.x1_c02004{left:127.656000px;}
.x4_c02004{left:180.750000px;}
.x2_c02004{left:820.950000px;}
@media print{
.v0_c02004{vertical-align:0.000000pt;}
.ls1_c02004{letter-spacing:-0.128000pt;}
.ls0_c02004{letter-spacing:0.000000pt;}
.ws0_c02004{word-spacing:-16.000000pt;}
.ws1_c02004{word-spacing:-15.872000pt;}
.ws2_c02004{word-spacing:0.000000pt;}
._4_c02004{margin-left:-1.600000pt;}
._3_c02004{width:1.024000pt;}
._9_c02004{width:1.941312pt;}
._d_c02004{width:2.986688pt;}
._b_c02004{width:3.904000pt;}
._1_c02004{width:4.992000pt;}
._2_c02004{width:6.016000pt;}
._a_c02004{width:6.912000pt;}
._6_c02004{width:7.872000pt;}
._5_c02004{width:8.768000pt;}
._12_c02004{width:11.253333pt;}
._11_c02004{width:12.352000pt;}
._13_c02004{width:13.610667pt;}
._14_c02004{width:16.896000pt;}
._7_c02004{width:22.080000pt;}
._8_c02004{width:23.040000pt;}
._f_c02004{width:27.200000pt;}
._10_c02004{width:28.405376pt;}
._c_c02004{width:29.312000pt;}
._e_c02004{width:41.920000pt;}
._0_c02004{width:1334.165333pt;}
.fs0_c02004{font-size:53.120000pt;}
.fs1_c02004{font-size:58.880000pt;}
.fs2_c02004{font-size:64.000000pt;}
.y0_c02004{bottom:0.000000pt;}
.y4_c02004{bottom:4.160000pt;}
.y3_c02004{bottom:37.152000pt;}
.y2_c02004{bottom:67.072000pt;}
.y22_c02004{bottom:146.586667pt;}
.y21_c02004{bottom:174.106667pt;}
.y20_c02004{bottom:201.626667pt;}
.y1f_c02004{bottom:229.306667pt;}
.y1e_c02004{bottom:256.866667pt;}
.y1d_c02004{bottom:284.546667pt;}
.y1c_c02004{bottom:312.066667pt;}
.y1b_c02004{bottom:339.746667pt;}
.y1a_c02004{bottom:367.266667pt;}
.y19_c02004{bottom:394.946667pt;}
.y18_c02004{bottom:422.466667pt;}
.y17_c02004{bottom:450.146667pt;}
.y16_c02004{bottom:477.693333pt;}
.y15_c02004{bottom:505.373333pt;}
.y14_c02004{bottom:532.893333pt;}
.y13_c02004{bottom:560.573333pt;}
.y12_c02004{bottom:588.093333pt;}
.y11_c02004{bottom:615.773333pt;}
.y10_c02004{bottom:643.293333pt;}
.yf_c02004{bottom:670.973333pt;}
.ye_c02004{bottom:698.493333pt;}
.yd_c02004{bottom:726.213333pt;}
.yc_c02004{bottom:753.733333pt;}
.yb_c02004{bottom:781.413333pt;}
.ya_c02004{bottom:808.933333pt;}
.y9_c02004{bottom:836.613333pt;}
.y8_c02004{bottom:864.133333pt;}
.y7_c02004{bottom:891.813333pt;}
.y6_c02004{bottom:919.333333pt;}
.y5_c02004{bottom:947.040000pt;}
.y1_c02004{bottom:996.800000pt;}
.h3_c02004{height:20.000000pt;}
.h2_c02004{height:43.441250pt;}
.h1_c02004{height:52.134375pt;}
.h5_c02004{height:57.375000pt;}
.h4_c02004{height:62.812500pt;}
.h0_c02004{height:1056.000000pt;}
.w1_c02004{width:59.232000pt;}
.w0_c02004{width:816.000000pt;}
.x0_c02004{left:0.000000pt;}
.x3_c02004{left:14.720000pt;}
.x1_c02004{left:113.472000pt;}
.x4_c02004{left:160.666667pt;}
.x2_c02004{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02005 {
    display:none;
  }
  .loading-indicator_c02005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02005 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02005 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02005" -> "#page-container .classname_c02005")
 */
.pf_c02005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02005 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02005 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02005 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02005 {overflow:visible;}
  }
}
.c_c02005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02005 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02005:after { /* webkit #35443 */
  content: '';
}
.t_c02005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02005 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02005 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02005 { /* info for Javascript */
  display:none;
}
.l_c02005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02005:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02005 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02005.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02005;src:url('chunks/assets/font_c0decf9fa668d2831156aeb7.woff2')format("woff");}.ff1_c02005{font-family:ff1_c02005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02005;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02005{font-family:ff2_c02005;line-height:0.863770;font-style:normal;font-weight: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_c02005;src:url('chunks/assets/font_3e634026963959cf3c533fa7.woff2')format("woff");}.ff3_c02005{font-family:ff3_c02005;line-height:1.112305;font-style:normal;font-weight: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_c02005;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02005{font-family:ff4_c02005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02005{vertical-align:0.000000px;}
.ls1_c02005{letter-spacing:0.000000px;}
.ls0_c02005{letter-spacing:5.760000px;}
.sc__c02005{text-shadow:none;}
.sc0_c02005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02005{-webkit-text-stroke:0px transparent;}
.sc0_c02005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02005{word-spacing:0.000000px;}
._2_c02005{margin-left:-1.224000px;}
._3_c02005{width:1.296000px;}
._7_c02005{width:2.460000px;}
._f_c02005{width:3.708024px;}
._8_c02005{width:5.400000px;}
._9_c02005{width:6.996000px;}
._b_c02005{width:8.568000px;}
._a_c02005{width:9.636000px;}
._10_c02005{width:11.196000px;}
._5_c02005{width:12.816000px;}
._6_c02005{width:13.824000px;}
._15_c02005{width:15.215976px;}
._4_c02005{width:19.224000px;}
._1_c02005{width:20.664000px;}
._13_c02005{width:22.320000px;}
._14_c02005{width:23.544000px;}
._e_c02005{width:24.984000px;}
._c_c02005{width:28.800000px;}
._d_c02005{width:30.384000px;}
._11_c02005{width:31.752000px;}
._12_c02005{width:33.048000px;}
._0_c02005{width:1500.936000px;}
.fc1_c02005{color:rgb(192,80,77);}
.fc0_c02005{color:rgb(0,0,0);}
.fs0_c02005{font-size:59.760000px;}
.fs1_c02005{font-size:66.240000px;}
.fs2_c02005{font-size:72.000000px;}
.y0_c02005{bottom:0.000000px;}
.y4_c02005{bottom:4.680000px;}
.y3_c02005{bottom:41.796000px;}
.y2_c02005{bottom:75.456000px;}
.y23_c02005{bottom:133.776000px;}
.y22_c02005{bottom:164.910000px;}
.y21_c02005{bottom:195.870000px;}
.y20_c02005{bottom:226.830000px;}
.y1f_c02005{bottom:257.970000px;}
.y1e_c02005{bottom:288.975000px;}
.y1d_c02005{bottom:320.115000px;}
.y1c_c02005{bottom:351.075000px;}
.y1b_c02005{bottom:382.215000px;}
.y1a_c02005{bottom:413.175000px;}
.y19_c02005{bottom:444.315000px;}
.y18_c02005{bottom:475.275000px;}
.y17_c02005{bottom:506.415000px;}
.y16_c02005{bottom:537.405000px;}
.y15_c02005{bottom:568.545000px;}
.y14_c02005{bottom:599.505000px;}
.y13_c02005{bottom:630.645000px;}
.y12_c02005{bottom:661.605000px;}
.y11_c02005{bottom:692.745000px;}
.y10_c02005{bottom:723.705000px;}
.yf_c02005{bottom:754.845000px;}
.ye_c02005{bottom:785.805000px;}
.yd_c02005{bottom:816.990000px;}
.yc_c02005{bottom:847.950000px;}
.yb_c02005{bottom:879.090000px;}
.ya_c02005{bottom:910.050000px;}
.y9_c02005{bottom:941.190000px;}
.y8_c02005{bottom:972.150000px;}
.y7_c02005{bottom:1003.290000px;}
.y6_c02005{bottom:1034.250000px;}
.y5_c02005{bottom:1065.420000px;}
.y1_c02005{bottom:1121.400000px;}
.h3_c02005{height:22.500000px;}
.h2_c02005{height:48.871406px;}
.h1_c02005{height:58.651172px;}
.h5_c02005{height:64.546875px;}
.h4_c02005{height:70.664062px;}
.h6_c02005{height:72.562500px;}
.h0_c02005{height:1188.000000px;}
.w1_c02005{width:66.636000px;}
.w0_c02005{width:918.000000px;}
.x0_c02005{left:0.000000px;}
.x3_c02005{left:16.560000px;}
.x1_c02005{left:127.656000px;}
.x4_c02005{left:180.750000px;}
.x2_c02005{left:820.950000px;}
@media print{
.v0_c02005{vertical-align:0.000000pt;}
.ls1_c02005{letter-spacing:0.000000pt;}
.ls0_c02005{letter-spacing:5.120000pt;}
.ws0_c02005{word-spacing:0.000000pt;}
._2_c02005{margin-left:-1.088000pt;}
._3_c02005{width:1.152000pt;}
._7_c02005{width:2.186667pt;}
._f_c02005{width:3.296021pt;}
._8_c02005{width:4.800000pt;}
._9_c02005{width:6.218667pt;}
._b_c02005{width:7.616000pt;}
._a_c02005{width:8.565333pt;}
._10_c02005{width:9.952000pt;}
._5_c02005{width:11.392000pt;}
._6_c02005{width:12.288000pt;}
._15_c02005{width:13.525312pt;}
._4_c02005{width:17.088000pt;}
._1_c02005{width:18.368000pt;}
._13_c02005{width:19.840000pt;}
._14_c02005{width:20.928000pt;}
._e_c02005{width:22.208000pt;}
._c_c02005{width:25.600000pt;}
._d_c02005{width:27.008000pt;}
._11_c02005{width:28.224000pt;}
._12_c02005{width:29.376000pt;}
._0_c02005{width:1334.165333pt;}
.fs0_c02005{font-size:53.120000pt;}
.fs1_c02005{font-size:58.880000pt;}
.fs2_c02005{font-size:64.000000pt;}
.y0_c02005{bottom:0.000000pt;}
.y4_c02005{bottom:4.160000pt;}
.y3_c02005{bottom:37.152000pt;}
.y2_c02005{bottom:67.072000pt;}
.y23_c02005{bottom:118.912000pt;}
.y22_c02005{bottom:146.586667pt;}
.y21_c02005{bottom:174.106667pt;}
.y20_c02005{bottom:201.626667pt;}
.y1f_c02005{bottom:229.306667pt;}
.y1e_c02005{bottom:256.866667pt;}
.y1d_c02005{bottom:284.546667pt;}
.y1c_c02005{bottom:312.066667pt;}
.y1b_c02005{bottom:339.746667pt;}
.y1a_c02005{bottom:367.266667pt;}
.y19_c02005{bottom:394.946667pt;}
.y18_c02005{bottom:422.466667pt;}
.y17_c02005{bottom:450.146667pt;}
.y16_c02005{bottom:477.693333pt;}
.y15_c02005{bottom:505.373333pt;}
.y14_c02005{bottom:532.893333pt;}
.y13_c02005{bottom:560.573333pt;}
.y12_c02005{bottom:588.093333pt;}
.y11_c02005{bottom:615.773333pt;}
.y10_c02005{bottom:643.293333pt;}
.yf_c02005{bottom:670.973333pt;}
.ye_c02005{bottom:698.493333pt;}
.yd_c02005{bottom:726.213333pt;}
.yc_c02005{bottom:753.733333pt;}
.yb_c02005{bottom:781.413333pt;}
.ya_c02005{bottom:808.933333pt;}
.y9_c02005{bottom:836.613333pt;}
.y8_c02005{bottom:864.133333pt;}
.y7_c02005{bottom:891.813333pt;}
.y6_c02005{bottom:919.333333pt;}
.y5_c02005{bottom:947.040000pt;}
.y1_c02005{bottom:996.800000pt;}
.h3_c02005{height:20.000000pt;}
.h2_c02005{height:43.441250pt;}
.h1_c02005{height:52.134375pt;}
.h5_c02005{height:57.375000pt;}
.h4_c02005{height:62.812500pt;}
.h6_c02005{height:64.500000pt;}
.h0_c02005{height:1056.000000pt;}
.w1_c02005{width:59.232000pt;}
.w0_c02005{width:816.000000pt;}
.x0_c02005{left:0.000000pt;}
.x3_c02005{left:14.720000pt;}
.x1_c02005{left:113.472000pt;}
.x4_c02005{left:160.666667pt;}
.x2_c02005{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02006 {
    display:none;
  }
  .loading-indicator_c02006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02006 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02006 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02006" -> "#page-container .classname_c02006")
 */
.pf_c02006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02006 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02006 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02006 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02006 {overflow:visible;}
  }
}
.c_c02006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02006 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02006:after { /* webkit #35443 */
  content: '';
}
.t_c02006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02006 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02006 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02006 { /* info for Javascript */
  display:none;
}
.l_c02006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02006:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02006 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02006.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02006;src:url('chunks/assets/font_725d28279bb7590f6c1d8211.woff2')format("woff");}.ff1_c02006{font-family:ff1_c02006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02006;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02006{font-family:ff2_c02006;line-height:0.863770;font-style:normal;font-weight: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_c02006;src:url('chunks/assets/font_50b78b094a6c32d18ef3451c.woff2')format("woff");}.ff3_c02006{font-family:ff3_c02006;line-height:1.112305;font-style:normal;font-weight: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_c02006;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02006{font-family:ff4_c02006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02006{vertical-align:0.000000px;}
.ls2_c02006{letter-spacing:0.000000px;}
.ls1_c02006{letter-spacing:2.160000px;}
.ls0_c02006{letter-spacing:8.640000px;}
.sc__c02006{text-shadow:none;}
.sc0_c02006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02006{-webkit-text-stroke:0px transparent;}
.sc0_c02006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02006{word-spacing:0.000000px;}
._11_c02006{margin-left:-2.304000px;}
._3_c02006{margin-left:-1.296000px;}
._4_c02006{width:1.152000px;}
._9_c02006{width:3.168000px;}
._a_c02006{width:4.176000px;}
._5_c02006{width:5.184000px;}
._6_c02006{width:6.192000px;}
._7_c02006{width:7.428024px;}
._f_c02006{width:8.783856px;}
._1_c02006{width:10.800000px;}
._2_c02006{width:12.312000px;}
._b_c02006{width:13.680000px;}
._e_c02006{width:15.480000px;}
._10_c02006{width:16.704000px;}
._12_c02006{width:22.176000px;}
._13_c02006{width:23.340000px;}
._8_c02006{width:39.744000px;}
._c_c02006{width:56.448000px;}
._d_c02006{width:57.684024px;}
._0_c02006{width:1500.936000px;}
.fc1_c02006{color:rgb(192,80,77);}
.fc0_c02006{color:rgb(0,0,0);}
.fs0_c02006{font-size:59.760000px;}
.fs1_c02006{font-size:66.240000px;}
.fs2_c02006{font-size:72.000000px;}
.y0_c02006{bottom:0.000000px;}
.y4_c02006{bottom:4.680000px;}
.y3_c02006{bottom:41.796000px;}
.y2_c02006{bottom:75.456000px;}
.y25_c02006{bottom:121.356000px;}
.y24_c02006{bottom:140.436000px;}
.y23_c02006{bottom:159.330000px;}
.y22_c02006{bottom:178.410000px;}
.y21_c02006{bottom:197.310000px;}
.y20_c02006{bottom:226.470000px;}
.y1f_c02006{bottom:257.970000px;}
.y1e_c02006{bottom:288.975000px;}
.y1d_c02006{bottom:320.115000px;}
.y1c_c02006{bottom:351.075000px;}
.y1b_c02006{bottom:382.215000px;}
.y1a_c02006{bottom:413.175000px;}
.y19_c02006{bottom:444.315000px;}
.y18_c02006{bottom:475.275000px;}
.y17_c02006{bottom:506.415000px;}
.y16_c02006{bottom:537.405000px;}
.y15_c02006{bottom:568.545000px;}
.y14_c02006{bottom:599.505000px;}
.y13_c02006{bottom:630.645000px;}
.y12_c02006{bottom:661.605000px;}
.y11_c02006{bottom:692.745000px;}
.y10_c02006{bottom:723.705000px;}
.yf_c02006{bottom:754.845000px;}
.ye_c02006{bottom:785.805000px;}
.yd_c02006{bottom:816.990000px;}
.yc_c02006{bottom:847.950000px;}
.yb_c02006{bottom:879.090000px;}
.ya_c02006{bottom:910.050000px;}
.y9_c02006{bottom:941.190000px;}
.y8_c02006{bottom:972.150000px;}
.y7_c02006{bottom:1003.290000px;}
.y6_c02006{bottom:1034.250000px;}
.y5_c02006{bottom:1065.420000px;}
.y1_c02006{bottom:1121.400000px;}
.h3_c02006{height:22.500000px;}
.h2_c02006{height:48.871406px;}
.h1_c02006{height:58.651172px;}
.h5_c02006{height:64.546875px;}
.h7_c02006{height:65.010937px;}
.h4_c02006{height:70.664062px;}
.h6_c02006{height:72.562500px;}
.h0_c02006{height:1188.000000px;}
.w1_c02006{width:66.636000px;}
.w0_c02006{width:918.000000px;}
.x0_c02006{left:0.000000px;}
.x3_c02006{left:16.560000px;}
.x1_c02006{left:127.656000px;}
.x4_c02006{left:180.750000px;}
.x5_c02006{left:191.550000px;}
.x2_c02006{left:820.950000px;}
@media print{
.v0_c02006{vertical-align:0.000000pt;}
.ls2_c02006{letter-spacing:0.000000pt;}
.ls1_c02006{letter-spacing:1.920000pt;}
.ls0_c02006{letter-spacing:7.680000pt;}
.ws0_c02006{word-spacing:0.000000pt;}
._11_c02006{margin-left:-2.048000pt;}
._3_c02006{margin-left:-1.152000pt;}
._4_c02006{width:1.024000pt;}
._9_c02006{width:2.816000pt;}
._a_c02006{width:3.712000pt;}
._5_c02006{width:4.608000pt;}
._6_c02006{width:5.504000pt;}
._7_c02006{width:6.602688pt;}
._f_c02006{width:7.807872pt;}
._1_c02006{width:9.600000pt;}
._2_c02006{width:10.944000pt;}
._b_c02006{width:12.160000pt;}
._e_c02006{width:13.760000pt;}
._10_c02006{width:14.848000pt;}
._12_c02006{width:19.712000pt;}
._13_c02006{width:20.746667pt;}
._8_c02006{width:35.328000pt;}
._c_c02006{width:50.176000pt;}
._d_c02006{width:51.274688pt;}
._0_c02006{width:1334.165333pt;}
.fs0_c02006{font-size:53.120000pt;}
.fs1_c02006{font-size:58.880000pt;}
.fs2_c02006{font-size:64.000000pt;}
.y0_c02006{bottom:0.000000pt;}
.y4_c02006{bottom:4.160000pt;}
.y3_c02006{bottom:37.152000pt;}
.y2_c02006{bottom:67.072000pt;}
.y25_c02006{bottom:107.872000pt;}
.y24_c02006{bottom:124.832000pt;}
.y23_c02006{bottom:141.626667pt;}
.y22_c02006{bottom:158.586667pt;}
.y21_c02006{bottom:175.386667pt;}
.y20_c02006{bottom:201.306667pt;}
.y1f_c02006{bottom:229.306667pt;}
.y1e_c02006{bottom:256.866667pt;}
.y1d_c02006{bottom:284.546667pt;}
.y1c_c02006{bottom:312.066667pt;}
.y1b_c02006{bottom:339.746667pt;}
.y1a_c02006{bottom:367.266667pt;}
.y19_c02006{bottom:394.946667pt;}
.y18_c02006{bottom:422.466667pt;}
.y17_c02006{bottom:450.146667pt;}
.y16_c02006{bottom:477.693333pt;}
.y15_c02006{bottom:505.373333pt;}
.y14_c02006{bottom:532.893333pt;}
.y13_c02006{bottom:560.573333pt;}
.y12_c02006{bottom:588.093333pt;}
.y11_c02006{bottom:615.773333pt;}
.y10_c02006{bottom:643.293333pt;}
.yf_c02006{bottom:670.973333pt;}
.ye_c02006{bottom:698.493333pt;}
.yd_c02006{bottom:726.213333pt;}
.yc_c02006{bottom:753.733333pt;}
.yb_c02006{bottom:781.413333pt;}
.ya_c02006{bottom:808.933333pt;}
.y9_c02006{bottom:836.613333pt;}
.y8_c02006{bottom:864.133333pt;}
.y7_c02006{bottom:891.813333pt;}
.y6_c02006{bottom:919.333333pt;}
.y5_c02006{bottom:947.040000pt;}
.y1_c02006{bottom:996.800000pt;}
.h3_c02006{height:20.000000pt;}
.h2_c02006{height:43.441250pt;}
.h1_c02006{height:52.134375pt;}
.h5_c02006{height:57.375000pt;}
.h7_c02006{height:57.787500pt;}
.h4_c02006{height:62.812500pt;}
.h6_c02006{height:64.500000pt;}
.h0_c02006{height:1056.000000pt;}
.w1_c02006{width:59.232000pt;}
.w0_c02006{width:816.000000pt;}
.x0_c02006{left:0.000000pt;}
.x3_c02006{left:14.720000pt;}
.x1_c02006{left:113.472000pt;}
.x4_c02006{left:160.666667pt;}
.x5_c02006{left:170.266667pt;}
.x2_c02006{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02007 {
    display:none;
  }
  .loading-indicator_c02007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02007 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02007 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02007" -> "#page-container .classname_c02007")
 */
.pf_c02007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02007 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02007 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02007 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02007 {overflow:visible;}
  }
}
.c_c02007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02007 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02007:after { /* webkit #35443 */
  content: '';
}
.t_c02007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02007 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02007 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02007 { /* info for Javascript */
  display:none;
}
.l_c02007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02007:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02007 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02007.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02007;src:url('chunks/assets/font_ad2923b861c381d8ce3b7a42.woff2')format("woff");}.ff1_c02007{font-family:ff1_c02007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02007;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02007{font-family:ff2_c02007;line-height:0.863770;font-style:normal;font-weight: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_c02007;src:url('chunks/assets/font_2d6bf96478486595d477d32c.woff2')format("woff");}.ff3_c02007{font-family:ff3_c02007;line-height:1.112305;font-style:normal;font-weight: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_c02007;src:url('chunks/assets/font_886d7e29fdac1239a8caee46.woff2')format("woff");}.ff4_c02007{font-family:ff4_c02007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02007{vertical-align:0.000000px;}
.ls0_c02007{letter-spacing:0.000000px;}
.sc__c02007{text-shadow:none;}
.sc0_c02007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02007{-webkit-text-stroke:0px transparent;}
.sc0_c02007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02007{word-spacing:0.000000px;}
._1_c02007{margin-left:-1.126212px;}
._2_c02007{width:1.788612px;}
._3_c02007{width:3.246025px;}
._8_c02007{width:4.872024px;}
._9_c02007{width:6.696000px;}
._4_c02007{width:9.008375px;}
._5_c02007{width:10.021980px;}
._6_c02007{width:11.270678px;}
._a_c02007{width:12.777322px;}
._7_c02007{width:14.040000px;}
._0_c02007{width:1500.936000px;}
.fc1_c02007{color:rgb(192,80,77);}
.fc2_c02007{color:rgb(255,255,255);}
.fc0_c02007{color:rgb(0,0,0);}
.fs0_c02007{font-size:59.760000px;}
.fs3_c02007{font-size:63.360000px;}
.fs1_c02007{font-size:66.240000px;}
.fs2_c02007{font-size:72.000000px;}
.y0_c02007{bottom:0.000000px;}
.y31_c02007{bottom:3.420000px;}
.y19_c02007{bottom:3.780000px;}
.y1b_c02007{bottom:3.960000px;}
.y4_c02007{bottom:4.680000px;}
.y18_c02007{bottom:21.960000px;}
.y3_c02007{bottom:41.796000px;}
.y2_c02007{bottom:75.456000px;}
.y33_c02007{bottom:122.796000px;}
.y32_c02007{bottom:143.496000px;}
.y30_c02007{bottom:160.590000px;}
.y2f_c02007{bottom:179.310000px;}
.y2e_c02007{bottom:198.210000px;}
.y2d_c02007{bottom:217.110000px;}
.y2c_c02007{bottom:236.010000px;}
.y2b_c02007{bottom:254.730000px;}
.y2a_c02007{bottom:273.675000px;}
.y29_c02007{bottom:292.575000px;}
.y28_c02007{bottom:311.475000px;}
.y27_c02007{bottom:330.375000px;}
.y26_c02007{bottom:349.095000px;}
.y25_c02007{bottom:367.995000px;}
.y24_c02007{bottom:386.895000px;}
.y23_c02007{bottom:405.795000px;}
.y22_c02007{bottom:424.515000px;}
.y21_c02007{bottom:443.415000px;}
.y20_c02007{bottom:462.315000px;}
.y1f_c02007{bottom:481.215000px;}
.y1e_c02007{bottom:500.115000px;}
.y1d_c02007{bottom:518.835000px;}
.y1c_c02007{bottom:537.765000px;}
.y1a_c02007{bottom:556.665000px;}
.y17_c02007{bottom:575.565000px;}
.y16_c02007{bottom:616.965000px;}
.y15_c02007{bottom:637.665000px;}
.y14_c02007{bottom:658.365000px;}
.y13_c02007{bottom:679.065000px;}
.y12_c02007{bottom:710.025000px;}
.y11_c02007{bottom:740.985000px;}
.y10_c02007{bottom:772.125000px;}
.yf_c02007{bottom:803.130000px;}
.ye_c02007{bottom:834.270000px;}
.yd_c02007{bottom:865.230000px;}
.yc_c02007{bottom:896.190000px;}
.yb_c02007{bottom:927.330000px;}
.ya_c02007{bottom:958.290000px;}
.y9_c02007{bottom:989.430000px;}
.y8_c02007{bottom:1009.770000px;}
.y7_c02007{bottom:1028.850000px;}
.y6_c02007{bottom:1047.750000px;}
.y5_c02007{bottom:1066.860000px;}
.y1_c02007{bottom:1121.400000px;}
.ha_c02007{height:18.000000px;}
.h8_c02007{height:18.180000px;}
.h9_c02007{height:18.216000px;}
.h3_c02007{height:22.500000px;}
.h6_c02007{height:36.180000px;}
.h2_c02007{height:48.871406px;}
.h1_c02007{height:58.651172px;}
.h7_c02007{height:62.184375px;}
.hb_c02007{height:63.855000px;}
.h4_c02007{height:65.010937px;}
.h5_c02007{height:70.664062px;}
.hc_c02007{height:72.562500px;}
.h0_c02007{height:1188.000000px;}
.w1_c02007{width:66.636000px;}
.w3_c02007{width:95.040000px;}
.w2_c02007{width:581.505000px;}
.w0_c02007{width:918.000000px;}
.x0_c02007{left:0.000000px;}
.xf_c02007{left:7.740000px;}
.xd_c02007{left:9.540000px;}
.x3_c02007{left:16.560000px;}
.xe_c02007{left:18.180000px;}
.x10_c02007{left:36.180000px;}
.x11_c02007{left:51.840000px;}
.x12_c02007{left:63.720000px;}
.x13_c02007{left:79.380000px;}
.x9_c02007{left:119.916000px;}
.x1_c02007{left:127.656000px;}
.x5_c02007{left:180.750000px;}
.x4_c02007{left:191.550000px;}
.x7_c02007{left:236.910000px;}
.xb_c02007{left:277.599000px;}
.xa_c02007{left:290.739000px;}
.x8_c02007{left:340.095000px;}
.x6_c02007{left:415.695000px;}
.xc_c02007{left:702.150000px;}
.x2_c02007{left:820.950000px;}
@media print{
.v0_c02007{vertical-align:0.000000pt;}
.ls0_c02007{letter-spacing:0.000000pt;}
.ws0_c02007{word-spacing:0.000000pt;}
._1_c02007{margin-left:-1.001078pt;}
._2_c02007{width:1.589878pt;}
._3_c02007{width:2.885356pt;}
._8_c02007{width:4.330688pt;}
._9_c02007{width:5.952000pt;}
._4_c02007{width:8.007444pt;}
._5_c02007{width:8.908426pt;}
._6_c02007{width:10.018381pt;}
._a_c02007{width:11.357619pt;}
._7_c02007{width:12.480000pt;}
._0_c02007{width:1334.165333pt;}
.fs0_c02007{font-size:53.120000pt;}
.fs3_c02007{font-size:56.320000pt;}
.fs1_c02007{font-size:58.880000pt;}
.fs2_c02007{font-size:64.000000pt;}
.y0_c02007{bottom:0.000000pt;}
.y31_c02007{bottom:3.040000pt;}
.y19_c02007{bottom:3.360000pt;}
.y1b_c02007{bottom:3.520000pt;}
.y4_c02007{bottom:4.160000pt;}
.y18_c02007{bottom:19.520000pt;}
.y3_c02007{bottom:37.152000pt;}
.y2_c02007{bottom:67.072000pt;}
.y33_c02007{bottom:109.152000pt;}
.y32_c02007{bottom:127.552000pt;}
.y30_c02007{bottom:142.746667pt;}
.y2f_c02007{bottom:159.386667pt;}
.y2e_c02007{bottom:176.186667pt;}
.y2d_c02007{bottom:192.986667pt;}
.y2c_c02007{bottom:209.786667pt;}
.y2b_c02007{bottom:226.426667pt;}
.y2a_c02007{bottom:243.266667pt;}
.y29_c02007{bottom:260.066667pt;}
.y28_c02007{bottom:276.866667pt;}
.y27_c02007{bottom:293.666667pt;}
.y26_c02007{bottom:310.306667pt;}
.y25_c02007{bottom:327.106667pt;}
.y24_c02007{bottom:343.906667pt;}
.y23_c02007{bottom:360.706667pt;}
.y22_c02007{bottom:377.346667pt;}
.y21_c02007{bottom:394.146667pt;}
.y20_c02007{bottom:410.946667pt;}
.y1f_c02007{bottom:427.746667pt;}
.y1e_c02007{bottom:444.546667pt;}
.y1d_c02007{bottom:461.186667pt;}
.y1c_c02007{bottom:478.013333pt;}
.y1a_c02007{bottom:494.813333pt;}
.y17_c02007{bottom:511.613333pt;}
.y16_c02007{bottom:548.413333pt;}
.y15_c02007{bottom:566.813333pt;}
.y14_c02007{bottom:585.213333pt;}
.y13_c02007{bottom:603.613333pt;}
.y12_c02007{bottom:631.133333pt;}
.y11_c02007{bottom:658.653333pt;}
.y10_c02007{bottom:686.333333pt;}
.yf_c02007{bottom:713.893333pt;}
.ye_c02007{bottom:741.573333pt;}
.yd_c02007{bottom:769.093333pt;}
.yc_c02007{bottom:796.613333pt;}
.yb_c02007{bottom:824.293333pt;}
.ya_c02007{bottom:851.813333pt;}
.y9_c02007{bottom:879.493333pt;}
.y8_c02007{bottom:897.573333pt;}
.y7_c02007{bottom:914.533333pt;}
.y6_c02007{bottom:931.333333pt;}
.y5_c02007{bottom:948.320000pt;}
.y1_c02007{bottom:996.800000pt;}
.ha_c02007{height:16.000000pt;}
.h8_c02007{height:16.160000pt;}
.h9_c02007{height:16.192000pt;}
.h3_c02007{height:20.000000pt;}
.h6_c02007{height:32.160000pt;}
.h2_c02007{height:43.441250pt;}
.h1_c02007{height:52.134375pt;}
.h7_c02007{height:55.275000pt;}
.hb_c02007{height:56.760000pt;}
.h4_c02007{height:57.787500pt;}
.h5_c02007{height:62.812500pt;}
.hc_c02007{height:64.500000pt;}
.h0_c02007{height:1056.000000pt;}
.w1_c02007{width:59.232000pt;}
.w3_c02007{width:84.480000pt;}
.w2_c02007{width:516.893333pt;}
.w0_c02007{width:816.000000pt;}
.x0_c02007{left:0.000000pt;}
.xf_c02007{left:6.880000pt;}
.xd_c02007{left:8.480000pt;}
.x3_c02007{left:14.720000pt;}
.xe_c02007{left:16.160000pt;}
.x10_c02007{left:32.160000pt;}
.x11_c02007{left:46.080000pt;}
.x12_c02007{left:56.640000pt;}
.x13_c02007{left:70.560000pt;}
.x9_c02007{left:106.592000pt;}
.x1_c02007{left:113.472000pt;}
.x5_c02007{left:160.666667pt;}
.x4_c02007{left:170.266667pt;}
.x7_c02007{left:210.586667pt;}
.xb_c02007{left:246.754667pt;}
.xa_c02007{left:258.434667pt;}
.x8_c02007{left:302.306667pt;}
.x6_c02007{left:369.506667pt;}
.xc_c02007{left:624.133333pt;}
.x2_c02007{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02008 {
    display:none;
  }
  .loading-indicator_c02008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02008 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02008 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02008" -> "#page-container .classname_c02008")
 */
.pf_c02008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02008 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02008 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02008 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02008 {overflow:visible;}
  }
}
.c_c02008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02008 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02008:after { /* webkit #35443 */
  content: '';
}
.t_c02008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02008 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02008 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02008 { /* info for Javascript */
  display:none;
}
.l_c02008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02008:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02008 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02008.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02008;src:url('chunks/assets/font_7275176be8d068b125686ee1.woff2')format("woff");}.ff1_c02008{font-family:ff1_c02008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02008;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02008{font-family:ff2_c02008;line-height:0.863770;font-style:normal;font-weight: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_c02008;src:url('chunks/assets/font_f0ae8d09ef05852a620c377c.woff2')format("woff");}.ff3_c02008{font-family:ff3_c02008;line-height:1.112305;font-style:normal;font-weight: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_c02008;src:url('chunks/assets/font_d599ba6afadda5e16401915e.woff2')format("woff");}.ff4_c02008{font-family:ff4_c02008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02008{vertical-align:-27.540000px;}
.v0_c02008{vertical-align:0.000000px;}
.v1_c02008{vertical-align:33.120000px;}
.ls5_c02008{letter-spacing:-0.540000px;}
.ls4_c02008{letter-spacing:-0.288000px;}
.ls3_c02008{letter-spacing:0.000000px;}
.ls1_c02008{letter-spacing:0.150000px;}
.ls0_c02008{letter-spacing:0.360000px;}
.ls2_c02008{letter-spacing:5.940000px;}
.sc__c02008{text-shadow:none;}
.sc0_c02008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02008{-webkit-text-stroke:0px transparent;}
.sc0_c02008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02008{word-spacing:-12.420000px;}
.ws1_c02008{word-spacing:-9.720000px;}
.ws2_c02008{word-spacing:0.000000px;}
._13_c02008{margin-left:-12.817920px;}
._7_c02008{margin-left:-2.388024px;}
._3_c02008{margin-left:-1.044000px;}
._2_c02008{width:1.260000px;}
._a_c02008{width:2.340000px;}
._9_c02008{width:3.348000px;}
._12_c02008{width:4.560024px;}
._4_c02008{width:6.552000px;}
._5_c02008{width:8.555976px;}
._1_c02008{width:10.008000px;}
._6_c02008{width:11.424024px;}
._8_c02008{width:12.431952px;}
._11_c02008{width:13.464144px;}
._b_c02008{width:16.932024px;}
._c_c02008{width:20.304000px;}
._d_c02008{width:22.176000px;}
._e_c02008{width:23.472000px;}
._f_c02008{width:28.656000px;}
._10_c02008{width:29.808000px;}
._0_c02008{width:1500.936000px;}
.fc1_c02008{color:rgb(192,80,77);}
.fc0_c02008{color:rgb(0,0,0);}
.fs4_c02008{font-size:38.880000px;}
.fs3_c02008{font-size:48.240000px;}
.fs0_c02008{font-size:59.760000px;}
.fs1_c02008{font-size:66.240000px;}
.fs2_c02008{font-size:72.000000px;}
.y0_c02008{bottom:0.000000px;}
.y4_c02008{bottom:4.680000px;}
.y3_c02008{bottom:41.796000px;}
.y2_c02008{bottom:75.456000px;}
.y28_c02008{bottom:109.836000px;}
.y27_c02008{bottom:127.116000px;}
.y26_c02008{bottom:144.396000px;}
.y25_c02008{bottom:168.510000px;}
.y24_c02008{bottom:178.950000px;}
.y23_c02008{bottom:196.050000px;}
.y22_c02008{bottom:213.330000px;}
.y21_c02008{bottom:230.610000px;}
.y20_c02008{bottom:247.890000px;}
.y1f_c02008{bottom:272.055000px;}
.y1e_c02008{bottom:283.395000px;}
.y1d_c02008{bottom:320.115000px;}
.y1c_c02008{bottom:351.075000px;}
.y1b_c02008{bottom:382.215000px;}
.y1a_c02008{bottom:413.175000px;}
.y19_c02008{bottom:444.315000px;}
.y18_c02008{bottom:475.275000px;}
.y17_c02008{bottom:506.415000px;}
.y16_c02008{bottom:537.405000px;}
.y15_c02008{bottom:568.545000px;}
.y14_c02008{bottom:599.505000px;}
.y13_c02008{bottom:630.645000px;}
.y12_c02008{bottom:661.605000px;}
.y11_c02008{bottom:692.745000px;}
.y10_c02008{bottom:723.705000px;}
.yf_c02008{bottom:754.845000px;}
.ye_c02008{bottom:785.805000px;}
.yd_c02008{bottom:816.990000px;}
.yc_c02008{bottom:847.950000px;}
.yb_c02008{bottom:879.090000px;}
.ya_c02008{bottom:910.050000px;}
.y9_c02008{bottom:941.190000px;}
.y8_c02008{bottom:972.150000px;}
.y7_c02008{bottom:1003.290000px;}
.y6_c02008{bottom:1034.250000px;}
.y5_c02008{bottom:1065.420000px;}
.y1_c02008{bottom:1121.400000px;}
.h3_c02008{height:22.500000px;}
.h7_c02008{height:38.158594px;}
.h2_c02008{height:48.871406px;}
.h1_c02008{height:58.651172px;}
.h6_c02008{height:64.546875px;}
.h4_c02008{height:70.664062px;}
.h5_c02008{height:80.464922px;}
.h0_c02008{height:1188.000000px;}
.w1_c02008{width:66.636000px;}
.w0_c02008{width:918.000000px;}
.x0_c02008{left:0.000000px;}
.x3_c02008{left:16.560000px;}
.x1_c02008{left:127.656000px;}
.x4_c02008{left:180.750000px;}
.x2_c02008{left:820.950000px;}
@media print{
.v2_c02008{vertical-align:-24.480000pt;}
.v0_c02008{vertical-align:0.000000pt;}
.v1_c02008{vertical-align:29.440000pt;}
.ls5_c02008{letter-spacing:-0.480000pt;}
.ls4_c02008{letter-spacing:-0.256000pt;}
.ls3_c02008{letter-spacing:0.000000pt;}
.ls1_c02008{letter-spacing:0.133333pt;}
.ls0_c02008{letter-spacing:0.320000pt;}
.ls2_c02008{letter-spacing:5.280000pt;}
.ws0_c02008{word-spacing:-11.040000pt;}
.ws1_c02008{word-spacing:-8.640000pt;}
.ws2_c02008{word-spacing:0.000000pt;}
._13_c02008{margin-left:-11.393707pt;}
._7_c02008{margin-left:-2.122688pt;}
._3_c02008{margin-left:-0.928000pt;}
._2_c02008{width:1.120000pt;}
._a_c02008{width:2.080000pt;}
._9_c02008{width:2.976000pt;}
._12_c02008{width:4.053355pt;}
._4_c02008{width:5.824000pt;}
._5_c02008{width:7.605312pt;}
._1_c02008{width:8.896000pt;}
._6_c02008{width:10.154688pt;}
._8_c02008{width:11.050624pt;}
._11_c02008{width:11.968128pt;}
._b_c02008{width:15.050688pt;}
._c_c02008{width:18.048000pt;}
._d_c02008{width:19.712000pt;}
._e_c02008{width:20.864000pt;}
._f_c02008{width:25.472000pt;}
._10_c02008{width:26.496000pt;}
._0_c02008{width:1334.165333pt;}
.fs4_c02008{font-size:34.560000pt;}
.fs3_c02008{font-size:42.880000pt;}
.fs0_c02008{font-size:53.120000pt;}
.fs1_c02008{font-size:58.880000pt;}
.fs2_c02008{font-size:64.000000pt;}
.y0_c02008{bottom:0.000000pt;}
.y4_c02008{bottom:4.160000pt;}
.y3_c02008{bottom:37.152000pt;}
.y2_c02008{bottom:67.072000pt;}
.y28_c02008{bottom:97.632000pt;}
.y27_c02008{bottom:112.992000pt;}
.y26_c02008{bottom:128.352000pt;}
.y25_c02008{bottom:149.786667pt;}
.y24_c02008{bottom:159.066667pt;}
.y23_c02008{bottom:174.266667pt;}
.y22_c02008{bottom:189.626667pt;}
.y21_c02008{bottom:204.986667pt;}
.y20_c02008{bottom:220.346667pt;}
.y1f_c02008{bottom:241.826667pt;}
.y1e_c02008{bottom:251.906667pt;}
.y1d_c02008{bottom:284.546667pt;}
.y1c_c02008{bottom:312.066667pt;}
.y1b_c02008{bottom:339.746667pt;}
.y1a_c02008{bottom:367.266667pt;}
.y19_c02008{bottom:394.946667pt;}
.y18_c02008{bottom:422.466667pt;}
.y17_c02008{bottom:450.146667pt;}
.y16_c02008{bottom:477.693333pt;}
.y15_c02008{bottom:505.373333pt;}
.y14_c02008{bottom:532.893333pt;}
.y13_c02008{bottom:560.573333pt;}
.y12_c02008{bottom:588.093333pt;}
.y11_c02008{bottom:615.773333pt;}
.y10_c02008{bottom:643.293333pt;}
.yf_c02008{bottom:670.973333pt;}
.ye_c02008{bottom:698.493333pt;}
.yd_c02008{bottom:726.213333pt;}
.yc_c02008{bottom:753.733333pt;}
.yb_c02008{bottom:781.413333pt;}
.ya_c02008{bottom:808.933333pt;}
.y9_c02008{bottom:836.613333pt;}
.y8_c02008{bottom:864.133333pt;}
.y7_c02008{bottom:891.813333pt;}
.y6_c02008{bottom:919.333333pt;}
.y5_c02008{bottom:947.040000pt;}
.y1_c02008{bottom:996.800000pt;}
.h3_c02008{height:20.000000pt;}
.h7_c02008{height:33.918750pt;}
.h2_c02008{height:43.441250pt;}
.h1_c02008{height:52.134375pt;}
.h6_c02008{height:57.375000pt;}
.h4_c02008{height:62.812500pt;}
.h5_c02008{height:71.524375pt;}
.h0_c02008{height:1056.000000pt;}
.w1_c02008{width:59.232000pt;}
.w0_c02008{width:816.000000pt;}
.x0_c02008{left:0.000000pt;}
.x3_c02008{left:14.720000pt;}
.x1_c02008{left:113.472000pt;}
.x4_c02008{left:160.666667pt;}
.x2_c02008{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02009 {
    display:none;
  }
  .loading-indicator_c02009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02009 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02009 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02009" -> "#page-container .classname_c02009")
 */
.pf_c02009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02009 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02009 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02009 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02009 {overflow:visible;}
  }
}
.c_c02009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02009 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02009:after { /* webkit #35443 */
  content: '';
}
.t_c02009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02009 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02009 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02009 { /* info for Javascript */
  display:none;
}
.l_c02009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02009:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02009 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02009.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02009;src:url('chunks/assets/font_1e5462fd1fa65c52be7cdb79.woff2')format("woff");}.ff1_c02009{font-family:ff1_c02009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02009;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02009{font-family:ff2_c02009;line-height:0.863770;font-style:normal;font-weight: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_c02009;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02009{font-family:ff3_c02009;line-height:1.311035;font-style:normal;font-weight: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_c02009;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c02009{font-family:ff4_c02009;line-height:1.284180;font-style:normal;font-weight: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_c02009;src:url('chunks/assets/font_46a04916b80059c473bd1e4d.woff2')format("woff");}.ff5_c02009{font-family:ff5_c02009;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02009{vertical-align:-27.360000px;}
.v0_c02009{vertical-align:0.000000px;}
.v2_c02009{vertical-align:30.240000px;}
.v1_c02009{vertical-align:33.120000px;}
.ls4_c02009{letter-spacing:-0.414600px;}
.ls3_c02009{letter-spacing:0.000000px;}
.ls6_c02009{letter-spacing:0.106800px;}
.ls1_c02009{letter-spacing:0.150000px;}
.ls5_c02009{letter-spacing:0.180000px;}
.ls0_c02009{letter-spacing:0.360000px;}
.ls7_c02009{letter-spacing:0.828000px;}
.ls2_c02009{letter-spacing:6.660000px;}
.sc__c02009{text-shadow:none;}
.sc0_c02009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02009{-webkit-text-stroke:0px transparent;}
.sc0_c02009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02009{word-spacing:-16.560000px;}
.ws4_c02009{word-spacing:-15.768000px;}
.ws2_c02009{word-spacing:-15.046800px;}
.ws3_c02009{word-spacing:-14.940000px;}
.ws1_c02009{word-spacing:-9.720000px;}
.ws5_c02009{word-spacing:0.000000px;}
._c_c02009{margin-left:-12.817920px;}
._3_c02009{margin-left:-1.008000px;}
._1_c02009{width:1.080000px;}
._2_c02009{width:2.592000px;}
._6_c02009{width:4.332000px;}
._7_c02009{width:6.480000px;}
._b_c02009{width:7.992000px;}
._d_c02009{width:9.061800px;}
._e_c02009{width:10.155954px;}
._8_c02009{width:11.160000px;}
._f_c02009{width:13.523096px;}
._9_c02009{width:17.686212px;}
._10_c02009{width:19.900200px;}
._11_c02009{width:22.333323px;}
._a_c02009{width:27.025854px;}
._4_c02009{width:42.696000px;}
._5_c02009{width:43.704000px;}
._0_c02009{width:1500.936000px;}
.fc1_c02009{color:rgb(192,80,77);}
.fc2_c02009{color:rgb(51,51,51);}
.fc0_c02009{color:rgb(0,0,0);}
.fs5_c02009{font-size:38.880000px;}
.fs4_c02009{font-size:41.760000px;}
.fs3_c02009{font-size:48.240000px;}
.fs0_c02009{font-size:59.760000px;}
.fs1_c02009{font-size:66.240000px;}
.fs2_c02009{font-size:72.000000px;}
.y0_c02009{bottom:0.000000px;}
.y4_c02009{bottom:4.680000px;}
.y3_c02009{bottom:41.796000px;}
.y2_c02009{bottom:75.456000px;}
.y2e_c02009{bottom:109.836000px;}
.y2d_c02009{bottom:127.116000px;}
.y2c_c02009{bottom:144.396000px;}
.y2b_c02009{bottom:168.510000px;}
.y2a_c02009{bottom:195.690000px;}
.y29_c02009{bottom:212.970000px;}
.y28_c02009{bottom:230.250000px;}
.y27_c02009{bottom:247.530000px;}
.y26_c02009{bottom:264.810000px;}
.y25_c02009{bottom:281.955000px;}
.y24_c02009{bottom:299.235000px;}
.y23_c02009{bottom:316.515000px;}
.y22_c02009{bottom:333.795000px;}
.y21_c02009{bottom:351.075000px;}
.y20_c02009{bottom:368.355000px;}
.y1f_c02009{bottom:385.455000px;}
.y1e_c02009{bottom:402.735000px;}
.y1d_c02009{bottom:420.015000px;}
.y1c_c02009{bottom:437.295000px;}
.y1b_c02009{bottom:461.415000px;}
.y1a_c02009{bottom:472.755000px;}
.y19_c02009{bottom:528.735000px;}
.y18_c02009{bottom:559.905000px;}
.y17_c02009{bottom:590.865000px;}
.y16_c02009{bottom:622.005000px;}
.y15_c02009{bottom:652.605000px;}
.y14_c02009{bottom:673.485000px;}
.y13_c02009{bottom:692.385000px;}
.y12_c02009{bottom:711.465000px;}
.y11_c02009{bottom:730.365000px;}
.y10_c02009{bottom:749.265000px;}
.yf_c02009{bottom:768.345000px;}
.ye_c02009{bottom:787.245000px;}
.yd_c02009{bottom:816.630000px;}
.yc_c02009{bottom:847.950000px;}
.yb_c02009{bottom:879.090000px;}
.ya_c02009{bottom:910.050000px;}
.y9_c02009{bottom:941.190000px;}
.y8_c02009{bottom:972.150000px;}
.y7_c02009{bottom:1003.290000px;}
.y6_c02009{bottom:1034.250000px;}
.y5_c02009{bottom:1065.420000px;}
.y1_c02009{bottom:1121.400000px;}
.h3_c02009{height:22.500000px;}
.hb_c02009{height:38.158594px;}
.h2_c02009{height:48.871406px;}
.h1_c02009{height:58.651172px;}
.ha_c02009{height:64.546875px;}
.h7_c02009{height:65.010937px;}
.h9_c02009{height:70.628906px;}
.h4_c02009{height:70.664062px;}
.h8_c02009{height:71.225156px;}
.h6_c02009{height:72.562500px;}
.h5_c02009{height:80.464922px;}
.h0_c02009{height:1188.000000px;}
.w1_c02009{width:66.636000px;}
.w0_c02009{width:918.000000px;}
.x0_c02009{left:0.000000px;}
.x3_c02009{left:16.560000px;}
.x1_c02009{left:127.656000px;}
.x4_c02009{left:180.750000px;}
.x5_c02009{left:191.550000px;}
.x2_c02009{left:820.950000px;}
@media print{
.v3_c02009{vertical-align:-24.320000pt;}
.v0_c02009{vertical-align:0.000000pt;}
.v2_c02009{vertical-align:26.880000pt;}
.v1_c02009{vertical-align:29.440000pt;}
.ls4_c02009{letter-spacing:-0.368533pt;}
.ls3_c02009{letter-spacing:0.000000pt;}
.ls6_c02009{letter-spacing:0.094933pt;}
.ls1_c02009{letter-spacing:0.133333pt;}
.ls5_c02009{letter-spacing:0.160000pt;}
.ls0_c02009{letter-spacing:0.320000pt;}
.ls7_c02009{letter-spacing:0.736000pt;}
.ls2_c02009{letter-spacing:5.920000pt;}
.ws0_c02009{word-spacing:-14.720000pt;}
.ws4_c02009{word-spacing:-14.016000pt;}
.ws2_c02009{word-spacing:-13.374933pt;}
.ws3_c02009{word-spacing:-13.280000pt;}
.ws1_c02009{word-spacing:-8.640000pt;}
.ws5_c02009{word-spacing:0.000000pt;}
._c_c02009{margin-left:-11.393707pt;}
._3_c02009{margin-left:-0.896000pt;}
._1_c02009{width:0.960000pt;}
._2_c02009{width:2.304000pt;}
._6_c02009{width:3.850667pt;}
._7_c02009{width:5.760000pt;}
._b_c02009{width:7.104000pt;}
._d_c02009{width:8.054934pt;}
._e_c02009{width:9.027514pt;}
._8_c02009{width:9.920000pt;}
._f_c02009{width:12.020529pt;}
._9_c02009{width:15.721078pt;}
._10_c02009{width:17.689066pt;}
._11_c02009{width:19.851843pt;}
._a_c02009{width:24.022981pt;}
._4_c02009{width:37.952000pt;}
._5_c02009{width:38.848000pt;}
._0_c02009{width:1334.165333pt;}
.fs5_c02009{font-size:34.560000pt;}
.fs4_c02009{font-size:37.120000pt;}
.fs3_c02009{font-size:42.880000pt;}
.fs0_c02009{font-size:53.120000pt;}
.fs1_c02009{font-size:58.880000pt;}
.fs2_c02009{font-size:64.000000pt;}
.y0_c02009{bottom:0.000000pt;}
.y4_c02009{bottom:4.160000pt;}
.y3_c02009{bottom:37.152000pt;}
.y2_c02009{bottom:67.072000pt;}
.y2e_c02009{bottom:97.632000pt;}
.y2d_c02009{bottom:112.992000pt;}
.y2c_c02009{bottom:128.352000pt;}
.y2b_c02009{bottom:149.786667pt;}
.y2a_c02009{bottom:173.946667pt;}
.y29_c02009{bottom:189.306667pt;}
.y28_c02009{bottom:204.666667pt;}
.y27_c02009{bottom:220.026667pt;}
.y26_c02009{bottom:235.386667pt;}
.y25_c02009{bottom:250.626667pt;}
.y24_c02009{bottom:265.986667pt;}
.y23_c02009{bottom:281.346667pt;}
.y22_c02009{bottom:296.706667pt;}
.y21_c02009{bottom:312.066667pt;}
.y20_c02009{bottom:327.426667pt;}
.y1f_c02009{bottom:342.626667pt;}
.y1e_c02009{bottom:357.986667pt;}
.y1d_c02009{bottom:373.346667pt;}
.y1c_c02009{bottom:388.706667pt;}
.y1b_c02009{bottom:410.146667pt;}
.y1a_c02009{bottom:420.226667pt;}
.y19_c02009{bottom:469.986667pt;}
.y18_c02009{bottom:497.693333pt;}
.y17_c02009{bottom:525.213333pt;}
.y16_c02009{bottom:552.893333pt;}
.y15_c02009{bottom:580.093333pt;}
.y14_c02009{bottom:598.653333pt;}
.y13_c02009{bottom:615.453333pt;}
.y12_c02009{bottom:632.413333pt;}
.y11_c02009{bottom:649.213333pt;}
.y10_c02009{bottom:666.013333pt;}
.yf_c02009{bottom:682.973333pt;}
.ye_c02009{bottom:699.773333pt;}
.yd_c02009{bottom:725.893333pt;}
.yc_c02009{bottom:753.733333pt;}
.yb_c02009{bottom:781.413333pt;}
.ya_c02009{bottom:808.933333pt;}
.y9_c02009{bottom:836.613333pt;}
.y8_c02009{bottom:864.133333pt;}
.y7_c02009{bottom:891.813333pt;}
.y6_c02009{bottom:919.333333pt;}
.y5_c02009{bottom:947.040000pt;}
.y1_c02009{bottom:996.800000pt;}
.h3_c02009{height:20.000000pt;}
.hb_c02009{height:33.918750pt;}
.h2_c02009{height:43.441250pt;}
.h1_c02009{height:52.134375pt;}
.ha_c02009{height:57.375000pt;}
.h7_c02009{height:57.787500pt;}
.h9_c02009{height:62.781250pt;}
.h4_c02009{height:62.812500pt;}
.h8_c02009{height:63.311250pt;}
.h6_c02009{height:64.500000pt;}
.h5_c02009{height:71.524375pt;}
.h0_c02009{height:1056.000000pt;}
.w1_c02009{width:59.232000pt;}
.w0_c02009{width:816.000000pt;}
.x0_c02009{left:0.000000pt;}
.x3_c02009{left:14.720000pt;}
.x1_c02009{left:113.472000pt;}
.x4_c02009{left:160.666667pt;}
.x5_c02009{left:170.266667pt;}
.x2_c02009{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02010 {
    display:none;
  }
  .loading-indicator_c02010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02010 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02010 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02010" -> "#page-container .classname_c02010")
 */
.pf_c02010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02010 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02010 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02010 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02010 {overflow:visible;}
  }
}
.c_c02010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02010 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02010:after { /* webkit #35443 */
  content: '';
}
.t_c02010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02010 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02010 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02010 { /* info for Javascript */
  display:none;
}
.l_c02010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02010:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02010 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02010.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02010;src:url('chunks/assets/font_220e398c04f1e491f3618dc2.woff2')format("woff");}.ff1_c02010{font-family:ff1_c02010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02010;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02010{font-family:ff2_c02010;line-height:0.863770;font-style:normal;font-weight: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_c02010;src:url('chunks/assets/font_dee69f1b1ca750416c41da1e.woff2')format("woff");}.ff3_c02010{font-family:ff3_c02010;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02010{vertical-align:0.000000px;}
.ls0_c02010{letter-spacing:0.000000px;}
.sc__c02010{text-shadow:none;}
.sc0_c02010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02010{-webkit-text-stroke:0px transparent;}
.sc0_c02010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02010{word-spacing:-18.000000px;}
.ws0_c02010{word-spacing:-15.840000px;}
.ws2_c02010{word-spacing:0.000000px;}
._1_c02010{margin-left:-1.080000px;}
._6_c02010{width:1.440000px;}
._7_c02010{width:3.024000px;}
._8_c02010{width:4.680000px;}
._9_c02010{width:5.688000px;}
._b_c02010{width:10.440000px;}
._2_c02010{width:12.168000px;}
._3_c02010{width:13.320000px;}
._a_c02010{width:16.920000px;}
._4_c02010{width:206.064000px;}
._5_c02010{width:207.360000px;}
._0_c02010{width:1500.936000px;}
.fc3_c02010{color:rgb(128,0,0);}
.fc1_c02010{color:rgb(192,80,77);}
.fc2_c02010{color:rgb(255,255,255);}
.fc0_c02010{color:rgb(0,0,0);}
.fs0_c02010{font-size:59.760000px;}
.fs3_c02010{font-size:63.360000px;}
.fs1_c02010{font-size:66.240000px;}
.fs2_c02010{font-size:72.000000px;}
.y0_c02010{bottom:0.000000px;}
.y1b_c02010{bottom:3.780000px;}
.ya_c02010{bottom:3.960000px;}
.y4_c02010{bottom:4.680000px;}
.y9_c02010{bottom:21.960000px;}
.y1a_c02010{bottom:21.990000px;}
.y13_c02010{bottom:22.140000px;}
.y19_c02010{bottom:39.990000px;}
.ye_c02010{bottom:40.140000px;}
.y12_c02010{bottom:40.185000px;}
.y3_c02010{bottom:41.796000px;}
.yd_c02010{bottom:58.140000px;}
.y18_c02010{bottom:58.170000px;}
.y11_c02010{bottom:58.365000px;}
.y2_c02010{bottom:75.456000px;}
.yc_c02010{bottom:76.320000px;}
.y29_c02010{bottom:133.236000px;}
.y28_c02010{bottom:164.370000px;}
.y27_c02010{bottom:195.330000px;}
.y26_c02010{bottom:226.470000px;}
.y25_c02010{bottom:257.430000px;}
.y24_c02010{bottom:288.615000px;}
.y23_c02010{bottom:319.575000px;}
.y22_c02010{bottom:350.715000px;}
.y21_c02010{bottom:371.595000px;}
.y20_c02010{bottom:392.295000px;}
.y1f_c02010{bottom:412.995000px;}
.y1e_c02010{bottom:433.695000px;}
.y1d_c02010{bottom:450.615000px;}
.y1c_c02010{bottom:487.515000px;}
.y17_c02010{bottom:524.595000px;}
.y16_c02010{bottom:597.705000px;}
.y15_c02010{bottom:652.785000px;}
.y14_c02010{bottom:707.865000px;}
.y10_c02010{bottom:762.945000px;}
.yf_c02010{bottom:836.250000px;}
.yb_c02010{bottom:891.330000px;}
.y8_c02010{bottom:982.590000px;}
.y7_c02010{bottom:1024.170000px;}
.y6_c02010{bottom:1044.870000px;}
.y5_c02010{bottom:1065.600000px;}
.y1_c02010{bottom:1121.400000px;}
.h3_c02010{height:22.500000px;}
.h5_c02010{height:36.180000px;}
.h2_c02010{height:48.871406px;}
.h8_c02010{height:54.360000px;}
.h1_c02010{height:58.651172px;}
.h6_c02010{height:62.184375px;}
.h4_c02010{height:70.664062px;}
.ha_c02010{height:72.396000px;}
.h9_c02010{height:72.576000px;}
.h7_c02010{height:90.540000px;}
.h0_c02010{height:1188.000000px;}
.w1_c02010{width:66.636000px;}
.w3_c02010{width:126.756000px;}
.w2_c02010{width:134.820000px;}
.w4_c02010{width:148.176000px;}
.w5_c02010{width:265.170000px;}
.w0_c02010{width:918.000000px;}
.x0_c02010{left:0.000000px;}
.x13_c02010{left:7.740000px;}
.x3_c02010{left:16.560000px;}
.xe_c02010{left:24.660000px;}
.xc_c02010{left:28.800000px;}
.x18_c02010{left:30.414000px;}
.x16_c02010{left:33.114000px;}
.x12_c02010{left:35.994000px;}
.x19_c02010{left:38.154000px;}
.x17_c02010{left:41.214000px;}
.x14_c02010{left:47.334000px;}
.x15_c02010{left:50.394000px;}
.x9_c02010{left:54.354000px;}
.xb_c02010{left:63.405000px;}
.x8_c02010{left:67.494000px;}
.x11_c02010{left:95.940000px;}
.x7_c02010{left:119.916000px;}
.x1_c02010{left:127.656000px;}
.x10_c02010{left:132.480000px;}
.x1a_c02010{left:180.750000px;}
.x5_c02010{left:248.790000px;}
.xa_c02010{left:255.630000px;}
.xd_c02010{left:383.115000px;}
.x4_c02010{left:415.695000px;}
.x6_c02010{left:459.075000px;}
.xf_c02010{left:532.005000px;}
.x2_c02010{left:820.950000px;}
@media print{
.v0_c02010{vertical-align:0.000000pt;}
.ls0_c02010{letter-spacing:0.000000pt;}
.ws1_c02010{word-spacing:-16.000000pt;}
.ws0_c02010{word-spacing:-14.080000pt;}
.ws2_c02010{word-spacing:0.000000pt;}
._1_c02010{margin-left:-0.960000pt;}
._6_c02010{width:1.280000pt;}
._7_c02010{width:2.688000pt;}
._8_c02010{width:4.160000pt;}
._9_c02010{width:5.056000pt;}
._b_c02010{width:9.280000pt;}
._2_c02010{width:10.816000pt;}
._3_c02010{width:11.840000pt;}
._a_c02010{width:15.040000pt;}
._4_c02010{width:183.168000pt;}
._5_c02010{width:184.320000pt;}
._0_c02010{width:1334.165333pt;}
.fs0_c02010{font-size:53.120000pt;}
.fs3_c02010{font-size:56.320000pt;}
.fs1_c02010{font-size:58.880000pt;}
.fs2_c02010{font-size:64.000000pt;}
.y0_c02010{bottom:0.000000pt;}
.y1b_c02010{bottom:3.360000pt;}
.ya_c02010{bottom:3.520000pt;}
.y4_c02010{bottom:4.160000pt;}
.y9_c02010{bottom:19.520000pt;}
.y1a_c02010{bottom:19.546667pt;}
.y13_c02010{bottom:19.680000pt;}
.y19_c02010{bottom:35.546667pt;}
.ye_c02010{bottom:35.680000pt;}
.y12_c02010{bottom:35.720000pt;}
.y3_c02010{bottom:37.152000pt;}
.yd_c02010{bottom:51.680000pt;}
.y18_c02010{bottom:51.706667pt;}
.y11_c02010{bottom:51.880000pt;}
.y2_c02010{bottom:67.072000pt;}
.yc_c02010{bottom:67.840000pt;}
.y29_c02010{bottom:118.432000pt;}
.y28_c02010{bottom:146.106667pt;}
.y27_c02010{bottom:173.626667pt;}
.y26_c02010{bottom:201.306667pt;}
.y25_c02010{bottom:228.826667pt;}
.y24_c02010{bottom:256.546667pt;}
.y23_c02010{bottom:284.066667pt;}
.y22_c02010{bottom:311.746667pt;}
.y21_c02010{bottom:330.306667pt;}
.y20_c02010{bottom:348.706667pt;}
.y1f_c02010{bottom:367.106667pt;}
.y1e_c02010{bottom:385.506667pt;}
.y1d_c02010{bottom:400.546667pt;}
.y1c_c02010{bottom:433.346667pt;}
.y17_c02010{bottom:466.306667pt;}
.y16_c02010{bottom:531.293333pt;}
.y15_c02010{bottom:580.253333pt;}
.y14_c02010{bottom:629.213333pt;}
.y10_c02010{bottom:678.173333pt;}
.yf_c02010{bottom:743.333333pt;}
.yb_c02010{bottom:792.293333pt;}
.y8_c02010{bottom:873.413333pt;}
.y7_c02010{bottom:910.373333pt;}
.y6_c02010{bottom:928.773333pt;}
.y5_c02010{bottom:947.200000pt;}
.y1_c02010{bottom:996.800000pt;}
.h3_c02010{height:20.000000pt;}
.h5_c02010{height:32.160000pt;}
.h2_c02010{height:43.441250pt;}
.h8_c02010{height:48.320000pt;}
.h1_c02010{height:52.134375pt;}
.h6_c02010{height:55.275000pt;}
.h4_c02010{height:62.812500pt;}
.ha_c02010{height:64.352000pt;}
.h9_c02010{height:64.512000pt;}
.h7_c02010{height:80.480000pt;}
.h0_c02010{height:1056.000000pt;}
.w1_c02010{width:59.232000pt;}
.w3_c02010{width:112.672000pt;}
.w2_c02010{width:119.840000pt;}
.w4_c02010{width:131.712000pt;}
.w5_c02010{width:235.706667pt;}
.w0_c02010{width:816.000000pt;}
.x0_c02010{left:0.000000pt;}
.x13_c02010{left:6.880000pt;}
.x3_c02010{left:14.720000pt;}
.xe_c02010{left:21.920000pt;}
.xc_c02010{left:25.600000pt;}
.x18_c02010{left:27.034667pt;}
.x16_c02010{left:29.434667pt;}
.x12_c02010{left:31.994667pt;}
.x19_c02010{left:33.914667pt;}
.x17_c02010{left:36.634667pt;}
.x14_c02010{left:42.074667pt;}
.x15_c02010{left:44.794667pt;}
.x9_c02010{left:48.314667pt;}
.xb_c02010{left:56.360000pt;}
.x8_c02010{left:59.994667pt;}
.x11_c02010{left:85.280000pt;}
.x7_c02010{left:106.592000pt;}
.x1_c02010{left:113.472000pt;}
.x10_c02010{left:117.760000pt;}
.x1a_c02010{left:160.666667pt;}
.x5_c02010{left:221.146667pt;}
.xa_c02010{left:227.226667pt;}
.xd_c02010{left:340.546667pt;}
.x4_c02010{left:369.506667pt;}
.x6_c02010{left:408.066667pt;}
.xf_c02010{left:472.893333pt;}
.x2_c02010{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02011 {
    display:none;
  }
  .loading-indicator_c02011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02011 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02011 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02011" -> "#page-container .classname_c02011")
 */
.pf_c02011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02011 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02011 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02011 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02011 {overflow:visible;}
  }
}
.c_c02011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02011 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02011:after { /* webkit #35443 */
  content: '';
}
.t_c02011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02011 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02011 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02011 { /* info for Javascript */
  display:none;
}
.l_c02011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02011:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02011 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02011.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02011;src:url('chunks/assets/font_d4e41248bd2f72a1745a1488.woff2')format("woff");}.ff1_c02011{font-family:ff1_c02011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02011;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02011{font-family:ff2_c02011;line-height:0.863770;font-style:normal;font-weight: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_c02011;src:url('chunks/assets/font_12f09be6ca46e539838c2d79.woff2')format("woff");}.ff3_c02011{font-family:ff3_c02011;line-height:1.112305;font-style:normal;font-weight: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_c02011;src:url('chunks/assets/font_f06930c644d0d2d6efb97200.woff2')format("woff");}.ff4_c02011{font-family:ff4_c02011;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02011{vertical-align:-83.520000px;}
.v0_c02011{vertical-align:0.000000px;}
.ls2_c02011{letter-spacing:0.000000px;}
.ls0_c02011{letter-spacing:60.624000px;}
.ls1_c02011{letter-spacing:194.376000px;}
.sc__c02011{text-shadow:none;}
.sc0_c02011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02011{-webkit-text-stroke:0px transparent;}
.sc0_c02011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02011{word-spacing:-18.000000px;}
.ws1_c02011{word-spacing:0.000000px;}
._4_c02011{margin-left:-1.440000px;}
._1_c02011{width:1.224000px;}
._8_c02011{width:2.376000px;}
._b_c02011{width:5.544000px;}
._d_c02011{width:6.696000px;}
._e_c02011{width:8.064000px;}
._10_c02011{width:9.072000px;}
._f_c02011{width:10.080000px;}
._2_c02011{width:12.384000px;}
._3_c02011{width:14.112000px;}
._11_c02011{width:15.120000px;}
._c_c02011{width:16.920000px;}
._7_c02011{width:20.016000px;}
._a_c02011{width:22.320000px;}
._9_c02011{width:23.328000px;}
._5_c02011{width:24.552000px;}
._6_c02011{width:25.704000px;}
._0_c02011{width:1500.936000px;}
.fc1_c02011{color:rgb(192,80,77);}
.fc0_c02011{color:rgb(0,0,0);}
.fs0_c02011{font-size:59.760000px;}
.fs1_c02011{font-size:66.240000px;}
.fs2_c02011{font-size:72.000000px;}
.y0_c02011{bottom:0.000000px;}
.y4_c02011{bottom:4.680000px;}
.y3_c02011{bottom:41.796000px;}
.y2_c02011{bottom:75.456000px;}
.y23_c02011{bottom:113.076000px;}
.y22_c02011{bottom:144.216000px;}
.y21_c02011{bottom:175.170000px;}
.y20_c02011{bottom:206.130000px;}
.y1f_c02011{bottom:237.270000px;}
.y1e_c02011{bottom:268.230000px;}
.y1d_c02011{bottom:299.415000px;}
.y1c_c02011{bottom:330.375000px;}
.y1b_c02011{bottom:361.515000px;}
.y1a_c02011{bottom:392.475000px;}
.y19_c02011{bottom:423.615000px;}
.y18_c02011{bottom:475.455000px;}
.y17_c02011{bottom:506.415000px;}
.y16_c02011{bottom:537.405000px;}
.y15_c02011{bottom:568.545000px;}
.y14_c02011{bottom:599.505000px;}
.y13_c02011{bottom:630.645000px;}
.y12_c02011{bottom:661.605000px;}
.y11_c02011{bottom:692.745000px;}
.y10_c02011{bottom:723.705000px;}
.yf_c02011{bottom:754.845000px;}
.ye_c02011{bottom:785.805000px;}
.yd_c02011{bottom:816.990000px;}
.yc_c02011{bottom:847.950000px;}
.yb_c02011{bottom:879.090000px;}
.ya_c02011{bottom:910.050000px;}
.y9_c02011{bottom:941.190000px;}
.y8_c02011{bottom:972.150000px;}
.y7_c02011{bottom:1003.290000px;}
.y6_c02011{bottom:1034.250000px;}
.y5_c02011{bottom:1065.420000px;}
.y1_c02011{bottom:1121.400000px;}
.h3_c02011{height:22.500000px;}
.h2_c02011{height:48.871406px;}
.h1_c02011{height:58.651172px;}
.h5_c02011{height:64.546875px;}
.h4_c02011{height:70.664062px;}
.h6_c02011{height:74.004654px;}
.h0_c02011{height:1188.000000px;}
.w1_c02011{width:66.636000px;}
.w0_c02011{width:918.000000px;}
.x0_c02011{left:0.000000px;}
.x3_c02011{left:16.560000px;}
.x1_c02011{left:127.656000px;}
.x4_c02011{left:154.650000px;}
.x5_c02011{left:181.650000px;}
.x2_c02011{left:820.950000px;}
@media print{
.v1_c02011{vertical-align:-74.240000pt;}
.v0_c02011{vertical-align:0.000000pt;}
.ls2_c02011{letter-spacing:0.000000pt;}
.ls0_c02011{letter-spacing:53.888000pt;}
.ls1_c02011{letter-spacing:172.778667pt;}
.ws0_c02011{word-spacing:-16.000000pt;}
.ws1_c02011{word-spacing:0.000000pt;}
._4_c02011{margin-left:-1.280000pt;}
._1_c02011{width:1.088000pt;}
._8_c02011{width:2.112000pt;}
._b_c02011{width:4.928000pt;}
._d_c02011{width:5.952000pt;}
._e_c02011{width:7.168000pt;}
._10_c02011{width:8.064000pt;}
._f_c02011{width:8.960000pt;}
._2_c02011{width:11.008000pt;}
._3_c02011{width:12.544000pt;}
._11_c02011{width:13.440000pt;}
._c_c02011{width:15.040000pt;}
._7_c02011{width:17.792000pt;}
._a_c02011{width:19.840000pt;}
._9_c02011{width:20.736000pt;}
._5_c02011{width:21.824000pt;}
._6_c02011{width:22.848000pt;}
._0_c02011{width:1334.165333pt;}
.fs0_c02011{font-size:53.120000pt;}
.fs1_c02011{font-size:58.880000pt;}
.fs2_c02011{font-size:64.000000pt;}
.y0_c02011{bottom:0.000000pt;}
.y4_c02011{bottom:4.160000pt;}
.y3_c02011{bottom:37.152000pt;}
.y2_c02011{bottom:67.072000pt;}
.y23_c02011{bottom:100.512000pt;}
.y22_c02011{bottom:128.192000pt;}
.y21_c02011{bottom:155.706667pt;}
.y20_c02011{bottom:183.226667pt;}
.y1f_c02011{bottom:210.906667pt;}
.y1e_c02011{bottom:238.426667pt;}
.y1d_c02011{bottom:266.146667pt;}
.y1c_c02011{bottom:293.666667pt;}
.y1b_c02011{bottom:321.346667pt;}
.y1a_c02011{bottom:348.866667pt;}
.y19_c02011{bottom:376.546667pt;}
.y18_c02011{bottom:422.626667pt;}
.y17_c02011{bottom:450.146667pt;}
.y16_c02011{bottom:477.693333pt;}
.y15_c02011{bottom:505.373333pt;}
.y14_c02011{bottom:532.893333pt;}
.y13_c02011{bottom:560.573333pt;}
.y12_c02011{bottom:588.093333pt;}
.y11_c02011{bottom:615.773333pt;}
.y10_c02011{bottom:643.293333pt;}
.yf_c02011{bottom:670.973333pt;}
.ye_c02011{bottom:698.493333pt;}
.yd_c02011{bottom:726.213333pt;}
.yc_c02011{bottom:753.733333pt;}
.yb_c02011{bottom:781.413333pt;}
.ya_c02011{bottom:808.933333pt;}
.y9_c02011{bottom:836.613333pt;}
.y8_c02011{bottom:864.133333pt;}
.y7_c02011{bottom:891.813333pt;}
.y6_c02011{bottom:919.333333pt;}
.y5_c02011{bottom:947.040000pt;}
.y1_c02011{bottom:996.800000pt;}
.h3_c02011{height:20.000000pt;}
.h2_c02011{height:43.441250pt;}
.h1_c02011{height:52.134375pt;}
.h5_c02011{height:57.375000pt;}
.h4_c02011{height:62.812500pt;}
.h6_c02011{height:65.781915pt;}
.h0_c02011{height:1056.000000pt;}
.w1_c02011{width:59.232000pt;}
.w0_c02011{width:816.000000pt;}
.x0_c02011{left:0.000000pt;}
.x3_c02011{left:14.720000pt;}
.x1_c02011{left:113.472000pt;}
.x4_c02011{left:137.466667pt;}
.x5_c02011{left:161.466667pt;}
.x2_c02011{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02012 {
    display:none;
  }
  .loading-indicator_c02012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02012 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02012 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02012" -> "#page-container .classname_c02012")
 */
.pf_c02012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02012 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02012 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02012 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02012 {overflow:visible;}
  }
}
.c_c02012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02012 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02012:after { /* webkit #35443 */
  content: '';
}
.t_c02012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02012 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02012 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02012 { /* info for Javascript */
  display:none;
}
.l_c02012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02012:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02012 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02012.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02012;src:url('chunks/assets/font_d761d569dad5eea9daf70ddd.woff2')format("woff");}.ff1_c02012{font-family:ff1_c02012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02012;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02012{font-family:ff2_c02012;line-height:0.863770;font-style:normal;font-weight: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_c02012;src:url('chunks/assets/font_6a26811c36a66e0a22da2a1e.woff2')format("woff");}.ff3_c02012{font-family:ff3_c02012;line-height:1.112305;font-style:normal;font-weight: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_c02012;src:url('chunks/assets/font_71420690ce45ffc4ce2a3d79.woff2')format("woff");}.ff4_c02012{font-family:ff4_c02012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02012{vertical-align:0.000000px;}
.ls1_c02012{letter-spacing:0.000000px;}
.ls0_c02012{letter-spacing:9.360000px;}
.sc__c02012{text-shadow:none;}
.sc0_c02012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02012{-webkit-text-stroke:0px transparent;}
.sc0_c02012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02012{word-spacing:-18.000000px;}
.ws1_c02012{word-spacing:-16.560000px;}
.ws2_c02012{word-spacing:0.000000px;}
._5_c02012{margin-left:-1.080000px;}
._3_c02012{width:1.272000px;}
._4_c02012{width:2.544000px;}
._8_c02012{width:3.550146px;}
._b_c02012{width:5.034041px;}
._a_c02012{width:6.266681px;}
._7_c02012{width:7.286532px;}
._1_c02012{width:8.472000px;}
._2_c02012{width:9.648000px;}
._d_c02012{width:12.240000px;}
._c_c02012{width:14.112000px;}
._9_c02012{width:15.500359px;}
._e_c02012{width:16.788000px;}
._6_c02012{width:18.037241px;}
._f_c02012{width:19.584000px;}
._10_c02012{width:21.528000px;}
._0_c02012{width:1500.936000px;}
.fc1_c02012{color:rgb(192,80,77);}
.fc0_c02012{color:rgb(0,0,0);}
.fs0_c02012{font-size:59.760000px;}
.fs1_c02012{font-size:66.240000px;}
.fs2_c02012{font-size:72.000000px;}
.y0_c02012{bottom:0.000000px;}
.y4_c02012{bottom:4.680000px;}
.y3_c02012{bottom:41.796000px;}
.y2_c02012{bottom:75.456000px;}
.y29_c02012{bottom:140.616000px;}
.y28_c02012{bottom:171.750000px;}
.y27_c02012{bottom:202.710000px;}
.y26_c02012{bottom:233.850000px;}
.y25_c02012{bottom:264.810000px;}
.y24_c02012{bottom:295.995000px;}
.y23_c02012{bottom:326.955000px;}
.y22_c02012{bottom:358.095000px;}
.y21_c02012{bottom:389.055000px;}
.y20_c02012{bottom:420.195000px;}
.y1f_c02012{bottom:451.155000px;}
.y1e_c02012{bottom:482.295000px;}
.y1d_c02012{bottom:513.255000px;}
.y1c_c02012{bottom:544.425000px;}
.y1b_c02012{bottom:575.385000px;}
.y1a_c02012{bottom:606.525000px;}
.y19_c02012{bottom:637.125000px;}
.y18_c02012{bottom:668.625000px;}
.y17_c02012{bottom:688.965000px;}
.y16_c02012{bottom:707.865000px;}
.y15_c02012{bottom:726.945000px;}
.y14_c02012{bottom:745.845000px;}
.y13_c02012{bottom:764.925000px;}
.y12_c02012{bottom:783.825000px;}
.y11_c02012{bottom:802.770000px;}
.y10_c02012{bottom:821.850000px;}
.yf_c02012{bottom:840.750000px;}
.ye_c02012{bottom:859.830000px;}
.yd_c02012{bottom:878.730000px;}
.yc_c02012{bottom:897.630000px;}
.yb_c02012{bottom:916.710000px;}
.ya_c02012{bottom:935.610000px;}
.y9_c02012{bottom:954.690000px;}
.y8_c02012{bottom:973.590000px;}
.y7_c02012{bottom:1003.290000px;}
.y6_c02012{bottom:1034.250000px;}
.y5_c02012{bottom:1065.420000px;}
.y1_c02012{bottom:1121.400000px;}
.h3_c02012{height:22.500000px;}
.h2_c02012{height:48.871406px;}
.h1_c02012{height:58.651172px;}
.h6_c02012{height:59.383125px;}
.h8_c02012{height:64.546875px;}
.h5_c02012{height:65.010937px;}
.h4_c02012{height:70.664062px;}
.h7_c02012{height:72.562500px;}
.h0_c02012{height:1188.000000px;}
.w1_c02012{width:66.636000px;}
.w0_c02012{width:918.000000px;}
.x0_c02012{left:0.000000px;}
.x3_c02012{left:16.560000px;}
.x1_c02012{left:127.656000px;}
.x5_c02012{left:180.750000px;}
.x4_c02012{left:191.550000px;}
.x2_c02012{left:820.950000px;}
@media print{
.v0_c02012{vertical-align:0.000000pt;}
.ls1_c02012{letter-spacing:0.000000pt;}
.ls0_c02012{letter-spacing:8.320000pt;}
.ws0_c02012{word-spacing:-16.000000pt;}
.ws1_c02012{word-spacing:-14.720000pt;}
.ws2_c02012{word-spacing:0.000000pt;}
._5_c02012{margin-left:-0.960000pt;}
._3_c02012{width:1.130667pt;}
._4_c02012{width:2.261333pt;}
._8_c02012{width:3.155686pt;}
._b_c02012{width:4.474703pt;}
._a_c02012{width:5.570383pt;}
._7_c02012{width:6.476918pt;}
._1_c02012{width:7.530667pt;}
._2_c02012{width:8.576000pt;}
._d_c02012{width:10.880000pt;}
._c_c02012{width:12.544000pt;}
._9_c02012{width:13.778097pt;}
._e_c02012{width:14.922667pt;}
._6_c02012{width:16.033103pt;}
._f_c02012{width:17.408000pt;}
._10_c02012{width:19.136000pt;}
._0_c02012{width:1334.165333pt;}
.fs0_c02012{font-size:53.120000pt;}
.fs1_c02012{font-size:58.880000pt;}
.fs2_c02012{font-size:64.000000pt;}
.y0_c02012{bottom:0.000000pt;}
.y4_c02012{bottom:4.160000pt;}
.y3_c02012{bottom:37.152000pt;}
.y2_c02012{bottom:67.072000pt;}
.y29_c02012{bottom:124.992000pt;}
.y28_c02012{bottom:152.666667pt;}
.y27_c02012{bottom:180.186667pt;}
.y26_c02012{bottom:207.866667pt;}
.y25_c02012{bottom:235.386667pt;}
.y24_c02012{bottom:263.106667pt;}
.y23_c02012{bottom:290.626667pt;}
.y22_c02012{bottom:318.306667pt;}
.y21_c02012{bottom:345.826667pt;}
.y20_c02012{bottom:373.506667pt;}
.y1f_c02012{bottom:401.026667pt;}
.y1e_c02012{bottom:428.706667pt;}
.y1d_c02012{bottom:456.226667pt;}
.y1c_c02012{bottom:483.933333pt;}
.y1b_c02012{bottom:511.453333pt;}
.y1a_c02012{bottom:539.133333pt;}
.y19_c02012{bottom:566.333333pt;}
.y18_c02012{bottom:594.333333pt;}
.y17_c02012{bottom:612.413333pt;}
.y16_c02012{bottom:629.213333pt;}
.y15_c02012{bottom:646.173333pt;}
.y14_c02012{bottom:662.973333pt;}
.y13_c02012{bottom:679.933333pt;}
.y12_c02012{bottom:696.733333pt;}
.y11_c02012{bottom:713.573333pt;}
.y10_c02012{bottom:730.533333pt;}
.yf_c02012{bottom:747.333333pt;}
.ye_c02012{bottom:764.293333pt;}
.yd_c02012{bottom:781.093333pt;}
.yc_c02012{bottom:797.893333pt;}
.yb_c02012{bottom:814.853333pt;}
.ya_c02012{bottom:831.653333pt;}
.y9_c02012{bottom:848.613333pt;}
.y8_c02012{bottom:865.413333pt;}
.y7_c02012{bottom:891.813333pt;}
.y6_c02012{bottom:919.333333pt;}
.y5_c02012{bottom:947.040000pt;}
.y1_c02012{bottom:996.800000pt;}
.h3_c02012{height:20.000000pt;}
.h2_c02012{height:43.441250pt;}
.h1_c02012{height:52.134375pt;}
.h6_c02012{height:52.785000pt;}
.h8_c02012{height:57.375000pt;}
.h5_c02012{height:57.787500pt;}
.h4_c02012{height:62.812500pt;}
.h7_c02012{height:64.500000pt;}
.h0_c02012{height:1056.000000pt;}
.w1_c02012{width:59.232000pt;}
.w0_c02012{width:816.000000pt;}
.x0_c02012{left:0.000000pt;}
.x3_c02012{left:14.720000pt;}
.x1_c02012{left:113.472000pt;}
.x5_c02012{left:160.666667pt;}
.x4_c02012{left:170.266667pt;}
.x2_c02012{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02013 {
    display:none;
  }
  .loading-indicator_c02013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02013 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02013 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02013" -> "#page-container .classname_c02013")
 */
.pf_c02013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02013 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02013 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02013 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02013 {overflow:visible;}
  }
}
.c_c02013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02013 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02013:after { /* webkit #35443 */
  content: '';
}
.t_c02013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02013 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02013 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02013 { /* info for Javascript */
  display:none;
}
.l_c02013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02013:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02013 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02013.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02013;src:url('chunks/assets/font_a088ef2d6b835181355331c8.woff2')format("woff");}.ff1_c02013{font-family:ff1_c02013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02013;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02013{font-family:ff2_c02013;line-height:0.863770;font-style:normal;font-weight: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_c02013;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02013{font-family:ff3_c02013;line-height:1.311035;font-style:normal;font-weight: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_c02013;src:url('chunks/assets/font_4b55bd46fd408c1f65d484ce.woff2')format("woff");}.ff4_c02013{font-family:ff4_c02013;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02013{vertical-align:0.000000px;}
.ls1_c02013{letter-spacing:-0.262200px;}
.ls0_c02013{letter-spacing:0.000000px;}
.sc__c02013{text-shadow:none;}
.sc0_c02013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02013{-webkit-text-stroke:0px transparent;}
.sc0_c02013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02013{word-spacing:-16.297800px;}
.ws1_c02013{word-spacing:0.000000px;}
._16_c02013{margin-left:-2.160000px;}
._3_c02013{margin-left:-1.152000px;}
._4_c02013{width:1.128000px;}
._b_c02013{width:2.211708px;}
._1_c02013{width:3.528000px;}
._2_c02013{width:4.608000px;}
._c_c02013{width:6.549716px;}
._8_c02013{width:7.775338px;}
._7_c02013{width:9.075012px;}
._6_c02013{width:10.398125px;}
._5_c02013{width:11.459388px;}
._13_c02013{width:12.720000px;}
._14_c02013{width:14.448000px;}
._15_c02013{width:16.560000px;}
._f_c02013{width:19.464000px;}
._10_c02013{width:20.940000px;}
._a_c02013{width:22.985412px;}
._9_c02013{width:24.137412px;}
._e_c02013{width:27.740425px;}
._d_c02013{width:29.344188px;}
._11_c02013{width:31.752000px;}
._12_c02013{width:32.832000px;}
._1b_c02013{width:40.104000px;}
._19_c02013{width:41.112000px;}
._1a_c02013{width:42.192000px;}
._17_c02013{width:44.280000px;}
._18_c02013{width:45.288000px;}
._0_c02013{width:1500.936000px;}
.fc1_c02013{color:rgb(192,80,77);}
.fc0_c02013{color:rgb(0,0,0);}
.fs0_c02013{font-size:59.760000px;}
.fs1_c02013{font-size:66.240000px;}
.fs2_c02013{font-size:72.000000px;}
.y0_c02013{bottom:0.000000px;}
.y4_c02013{bottom:4.680000px;}
.y3_c02013{bottom:41.796000px;}
.y2_c02013{bottom:75.456000px;}
.y29_c02013{bottom:128.556000px;}
.y28_c02013{bottom:159.690000px;}
.y27_c02013{bottom:190.650000px;}
.y26_c02013{bottom:221.790000px;}
.y25_c02013{bottom:252.750000px;}
.y24_c02013{bottom:283.935000px;}
.y23_c02013{bottom:314.895000px;}
.y22_c02013{bottom:346.035000px;}
.y21_c02013{bottom:376.995000px;}
.y20_c02013{bottom:408.135000px;}
.y1f_c02013{bottom:439.095000px;}
.y1e_c02013{bottom:470.235000px;}
.y1d_c02013{bottom:501.195000px;}
.y1c_c02013{bottom:532.335000px;}
.y1b_c02013{bottom:563.325000px;}
.y1a_c02013{bottom:594.465000px;}
.y19_c02013{bottom:625.425000px;}
.y18_c02013{bottom:656.565000px;}
.y17_c02013{bottom:687.525000px;}
.y16_c02013{bottom:707.865000px;}
.y15_c02013{bottom:726.945000px;}
.y14_c02013{bottom:745.845000px;}
.y13_c02013{bottom:764.925000px;}
.y12_c02013{bottom:783.825000px;}
.y11_c02013{bottom:802.770000px;}
.y10_c02013{bottom:821.850000px;}
.yf_c02013{bottom:840.750000px;}
.ye_c02013{bottom:859.830000px;}
.yd_c02013{bottom:878.730000px;}
.yc_c02013{bottom:897.270000px;}
.yb_c02013{bottom:916.710000px;}
.ya_c02013{bottom:935.610000px;}
.y9_c02013{bottom:954.690000px;}
.y8_c02013{bottom:973.590000px;}
.y7_c02013{bottom:1002.930000px;}
.y6_c02013{bottom:1034.250000px;}
.y5_c02013{bottom:1065.420000px;}
.y1_c02013{bottom:1121.400000px;}
.h3_c02013{height:22.500000px;}
.h2_c02013{height:48.871406px;}
.h1_c02013{height:58.651172px;}
.h8_c02013{height:59.383125px;}
.h9_c02013{height:64.546875px;}
.h6_c02013{height:65.010937px;}
.h7_c02013{height:66.757500px;}
.h4_c02013{height:70.664062px;}
.h5_c02013{height:72.562500px;}
.h0_c02013{height:1188.000000px;}
.w1_c02013{width:66.636000px;}
.w0_c02013{width:918.000000px;}
.x0_c02013{left:0.000000px;}
.x3_c02013{left:16.560000px;}
.x1_c02013{left:127.656000px;}
.x5_c02013{left:180.750000px;}
.x4_c02013{left:191.550000px;}
.x2_c02013{left:820.950000px;}
@media print{
.v0_c02013{vertical-align:0.000000pt;}
.ls1_c02013{letter-spacing:-0.233067pt;}
.ls0_c02013{letter-spacing:0.000000pt;}
.ws0_c02013{word-spacing:-14.486933pt;}
.ws1_c02013{word-spacing:0.000000pt;}
._16_c02013{margin-left:-1.920000pt;}
._3_c02013{margin-left:-1.024000pt;}
._4_c02013{width:1.002667pt;}
._b_c02013{width:1.965962pt;}
._1_c02013{width:3.136000pt;}
._2_c02013{width:4.096000pt;}
._c_c02013{width:5.821970pt;}
._8_c02013{width:6.911411pt;}
._7_c02013{width:8.066678pt;}
._6_c02013{width:9.242778pt;}
._5_c02013{width:10.186122pt;}
._13_c02013{width:11.306667pt;}
._14_c02013{width:12.842667pt;}
._15_c02013{width:14.720000pt;}
._f_c02013{width:17.301333pt;}
._10_c02013{width:18.613333pt;}
._a_c02013{width:20.431478pt;}
._9_c02013{width:21.455478pt;}
._e_c02013{width:24.658156pt;}
._d_c02013{width:26.083722pt;}
._11_c02013{width:28.224000pt;}
._12_c02013{width:29.184000pt;}
._1b_c02013{width:35.648000pt;}
._19_c02013{width:36.544000pt;}
._1a_c02013{width:37.504000pt;}
._17_c02013{width:39.360000pt;}
._18_c02013{width:40.256000pt;}
._0_c02013{width:1334.165333pt;}
.fs0_c02013{font-size:53.120000pt;}
.fs1_c02013{font-size:58.880000pt;}
.fs2_c02013{font-size:64.000000pt;}
.y0_c02013{bottom:0.000000pt;}
.y4_c02013{bottom:4.160000pt;}
.y3_c02013{bottom:37.152000pt;}
.y2_c02013{bottom:67.072000pt;}
.y29_c02013{bottom:114.272000pt;}
.y28_c02013{bottom:141.946667pt;}
.y27_c02013{bottom:169.466667pt;}
.y26_c02013{bottom:197.146667pt;}
.y25_c02013{bottom:224.666667pt;}
.y24_c02013{bottom:252.386667pt;}
.y23_c02013{bottom:279.906667pt;}
.y22_c02013{bottom:307.586667pt;}
.y21_c02013{bottom:335.106667pt;}
.y20_c02013{bottom:362.786667pt;}
.y1f_c02013{bottom:390.306667pt;}
.y1e_c02013{bottom:417.986667pt;}
.y1d_c02013{bottom:445.506667pt;}
.y1c_c02013{bottom:473.186667pt;}
.y1b_c02013{bottom:500.733333pt;}
.y1a_c02013{bottom:528.413333pt;}
.y19_c02013{bottom:555.933333pt;}
.y18_c02013{bottom:583.613333pt;}
.y17_c02013{bottom:611.133333pt;}
.y16_c02013{bottom:629.213333pt;}
.y15_c02013{bottom:646.173333pt;}
.y14_c02013{bottom:662.973333pt;}
.y13_c02013{bottom:679.933333pt;}
.y12_c02013{bottom:696.733333pt;}
.y11_c02013{bottom:713.573333pt;}
.y10_c02013{bottom:730.533333pt;}
.yf_c02013{bottom:747.333333pt;}
.ye_c02013{bottom:764.293333pt;}
.yd_c02013{bottom:781.093333pt;}
.yc_c02013{bottom:797.573333pt;}
.yb_c02013{bottom:814.853333pt;}
.ya_c02013{bottom:831.653333pt;}
.y9_c02013{bottom:848.613333pt;}
.y8_c02013{bottom:865.413333pt;}
.y7_c02013{bottom:891.493333pt;}
.y6_c02013{bottom:919.333333pt;}
.y5_c02013{bottom:947.040000pt;}
.y1_c02013{bottom:996.800000pt;}
.h3_c02013{height:20.000000pt;}
.h2_c02013{height:43.441250pt;}
.h1_c02013{height:52.134375pt;}
.h8_c02013{height:52.785000pt;}
.h9_c02013{height:57.375000pt;}
.h6_c02013{height:57.787500pt;}
.h7_c02013{height:59.340000pt;}
.h4_c02013{height:62.812500pt;}
.h5_c02013{height:64.500000pt;}
.h0_c02013{height:1056.000000pt;}
.w1_c02013{width:59.232000pt;}
.w0_c02013{width:816.000000pt;}
.x0_c02013{left:0.000000pt;}
.x3_c02013{left:14.720000pt;}
.x1_c02013{left:113.472000pt;}
.x5_c02013{left:160.666667pt;}
.x4_c02013{left:170.266667pt;}
.x2_c02013{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02014 {
    display:none;
  }
  .loading-indicator_c02014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02014 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02014 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02014" -> "#page-container .classname_c02014")
 */
.pf_c02014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02014 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02014 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02014 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02014 {overflow:visible;}
  }
}
.c_c02014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02014 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02014:after { /* webkit #35443 */
  content: '';
}
.t_c02014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02014 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02014 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02014 { /* info for Javascript */
  display:none;
}
.l_c02014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02014:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02014 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02014.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02014;src:url('chunks/assets/font_4aa1d872980d6126ee4ab7ae.woff2')format("woff");}.ff1_c02014{font-family:ff1_c02014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02014;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02014{font-family:ff2_c02014;line-height:0.863770;font-style:normal;font-weight: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_c02014;src:url('chunks/assets/font_06b24df0f5da6117170b523c.woff2')format("woff");}.ff3_c02014{font-family:ff3_c02014;line-height:1.112305;font-style:normal;font-weight: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_c02014;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02014{font-family:ff4_c02014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02014{vertical-align:-27.360000px;}
.v0_c02014{vertical-align:0.000000px;}
.v1_c02014{vertical-align:30.240000px;}
.ls4_c02014{letter-spacing:0.000000px;}
.ls2_c02014{letter-spacing:0.106560px;}
.ls0_c02014{letter-spacing:0.150000px;}
.ls3_c02014{letter-spacing:0.360000px;}
.ls1_c02014{letter-spacing:3.060000px;}
.sc__c02014{text-shadow:none;}
.sc0_c02014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02014{-webkit-text-stroke:0px transparent;}
.sc0_c02014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c02014{word-spacing:-15.300000px;}
.ws2_c02014{word-spacing:-14.940000px;}
.ws0_c02014{word-spacing:-10.440000px;}
.ws1_c02014{word-spacing:-9.720000px;}
.ws4_c02014{word-spacing:0.000000px;}
._14_c02014{margin-left:-12.817920px;}
._6_c02014{margin-left:-1.440000px;}
._3_c02014{width:1.692000px;}
._12_c02014{width:2.784024px;}
._4_c02014{width:4.104000px;}
._5_c02014{width:5.472000px;}
._13_c02014{width:7.137674px;}
._7_c02014{width:8.677175px;}
._d_c02014{width:9.936662px;}
._1_c02014{width:10.944000px;}
._2_c02014{width:11.952000px;}
._9_c02014{width:13.380612px;}
._8_c02014{width:14.440254px;}
._c_c02014{width:17.703939px;}
._a_c02014{width:19.143625px;}
._15_c02014{width:20.487578px;}
._b_c02014{width:22.720188px;}
._f_c02014{width:27.604866px;}
._e_c02014{width:28.814400px;}
._10_c02014{width:30.600000px;}
._11_c02014{width:32.169600px;}
._0_c02014{width:1500.936000px;}
.fc1_c02014{color:rgb(192,80,77);}
.fc0_c02014{color:rgb(0,0,0);}
.fs4_c02014{font-size:38.880000px;}
.fs3_c02014{font-size:41.760000px;}
.fs0_c02014{font-size:59.760000px;}
.fs1_c02014{font-size:66.240000px;}
.fs2_c02014{font-size:72.000000px;}
.y0_c02014{bottom:0.000000px;}
.y4_c02014{bottom:4.680000px;}
.y3_c02014{bottom:41.796000px;}
.y2_c02014{bottom:75.456000px;}
.y30_c02014{bottom:130.356000px;}
.y2f_c02014{bottom:147.636000px;}
.y2e_c02014{bottom:164.730000px;}
.y2d_c02014{bottom:182.010000px;}
.y2c_c02014{bottom:199.290000px;}
.y2b_c02014{bottom:216.570000px;}
.y2a_c02014{bottom:233.850000px;}
.y29_c02014{bottom:251.130000px;}
.y28_c02014{bottom:268.230000px;}
.y27_c02014{bottom:285.555000px;}
.y26_c02014{bottom:302.835000px;}
.y25_c02014{bottom:320.115000px;}
.y24_c02014{bottom:337.395000px;}
.y23_c02014{bottom:354.675000px;}
.y22_c02014{bottom:371.775000px;}
.y21_c02014{bottom:389.055000px;}
.y20_c02014{bottom:406.335000px;}
.y1f_c02014{bottom:423.615000px;}
.y1e_c02014{bottom:440.895000px;}
.y1d_c02014{bottom:457.995000px;}
.y1c_c02014{bottom:475.275000px;}
.y1b_c02014{bottom:499.395000px;}
.y1a_c02014{bottom:510.735000px;}
.y19_c02014{bottom:540.825000px;}
.y18_c02014{bottom:571.965000px;}
.y17_c02014{bottom:602.925000px;}
.y16_c02014{bottom:634.065000px;}
.y15_c02014{bottom:665.025000px;}
.y14_c02014{bottom:696.165000px;}
.y13_c02014{bottom:727.125000px;}
.y12_c02014{bottom:758.265000px;}
.y11_c02014{bottom:789.225000px;}
.y10_c02014{bottom:809.790000px;}
.yf_c02014{bottom:828.690000px;}
.ye_c02014{bottom:847.770000px;}
.yd_c02014{bottom:866.670000px;}
.yc_c02014{bottom:885.570000px;}
.yb_c02014{bottom:904.650000px;}
.ya_c02014{bottom:923.550000px;}
.y9_c02014{bottom:942.630000px;}
.y8_c02014{bottom:972.150000px;}
.y7_c02014{bottom:1003.290000px;}
.y6_c02014{bottom:1034.250000px;}
.y5_c02014{bottom:1065.420000px;}
.y1_c02014{bottom:1121.400000px;}
.h3_c02014{height:22.500000px;}
.h7_c02014{height:38.158594px;}
.h2_c02014{height:48.871406px;}
.h1_c02014{height:58.651172px;}
.h8_c02014{height:60.226875px;}
.h5_c02014{height:65.010937px;}
.h4_c02014{height:70.664062px;}
.h6_c02014{height:71.225156px;}
.h0_c02014{height:1188.000000px;}
.w1_c02014{width:66.636000px;}
.w0_c02014{width:918.000000px;}
.x0_c02014{left:0.000000px;}
.x3_c02014{left:16.560000px;}
.x1_c02014{left:127.656000px;}
.x4_c02014{left:180.750000px;}
.x5_c02014{left:191.550000px;}
.x2_c02014{left:820.950000px;}
@media print{
.v2_c02014{vertical-align:-24.320000pt;}
.v0_c02014{vertical-align:0.000000pt;}
.v1_c02014{vertical-align:26.880000pt;}
.ls4_c02014{letter-spacing:0.000000pt;}
.ls2_c02014{letter-spacing:0.094720pt;}
.ls0_c02014{letter-spacing:0.133333pt;}
.ls3_c02014{letter-spacing:0.320000pt;}
.ls1_c02014{letter-spacing:2.720000pt;}
.ws3_c02014{word-spacing:-13.600000pt;}
.ws2_c02014{word-spacing:-13.280000pt;}
.ws0_c02014{word-spacing:-9.280000pt;}
.ws1_c02014{word-spacing:-8.640000pt;}
.ws4_c02014{word-spacing:0.000000pt;}
._14_c02014{margin-left:-11.393707pt;}
._6_c02014{margin-left:-1.280000pt;}
._3_c02014{width:1.504000pt;}
._12_c02014{width:2.474688pt;}
._4_c02014{width:3.648000pt;}
._5_c02014{width:4.864000pt;}
._13_c02014{width:6.344599pt;}
._7_c02014{width:7.713044pt;}
._d_c02014{width:8.832589pt;}
._1_c02014{width:9.728000pt;}
._2_c02014{width:10.624000pt;}
._9_c02014{width:11.893878pt;}
._8_c02014{width:12.835781pt;}
._c_c02014{width:15.736835pt;}
._a_c02014{width:17.016556pt;}
._15_c02014{width:18.211181pt;}
._b_c02014{width:20.195722pt;}
._f_c02014{width:24.537659pt;}
._e_c02014{width:25.612800pt;}
._10_c02014{width:27.200000pt;}
._11_c02014{width:28.595200pt;}
._0_c02014{width:1334.165333pt;}
.fs4_c02014{font-size:34.560000pt;}
.fs3_c02014{font-size:37.120000pt;}
.fs0_c02014{font-size:53.120000pt;}
.fs1_c02014{font-size:58.880000pt;}
.fs2_c02014{font-size:64.000000pt;}
.y0_c02014{bottom:0.000000pt;}
.y4_c02014{bottom:4.160000pt;}
.y3_c02014{bottom:37.152000pt;}
.y2_c02014{bottom:67.072000pt;}
.y30_c02014{bottom:115.872000pt;}
.y2f_c02014{bottom:131.232000pt;}
.y2e_c02014{bottom:146.426667pt;}
.y2d_c02014{bottom:161.786667pt;}
.y2c_c02014{bottom:177.146667pt;}
.y2b_c02014{bottom:192.506667pt;}
.y2a_c02014{bottom:207.866667pt;}
.y29_c02014{bottom:223.226667pt;}
.y28_c02014{bottom:238.426667pt;}
.y27_c02014{bottom:253.826667pt;}
.y26_c02014{bottom:269.186667pt;}
.y25_c02014{bottom:284.546667pt;}
.y24_c02014{bottom:299.906667pt;}
.y23_c02014{bottom:315.266667pt;}
.y22_c02014{bottom:330.466667pt;}
.y21_c02014{bottom:345.826667pt;}
.y20_c02014{bottom:361.186667pt;}
.y1f_c02014{bottom:376.546667pt;}
.y1e_c02014{bottom:391.906667pt;}
.y1d_c02014{bottom:407.106667pt;}
.y1c_c02014{bottom:422.466667pt;}
.y1b_c02014{bottom:443.906667pt;}
.y1a_c02014{bottom:453.986667pt;}
.y19_c02014{bottom:480.733333pt;}
.y18_c02014{bottom:508.413333pt;}
.y17_c02014{bottom:535.933333pt;}
.y16_c02014{bottom:563.613333pt;}
.y15_c02014{bottom:591.133333pt;}
.y14_c02014{bottom:618.813333pt;}
.y13_c02014{bottom:646.333333pt;}
.y12_c02014{bottom:674.013333pt;}
.y11_c02014{bottom:701.533333pt;}
.y10_c02014{bottom:719.813333pt;}
.yf_c02014{bottom:736.613333pt;}
.ye_c02014{bottom:753.573333pt;}
.yd_c02014{bottom:770.373333pt;}
.yc_c02014{bottom:787.173333pt;}
.yb_c02014{bottom:804.133333pt;}
.ya_c02014{bottom:820.933333pt;}
.y9_c02014{bottom:837.893333pt;}
.y8_c02014{bottom:864.133333pt;}
.y7_c02014{bottom:891.813333pt;}
.y6_c02014{bottom:919.333333pt;}
.y5_c02014{bottom:947.040000pt;}
.y1_c02014{bottom:996.800000pt;}
.h3_c02014{height:20.000000pt;}
.h7_c02014{height:33.918750pt;}
.h2_c02014{height:43.441250pt;}
.h1_c02014{height:52.134375pt;}
.h8_c02014{height:53.535000pt;}
.h5_c02014{height:57.787500pt;}
.h4_c02014{height:62.812500pt;}
.h6_c02014{height:63.311250pt;}
.h0_c02014{height:1056.000000pt;}
.w1_c02014{width:59.232000pt;}
.w0_c02014{width:816.000000pt;}
.x0_c02014{left:0.000000pt;}
.x3_c02014{left:14.720000pt;}
.x1_c02014{left:113.472000pt;}
.x4_c02014{left:160.666667pt;}
.x5_c02014{left:170.266667pt;}
.x2_c02014{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02015 {
    display:none;
  }
  .loading-indicator_c02015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02015" -> "#page-container .classname_c02015")
 */
.pf_c02015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02015 {overflow:visible;}
  }
}
.c_c02015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02015:after { /* webkit #35443 */
  content: '';
}
.t_c02015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02015 { /* info for Javascript */
  display:none;
}
.l_c02015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02015:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02015 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02015.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02015;src:url('chunks/assets/font_97de80d2d3450f143b65dcfb.woff2')format("woff");}.ff1_c02015{font-family:ff1_c02015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02015;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02015{font-family:ff2_c02015;line-height:0.863770;font-style:normal;font-weight: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_c02015;src:url('chunks/assets/font_df717011a8c95bc8b4f6f0ae.woff2')format("woff");}.ff3_c02015{font-family:ff3_c02015;line-height:1.112305;font-style:normal;font-weight: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_c02015;src:url('chunks/assets/font_612ca3934adf4ecaf4c39f48.woff2')format("woff");}.ff4_c02015{font-family:ff4_c02015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02015{vertical-align:0.000000px;}
.ls1_c02015{letter-spacing:-0.288000px;}
.ls0_c02015{letter-spacing:0.000000px;}
.sc__c02015{text-shadow:none;}
.sc0_c02015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02015{-webkit-text-stroke:0px transparent;}
.sc0_c02015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02015{word-spacing:-17.712000px;}
.ws1_c02015{word-spacing:-16.560000px;}
.ws2_c02015{word-spacing:0.000000px;}
._a_c02015{margin-left:-2.088000px;}
._2_c02015{margin-left:-1.080000px;}
._6_c02015{width:1.080000px;}
._e_c02015{width:2.160000px;}
._10_c02015{width:3.525186px;}
._9_c02015{width:4.680000px;}
._4_c02015{width:6.552000px;}
._5_c02015{width:7.848000px;}
._1_c02015{width:9.000000px;}
._3_c02015{width:10.296000px;}
._c_c02015{width:12.096000px;}
._d_c02015{width:13.248000px;}
._f_c02015{width:17.818825px;}
._b_c02015{width:19.296000px;}
._7_c02015{width:21.072000px;}
._8_c02015{width:22.320000px;}
._0_c02015{width:1500.936000px;}
.fc1_c02015{color:rgb(192,80,77);}
.fc0_c02015{color:rgb(0,0,0);}
.fs0_c02015{font-size:59.760000px;}
.fs1_c02015{font-size:66.240000px;}
.fs2_c02015{font-size:72.000000px;}
.y0_c02015{bottom:0.000000px;}
.y4_c02015{bottom:4.680000px;}
.y3_c02015{bottom:41.796000px;}
.y2_c02015{bottom:75.456000px;}
.y2a_c02015{bottom:111.096000px;}
.y29_c02015{bottom:129.996000px;}
.y28_c02015{bottom:149.076000px;}
.y27_c02015{bottom:167.970000px;}
.y26_c02015{bottom:186.870000px;}
.y25_c02015{bottom:205.950000px;}
.y24_c02015{bottom:224.850000px;}
.y23_c02015{bottom:243.930000px;}
.y22_c02015{bottom:262.830000px;}
.y21_c02015{bottom:281.955000px;}
.y20_c02015{bottom:300.855000px;}
.y1f_c02015{bottom:319.755000px;}
.y1e_c02015{bottom:349.455000px;}
.y1d_c02015{bottom:380.415000px;}
.y1c_c02015{bottom:411.555000px;}
.y1b_c02015{bottom:442.515000px;}
.y1a_c02015{bottom:463.035000px;}
.y19_c02015{bottom:481.935000px;}
.y18_c02015{bottom:501.015000px;}
.y17_c02015{bottom:519.915000px;}
.y16_c02015{bottom:538.845000px;}
.y15_c02015{bottom:568.545000px;}
.y14_c02015{bottom:599.505000px;}
.y13_c02015{bottom:630.645000px;}
.y12_c02015{bottom:661.605000px;}
.y11_c02015{bottom:692.745000px;}
.y10_c02015{bottom:723.705000px;}
.yf_c02015{bottom:754.845000px;}
.ye_c02015{bottom:785.805000px;}
.yd_c02015{bottom:816.990000px;}
.yc_c02015{bottom:847.950000px;}
.yb_c02015{bottom:879.090000px;}
.ya_c02015{bottom:910.050000px;}
.y9_c02015{bottom:941.190000px;}
.y8_c02015{bottom:972.150000px;}
.y7_c02015{bottom:1003.290000px;}
.y6_c02015{bottom:1034.250000px;}
.y5_c02015{bottom:1065.420000px;}
.y1_c02015{bottom:1121.400000px;}
.h3_c02015{height:22.500000px;}
.h2_c02015{height:48.871406px;}
.h1_c02015{height:58.651172px;}
.h7_c02015{height:59.383125px;}
.h5_c02015{height:64.546875px;}
.h6_c02015{height:65.010937px;}
.h4_c02015{height:70.664062px;}
.h0_c02015{height:1188.000000px;}
.w1_c02015{width:66.636000px;}
.w0_c02015{width:918.000000px;}
.x0_c02015{left:0.000000px;}
.x3_c02015{left:16.560000px;}
.x1_c02015{left:127.656000px;}
.x4_c02015{left:180.750000px;}
.x5_c02015{left:191.550000px;}
.x2_c02015{left:820.950000px;}
@media print{
.v0_c02015{vertical-align:0.000000pt;}
.ls1_c02015{letter-spacing:-0.256000pt;}
.ls0_c02015{letter-spacing:0.000000pt;}
.ws0_c02015{word-spacing:-15.744000pt;}
.ws1_c02015{word-spacing:-14.720000pt;}
.ws2_c02015{word-spacing:0.000000pt;}
._a_c02015{margin-left:-1.856000pt;}
._2_c02015{margin-left:-0.960000pt;}
._6_c02015{width:0.960000pt;}
._e_c02015{width:1.920000pt;}
._10_c02015{width:3.133499pt;}
._9_c02015{width:4.160000pt;}
._4_c02015{width:5.824000pt;}
._5_c02015{width:6.976000pt;}
._1_c02015{width:8.000000pt;}
._3_c02015{width:9.152000pt;}
._c_c02015{width:10.752000pt;}
._d_c02015{width:11.776000pt;}
._f_c02015{width:15.838956pt;}
._b_c02015{width:17.152000pt;}
._7_c02015{width:18.730667pt;}
._8_c02015{width:19.840000pt;}
._0_c02015{width:1334.165333pt;}
.fs0_c02015{font-size:53.120000pt;}
.fs1_c02015{font-size:58.880000pt;}
.fs2_c02015{font-size:64.000000pt;}
.y0_c02015{bottom:0.000000pt;}
.y4_c02015{bottom:4.160000pt;}
.y3_c02015{bottom:37.152000pt;}
.y2_c02015{bottom:67.072000pt;}
.y2a_c02015{bottom:98.752000pt;}
.y29_c02015{bottom:115.552000pt;}
.y28_c02015{bottom:132.512000pt;}
.y27_c02015{bottom:149.306667pt;}
.y26_c02015{bottom:166.106667pt;}
.y25_c02015{bottom:183.066667pt;}
.y24_c02015{bottom:199.866667pt;}
.y23_c02015{bottom:216.826667pt;}
.y22_c02015{bottom:233.626667pt;}
.y21_c02015{bottom:250.626667pt;}
.y20_c02015{bottom:267.426667pt;}
.y1f_c02015{bottom:284.226667pt;}
.y1e_c02015{bottom:310.626667pt;}
.y1d_c02015{bottom:338.146667pt;}
.y1c_c02015{bottom:365.826667pt;}
.y1b_c02015{bottom:393.346667pt;}
.y1a_c02015{bottom:411.586667pt;}
.y19_c02015{bottom:428.386667pt;}
.y18_c02015{bottom:445.346667pt;}
.y17_c02015{bottom:462.146667pt;}
.y16_c02015{bottom:478.973333pt;}
.y15_c02015{bottom:505.373333pt;}
.y14_c02015{bottom:532.893333pt;}
.y13_c02015{bottom:560.573333pt;}
.y12_c02015{bottom:588.093333pt;}
.y11_c02015{bottom:615.773333pt;}
.y10_c02015{bottom:643.293333pt;}
.yf_c02015{bottom:670.973333pt;}
.ye_c02015{bottom:698.493333pt;}
.yd_c02015{bottom:726.213333pt;}
.yc_c02015{bottom:753.733333pt;}
.yb_c02015{bottom:781.413333pt;}
.ya_c02015{bottom:808.933333pt;}
.y9_c02015{bottom:836.613333pt;}
.y8_c02015{bottom:864.133333pt;}
.y7_c02015{bottom:891.813333pt;}
.y6_c02015{bottom:919.333333pt;}
.y5_c02015{bottom:947.040000pt;}
.y1_c02015{bottom:996.800000pt;}
.h3_c02015{height:20.000000pt;}
.h2_c02015{height:43.441250pt;}
.h1_c02015{height:52.134375pt;}
.h7_c02015{height:52.785000pt;}
.h5_c02015{height:57.375000pt;}
.h6_c02015{height:57.787500pt;}
.h4_c02015{height:62.812500pt;}
.h0_c02015{height:1056.000000pt;}
.w1_c02015{width:59.232000pt;}
.w0_c02015{width:816.000000pt;}
.x0_c02015{left:0.000000pt;}
.x3_c02015{left:14.720000pt;}
.x1_c02015{left:113.472000pt;}
.x4_c02015{left:160.666667pt;}
.x5_c02015{left:170.266667pt;}
.x2_c02015{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02016 {
    display:none;
  }
  .loading-indicator_c02016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02016" -> "#page-container .classname_c02016")
 */
.pf_c02016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02016 {overflow:visible;}
  }
}
.c_c02016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02016:after { /* webkit #35443 */
  content: '';
}
.t_c02016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02016 { /* info for Javascript */
  display:none;
}
.l_c02016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02016:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02016 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02016.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02016;src:url('chunks/assets/font_fd9d18b7d36afa9a2ba58180.woff2')format("woff");}.ff1_c02016{font-family:ff1_c02016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02016;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02016{font-family:ff2_c02016;line-height:0.863770;font-style:normal;font-weight: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_c02016;src:url('chunks/assets/font_d3cc5a8ce7093db5f8c68be4.woff2')format("woff");}.ff3_c02016{font-family:ff3_c02016;line-height:1.112305;font-style:normal;font-weight: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_c02016;src:url('chunks/assets/font_60dbb4756067a81d254f7496.woff2')format("woff");}.ff4_c02016{font-family:ff4_c02016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02016{vertical-align:0.000000px;}
.ls0_c02016{letter-spacing:0.000000px;}
.sc__c02016{text-shadow:none;}
.sc0_c02016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02016{-webkit-text-stroke:0px transparent;}
.sc0_c02016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02016{word-spacing:-72.000000px;}
.ws1_c02016{word-spacing:0.000000px;}
._f_c02016{margin-left:-2.286593px;}
._2_c02016{margin-left:-1.008000px;}
._4_c02016{width:1.152000px;}
._a_c02016{width:2.376000px;}
._8_c02016{width:3.456000px;}
._1_c02016{width:4.824000px;}
._6_c02016{width:5.832000px;}
._7_c02016{width:7.056000px;}
._b_c02016{width:9.792000px;}
._c_c02016{width:10.872000px;}
._9_c02016{width:13.176000px;}
._3_c02016{width:14.400000px;}
._5_c02016{width:15.480000px;}
._d_c02016{width:20.952000px;}
._e_c02016{width:22.176000px;}
._0_c02016{width:1500.936000px;}
.fc1_c02016{color:rgb(192,80,77);}
.fc2_c02016{color:rgb(255,255,255);}
.fc0_c02016{color:rgb(0,0,0);}
.fs0_c02016{font-size:59.760000px;}
.fs3_c02016{font-size:63.360000px;}
.fs1_c02016{font-size:66.240000px;}
.fs2_c02016{font-size:72.000000px;}
.y0_c02016{bottom:0.000000px;}
.y23_c02016{bottom:3.600000px;}
.y19_c02016{bottom:3.780000px;}
.y1c_c02016{bottom:3.960000px;}
.y4_c02016{bottom:4.680000px;}
.y3_c02016{bottom:41.796000px;}
.y2_c02016{bottom:75.456000px;}
.y2f_c02016{bottom:128.916000px;}
.y2e_c02016{bottom:145.836000px;}
.y2d_c02016{bottom:164.730000px;}
.y2c_c02016{bottom:183.630000px;}
.y2b_c02016{bottom:202.530000px;}
.y2a_c02016{bottom:221.430000px;}
.y29_c02016{bottom:240.150000px;}
.y28_c02016{bottom:263.550000px;}
.y27_c02016{bottom:284.295000px;}
.y26_c02016{bottom:304.995000px;}
.y25_c02016{bottom:325.695000px;}
.y24_c02016{bottom:346.395000px;}
.y22_c02016{bottom:363.315000px;}
.y21_c02016{bottom:382.215000px;}
.y20_c02016{bottom:401.115000px;}
.y1f_c02016{bottom:420.015000px;}
.y1e_c02016{bottom:438.735000px;}
.y1d_c02016{bottom:457.635000px;}
.y1b_c02016{bottom:476.535000px;}
.y1a_c02016{bottom:495.435000px;}
.y18_c02016{bottom:514.335000px;}
.y17_c02016{bottom:537.585000px;}
.y16_c02016{bottom:558.285000px;}
.y15_c02016{bottom:578.985000px;}
.y14_c02016{bottom:599.685000px;}
.y13_c02016{bottom:630.645000px;}
.y12_c02016{bottom:661.605000px;}
.y11_c02016{bottom:692.745000px;}
.y10_c02016{bottom:723.705000px;}
.yf_c02016{bottom:754.845000px;}
.ye_c02016{bottom:785.805000px;}
.yd_c02016{bottom:816.990000px;}
.yc_c02016{bottom:847.950000px;}
.yb_c02016{bottom:879.090000px;}
.ya_c02016{bottom:910.050000px;}
.y9_c02016{bottom:941.190000px;}
.y8_c02016{bottom:972.150000px;}
.y7_c02016{bottom:1003.290000px;}
.y6_c02016{bottom:1034.250000px;}
.y5_c02016{bottom:1065.420000px;}
.y1_c02016{bottom:1121.400000px;}
.h5_c02016{height:18.000000px;}
.h7_c02016{height:18.180000px;}
.h3_c02016{height:22.500000px;}
.h2_c02016{height:48.871406px;}
.h1_c02016{height:58.651172px;}
.h6_c02016{height:62.184375px;}
.h8_c02016{height:63.855000px;}
.h4_c02016{height:70.664062px;}
.h0_c02016{height:1188.000000px;}
.w4_c02016{width:58.860000px;}
.w1_c02016{width:66.636000px;}
.w3_c02016{width:73.476000px;}
.w2_c02016{width:538.995000px;}
.w0_c02016{width:918.000000px;}
.x0_c02016{left:0.000000px;}
.xe_c02016{left:7.740000px;}
.xb_c02016{left:9.180000px;}
.x3_c02016{left:16.560000px;}
.x11_c02016{left:19.620000px;}
.xd_c02016{left:22.860000px;}
.xf_c02016{left:30.240000px;}
.x13_c02016{left:34.245000px;}
.x10_c02016{left:42.165000px;}
.x12_c02016{left:57.825000px;}
.x8_c02016{left:119.916000px;}
.x1_c02016{left:127.656000px;}
.x4_c02016{left:180.750000px;}
.x9_c02016{left:198.219000px;}
.x15_c02016{left:246.639000px;}
.x14_c02016{left:259.590000px;}
.x7_c02016{left:266.970000px;}
.x6_c02016{left:415.695000px;}
.x5_c02016{left:459.075000px;}
.xa_c02016{left:659.625000px;}
.xc_c02016{left:733.830000px;}
.x2_c02016{left:820.950000px;}
@media print{
.v0_c02016{vertical-align:0.000000pt;}
.ls0_c02016{letter-spacing:0.000000pt;}
.ws0_c02016{word-spacing:-64.000000pt;}
.ws1_c02016{word-spacing:0.000000pt;}
._f_c02016{margin-left:-2.032527pt;}
._2_c02016{margin-left:-0.896000pt;}
._4_c02016{width:1.024000pt;}
._a_c02016{width:2.112000pt;}
._8_c02016{width:3.072000pt;}
._1_c02016{width:4.288000pt;}
._6_c02016{width:5.184000pt;}
._7_c02016{width:6.272000pt;}
._b_c02016{width:8.704000pt;}
._c_c02016{width:9.664000pt;}
._9_c02016{width:11.712000pt;}
._3_c02016{width:12.800000pt;}
._5_c02016{width:13.760000pt;}
._d_c02016{width:18.624000pt;}
._e_c02016{width:19.712000pt;}
._0_c02016{width:1334.165333pt;}
.fs0_c02016{font-size:53.120000pt;}
.fs3_c02016{font-size:56.320000pt;}
.fs1_c02016{font-size:58.880000pt;}
.fs2_c02016{font-size:64.000000pt;}
.y0_c02016{bottom:0.000000pt;}
.y23_c02016{bottom:3.200000pt;}
.y19_c02016{bottom:3.360000pt;}
.y1c_c02016{bottom:3.520000pt;}
.y4_c02016{bottom:4.160000pt;}
.y3_c02016{bottom:37.152000pt;}
.y2_c02016{bottom:67.072000pt;}
.y2f_c02016{bottom:114.592000pt;}
.y2e_c02016{bottom:129.632000pt;}
.y2d_c02016{bottom:146.426667pt;}
.y2c_c02016{bottom:163.226667pt;}
.y2b_c02016{bottom:180.026667pt;}
.y2a_c02016{bottom:196.826667pt;}
.y29_c02016{bottom:213.466667pt;}
.y28_c02016{bottom:234.266667pt;}
.y27_c02016{bottom:252.706667pt;}
.y26_c02016{bottom:271.106667pt;}
.y25_c02016{bottom:289.506667pt;}
.y24_c02016{bottom:307.906667pt;}
.y22_c02016{bottom:322.946667pt;}
.y21_c02016{bottom:339.746667pt;}
.y20_c02016{bottom:356.546667pt;}
.y1f_c02016{bottom:373.346667pt;}
.y1e_c02016{bottom:389.986667pt;}
.y1d_c02016{bottom:406.786667pt;}
.y1b_c02016{bottom:423.586667pt;}
.y1a_c02016{bottom:440.386667pt;}
.y18_c02016{bottom:457.186667pt;}
.y17_c02016{bottom:477.853333pt;}
.y16_c02016{bottom:496.253333pt;}
.y15_c02016{bottom:514.653333pt;}
.y14_c02016{bottom:533.053333pt;}
.y13_c02016{bottom:560.573333pt;}
.y12_c02016{bottom:588.093333pt;}
.y11_c02016{bottom:615.773333pt;}
.y10_c02016{bottom:643.293333pt;}
.yf_c02016{bottom:670.973333pt;}
.ye_c02016{bottom:698.493333pt;}
.yd_c02016{bottom:726.213333pt;}
.yc_c02016{bottom:753.733333pt;}
.yb_c02016{bottom:781.413333pt;}
.ya_c02016{bottom:808.933333pt;}
.y9_c02016{bottom:836.613333pt;}
.y8_c02016{bottom:864.133333pt;}
.y7_c02016{bottom:891.813333pt;}
.y6_c02016{bottom:919.333333pt;}
.y5_c02016{bottom:947.040000pt;}
.y1_c02016{bottom:996.800000pt;}
.h5_c02016{height:16.000000pt;}
.h7_c02016{height:16.160000pt;}
.h3_c02016{height:20.000000pt;}
.h2_c02016{height:43.441250pt;}
.h1_c02016{height:52.134375pt;}
.h6_c02016{height:55.275000pt;}
.h8_c02016{height:56.760000pt;}
.h4_c02016{height:62.812500pt;}
.h0_c02016{height:1056.000000pt;}
.w4_c02016{width:52.320000pt;}
.w1_c02016{width:59.232000pt;}
.w3_c02016{width:65.312000pt;}
.w2_c02016{width:479.106667pt;}
.w0_c02016{width:816.000000pt;}
.x0_c02016{left:0.000000pt;}
.xe_c02016{left:6.880000pt;}
.xb_c02016{left:8.160000pt;}
.x3_c02016{left:14.720000pt;}
.x11_c02016{left:17.440000pt;}
.xd_c02016{left:20.320000pt;}
.xf_c02016{left:26.880000pt;}
.x13_c02016{left:30.440000pt;}
.x10_c02016{left:37.480000pt;}
.x12_c02016{left:51.400000pt;}
.x8_c02016{left:106.592000pt;}
.x1_c02016{left:113.472000pt;}
.x4_c02016{left:160.666667pt;}
.x9_c02016{left:176.194667pt;}
.x15_c02016{left:219.234667pt;}
.x14_c02016{left:230.746667pt;}
.x7_c02016{left:237.306667pt;}
.x6_c02016{left:369.506667pt;}
.x5_c02016{left:408.066667pt;}
.xa_c02016{left:586.333333pt;}
.xc_c02016{left:652.293333pt;}
.x2_c02016{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02017 {
    display:none;
  }
  .loading-indicator_c02017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02017 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02017 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02017" -> "#page-container .classname_c02017")
 */
.pf_c02017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02017 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02017 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02017 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02017 {overflow:visible;}
  }
}
.c_c02017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02017 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02017:after { /* webkit #35443 */
  content: '';
}
.t_c02017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02017 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02017 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02017 { /* info for Javascript */
  display:none;
}
.l_c02017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02017:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02017 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02017.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02017;src:url('chunks/assets/font_8726f639771b5d55409078b7.woff2')format("woff");}.ff1_c02017{font-family:ff1_c02017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02017;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02017{font-family:ff2_c02017;line-height:0.863770;font-style:normal;font-weight: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_c02017;src:url('chunks/assets/font_d3cc5a8ce7093db5f8c68be4.woff2')format("woff");}.ff3_c02017{font-family:ff3_c02017;line-height:1.112305;font-style:normal;font-weight: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_c02017;src:url('chunks/assets/font_60dbb4756067a81d254f7496.woff2')format("woff");}.ff4_c02017{font-family:ff4_c02017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02017{vertical-align:-27.360000px;}
.v0_c02017{vertical-align:0.000000px;}
.v1_c02017{vertical-align:30.240000px;}
.ls2_c02017{letter-spacing:0.000000px;}
.ls0_c02017{letter-spacing:0.150000px;}
.ls1_c02017{letter-spacing:0.180000px;}
.sc__c02017{text-shadow:none;}
.sc0_c02017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02017{-webkit-text-stroke:0px transparent;}
.sc0_c02017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02017{word-spacing:-72.000000px;}
.ws1_c02017{word-spacing:-15.840000px;}
.ws2_c02017{word-spacing:-10.440000px;}
.ws3_c02017{word-spacing:-9.720000px;}
.ws4_c02017{word-spacing:0.000000px;}
._3_c02017{margin-left:-12.817920px;}
._1_c02017{margin-left:-1.076993px;}
._2_c02017{width:1.004993px;}
._4_c02017{width:2.340022px;}
._5_c02017{width:3.495435px;}
._6_c02017{width:4.762853px;}
._0_c02017{width:1500.936000px;}
.fc1_c02017{color:rgb(192,80,77);}
.fc2_c02017{color:rgb(255,255,255);}
.fc0_c02017{color:rgb(0,0,0);}
.fs5_c02017{font-size:38.880000px;}
.fs4_c02017{font-size:41.760000px;}
.fs0_c02017{font-size:59.760000px;}
.fs3_c02017{font-size:63.360000px;}
.fs1_c02017{font-size:66.240000px;}
.fs2_c02017{font-size:72.000000px;}
.y0_c02017{bottom:0.000000px;}
.y34_c02017{bottom:3.600000px;}
.y9_c02017{bottom:3.780000px;}
.yb_c02017{bottom:3.960000px;}
.y25_c02017{bottom:3.990000px;}
.y16_c02017{bottom:4.005000px;}
.y4_c02017{bottom:4.680000px;}
.y3_c02017{bottom:41.796000px;}
.y2_c02017{bottom:75.456000px;}
.y3c_c02017{bottom:123.696000px;}
.y3b_c02017{bottom:140.976000px;}
.y3a_c02017{bottom:158.250000px;}
.y39_c02017{bottom:175.530000px;}
.y38_c02017{bottom:192.630000px;}
.y37_c02017{bottom:216.750000px;}
.y36_c02017{bottom:228.090000px;}
.y35_c02017{bottom:248.070000px;}
.y33_c02017{bottom:264.990000px;}
.y32_c02017{bottom:283.935000px;}
.y31_c02017{bottom:302.835000px;}
.y30_c02017{bottom:321.735000px;}
.y2f_c02017{bottom:340.455000px;}
.y2e_c02017{bottom:359.355000px;}
.y2d_c02017{bottom:378.255000px;}
.y2c_c02017{bottom:397.155000px;}
.y2b_c02017{bottom:416.055000px;}
.y2a_c02017{bottom:434.775000px;}
.y29_c02017{bottom:453.675000px;}
.y28_c02017{bottom:472.575000px;}
.y27_c02017{bottom:491.475000px;}
.y26_c02017{bottom:510.195000px;}
.y24_c02017{bottom:529.095000px;}
.y23_c02017{bottom:548.025000px;}
.y22_c02017{bottom:566.925000px;}
.y21_c02017{bottom:585.825000px;}
.y20_c02017{bottom:604.545000px;}
.y1f_c02017{bottom:623.445000px;}
.y1e_c02017{bottom:642.345000px;}
.y1d_c02017{bottom:661.245000px;}
.y1c_c02017{bottom:680.145000px;}
.y1b_c02017{bottom:698.865000px;}
.y1a_c02017{bottom:717.765000px;}
.y19_c02017{bottom:736.665000px;}
.y18_c02017{bottom:755.565000px;}
.y17_c02017{bottom:774.285000px;}
.y15_c02017{bottom:793.185000px;}
.y14_c02017{bottom:812.130000px;}
.y13_c02017{bottom:831.030000px;}
.y12_c02017{bottom:849.930000px;}
.y11_c02017{bottom:868.650000px;}
.y10_c02017{bottom:887.550000px;}
.yf_c02017{bottom:906.450000px;}
.ye_c02017{bottom:925.350000px;}
.yd_c02017{bottom:944.070000px;}
.yc_c02017{bottom:962.970000px;}
.ya_c02017{bottom:981.870000px;}
.y8_c02017{bottom:1000.770000px;}
.y7_c02017{bottom:1024.170000px;}
.y6_c02017{bottom:1044.870000px;}
.y5_c02017{bottom:1065.600000px;}
.y1_c02017{bottom:1121.400000px;}
.h5_c02017{height:18.000000px;}
.h7_c02017{height:18.180000px;}
.h9_c02017{height:18.216000px;}
.h3_c02017{height:22.500000px;}
.hc_c02017{height:38.158594px;}
.h2_c02017{height:48.871406px;}
.h1_c02017{height:58.651172px;}
.h6_c02017{height:62.184375px;}
.ha_c02017{height:63.855000px;}
.h4_c02017{height:70.664062px;}
.h8_c02017{height:71.225156px;}
.hb_c02017{height:72.562500px;}
.h0_c02017{height:1188.000000px;}
.w4_c02017{width:58.860000px;}
.w1_c02017{width:66.636000px;}
.w3_c02017{width:73.476000px;}
.w2_c02017{width:538.995000px;}
.w0_c02017{width:918.000000px;}
.x0_c02017{left:0.000000px;}
.xd_c02017{left:7.740000px;}
.xa_c02017{left:9.180000px;}
.x3_c02017{left:16.560000px;}
.xf_c02017{left:19.620000px;}
.xc_c02017{left:22.860000px;}
.x12_c02017{left:30.240000px;}
.xe_c02017{left:42.165000px;}
.x10_c02017{left:49.905000px;}
.x11_c02017{left:57.825000px;}
.x7_c02017{left:119.916000px;}
.x1_c02017{left:127.656000px;}
.x8_c02017{left:230.979000px;}
.x5_c02017{left:297.975000px;}
.x4_c02017{left:415.695000px;}
.x6_c02017{left:459.075000px;}
.x9_c02017{left:659.625000px;}
.xb_c02017{left:733.830000px;}
.x2_c02017{left:820.950000px;}
@media print{
.v2_c02017{vertical-align:-24.320000pt;}
.v0_c02017{vertical-align:0.000000pt;}
.v1_c02017{vertical-align:26.880000pt;}
.ls2_c02017{letter-spacing:0.000000pt;}
.ls0_c02017{letter-spacing:0.133333pt;}
.ls1_c02017{letter-spacing:0.160000pt;}
.ws0_c02017{word-spacing:-64.000000pt;}
.ws1_c02017{word-spacing:-14.080000pt;}
.ws2_c02017{word-spacing:-9.280000pt;}
.ws3_c02017{word-spacing:-8.640000pt;}
.ws4_c02017{word-spacing:0.000000pt;}
._3_c02017{margin-left:-11.393707pt;}
._1_c02017{margin-left:-0.957327pt;}
._2_c02017{width:0.893327pt;}
._4_c02017{width:2.080020pt;}
._5_c02017{width:3.107053pt;}
._6_c02017{width:4.233647pt;}
._0_c02017{width:1334.165333pt;}
.fs5_c02017{font-size:34.560000pt;}
.fs4_c02017{font-size:37.120000pt;}
.fs0_c02017{font-size:53.120000pt;}
.fs3_c02017{font-size:56.320000pt;}
.fs1_c02017{font-size:58.880000pt;}
.fs2_c02017{font-size:64.000000pt;}
.y0_c02017{bottom:0.000000pt;}
.y34_c02017{bottom:3.200000pt;}
.y9_c02017{bottom:3.360000pt;}
.yb_c02017{bottom:3.520000pt;}
.y25_c02017{bottom:3.546667pt;}
.y16_c02017{bottom:3.560000pt;}
.y4_c02017{bottom:4.160000pt;}
.y3_c02017{bottom:37.152000pt;}
.y2_c02017{bottom:67.072000pt;}
.y3c_c02017{bottom:109.952000pt;}
.y3b_c02017{bottom:125.312000pt;}
.y3a_c02017{bottom:140.666667pt;}
.y39_c02017{bottom:156.026667pt;}
.y38_c02017{bottom:171.226667pt;}
.y37_c02017{bottom:192.666667pt;}
.y36_c02017{bottom:202.746667pt;}
.y35_c02017{bottom:220.506667pt;}
.y33_c02017{bottom:235.546667pt;}
.y32_c02017{bottom:252.386667pt;}
.y31_c02017{bottom:269.186667pt;}
.y30_c02017{bottom:285.986667pt;}
.y2f_c02017{bottom:302.626667pt;}
.y2e_c02017{bottom:319.426667pt;}
.y2d_c02017{bottom:336.226667pt;}
.y2c_c02017{bottom:353.026667pt;}
.y2b_c02017{bottom:369.826667pt;}
.y2a_c02017{bottom:386.466667pt;}
.y29_c02017{bottom:403.266667pt;}
.y28_c02017{bottom:420.066667pt;}
.y27_c02017{bottom:436.866667pt;}
.y26_c02017{bottom:453.506667pt;}
.y24_c02017{bottom:470.306667pt;}
.y23_c02017{bottom:487.133333pt;}
.y22_c02017{bottom:503.933333pt;}
.y21_c02017{bottom:520.733333pt;}
.y20_c02017{bottom:537.373333pt;}
.y1f_c02017{bottom:554.173333pt;}
.y1e_c02017{bottom:570.973333pt;}
.y1d_c02017{bottom:587.773333pt;}
.y1c_c02017{bottom:604.573333pt;}
.y1b_c02017{bottom:621.213333pt;}
.y1a_c02017{bottom:638.013333pt;}
.y19_c02017{bottom:654.813333pt;}
.y18_c02017{bottom:671.613333pt;}
.y17_c02017{bottom:688.253333pt;}
.y15_c02017{bottom:705.053333pt;}
.y14_c02017{bottom:721.893333pt;}
.y13_c02017{bottom:738.693333pt;}
.y12_c02017{bottom:755.493333pt;}
.y11_c02017{bottom:772.133333pt;}
.y10_c02017{bottom:788.933333pt;}
.yf_c02017{bottom:805.733333pt;}
.ye_c02017{bottom:822.533333pt;}
.yd_c02017{bottom:839.173333pt;}
.yc_c02017{bottom:855.973333pt;}
.ya_c02017{bottom:872.773333pt;}
.y8_c02017{bottom:889.573333pt;}
.y7_c02017{bottom:910.373333pt;}
.y6_c02017{bottom:928.773333pt;}
.y5_c02017{bottom:947.200000pt;}
.y1_c02017{bottom:996.800000pt;}
.h5_c02017{height:16.000000pt;}
.h7_c02017{height:16.160000pt;}
.h9_c02017{height:16.192000pt;}
.h3_c02017{height:20.000000pt;}
.hc_c02017{height:33.918750pt;}
.h2_c02017{height:43.441250pt;}
.h1_c02017{height:52.134375pt;}
.h6_c02017{height:55.275000pt;}
.ha_c02017{height:56.760000pt;}
.h4_c02017{height:62.812500pt;}
.h8_c02017{height:63.311250pt;}
.hb_c02017{height:64.500000pt;}
.h0_c02017{height:1056.000000pt;}
.w4_c02017{width:52.320000pt;}
.w1_c02017{width:59.232000pt;}
.w3_c02017{width:65.312000pt;}
.w2_c02017{width:479.106667pt;}
.w0_c02017{width:816.000000pt;}
.x0_c02017{left:0.000000pt;}
.xd_c02017{left:6.880000pt;}
.xa_c02017{left:8.160000pt;}
.x3_c02017{left:14.720000pt;}
.xf_c02017{left:17.440000pt;}
.xc_c02017{left:20.320000pt;}
.x12_c02017{left:26.880000pt;}
.xe_c02017{left:37.480000pt;}
.x10_c02017{left:44.360000pt;}
.x11_c02017{left:51.400000pt;}
.x7_c02017{left:106.592000pt;}
.x1_c02017{left:113.472000pt;}
.x8_c02017{left:205.314667pt;}
.x5_c02017{left:264.866667pt;}
.x4_c02017{left:369.506667pt;}
.x6_c02017{left:408.066667pt;}
.x9_c02017{left:586.333333pt;}
.xb_c02017{left:652.293333pt;}
.x2_c02017{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02018 {
    display:none;
  }
  .loading-indicator_c02018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02018" -> "#page-container .classname_c02018")
 */
.pf_c02018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02018 {overflow:visible;}
  }
}
.c_c02018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02018:after { /* webkit #35443 */
  content: '';
}
.t_c02018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02018 { /* info for Javascript */
  display:none;
}
.l_c02018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02018:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02018 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02018.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02018;src:url('chunks/assets/font_29bc45dc4349150697bb69a9.woff2')format("woff");}.ff1_c02018{font-family:ff1_c02018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02018;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02018{font-family:ff2_c02018;line-height:0.863770;font-style:normal;font-weight: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_c02018;src:url('chunks/assets/font_313bce818113511192da5710.woff2')format("woff");}.ff3_c02018{font-family:ff3_c02018;line-height:1.112305;font-style:normal;font-weight: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_c02018;src:url('chunks/assets/font_dfe5ca9e704f6798fa768e33.woff2')format("woff");}.ff4_c02018{font-family:ff4_c02018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02018{vertical-align:-83.520000px;}
.v0_c02018{vertical-align:0.000000px;}
.ls2_c02018{letter-spacing:-0.216000px;}
.ls1_c02018{letter-spacing:0.000000px;}
.ls0_c02018{letter-spacing:194.376000px;}
.sc__c02018{text-shadow:none;}
.sc0_c02018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02018{-webkit-text-stroke:0px transparent;}
.sc0_c02018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02018{word-spacing:-18.000000px;}
.ws1_c02018{word-spacing:-17.784000px;}
.ws2_c02018{word-spacing:0.000000px;}
._6_c02018{margin-left:-1.440000px;}
._1_c02018{width:1.224000px;}
._9_c02018{width:2.651712px;}
._b_c02018{width:3.767676px;}
._4_c02018{width:4.824000px;}
._5_c02018{width:6.528024px;}
._8_c02018{width:8.424000px;}
._7_c02018{width:9.936000px;}
._2_c02018{width:11.160000px;}
._3_c02018{width:12.384000px;}
._a_c02018{width:14.544000px;}
._c_c02018{width:28.019388px;}
._0_c02018{width:1500.936000px;}
.fc1_c02018{color:rgb(192,80,77);}
.fc2_c02018{color:rgb(255,255,255);}
.fc0_c02018{color:rgb(0,0,0);}
.fs0_c02018{font-size:59.760000px;}
.fs3_c02018{font-size:63.360000px;}
.fs1_c02018{font-size:66.240000px;}
.fs2_c02018{font-size:72.000000px;}
.y0_c02018{bottom:0.000000px;}
.y1b_c02018{bottom:3.600000px;}
.y12_c02018{bottom:3.780000px;}
.y10_c02018{bottom:3.960000px;}
.y4_c02018{bottom:4.680000px;}
.y3_c02018{bottom:41.796000px;}
.y2_c02018{bottom:75.456000px;}
.y2e_c02018{bottom:125.316000px;}
.y2d_c02018{bottom:144.216000px;}
.y2c_c02018{bottom:163.110000px;}
.y2b_c02018{bottom:182.190000px;}
.y2a_c02018{bottom:201.090000px;}
.y29_c02018{bottom:220.170000px;}
.y28_c02018{bottom:239.070000px;}
.y27_c02018{bottom:257.970000px;}
.y26_c02018{bottom:277.095000px;}
.y25_c02018{bottom:306.615000px;}
.y24_c02018{bottom:337.755000px;}
.y23_c02018{bottom:368.715000px;}
.y22_c02018{bottom:399.855000px;}
.y21_c02018{bottom:430.815000px;}
.y20_c02018{bottom:461.955000px;}
.y1f_c02018{bottom:492.915000px;}
.y1e_c02018{bottom:524.055000px;}
.y1d_c02018{bottom:575.925000px;}
.y1c_c02018{bottom:596.625000px;}
.y1a_c02018{bottom:613.545000px;}
.y19_c02018{bottom:632.445000px;}
.y18_c02018{bottom:651.345000px;}
.y17_c02018{bottom:670.245000px;}
.y16_c02018{bottom:689.145000px;}
.y15_c02018{bottom:707.865000px;}
.y14_c02018{bottom:726.765000px;}
.y13_c02018{bottom:745.665000px;}
.y11_c02018{bottom:764.565000px;}
.yf_c02018{bottom:783.285000px;}
.ye_c02018{bottom:806.730000px;}
.yd_c02018{bottom:827.430000px;}
.yc_c02018{bottom:848.130000px;}
.yb_c02018{bottom:879.090000px;}
.ya_c02018{bottom:910.050000px;}
.y9_c02018{bottom:941.190000px;}
.y8_c02018{bottom:972.150000px;}
.y7_c02018{bottom:1003.290000px;}
.y6_c02018{bottom:1034.250000px;}
.y5_c02018{bottom:1065.420000px;}
.y1_c02018{bottom:1121.400000px;}
.h7_c02018{height:18.000000px;}
.h8_c02018{height:18.180000px;}
.h5_c02018{height:18.216000px;}
.h3_c02018{height:22.500000px;}
.h2_c02018{height:48.871406px;}
.h1_c02018{height:58.651172px;}
.h6_c02018{height:62.184375px;}
.h9_c02018{height:63.855000px;}
.ha_c02018{height:64.546875px;}
.hb_c02018{height:65.010937px;}
.h4_c02018{height:70.664062px;}
.h0_c02018{height:1188.000000px;}
.w1_c02018{width:66.636000px;}
.w4_c02018{width:79.740000px;}
.w3_c02018{width:84.276000px;}
.w2_c02018{width:507.135000px;}
.w0_c02018{width:918.000000px;}
.x0_c02018{left:0.000000px;}
.xe_c02018{left:7.740000px;}
.xb_c02018{left:14.580000px;}
.x3_c02018{left:16.560000px;}
.x14_c02018{left:18.180000px;}
.x10_c02018{left:26.100000px;}
.x12_c02018{left:30.060000px;}
.xd_c02018{left:33.300000px;}
.xf_c02018{left:41.040000px;}
.x11_c02018{left:52.920000px;}
.x13_c02018{left:68.625000px;}
.x8_c02018{left:119.916000px;}
.x1_c02018{left:127.656000px;}
.x4_c02018{left:180.750000px;}
.x9_c02018{left:182.199000px;}
.x15_c02018{left:191.550000px;}
.x6_c02018{left:199.290000px;}
.x5_c02018{left:415.695000px;}
.x7_c02018{left:459.075000px;}
.xa_c02018{left:627.765000px;}
.xc_c02018{left:712.950000px;}
.x2_c02018{left:820.950000px;}
@media print{
.v1_c02018{vertical-align:-74.240000pt;}
.v0_c02018{vertical-align:0.000000pt;}
.ls2_c02018{letter-spacing:-0.192000pt;}
.ls1_c02018{letter-spacing:0.000000pt;}
.ls0_c02018{letter-spacing:172.778667pt;}
.ws0_c02018{word-spacing:-16.000000pt;}
.ws1_c02018{word-spacing:-15.808000pt;}
.ws2_c02018{word-spacing:0.000000pt;}
._6_c02018{margin-left:-1.280000pt;}
._1_c02018{width:1.088000pt;}
._9_c02018{width:2.357077pt;}
._b_c02018{width:3.349045pt;}
._4_c02018{width:4.288000pt;}
._5_c02018{width:5.802688pt;}
._8_c02018{width:7.488000pt;}
._7_c02018{width:8.832000pt;}
._2_c02018{width:9.920000pt;}
._3_c02018{width:11.008000pt;}
._a_c02018{width:12.928000pt;}
._c_c02018{width:24.906122pt;}
._0_c02018{width:1334.165333pt;}
.fs0_c02018{font-size:53.120000pt;}
.fs3_c02018{font-size:56.320000pt;}
.fs1_c02018{font-size:58.880000pt;}
.fs2_c02018{font-size:64.000000pt;}
.y0_c02018{bottom:0.000000pt;}
.y1b_c02018{bottom:3.200000pt;}
.y12_c02018{bottom:3.360000pt;}
.y10_c02018{bottom:3.520000pt;}
.y4_c02018{bottom:4.160000pt;}
.y3_c02018{bottom:37.152000pt;}
.y2_c02018{bottom:67.072000pt;}
.y2e_c02018{bottom:111.392000pt;}
.y2d_c02018{bottom:128.192000pt;}
.y2c_c02018{bottom:144.986667pt;}
.y2b_c02018{bottom:161.946667pt;}
.y2a_c02018{bottom:178.746667pt;}
.y29_c02018{bottom:195.706667pt;}
.y28_c02018{bottom:212.506667pt;}
.y27_c02018{bottom:229.306667pt;}
.y26_c02018{bottom:246.306667pt;}
.y25_c02018{bottom:272.546667pt;}
.y24_c02018{bottom:300.226667pt;}
.y23_c02018{bottom:327.746667pt;}
.y22_c02018{bottom:355.426667pt;}
.y21_c02018{bottom:382.946667pt;}
.y20_c02018{bottom:410.626667pt;}
.y1f_c02018{bottom:438.146667pt;}
.y1e_c02018{bottom:465.826667pt;}
.y1d_c02018{bottom:511.933333pt;}
.y1c_c02018{bottom:530.333333pt;}
.y1a_c02018{bottom:545.373333pt;}
.y19_c02018{bottom:562.173333pt;}
.y18_c02018{bottom:578.973333pt;}
.y17_c02018{bottom:595.773333pt;}
.y16_c02018{bottom:612.573333pt;}
.y15_c02018{bottom:629.213333pt;}
.y14_c02018{bottom:646.013333pt;}
.y13_c02018{bottom:662.813333pt;}
.y11_c02018{bottom:679.613333pt;}
.yf_c02018{bottom:696.253333pt;}
.ye_c02018{bottom:717.093333pt;}
.yd_c02018{bottom:735.493333pt;}
.yc_c02018{bottom:753.893333pt;}
.yb_c02018{bottom:781.413333pt;}
.ya_c02018{bottom:808.933333pt;}
.y9_c02018{bottom:836.613333pt;}
.y8_c02018{bottom:864.133333pt;}
.y7_c02018{bottom:891.813333pt;}
.y6_c02018{bottom:919.333333pt;}
.y5_c02018{bottom:947.040000pt;}
.y1_c02018{bottom:996.800000pt;}
.h7_c02018{height:16.000000pt;}
.h8_c02018{height:16.160000pt;}
.h5_c02018{height:16.192000pt;}
.h3_c02018{height:20.000000pt;}
.h2_c02018{height:43.441250pt;}
.h1_c02018{height:52.134375pt;}
.h6_c02018{height:55.275000pt;}
.h9_c02018{height:56.760000pt;}
.ha_c02018{height:57.375000pt;}
.hb_c02018{height:57.787500pt;}
.h4_c02018{height:62.812500pt;}
.h0_c02018{height:1056.000000pt;}
.w1_c02018{width:59.232000pt;}
.w4_c02018{width:70.880000pt;}
.w3_c02018{width:74.912000pt;}
.w2_c02018{width:450.786667pt;}
.w0_c02018{width:816.000000pt;}
.x0_c02018{left:0.000000pt;}
.xe_c02018{left:6.880000pt;}
.xb_c02018{left:12.960000pt;}
.x3_c02018{left:14.720000pt;}
.x14_c02018{left:16.160000pt;}
.x10_c02018{left:23.200000pt;}
.x12_c02018{left:26.720000pt;}
.xd_c02018{left:29.600000pt;}
.xf_c02018{left:36.480000pt;}
.x11_c02018{left:47.040000pt;}
.x13_c02018{left:61.000000pt;}
.x8_c02018{left:106.592000pt;}
.x1_c02018{left:113.472000pt;}
.x4_c02018{left:160.666667pt;}
.x9_c02018{left:161.954667pt;}
.x15_c02018{left:170.266667pt;}
.x6_c02018{left:177.146667pt;}
.x5_c02018{left:369.506667pt;}
.x7_c02018{left:408.066667pt;}
.xa_c02018{left:558.013333pt;}
.xc_c02018{left:633.733333pt;}
.x2_c02018{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02019 {
    display:none;
  }
  .loading-indicator_c02019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02019 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02019 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02019" -> "#page-container .classname_c02019")
 */
.pf_c02019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02019 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02019 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02019 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02019 {overflow:visible;}
  }
}
.c_c02019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02019 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02019:after { /* webkit #35443 */
  content: '';
}
.t_c02019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02019 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02019 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02019 { /* info for Javascript */
  display:none;
}
.l_c02019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02019:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02019 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02019.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02019;src:url('chunks/assets/font_37146924761f6602e0618320.woff2')format("woff");}.ff1_c02019{font-family:ff1_c02019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02019;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02019{font-family:ff2_c02019;line-height:0.863770;font-style:normal;font-weight: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_c02019;src:url('chunks/assets/font_6ef5013559e5a7e205981b8f.woff2')format("woff");}.ff3_c02019{font-family:ff3_c02019;line-height:1.112305;font-style:normal;font-weight: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_c02019;src:url('chunks/assets/font_1f345ac724aa0caa5c61b1a4.woff2')format("woff");}.ff4_c02019{font-family:ff4_c02019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02019{vertical-align:0.000000px;}
.ls1_c02019{letter-spacing:0.000000px;}
.ls0_c02019{letter-spacing:12.240000px;}
.sc__c02019{text-shadow:none;}
.sc0_c02019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02019{-webkit-text-stroke:0px transparent;}
.sc0_c02019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02019{word-spacing:0.000000px;}
._4_c02019{margin-left:-1.255712px;}
._3_c02019{width:1.058979px;}
._5_c02019{width:2.249908px;}
._6_c02019{width:3.397251px;}
._a_c02019{width:5.040000px;}
._1_c02019{width:7.087812px;}
._2_c02019{width:8.478654px;}
._7_c02019{width:10.224000px;}
._9_c02019{width:11.376000px;}
._8_c02019{width:12.387063px;}
._b_c02019{width:13.608000px;}
._c_c02019{width:19.152000px;}
._d_c02019{width:20.232000px;}
._0_c02019{width:1500.936000px;}
.fc1_c02019{color:rgb(192,80,77);}
.fc0_c02019{color:rgb(0,0,0);}
.fs0_c02019{font-size:59.760000px;}
.fs1_c02019{font-size:66.240000px;}
.fs2_c02019{font-size:72.000000px;}
.y0_c02019{bottom:0.000000px;}
.y4_c02019{bottom:4.680000px;}
.y3_c02019{bottom:41.796000px;}
.y2_c02019{bottom:75.456000px;}
.y25_c02019{bottom:119.916000px;}
.y24_c02019{bottom:151.050000px;}
.y23_c02019{bottom:182.010000px;}
.y22_c02019{bottom:213.150000px;}
.y21_c02019{bottom:244.110000px;}
.y20_c02019{bottom:275.295000px;}
.y1f_c02019{bottom:306.255000px;}
.y1e_c02019{bottom:337.395000px;}
.y1d_c02019{bottom:368.355000px;}
.y1c_c02019{bottom:399.495000px;}
.y1b_c02019{bottom:430.455000px;}
.y1a_c02019{bottom:461.595000px;}
.y19_c02019{bottom:492.555000px;}
.y18_c02019{bottom:523.695000px;}
.y17_c02019{bottom:554.685000px;}
.y16_c02019{bottom:585.825000px;}
.y15_c02019{bottom:616.785000px;}
.y14_c02019{bottom:647.925000px;}
.y13_c02019{bottom:678.885000px;}
.y12_c02019{bottom:710.025000px;}
.y11_c02019{bottom:740.985000px;}
.y10_c02019{bottom:772.125000px;}
.yf_c02019{bottom:803.130000px;}
.ye_c02019{bottom:834.270000px;}
.yd_c02019{bottom:865.230000px;}
.yc_c02019{bottom:896.190000px;}
.yb_c02019{bottom:927.330000px;}
.ya_c02019{bottom:958.290000px;}
.y9_c02019{bottom:989.430000px;}
.y8_c02019{bottom:1009.770000px;}
.y7_c02019{bottom:1028.850000px;}
.y6_c02019{bottom:1047.750000px;}
.y5_c02019{bottom:1066.860000px;}
.y1_c02019{bottom:1121.400000px;}
.h3_c02019{height:22.500000px;}
.h2_c02019{height:48.871406px;}
.h1_c02019{height:58.651172px;}
.h6_c02019{height:64.546875px;}
.h4_c02019{height:65.010937px;}
.h5_c02019{height:70.664062px;}
.h0_c02019{height:1188.000000px;}
.w1_c02019{width:66.636000px;}
.w0_c02019{width:918.000000px;}
.x0_c02019{left:0.000000px;}
.x3_c02019{left:16.560000px;}
.x1_c02019{left:127.656000px;}
.x5_c02019{left:180.750000px;}
.x4_c02019{left:191.550000px;}
.x2_c02019{left:820.950000px;}
@media print{
.v0_c02019{vertical-align:0.000000pt;}
.ls1_c02019{letter-spacing:0.000000pt;}
.ls0_c02019{letter-spacing:10.880000pt;}
.ws0_c02019{word-spacing:0.000000pt;}
._4_c02019{margin-left:-1.116188pt;}
._3_c02019{width:0.941315pt;}
._5_c02019{width:1.999918pt;}
._6_c02019{width:3.019779pt;}
._a_c02019{width:4.480000pt;}
._1_c02019{width:6.300278pt;}
._2_c02019{width:7.536581pt;}
._7_c02019{width:9.088000pt;}
._9_c02019{width:10.112000pt;}
._8_c02019{width:11.010723pt;}
._b_c02019{width:12.096000pt;}
._c_c02019{width:17.024000pt;}
._d_c02019{width:17.984000pt;}
._0_c02019{width:1334.165333pt;}
.fs0_c02019{font-size:53.120000pt;}
.fs1_c02019{font-size:58.880000pt;}
.fs2_c02019{font-size:64.000000pt;}
.y0_c02019{bottom:0.000000pt;}
.y4_c02019{bottom:4.160000pt;}
.y3_c02019{bottom:37.152000pt;}
.y2_c02019{bottom:67.072000pt;}
.y25_c02019{bottom:106.592000pt;}
.y24_c02019{bottom:134.266667pt;}
.y23_c02019{bottom:161.786667pt;}
.y22_c02019{bottom:189.466667pt;}
.y21_c02019{bottom:216.986667pt;}
.y20_c02019{bottom:244.706667pt;}
.y1f_c02019{bottom:272.226667pt;}
.y1e_c02019{bottom:299.906667pt;}
.y1d_c02019{bottom:327.426667pt;}
.y1c_c02019{bottom:355.106667pt;}
.y1b_c02019{bottom:382.626667pt;}
.y1a_c02019{bottom:410.306667pt;}
.y19_c02019{bottom:437.826667pt;}
.y18_c02019{bottom:465.506667pt;}
.y17_c02019{bottom:493.053333pt;}
.y16_c02019{bottom:520.733333pt;}
.y15_c02019{bottom:548.253333pt;}
.y14_c02019{bottom:575.933333pt;}
.y13_c02019{bottom:603.453333pt;}
.y12_c02019{bottom:631.133333pt;}
.y11_c02019{bottom:658.653333pt;}
.y10_c02019{bottom:686.333333pt;}
.yf_c02019{bottom:713.893333pt;}
.ye_c02019{bottom:741.573333pt;}
.yd_c02019{bottom:769.093333pt;}
.yc_c02019{bottom:796.613333pt;}
.yb_c02019{bottom:824.293333pt;}
.ya_c02019{bottom:851.813333pt;}
.y9_c02019{bottom:879.493333pt;}
.y8_c02019{bottom:897.573333pt;}
.y7_c02019{bottom:914.533333pt;}
.y6_c02019{bottom:931.333333pt;}
.y5_c02019{bottom:948.320000pt;}
.y1_c02019{bottom:996.800000pt;}
.h3_c02019{height:20.000000pt;}
.h2_c02019{height:43.441250pt;}
.h1_c02019{height:52.134375pt;}
.h6_c02019{height:57.375000pt;}
.h4_c02019{height:57.787500pt;}
.h5_c02019{height:62.812500pt;}
.h0_c02019{height:1056.000000pt;}
.w1_c02019{width:59.232000pt;}
.w0_c02019{width:816.000000pt;}
.x0_c02019{left:0.000000pt;}
.x3_c02019{left:14.720000pt;}
.x1_c02019{left:113.472000pt;}
.x5_c02019{left:160.666667pt;}
.x4_c02019{left:170.266667pt;}
.x2_c02019{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02020 {
    display:none;
  }
  .loading-indicator_c02020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02020 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02020 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02020" -> "#page-container .classname_c02020")
 */
.pf_c02020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02020 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02020 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02020 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02020 {overflow:visible;}
  }
}
.c_c02020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02020 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02020:after { /* webkit #35443 */
  content: '';
}
.t_c02020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02020 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02020 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02020 { /* info for Javascript */
  display:none;
}
.l_c02020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02020:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02020 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02020.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02020;src:url('chunks/assets/font_da02ba502549085fc9d70702.woff2')format("woff");}.ff1_c02020{font-family:ff1_c02020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02020;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02020{font-family:ff2_c02020;line-height:0.863770;font-style:normal;font-weight: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_c02020;src:url('chunks/assets/font_6a9d2bf09f027c166fd2cab9.woff2')format("woff");}.ff3_c02020{font-family:ff3_c02020;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02020{vertical-align:0.000000px;}
.ls0_c02020{letter-spacing:0.000000px;}
.sc__c02020{text-shadow:none;}
.sc0_c02020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02020{-webkit-text-stroke:0px transparent;}
.sc0_c02020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02020{word-spacing:-18.000000px;}
.ws1_c02020{word-spacing:0.000000px;}
._4_c02020{margin-left:-1.152000px;}
._3_c02020{width:1.008000px;}
._1_c02020{width:2.448000px;}
._2_c02020{width:3.456000px;}
._7_c02020{width:5.112000px;}
._6_c02020{width:6.336000px;}
._5_c02020{width:7.488000px;}
._c_c02020{width:8.496000px;}
._d_c02020{width:9.504000px;}
._e_c02020{width:10.728000px;}
._f_c02020{width:12.240000px;}
._b_c02020{width:13.392000px;}
._12_c02020{width:14.832000px;}
._14_c02020{width:16.488000px;}
._15_c02020{width:19.212000px;}
._10_c02020{width:20.376000px;}
._11_c02020{width:21.816000px;}
._13_c02020{width:26.064000px;}
._9_c02020{width:27.360000px;}
._8_c02020{width:28.368000px;}
._a_c02020{width:29.532000px;}
._0_c02020{width:1500.936000px;}
.fc1_c02020{color:rgb(192,80,77);}
.fc0_c02020{color:rgb(0,0,0);}
.fs0_c02020{font-size:59.760000px;}
.fs1_c02020{font-size:66.240000px;}
.fs2_c02020{font-size:72.000000px;}
.y0_c02020{bottom:0.000000px;}
.y4_c02020{bottom:4.680000px;}
.y3_c02020{bottom:41.796000px;}
.y2_c02020{bottom:75.456000px;}
.y23_c02020{bottom:133.776000px;}
.y22_c02020{bottom:164.910000px;}
.y21_c02020{bottom:195.870000px;}
.y20_c02020{bottom:226.830000px;}
.y1f_c02020{bottom:257.970000px;}
.y1e_c02020{bottom:288.975000px;}
.y1d_c02020{bottom:320.115000px;}
.y1c_c02020{bottom:351.075000px;}
.y1b_c02020{bottom:382.215000px;}
.y1a_c02020{bottom:413.175000px;}
.y19_c02020{bottom:444.315000px;}
.y18_c02020{bottom:475.275000px;}
.y17_c02020{bottom:506.415000px;}
.y16_c02020{bottom:537.405000px;}
.y15_c02020{bottom:568.545000px;}
.y14_c02020{bottom:599.505000px;}
.y13_c02020{bottom:630.645000px;}
.y12_c02020{bottom:661.605000px;}
.y11_c02020{bottom:692.745000px;}
.y10_c02020{bottom:723.705000px;}
.yf_c02020{bottom:754.845000px;}
.ye_c02020{bottom:785.805000px;}
.yd_c02020{bottom:816.990000px;}
.yc_c02020{bottom:847.950000px;}
.yb_c02020{bottom:879.090000px;}
.ya_c02020{bottom:910.050000px;}
.y9_c02020{bottom:941.190000px;}
.y8_c02020{bottom:972.150000px;}
.y7_c02020{bottom:1003.290000px;}
.y6_c02020{bottom:1034.250000px;}
.y5_c02020{bottom:1065.420000px;}
.y1_c02020{bottom:1121.400000px;}
.h3_c02020{height:22.500000px;}
.h2_c02020{height:48.871406px;}
.h1_c02020{height:58.651172px;}
.h4_c02020{height:64.546875px;}
.h5_c02020{height:70.664062px;}
.h0_c02020{height:1188.000000px;}
.w1_c02020{width:66.636000px;}
.w0_c02020{width:918.000000px;}
.x0_c02020{left:0.000000px;}
.x3_c02020{left:16.560000px;}
.x1_c02020{left:127.656000px;}
.x4_c02020{left:180.750000px;}
.x2_c02020{left:820.950000px;}
@media print{
.v0_c02020{vertical-align:0.000000pt;}
.ls0_c02020{letter-spacing:0.000000pt;}
.ws0_c02020{word-spacing:-16.000000pt;}
.ws1_c02020{word-spacing:0.000000pt;}
._4_c02020{margin-left:-1.024000pt;}
._3_c02020{width:0.896000pt;}
._1_c02020{width:2.176000pt;}
._2_c02020{width:3.072000pt;}
._7_c02020{width:4.544000pt;}
._6_c02020{width:5.632000pt;}
._5_c02020{width:6.656000pt;}
._c_c02020{width:7.552000pt;}
._d_c02020{width:8.448000pt;}
._e_c02020{width:9.536000pt;}
._f_c02020{width:10.880000pt;}
._b_c02020{width:11.904000pt;}
._12_c02020{width:13.184000pt;}
._14_c02020{width:14.656000pt;}
._15_c02020{width:17.077333pt;}
._10_c02020{width:18.112000pt;}
._11_c02020{width:19.392000pt;}
._13_c02020{width:23.168000pt;}
._9_c02020{width:24.320000pt;}
._8_c02020{width:25.216000pt;}
._a_c02020{width:26.250667pt;}
._0_c02020{width:1334.165333pt;}
.fs0_c02020{font-size:53.120000pt;}
.fs1_c02020{font-size:58.880000pt;}
.fs2_c02020{font-size:64.000000pt;}
.y0_c02020{bottom:0.000000pt;}
.y4_c02020{bottom:4.160000pt;}
.y3_c02020{bottom:37.152000pt;}
.y2_c02020{bottom:67.072000pt;}
.y23_c02020{bottom:118.912000pt;}
.y22_c02020{bottom:146.586667pt;}
.y21_c02020{bottom:174.106667pt;}
.y20_c02020{bottom:201.626667pt;}
.y1f_c02020{bottom:229.306667pt;}
.y1e_c02020{bottom:256.866667pt;}
.y1d_c02020{bottom:284.546667pt;}
.y1c_c02020{bottom:312.066667pt;}
.y1b_c02020{bottom:339.746667pt;}
.y1a_c02020{bottom:367.266667pt;}
.y19_c02020{bottom:394.946667pt;}
.y18_c02020{bottom:422.466667pt;}
.y17_c02020{bottom:450.146667pt;}
.y16_c02020{bottom:477.693333pt;}
.y15_c02020{bottom:505.373333pt;}
.y14_c02020{bottom:532.893333pt;}
.y13_c02020{bottom:560.573333pt;}
.y12_c02020{bottom:588.093333pt;}
.y11_c02020{bottom:615.773333pt;}
.y10_c02020{bottom:643.293333pt;}
.yf_c02020{bottom:670.973333pt;}
.ye_c02020{bottom:698.493333pt;}
.yd_c02020{bottom:726.213333pt;}
.yc_c02020{bottom:753.733333pt;}
.yb_c02020{bottom:781.413333pt;}
.ya_c02020{bottom:808.933333pt;}
.y9_c02020{bottom:836.613333pt;}
.y8_c02020{bottom:864.133333pt;}
.y7_c02020{bottom:891.813333pt;}
.y6_c02020{bottom:919.333333pt;}
.y5_c02020{bottom:947.040000pt;}
.y1_c02020{bottom:996.800000pt;}
.h3_c02020{height:20.000000pt;}
.h2_c02020{height:43.441250pt;}
.h1_c02020{height:52.134375pt;}
.h4_c02020{height:57.375000pt;}
.h5_c02020{height:62.812500pt;}
.h0_c02020{height:1056.000000pt;}
.w1_c02020{width:59.232000pt;}
.w0_c02020{width:816.000000pt;}
.x0_c02020{left:0.000000pt;}
.x3_c02020{left:14.720000pt;}
.x1_c02020{left:113.472000pt;}
.x4_c02020{left:160.666667pt;}
.x2_c02020{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02021 {
    display:none;
  }
  .loading-indicator_c02021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02021 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02021 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02021" -> "#page-container .classname_c02021")
 */
.pf_c02021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02021 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02021 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02021 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02021 {overflow:visible;}
  }
}
.c_c02021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02021 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02021:after { /* webkit #35443 */
  content: '';
}
.t_c02021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02021 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02021 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02021 { /* info for Javascript */
  display:none;
}
.l_c02021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02021:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02021 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02021.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02021;src:url('chunks/assets/font_6100f45ae7e2fb0bd02efe9c.woff2')format("woff");}.ff1_c02021{font-family:ff1_c02021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02021;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02021{font-family:ff2_c02021;line-height:0.863770;font-style:normal;font-weight: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_c02021;src:url('chunks/assets/font_83566ca92edc8d55c9e2eab5.woff2')format("woff");}.ff3_c02021{font-family:ff3_c02021;line-height:1.112305;font-style:normal;font-weight: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_c02021;src:url('chunks/assets/font_ce2dc02f28834bf7f65df727.woff2')format("woff");}.ff4_c02021{font-family:ff4_c02021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02021{vertical-align:0.000000px;}
.ls0_c02021{letter-spacing:0.000000px;}
.sc__c02021{text-shadow:none;}
.sc0_c02021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02021{-webkit-text-stroke:0px transparent;}
.sc0_c02021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02021{word-spacing:-18.000000px;}
.ws1_c02021{word-spacing:0.000000px;}
._12_c02021{margin-left:-2.232000px;}
._4_c02021{margin-left:-1.080000px;}
._1_c02021{width:1.440000px;}
._2_c02021{width:2.520000px;}
._5_c02021{width:3.528000px;}
._8_c02021{width:4.608000px;}
._9_c02021{width:6.071976px;}
._14_c02021{width:7.104096px;}
._7_c02021{width:8.544024px;}
._6_c02021{width:9.648000px;}
._d_c02021{width:10.944000px;}
._15_c02021{width:12.312000px;}
._3_c02021{width:14.328000px;}
._c_c02021{width:15.624000px;}
._16_c02021{width:16.848000px;}
._19_c02021{width:19.368000px;}
._10_c02021{width:20.376000px;}
._1a_c02021{width:22.440000px;}
._a_c02021{width:23.448000px;}
._b_c02021{width:25.296000px;}
._11_c02021{width:30.312000px;}
._13_c02021{width:31.608000px;}
._e_c02021{width:32.832000px;}
._f_c02021{width:34.200000px;}
._17_c02021{width:36.000000px;}
._18_c02021{width:37.164000px;}
._0_c02021{width:1500.936000px;}
.fc1_c02021{color:rgb(192,80,77);}
.fc0_c02021{color:rgb(0,0,0);}
.fs0_c02021{font-size:59.760000px;}
.fs1_c02021{font-size:66.240000px;}
.fs2_c02021{font-size:72.000000px;}
.y0_c02021{bottom:0.000000px;}
.y4_c02021{bottom:4.680000px;}
.y3_c02021{bottom:41.796000px;}
.y2_c02021{bottom:75.456000px;}
.y23_c02021{bottom:133.776000px;}
.y22_c02021{bottom:164.910000px;}
.y21_c02021{bottom:195.870000px;}
.y20_c02021{bottom:226.830000px;}
.y1f_c02021{bottom:257.970000px;}
.y1e_c02021{bottom:288.975000px;}
.y1d_c02021{bottom:320.115000px;}
.y1c_c02021{bottom:351.075000px;}
.y1b_c02021{bottom:382.215000px;}
.y1a_c02021{bottom:413.175000px;}
.y19_c02021{bottom:444.315000px;}
.y18_c02021{bottom:475.275000px;}
.y17_c02021{bottom:506.415000px;}
.y16_c02021{bottom:537.405000px;}
.y15_c02021{bottom:568.545000px;}
.y14_c02021{bottom:599.505000px;}
.y13_c02021{bottom:630.645000px;}
.y12_c02021{bottom:661.605000px;}
.y11_c02021{bottom:692.745000px;}
.y10_c02021{bottom:723.705000px;}
.yf_c02021{bottom:754.845000px;}
.ye_c02021{bottom:785.805000px;}
.yd_c02021{bottom:816.990000px;}
.yc_c02021{bottom:847.950000px;}
.yb_c02021{bottom:879.090000px;}
.ya_c02021{bottom:910.050000px;}
.y9_c02021{bottom:941.190000px;}
.y8_c02021{bottom:972.150000px;}
.y7_c02021{bottom:1003.290000px;}
.y6_c02021{bottom:1034.250000px;}
.y5_c02021{bottom:1065.420000px;}
.y1_c02021{bottom:1121.400000px;}
.h3_c02021{height:22.500000px;}
.h2_c02021{height:48.871406px;}
.h1_c02021{height:58.651172px;}
.h5_c02021{height:64.546875px;}
.h4_c02021{height:70.664062px;}
.h0_c02021{height:1188.000000px;}
.w1_c02021{width:66.636000px;}
.w0_c02021{width:918.000000px;}
.x0_c02021{left:0.000000px;}
.x3_c02021{left:16.560000px;}
.x1_c02021{left:127.656000px;}
.x4_c02021{left:180.750000px;}
.x2_c02021{left:820.950000px;}
@media print{
.v0_c02021{vertical-align:0.000000pt;}
.ls0_c02021{letter-spacing:0.000000pt;}
.ws0_c02021{word-spacing:-16.000000pt;}
.ws1_c02021{word-spacing:0.000000pt;}
._12_c02021{margin-left:-1.984000pt;}
._4_c02021{margin-left:-0.960000pt;}
._1_c02021{width:1.280000pt;}
._2_c02021{width:2.240000pt;}
._5_c02021{width:3.136000pt;}
._8_c02021{width:4.096000pt;}
._9_c02021{width:5.397312pt;}
._14_c02021{width:6.314752pt;}
._7_c02021{width:7.594688pt;}
._6_c02021{width:8.576000pt;}
._d_c02021{width:9.728000pt;}
._15_c02021{width:10.944000pt;}
._3_c02021{width:12.736000pt;}
._c_c02021{width:13.888000pt;}
._16_c02021{width:14.976000pt;}
._19_c02021{width:17.216000pt;}
._10_c02021{width:18.112000pt;}
._1a_c02021{width:19.946667pt;}
._a_c02021{width:20.842667pt;}
._b_c02021{width:22.485333pt;}
._11_c02021{width:26.944000pt;}
._13_c02021{width:28.096000pt;}
._e_c02021{width:29.184000pt;}
._f_c02021{width:30.400000pt;}
._17_c02021{width:32.000000pt;}
._18_c02021{width:33.034667pt;}
._0_c02021{width:1334.165333pt;}
.fs0_c02021{font-size:53.120000pt;}
.fs1_c02021{font-size:58.880000pt;}
.fs2_c02021{font-size:64.000000pt;}
.y0_c02021{bottom:0.000000pt;}
.y4_c02021{bottom:4.160000pt;}
.y3_c02021{bottom:37.152000pt;}
.y2_c02021{bottom:67.072000pt;}
.y23_c02021{bottom:118.912000pt;}
.y22_c02021{bottom:146.586667pt;}
.y21_c02021{bottom:174.106667pt;}
.y20_c02021{bottom:201.626667pt;}
.y1f_c02021{bottom:229.306667pt;}
.y1e_c02021{bottom:256.866667pt;}
.y1d_c02021{bottom:284.546667pt;}
.y1c_c02021{bottom:312.066667pt;}
.y1b_c02021{bottom:339.746667pt;}
.y1a_c02021{bottom:367.266667pt;}
.y19_c02021{bottom:394.946667pt;}
.y18_c02021{bottom:422.466667pt;}
.y17_c02021{bottom:450.146667pt;}
.y16_c02021{bottom:477.693333pt;}
.y15_c02021{bottom:505.373333pt;}
.y14_c02021{bottom:532.893333pt;}
.y13_c02021{bottom:560.573333pt;}
.y12_c02021{bottom:588.093333pt;}
.y11_c02021{bottom:615.773333pt;}
.y10_c02021{bottom:643.293333pt;}
.yf_c02021{bottom:670.973333pt;}
.ye_c02021{bottom:698.493333pt;}
.yd_c02021{bottom:726.213333pt;}
.yc_c02021{bottom:753.733333pt;}
.yb_c02021{bottom:781.413333pt;}
.ya_c02021{bottom:808.933333pt;}
.y9_c02021{bottom:836.613333pt;}
.y8_c02021{bottom:864.133333pt;}
.y7_c02021{bottom:891.813333pt;}
.y6_c02021{bottom:919.333333pt;}
.y5_c02021{bottom:947.040000pt;}
.y1_c02021{bottom:996.800000pt;}
.h3_c02021{height:20.000000pt;}
.h2_c02021{height:43.441250pt;}
.h1_c02021{height:52.134375pt;}
.h5_c02021{height:57.375000pt;}
.h4_c02021{height:62.812500pt;}
.h0_c02021{height:1056.000000pt;}
.w1_c02021{width:59.232000pt;}
.w0_c02021{width:816.000000pt;}
.x0_c02021{left:0.000000pt;}
.x3_c02021{left:14.720000pt;}
.x1_c02021{left:113.472000pt;}
.x4_c02021{left:160.666667pt;}
.x2_c02021{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02022 {
    display:none;
  }
  .loading-indicator_c02022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02022 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02022 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02022" -> "#page-container .classname_c02022")
 */
.pf_c02022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02022 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02022 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02022 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02022 {overflow:visible;}
  }
}
.c_c02022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02022 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02022:after { /* webkit #35443 */
  content: '';
}
.t_c02022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02022 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02022 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02022 { /* info for Javascript */
  display:none;
}
.l_c02022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02022:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02022 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02022.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02022;src:url('chunks/assets/font_dc253e2d55b14adff769e4df.woff2')format("woff");}.ff1_c02022{font-family:ff1_c02022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02022;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02022{font-family:ff2_c02022;line-height:0.863770;font-style:normal;font-weight: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_c02022;src:url('chunks/assets/font_802dceed8d2c453f56cee5cd.woff2')format("woff");}.ff3_c02022{font-family:ff3_c02022;line-height:1.112305;font-style:normal;font-weight: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_c02022;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02022{font-family:ff4_c02022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02022{vertical-align:-27.336000px;}
.v0_c02022{vertical-align:0.000000px;}
.v1_c02022{vertical-align:33.120000px;}
.ls7_c02022{letter-spacing:-0.288000px;}
.ls6_c02022{letter-spacing:0.000000px;}
.ls8_c02022{letter-spacing:0.144000px;}
.ls4_c02022{letter-spacing:0.150000px;}
.ls3_c02022{letter-spacing:0.360000px;}
.ls2_c02022{letter-spacing:0.720000px;}
.ls5_c02022{letter-spacing:11.700000px;}
.ls1_c02022{letter-spacing:13.680000px;}
.ls0_c02022{letter-spacing:14.400000px;}
.sc__c02022{text-shadow:none;}
.sc0_c02022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02022{-webkit-text-stroke:0px transparent;}
.sc0_c02022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02022{word-spacing:-17.712000px;}
.ws2_c02022{word-spacing:-15.300000px;}
.ws1_c02022{word-spacing:-9.720000px;}
.ws3_c02022{word-spacing:0.000000px;}
._12_c02022{margin-left:-12.817920px;}
._11_c02022{margin-left:-2.376000px;}
._4_c02022{margin-left:-1.224000px;}
._2_c02022{width:1.080000px;}
._8_c02022{width:2.712000px;}
._b_c02022{width:4.224000px;}
._f_c02022{width:5.496000px;}
._c_c02022{width:7.248000px;}
._d_c02022{width:8.376000px;}
._e_c02022{width:9.408000px;}
._1_c02022{width:11.376000px;}
._3_c02022{width:13.248000px;}
._5_c02022{width:14.388000px;}
._9_c02022{width:20.016000px;}
._a_c02022{width:21.312000px;}
._10_c02022{width:22.464000px;}
._6_c02022{width:23.544000px;}
._7_c02022{width:24.552000px;}
._0_c02022{width:1500.936000px;}
.fc1_c02022{color:rgb(192,80,77);}
.fc0_c02022{color:rgb(0,0,0);}
.fs4_c02022{font-size:38.880000px;}
.fs3_c02022{font-size:48.240000px;}
.fs0_c02022{font-size:59.760000px;}
.fs1_c02022{font-size:66.240000px;}
.fs2_c02022{font-size:72.000000px;}
.y0_c02022{bottom:0.000000px;}
.y4_c02022{bottom:4.680000px;}
.y3_c02022{bottom:41.796000px;}
.y2_c02022{bottom:75.456000px;}
.y25_c02022{bottom:113.076000px;}
.y24_c02022{bottom:130.356000px;}
.y23_c02022{bottom:154.470000px;}
.y22_c02022{bottom:165.810000px;}
.y21_c02022{bottom:195.870000px;}
.y20_c02022{bottom:226.830000px;}
.y1f_c02022{bottom:257.970000px;}
.y1e_c02022{bottom:288.975000px;}
.y1d_c02022{bottom:320.115000px;}
.y1c_c02022{bottom:351.075000px;}
.y1b_c02022{bottom:382.215000px;}
.y1a_c02022{bottom:413.175000px;}
.y19_c02022{bottom:444.315000px;}
.y18_c02022{bottom:475.275000px;}
.y17_c02022{bottom:506.415000px;}
.y16_c02022{bottom:537.405000px;}
.y15_c02022{bottom:568.545000px;}
.y14_c02022{bottom:599.505000px;}
.y13_c02022{bottom:630.645000px;}
.y12_c02022{bottom:661.605000px;}
.y11_c02022{bottom:692.745000px;}
.y10_c02022{bottom:723.705000px;}
.yf_c02022{bottom:754.845000px;}
.ye_c02022{bottom:785.805000px;}
.yd_c02022{bottom:816.990000px;}
.yc_c02022{bottom:847.950000px;}
.yb_c02022{bottom:879.090000px;}
.ya_c02022{bottom:910.050000px;}
.y9_c02022{bottom:941.190000px;}
.y8_c02022{bottom:972.150000px;}
.y7_c02022{bottom:1003.290000px;}
.y6_c02022{bottom:1034.250000px;}
.y5_c02022{bottom:1065.420000px;}
.y1_c02022{bottom:1121.400000px;}
.h3_c02022{height:22.500000px;}
.h8_c02022{height:38.158594px;}
.h2_c02022{height:48.871406px;}
.h1_c02022{height:58.651172px;}
.h5_c02022{height:64.546875px;}
.h4_c02022{height:70.664062px;}
.h6_c02022{height:72.562500px;}
.h7_c02022{height:80.464922px;}
.h0_c02022{height:1188.000000px;}
.w1_c02022{width:66.636000px;}
.w0_c02022{width:918.000000px;}
.x0_c02022{left:0.000000px;}
.x3_c02022{left:16.560000px;}
.x1_c02022{left:127.656000px;}
.x4_c02022{left:180.750000px;}
.x2_c02022{left:820.950000px;}
@media print{
.v2_c02022{vertical-align:-24.298667pt;}
.v0_c02022{vertical-align:0.000000pt;}
.v1_c02022{vertical-align:29.440000pt;}
.ls7_c02022{letter-spacing:-0.256000pt;}
.ls6_c02022{letter-spacing:0.000000pt;}
.ls8_c02022{letter-spacing:0.128000pt;}
.ls4_c02022{letter-spacing:0.133333pt;}
.ls3_c02022{letter-spacing:0.320000pt;}
.ls2_c02022{letter-spacing:0.640000pt;}
.ls5_c02022{letter-spacing:10.400000pt;}
.ls1_c02022{letter-spacing:12.160000pt;}
.ls0_c02022{letter-spacing:12.800000pt;}
.ws0_c02022{word-spacing:-15.744000pt;}
.ws2_c02022{word-spacing:-13.600000pt;}
.ws1_c02022{word-spacing:-8.640000pt;}
.ws3_c02022{word-spacing:0.000000pt;}
._12_c02022{margin-left:-11.393707pt;}
._11_c02022{margin-left:-2.112000pt;}
._4_c02022{margin-left:-1.088000pt;}
._2_c02022{width:0.960000pt;}
._8_c02022{width:2.410667pt;}
._b_c02022{width:3.754667pt;}
._f_c02022{width:4.885333pt;}
._c_c02022{width:6.442667pt;}
._d_c02022{width:7.445333pt;}
._e_c02022{width:8.362667pt;}
._1_c02022{width:10.112000pt;}
._3_c02022{width:11.776000pt;}
._5_c02022{width:12.789333pt;}
._9_c02022{width:17.792000pt;}
._a_c02022{width:18.944000pt;}
._10_c02022{width:19.968000pt;}
._6_c02022{width:20.928000pt;}
._7_c02022{width:21.824000pt;}
._0_c02022{width:1334.165333pt;}
.fs4_c02022{font-size:34.560000pt;}
.fs3_c02022{font-size:42.880000pt;}
.fs0_c02022{font-size:53.120000pt;}
.fs1_c02022{font-size:58.880000pt;}
.fs2_c02022{font-size:64.000000pt;}
.y0_c02022{bottom:0.000000pt;}
.y4_c02022{bottom:4.160000pt;}
.y3_c02022{bottom:37.152000pt;}
.y2_c02022{bottom:67.072000pt;}
.y25_c02022{bottom:100.512000pt;}
.y24_c02022{bottom:115.872000pt;}
.y23_c02022{bottom:137.306667pt;}
.y22_c02022{bottom:147.386667pt;}
.y21_c02022{bottom:174.106667pt;}
.y20_c02022{bottom:201.626667pt;}
.y1f_c02022{bottom:229.306667pt;}
.y1e_c02022{bottom:256.866667pt;}
.y1d_c02022{bottom:284.546667pt;}
.y1c_c02022{bottom:312.066667pt;}
.y1b_c02022{bottom:339.746667pt;}
.y1a_c02022{bottom:367.266667pt;}
.y19_c02022{bottom:394.946667pt;}
.y18_c02022{bottom:422.466667pt;}
.y17_c02022{bottom:450.146667pt;}
.y16_c02022{bottom:477.693333pt;}
.y15_c02022{bottom:505.373333pt;}
.y14_c02022{bottom:532.893333pt;}
.y13_c02022{bottom:560.573333pt;}
.y12_c02022{bottom:588.093333pt;}
.y11_c02022{bottom:615.773333pt;}
.y10_c02022{bottom:643.293333pt;}
.yf_c02022{bottom:670.973333pt;}
.ye_c02022{bottom:698.493333pt;}
.yd_c02022{bottom:726.213333pt;}
.yc_c02022{bottom:753.733333pt;}
.yb_c02022{bottom:781.413333pt;}
.ya_c02022{bottom:808.933333pt;}
.y9_c02022{bottom:836.613333pt;}
.y8_c02022{bottom:864.133333pt;}
.y7_c02022{bottom:891.813333pt;}
.y6_c02022{bottom:919.333333pt;}
.y5_c02022{bottom:947.040000pt;}
.y1_c02022{bottom:996.800000pt;}
.h3_c02022{height:20.000000pt;}
.h8_c02022{height:33.918750pt;}
.h2_c02022{height:43.441250pt;}
.h1_c02022{height:52.134375pt;}
.h5_c02022{height:57.375000pt;}
.h4_c02022{height:62.812500pt;}
.h6_c02022{height:64.500000pt;}
.h7_c02022{height:71.524375pt;}
.h0_c02022{height:1056.000000pt;}
.w1_c02022{width:59.232000pt;}
.w0_c02022{width:816.000000pt;}
.x0_c02022{left:0.000000pt;}
.x3_c02022{left:14.720000pt;}
.x1_c02022{left:113.472000pt;}
.x4_c02022{left:160.666667pt;}
.x2_c02022{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02023 {
    display:none;
  }
  .loading-indicator_c02023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02023 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02023 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02023" -> "#page-container .classname_c02023")
 */
.pf_c02023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02023 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02023 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02023 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02023 {overflow:visible;}
  }
}
.c_c02023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02023 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02023:after { /* webkit #35443 */
  content: '';
}
.t_c02023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02023 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02023 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02023 { /* info for Javascript */
  display:none;
}
.l_c02023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02023:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02023 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02023.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02023;src:url('chunks/assets/font_f1be7db6b2bc91fbaf5bac38.woff2')format("woff");}.ff1_c02023{font-family:ff1_c02023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02023;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02023{font-family:ff2_c02023;line-height:0.863770;font-style:normal;font-weight: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_c02023;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02023{font-family:ff3_c02023;line-height:1.311035;font-style:normal;font-weight: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_c02023;src:url('chunks/assets/font_0f2ce1f3ddef7d4366818a0c.woff2')format("woff");}.ff4_c02023{font-family:ff4_c02023;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02023{vertical-align:0.000000px;}
.ls2_c02023{letter-spacing:-0.216000px;}
.ls1_c02023{letter-spacing:0.000000px;}
.ls0_c02023{letter-spacing:8.640000px;}
.sc__c02023{text-shadow:none;}
.sc0_c02023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02023{-webkit-text-stroke:0px transparent;}
.sc0_c02023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02023{word-spacing:0.000000px;}
._4_c02023{margin-left:-1.440000px;}
._6_c02023{width:1.008000px;}
._7_c02023{width:2.016000px;}
._8_c02023{width:3.708000px;}
._9_c02023{width:5.160024px;}
._a_c02023{width:6.455880px;}
._5_c02023{width:7.788024px;}
._3_c02023{width:8.856000px;}
._c_c02023{width:10.415904px;}
._d_c02023{width:11.952288px;}
._f_c02023{width:13.607712px;}
._e_c02023{width:15.696000px;}
._b_c02023{width:16.776000px;}
._1_c02023{width:27.864000px;}
._2_c02023{width:29.892024px;}
._0_c02023{width:1500.936000px;}
.fc1_c02023{color:rgb(192,80,77);}
.fc2_c02023{color:rgb(35,31,32);}
.fc0_c02023{color:rgb(0,0,0);}
.fs0_c02023{font-size:59.760000px;}
.fs1_c02023{font-size:66.240000px;}
.fs2_c02023{font-size:72.000000px;}
.y0_c02023{bottom:0.000000px;}
.y4_c02023{bottom:4.680000px;}
.y3_c02023{bottom:41.796000px;}
.y2_c02023{bottom:75.456000px;}
.y25_c02023{bottom:121.356000px;}
.y24_c02023{bottom:140.436000px;}
.y23_c02023{bottom:159.330000px;}
.y22_c02023{bottom:178.410000px;}
.y21_c02023{bottom:197.310000px;}
.y20_c02023{bottom:226.470000px;}
.y1f_c02023{bottom:257.970000px;}
.y1e_c02023{bottom:288.975000px;}
.y1d_c02023{bottom:320.115000px;}
.y1c_c02023{bottom:351.075000px;}
.y1b_c02023{bottom:382.215000px;}
.y1a_c02023{bottom:413.175000px;}
.y19_c02023{bottom:444.315000px;}
.y18_c02023{bottom:475.275000px;}
.y17_c02023{bottom:506.415000px;}
.y16_c02023{bottom:537.405000px;}
.y15_c02023{bottom:568.545000px;}
.y14_c02023{bottom:599.505000px;}
.y13_c02023{bottom:630.645000px;}
.y12_c02023{bottom:661.605000px;}
.y11_c02023{bottom:692.745000px;}
.y10_c02023{bottom:723.705000px;}
.yf_c02023{bottom:754.845000px;}
.ye_c02023{bottom:785.805000px;}
.yd_c02023{bottom:816.990000px;}
.yc_c02023{bottom:847.950000px;}
.yb_c02023{bottom:879.090000px;}
.ya_c02023{bottom:910.050000px;}
.y9_c02023{bottom:941.190000px;}
.y8_c02023{bottom:972.150000px;}
.y7_c02023{bottom:1003.290000px;}
.y6_c02023{bottom:1034.250000px;}
.y5_c02023{bottom:1065.420000px;}
.y1_c02023{bottom:1121.400000px;}
.h3_c02023{height:22.500000px;}
.h2_c02023{height:48.871406px;}
.h1_c02023{height:58.651172px;}
.h6_c02023{height:64.546875px;}
.h7_c02023{height:65.010937px;}
.h4_c02023{height:70.664062px;}
.h5_c02023{height:72.562500px;}
.h0_c02023{height:1188.000000px;}
.w1_c02023{width:66.636000px;}
.w0_c02023{width:918.000000px;}
.x0_c02023{left:0.000000px;}
.x3_c02023{left:16.560000px;}
.x1_c02023{left:127.656000px;}
.x4_c02023{left:180.750000px;}
.x5_c02023{left:191.550000px;}
.x2_c02023{left:820.950000px;}
@media print{
.v0_c02023{vertical-align:0.000000pt;}
.ls2_c02023{letter-spacing:-0.192000pt;}
.ls1_c02023{letter-spacing:0.000000pt;}
.ls0_c02023{letter-spacing:7.680000pt;}
.ws0_c02023{word-spacing:0.000000pt;}
._4_c02023{margin-left:-1.280000pt;}
._6_c02023{width:0.896000pt;}
._7_c02023{width:1.792000pt;}
._8_c02023{width:3.296000pt;}
._9_c02023{width:4.586688pt;}
._a_c02023{width:5.738560pt;}
._5_c02023{width:6.922688pt;}
._3_c02023{width:7.872000pt;}
._c_c02023{width:9.258581pt;}
._d_c02023{width:10.624256pt;}
._f_c02023{width:12.095744pt;}
._e_c02023{width:13.952000pt;}
._b_c02023{width:14.912000pt;}
._1_c02023{width:24.768000pt;}
._2_c02023{width:26.570688pt;}
._0_c02023{width:1334.165333pt;}
.fs0_c02023{font-size:53.120000pt;}
.fs1_c02023{font-size:58.880000pt;}
.fs2_c02023{font-size:64.000000pt;}
.y0_c02023{bottom:0.000000pt;}
.y4_c02023{bottom:4.160000pt;}
.y3_c02023{bottom:37.152000pt;}
.y2_c02023{bottom:67.072000pt;}
.y25_c02023{bottom:107.872000pt;}
.y24_c02023{bottom:124.832000pt;}
.y23_c02023{bottom:141.626667pt;}
.y22_c02023{bottom:158.586667pt;}
.y21_c02023{bottom:175.386667pt;}
.y20_c02023{bottom:201.306667pt;}
.y1f_c02023{bottom:229.306667pt;}
.y1e_c02023{bottom:256.866667pt;}
.y1d_c02023{bottom:284.546667pt;}
.y1c_c02023{bottom:312.066667pt;}
.y1b_c02023{bottom:339.746667pt;}
.y1a_c02023{bottom:367.266667pt;}
.y19_c02023{bottom:394.946667pt;}
.y18_c02023{bottom:422.466667pt;}
.y17_c02023{bottom:450.146667pt;}
.y16_c02023{bottom:477.693333pt;}
.y15_c02023{bottom:505.373333pt;}
.y14_c02023{bottom:532.893333pt;}
.y13_c02023{bottom:560.573333pt;}
.y12_c02023{bottom:588.093333pt;}
.y11_c02023{bottom:615.773333pt;}
.y10_c02023{bottom:643.293333pt;}
.yf_c02023{bottom:670.973333pt;}
.ye_c02023{bottom:698.493333pt;}
.yd_c02023{bottom:726.213333pt;}
.yc_c02023{bottom:753.733333pt;}
.yb_c02023{bottom:781.413333pt;}
.ya_c02023{bottom:808.933333pt;}
.y9_c02023{bottom:836.613333pt;}
.y8_c02023{bottom:864.133333pt;}
.y7_c02023{bottom:891.813333pt;}
.y6_c02023{bottom:919.333333pt;}
.y5_c02023{bottom:947.040000pt;}
.y1_c02023{bottom:996.800000pt;}
.h3_c02023{height:20.000000pt;}
.h2_c02023{height:43.441250pt;}
.h1_c02023{height:52.134375pt;}
.h6_c02023{height:57.375000pt;}
.h7_c02023{height:57.787500pt;}
.h4_c02023{height:62.812500pt;}
.h5_c02023{height:64.500000pt;}
.h0_c02023{height:1056.000000pt;}
.w1_c02023{width:59.232000pt;}
.w0_c02023{width:816.000000pt;}
.x0_c02023{left:0.000000pt;}
.x3_c02023{left:14.720000pt;}
.x1_c02023{left:113.472000pt;}
.x4_c02023{left:160.666667pt;}
.x5_c02023{left:170.266667pt;}
.x2_c02023{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02024 {
    display:none;
  }
  .loading-indicator_c02024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02024 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02024 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02024" -> "#page-container .classname_c02024")
 */
.pf_c02024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02024 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02024 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02024 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02024 {overflow:visible;}
  }
}
.c_c02024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02024 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02024:after { /* webkit #35443 */
  content: '';
}
.t_c02024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02024 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02024 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02024 { /* info for Javascript */
  display:none;
}
.l_c02024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02024:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02024 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02024.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02024;src:url('chunks/assets/font_f0bcf939af757e753ce97f9c.woff2')format("woff");}.ff1_c02024{font-family:ff1_c02024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02024;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02024{font-family:ff2_c02024;line-height:0.863770;font-style:normal;font-weight: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_c02024;src:url('chunks/assets/font_5511e5ac03938d2774bb9c58.woff2')format("woff");}.ff3_c02024{font-family:ff3_c02024;line-height:1.112305;font-style:normal;font-weight: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_c02024;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02024{font-family:ff4_c02024;line-height:1.311035;font-style:normal;font-weight: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_c02024;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c02024{font-family:ff5_c02024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02024{vertical-align:-83.520000px;}
.v3_c02024{vertical-align:-27.360000px;}
.v0_c02024{vertical-align:0.000000px;}
.v1_c02024{vertical-align:33.120000px;}
.ls4_c02024{letter-spacing:0.000000px;}
.ls3_c02024{letter-spacing:0.150000px;}
.ls1_c02024{letter-spacing:0.360000px;}
.ls0_c02024{letter-spacing:12.960000px;}
.ls2_c02024{letter-spacing:194.376000px;}
.sc__c02024{text-shadow:none;}
.sc0_c02024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02024{-webkit-text-stroke:0px transparent;}
.sc0_c02024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02024{word-spacing:-9.720000px;}
.ws1_c02024{word-spacing:0.000000px;}
._11_c02024{margin-left:-12.817920px;}
._2_c02024{margin-left:-1.125616px;}
._6_c02024{width:1.041558px;}
._3_c02024{width:2.119216px;}
._4_c02024{width:3.318028px;}
._5_c02024{width:4.702775px;}
._c_c02024{width:6.429784px;}
._b_c02024{width:7.485054px;}
._9_c02024{width:9.338250px;}
._8_c02024{width:10.598466px;}
._a_c02024{width:11.809135px;}
._7_c02024{width:14.307641px;}
._f_c02024{width:15.984000px;}
._e_c02024{width:19.028292px;}
._1_c02024{width:20.931708px;}
._10_c02024{width:48.528000px;}
._d_c02024{width:50.976000px;}
._0_c02024{width:1500.936000px;}
.fc1_c02024{color:rgb(192,80,77);}
.fc0_c02024{color:rgb(0,0,0);}
.fs4_c02024{font-size:38.880000px;}
.fs3_c02024{font-size:48.240000px;}
.fs0_c02024{font-size:59.760000px;}
.fs1_c02024{font-size:66.240000px;}
.fs2_c02024{font-size:72.000000px;}
.y0_c02024{bottom:0.000000px;}
.y4_c02024{bottom:4.680000px;}
.y3_c02024{bottom:41.796000px;}
.y2_c02024{bottom:75.456000px;}
.y2c_c02024{bottom:130.356000px;}
.y2b_c02024{bottom:147.636000px;}
.y2a_c02024{bottom:164.730000px;}
.y29_c02024{bottom:188.850000px;}
.y28_c02024{bottom:200.190000px;}
.y27_c02024{bottom:251.310000px;}
.y26_c02024{bottom:282.135000px;}
.y25_c02024{bottom:313.275000px;}
.y24_c02024{bottom:344.235000px;}
.y23_c02024{bottom:375.375000px;}
.y22_c02024{bottom:406.335000px;}
.y21_c02024{bottom:437.475000px;}
.y20_c02024{bottom:468.435000px;}
.y1f_c02024{bottom:499.575000px;}
.y1e_c02024{bottom:530.535000px;}
.y1d_c02024{bottom:561.525000px;}
.y1c_c02024{bottom:592.665000px;}
.y1b_c02024{bottom:623.625000px;}
.y1a_c02024{bottom:654.765000px;}
.y19_c02024{bottom:685.365000px;}
.y18_c02024{bottom:706.245000px;}
.y17_c02024{bottom:725.145000px;}
.y16_c02024{bottom:744.225000px;}
.y15_c02024{bottom:763.125000px;}
.y14_c02024{bottom:782.025000px;}
.y13_c02024{bottom:801.150000px;}
.y12_c02024{bottom:820.050000px;}
.y11_c02024{bottom:839.130000px;}
.y10_c02024{bottom:858.030000px;}
.yf_c02024{bottom:877.110000px;}
.ye_c02024{bottom:896.010000px;}
.yd_c02024{bottom:914.910000px;}
.yc_c02024{bottom:933.990000px;}
.yb_c02024{bottom:952.890000px;}
.ya_c02024{bottom:971.970000px;}
.y9_c02024{bottom:990.870000px;}
.y8_c02024{bottom:1009.770000px;}
.y7_c02024{bottom:1028.850000px;}
.y6_c02024{bottom:1047.750000px;}
.y5_c02024{bottom:1066.860000px;}
.y1_c02024{bottom:1121.400000px;}
.h3_c02024{height:22.500000px;}
.hc_c02024{height:38.158594px;}
.h2_c02024{height:48.871406px;}
.hd_c02024{height:53.573906px;}
.h1_c02024{height:58.651172px;}
.h5_c02024{height:59.383125px;}
.h9_c02024{height:64.546875px;}
.h4_c02024{height:65.010937px;}
.h6_c02024{height:66.757500px;}
.h7_c02024{height:70.628906px;}
.h8_c02024{height:70.664062px;}
.ha_c02024{height:72.562500px;}
.hb_c02024{height:80.464922px;}
.h0_c02024{height:1188.000000px;}
.w1_c02024{width:66.636000px;}
.w0_c02024{width:918.000000px;}
.x0_c02024{left:0.000000px;}
.x3_c02024{left:16.560000px;}
.x1_c02024{left:127.656000px;}
.x5_c02024{left:180.750000px;}
.x4_c02024{left:191.550000px;}
.x2_c02024{left:820.950000px;}
@media print{
.v2_c02024{vertical-align:-74.240000pt;}
.v3_c02024{vertical-align:-24.320000pt;}
.v0_c02024{vertical-align:0.000000pt;}
.v1_c02024{vertical-align:29.440000pt;}
.ls4_c02024{letter-spacing:0.000000pt;}
.ls3_c02024{letter-spacing:0.133333pt;}
.ls1_c02024{letter-spacing:0.320000pt;}
.ls0_c02024{letter-spacing:11.520000pt;}
.ls2_c02024{letter-spacing:172.778667pt;}
.ws0_c02024{word-spacing:-8.640000pt;}
.ws1_c02024{word-spacing:0.000000pt;}
._11_c02024{margin-left:-11.393707pt;}
._2_c02024{margin-left:-1.000548pt;}
._6_c02024{width:0.925829pt;}
._3_c02024{width:1.883748pt;}
._4_c02024{width:2.949358pt;}
._5_c02024{width:4.180244pt;}
._c_c02024{width:5.715364pt;}
._b_c02024{width:6.653381pt;}
._9_c02024{width:8.300667pt;}
._8_c02024{width:9.420859pt;}
._a_c02024{width:10.497009pt;}
._7_c02024{width:12.717903pt;}
._f_c02024{width:14.208000pt;}
._e_c02024{width:16.914038pt;}
._1_c02024{width:18.605962pt;}
._10_c02024{width:43.136000pt;}
._d_c02024{width:45.312000pt;}
._0_c02024{width:1334.165333pt;}
.fs4_c02024{font-size:34.560000pt;}
.fs3_c02024{font-size:42.880000pt;}
.fs0_c02024{font-size:53.120000pt;}
.fs1_c02024{font-size:58.880000pt;}
.fs2_c02024{font-size:64.000000pt;}
.y0_c02024{bottom:0.000000pt;}
.y4_c02024{bottom:4.160000pt;}
.y3_c02024{bottom:37.152000pt;}
.y2_c02024{bottom:67.072000pt;}
.y2c_c02024{bottom:115.872000pt;}
.y2b_c02024{bottom:131.232000pt;}
.y2a_c02024{bottom:146.426667pt;}
.y29_c02024{bottom:167.866667pt;}
.y28_c02024{bottom:177.946667pt;}
.y27_c02024{bottom:223.386667pt;}
.y26_c02024{bottom:250.786667pt;}
.y25_c02024{bottom:278.466667pt;}
.y24_c02024{bottom:305.986667pt;}
.y23_c02024{bottom:333.666667pt;}
.y22_c02024{bottom:361.186667pt;}
.y21_c02024{bottom:388.866667pt;}
.y20_c02024{bottom:416.386667pt;}
.y1f_c02024{bottom:444.066667pt;}
.y1e_c02024{bottom:471.586667pt;}
.y1d_c02024{bottom:499.133333pt;}
.y1c_c02024{bottom:526.813333pt;}
.y1b_c02024{bottom:554.333333pt;}
.y1a_c02024{bottom:582.013333pt;}
.y19_c02024{bottom:609.213333pt;}
.y18_c02024{bottom:627.773333pt;}
.y17_c02024{bottom:644.573333pt;}
.y16_c02024{bottom:661.533333pt;}
.y15_c02024{bottom:678.333333pt;}
.y14_c02024{bottom:695.133333pt;}
.y13_c02024{bottom:712.133333pt;}
.y12_c02024{bottom:728.933333pt;}
.y11_c02024{bottom:745.893333pt;}
.y10_c02024{bottom:762.693333pt;}
.yf_c02024{bottom:779.653333pt;}
.ye_c02024{bottom:796.453333pt;}
.yd_c02024{bottom:813.253333pt;}
.yc_c02024{bottom:830.213333pt;}
.yb_c02024{bottom:847.013333pt;}
.ya_c02024{bottom:863.973333pt;}
.y9_c02024{bottom:880.773333pt;}
.y8_c02024{bottom:897.573333pt;}
.y7_c02024{bottom:914.533333pt;}
.y6_c02024{bottom:931.333333pt;}
.y5_c02024{bottom:948.320000pt;}
.y1_c02024{bottom:996.800000pt;}
.h3_c02024{height:20.000000pt;}
.hc_c02024{height:33.918750pt;}
.h2_c02024{height:43.441250pt;}
.hd_c02024{height:47.621250pt;}
.h1_c02024{height:52.134375pt;}
.h5_c02024{height:52.785000pt;}
.h9_c02024{height:57.375000pt;}
.h4_c02024{height:57.787500pt;}
.h6_c02024{height:59.340000pt;}
.h7_c02024{height:62.781250pt;}
.h8_c02024{height:62.812500pt;}
.ha_c02024{height:64.500000pt;}
.hb_c02024{height:71.524375pt;}
.h0_c02024{height:1056.000000pt;}
.w1_c02024{width:59.232000pt;}
.w0_c02024{width:816.000000pt;}
.x0_c02024{left:0.000000pt;}
.x3_c02024{left:14.720000pt;}
.x1_c02024{left:113.472000pt;}
.x5_c02024{left:160.666667pt;}
.x4_c02024{left:170.266667pt;}
.x2_c02024{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02025 {
    display:none;
  }
  .loading-indicator_c02025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02025 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02025 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02025" -> "#page-container .classname_c02025")
 */
.pf_c02025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02025 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02025 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02025 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02025 {overflow:visible;}
  }
}
.c_c02025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02025 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02025:after { /* webkit #35443 */
  content: '';
}
.t_c02025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02025 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02025 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02025 { /* info for Javascript */
  display:none;
}
.l_c02025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02025:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02025 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02025.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02025;src:url('chunks/assets/font_5c5a71bc28f1772dba64a6a9.woff2')format("woff");}.ff1_c02025{font-family:ff1_c02025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02025;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02025{font-family:ff2_c02025;line-height:0.863770;font-style:normal;font-weight: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_c02025;src:url('chunks/assets/font_6a9f0139a8595cb6a0df94e3.woff2')format("woff");}.ff3_c02025{font-family:ff3_c02025;line-height:1.311035;font-style:normal;font-weight: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_c02025;src:url('chunks/assets/font_19dc5e63f4539c5c9f4250c4.woff2')format("woff");}.ff4_c02025{font-family:ff4_c02025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02025{vertical-align:0.000000px;}
.ls0_c02025{letter-spacing:0.000000px;}
.sc__c02025{text-shadow:none;}
.sc0_c02025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02025{-webkit-text-stroke:0px transparent;}
.sc0_c02025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02025{word-spacing:-23.940000px;}
.ws1_c02025{word-spacing:0.000000px;}
._14_c02025{margin-left:-2.280830px;}
._3_c02025{margin-left:-1.072727px;}
._1_c02025{width:1.216727px;}
._b_c02025{width:2.736000px;}
._c_c02025{width:3.787273px;}
._7_c02025{width:4.824000px;}
._8_c02025{width:5.968727px;}
._2_c02025{width:7.128000px;}
._4_c02025{width:8.280000px;}
._5_c02025{width:9.504000px;}
._6_c02025{width:10.833844px;}
._a_c02025{width:12.744000px;}
._9_c02025{width:13.968000px;}
._d_c02025{width:14.976000px;}
._e_c02025{width:15.991273px;}
._15_c02025{width:20.664000px;}
._16_c02025{width:21.816000px;}
._11_c02025{width:24.840000px;}
._13_c02025{width:25.848000px;}
._12_c02025{width:26.856000px;}
._10_c02025{width:39.679273px;}
._f_c02025{width:40.744727px;}
._0_c02025{width:1500.936000px;}
.fc1_c02025{color:rgb(192,80,77);}
.fc0_c02025{color:rgb(0,0,0);}
.fs0_c02025{font-size:59.760000px;}
.fs1_c02025{font-size:66.240000px;}
.fs3_c02025{font-size:72.000000px;}
.fs2_c02025{font-size:95.760000px;}
.y0_c02025{bottom:0.000000px;}
.y4_c02025{bottom:4.680000px;}
.y3_c02025{bottom:41.796000px;}
.y2_c02025{bottom:75.456000px;}
.y23_c02025{bottom:123.516000px;}
.y22_c02025{bottom:154.470000px;}
.y21_c02025{bottom:185.430000px;}
.y20_c02025{bottom:216.570000px;}
.y1f_c02025{bottom:247.530000px;}
.y1e_c02025{bottom:278.715000px;}
.y1d_c02025{bottom:309.675000px;}
.y1c_c02025{bottom:340.815000px;}
.y1b_c02025{bottom:371.775000px;}
.y1a_c02025{bottom:402.915000px;}
.y19_c02025{bottom:433.875000px;}
.y18_c02025{bottom:465.015000px;}
.y17_c02025{bottom:495.975000px;}
.y16_c02025{bottom:527.115000px;}
.y15_c02025{bottom:558.105000px;}
.y14_c02025{bottom:589.245000px;}
.y13_c02025{bottom:620.205000px;}
.y12_c02025{bottom:651.345000px;}
.y11_c02025{bottom:682.305000px;}
.y10_c02025{bottom:713.445000px;}
.yf_c02025{bottom:744.405000px;}
.ye_c02025{bottom:775.545000px;}
.yd_c02025{bottom:806.550000px;}
.yc_c02025{bottom:837.690000px;}
.yb_c02025{bottom:868.650000px;}
.ya_c02025{bottom:899.790000px;}
.y9_c02025{bottom:930.750000px;}
.y8_c02025{bottom:961.890000px;}
.y7_c02025{bottom:992.850000px;}
.y6_c02025{bottom:1023.630000px;}
.y5_c02025{bottom:1059.660000px;}
.y1_c02025{bottom:1121.400000px;}
.h3_c02025{height:22.500000px;}
.h2_c02025{height:48.871406px;}
.h1_c02025{height:58.651172px;}
.h6_c02025{height:70.664062px;}
.h5_c02025{height:72.562500px;}
.h4_c02025{height:96.508125px;}
.h0_c02025{height:1188.000000px;}
.w1_c02025{width:66.636000px;}
.w0_c02025{width:918.000000px;}
.x0_c02025{left:0.000000px;}
.x3_c02025{left:16.560000px;}
.x1_c02025{left:127.656000px;}
.x5_c02025{left:180.750000px;}
.x4_c02025{left:231.690000px;}
.x2_c02025{left:820.950000px;}
@media print{
.v0_c02025{vertical-align:0.000000pt;}
.ls0_c02025{letter-spacing:0.000000pt;}
.ws0_c02025{word-spacing:-21.280000pt;}
.ws1_c02025{word-spacing:0.000000pt;}
._14_c02025{margin-left:-2.027405pt;}
._3_c02025{margin-left:-0.953535pt;}
._1_c02025{width:1.081535pt;}
._b_c02025{width:2.432000pt;}
._c_c02025{width:3.366465pt;}
._7_c02025{width:4.288000pt;}
._8_c02025{width:5.305535pt;}
._2_c02025{width:6.336000pt;}
._4_c02025{width:7.360000pt;}
._5_c02025{width:8.448000pt;}
._6_c02025{width:9.630084pt;}
._a_c02025{width:11.328000pt;}
._9_c02025{width:12.416000pt;}
._d_c02025{width:13.312000pt;}
._e_c02025{width:14.214465pt;}
._15_c02025{width:18.368000pt;}
._16_c02025{width:19.392000pt;}
._11_c02025{width:22.080000pt;}
._13_c02025{width:22.976000pt;}
._12_c02025{width:23.872000pt;}
._10_c02025{width:35.270465pt;}
._f_c02025{width:36.217535pt;}
._0_c02025{width:1334.165333pt;}
.fs0_c02025{font-size:53.120000pt;}
.fs1_c02025{font-size:58.880000pt;}
.fs3_c02025{font-size:64.000000pt;}
.fs2_c02025{font-size:85.120000pt;}
.y0_c02025{bottom:0.000000pt;}
.y4_c02025{bottom:4.160000pt;}
.y3_c02025{bottom:37.152000pt;}
.y2_c02025{bottom:67.072000pt;}
.y23_c02025{bottom:109.792000pt;}
.y22_c02025{bottom:137.306667pt;}
.y21_c02025{bottom:164.826667pt;}
.y20_c02025{bottom:192.506667pt;}
.y1f_c02025{bottom:220.026667pt;}
.y1e_c02025{bottom:247.746667pt;}
.y1d_c02025{bottom:275.266667pt;}
.y1c_c02025{bottom:302.946667pt;}
.y1b_c02025{bottom:330.466667pt;}
.y1a_c02025{bottom:358.146667pt;}
.y19_c02025{bottom:385.666667pt;}
.y18_c02025{bottom:413.346667pt;}
.y17_c02025{bottom:440.866667pt;}
.y16_c02025{bottom:468.546667pt;}
.y15_c02025{bottom:496.093333pt;}
.y14_c02025{bottom:523.773333pt;}
.y13_c02025{bottom:551.293333pt;}
.y12_c02025{bottom:578.973333pt;}
.y11_c02025{bottom:606.493333pt;}
.y10_c02025{bottom:634.173333pt;}
.yf_c02025{bottom:661.693333pt;}
.ye_c02025{bottom:689.373333pt;}
.yd_c02025{bottom:716.933333pt;}
.yc_c02025{bottom:744.613333pt;}
.yb_c02025{bottom:772.133333pt;}
.ya_c02025{bottom:799.813333pt;}
.y9_c02025{bottom:827.333333pt;}
.y8_c02025{bottom:855.013333pt;}
.y7_c02025{bottom:882.533333pt;}
.y6_c02025{bottom:909.893333pt;}
.y5_c02025{bottom:941.920000pt;}
.y1_c02025{bottom:996.800000pt;}
.h3_c02025{height:20.000000pt;}
.h2_c02025{height:43.441250pt;}
.h1_c02025{height:52.134375pt;}
.h6_c02025{height:62.812500pt;}
.h5_c02025{height:64.500000pt;}
.h4_c02025{height:85.785000pt;}
.h0_c02025{height:1056.000000pt;}
.w1_c02025{width:59.232000pt;}
.w0_c02025{width:816.000000pt;}
.x0_c02025{left:0.000000pt;}
.x3_c02025{left:14.720000pt;}
.x1_c02025{left:113.472000pt;}
.x5_c02025{left:160.666667pt;}
.x4_c02025{left:205.946667pt;}
.x2_c02025{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02026 {
    display:none;
  }
  .loading-indicator_c02026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02026 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02026 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02026" -> "#page-container .classname_c02026")
 */
.pf_c02026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02026 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02026 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02026 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02026 {overflow:visible;}
  }
}
.c_c02026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02026 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02026:after { /* webkit #35443 */
  content: '';
}
.t_c02026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02026 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02026 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02026 { /* info for Javascript */
  display:none;
}
.l_c02026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02026:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02026 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02026.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02026;src:url('chunks/assets/font_531ec8f1b26610135b42c504.woff2')format("woff");}.ff1_c02026{font-family:ff1_c02026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02026;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02026{font-family:ff2_c02026;line-height:0.863770;font-style:normal;font-weight: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_c02026;src:url('chunks/assets/font_f4cbaf9827ff5b04626ca701.woff2')format("woff");}.ff3_c02026{font-family:ff3_c02026;line-height:1.402354;font-style:normal;font-weight: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_c02026;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02026{font-family:ff4_c02026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02026{vertical-align:-76.320000px;}
.v0_c02026{vertical-align:0.000000px;}
.ls4_c02026{letter-spacing:0.000000px;}
.ls0_c02026{letter-spacing:0.262080px;}
.ls3_c02026{letter-spacing:13.140000px;}
.ls1_c02026{letter-spacing:67.265280px;}
.ls2_c02026{letter-spacing:239.016000px;}
.sc__c02026{text-shadow:none;}
.sc0_c02026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02026{-webkit-text-stroke:0px transparent;}
.sc0_c02026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02026{word-spacing:-16.560000px;}
.ws1_c02026{word-spacing:0.000000px;}
._f_c02026{margin-left:-2.952000px;}
._3_c02026{margin-left:-1.440000px;}
._4_c02026{width:1.440000px;}
._9_c02026{width:2.664000px;}
._1_c02026{width:3.960000px;}
._2_c02026{width:5.448024px;}
._5_c02026{width:6.552000px;}
._6_c02026{width:7.920000px;}
._d_c02026{width:8.988048px;}
._12_c02026{width:10.134588px;}
._b_c02026{width:12.240000px;}
._15_c02026{width:13.334731px;}
._c_c02026{width:14.340024px;}
._e_c02026{width:15.395976px;}
._a_c02026{width:16.416000px;}
._14_c02026{width:17.718952px;}
._13_c02026{width:18.745788px;}
._10_c02026{width:20.880000px;}
._11_c02026{width:22.392000px;}
._7_c02026{width:27.432000px;}
._8_c02026{width:28.512000px;}
._0_c02026{width:1500.936000px;}
.fc1_c02026{color:rgb(192,80,77);}
.fc0_c02026{color:rgb(0,0,0);}
.fs0_c02026{font-size:59.760000px;}
.fs1_c02026{font-size:66.240000px;}
.fs2_c02026{font-size:72.000000px;}
.y0_c02026{bottom:0.000000px;}
.y4_c02026{bottom:4.680000px;}
.y3_c02026{bottom:41.796000px;}
.y2_c02026{bottom:75.456000px;}
.y29_c02026{bottom:135.216000px;}
.y28_c02026{bottom:154.110000px;}
.y27_c02026{bottom:173.190000px;}
.y26_c02026{bottom:211.170000px;}
.y25_c02026{bottom:230.070000px;}
.y24_c02026{bottom:248.970000px;}
.y23_c02026{bottom:268.050000px;}
.y22_c02026{bottom:286.995000px;}
.y21_c02026{bottom:306.075000px;}
.y20_c02026{bottom:324.975000px;}
.y1f_c02026{bottom:344.055000px;}
.y1e_c02026{bottom:362.955000px;}
.y1d_c02026{bottom:381.855000px;}
.y1c_c02026{bottom:400.935000px;}
.y1b_c02026{bottom:419.835000px;}
.y1a_c02026{bottom:438.915000px;}
.y19_c02026{bottom:457.815000px;}
.y18_c02026{bottom:476.715000px;}
.y17_c02026{bottom:506.415000px;}
.y16_c02026{bottom:537.405000px;}
.y15_c02026{bottom:568.545000px;}
.y14_c02026{bottom:599.505000px;}
.y13_c02026{bottom:630.645000px;}
.y12_c02026{bottom:661.605000px;}
.y11_c02026{bottom:692.745000px;}
.y10_c02026{bottom:723.705000px;}
.yf_c02026{bottom:754.845000px;}
.ye_c02026{bottom:785.805000px;}
.yd_c02026{bottom:816.990000px;}
.yc_c02026{bottom:847.950000px;}
.yb_c02026{bottom:879.090000px;}
.ya_c02026{bottom:910.050000px;}
.y9_c02026{bottom:941.190000px;}
.y8_c02026{bottom:972.150000px;}
.y7_c02026{bottom:1003.290000px;}
.y6_c02026{bottom:1034.250000px;}
.y5_c02026{bottom:1065.420000px;}
.y1_c02026{bottom:1121.400000px;}
.h3_c02026{height:22.500000px;}
.h2_c02026{height:48.871406px;}
.h1_c02026{height:58.651172px;}
.h6_c02026{height:65.010937px;}
.h5_c02026{height:68.084282px;}
.h4_c02026{height:70.664062px;}
.h0_c02026{height:1188.000000px;}
.w1_c02026{width:66.636000px;}
.w0_c02026{width:918.000000px;}
.x0_c02026{left:0.000000px;}
.x3_c02026{left:16.560000px;}
.x1_c02026{left:127.656000px;}
.x4_c02026{left:180.750000px;}
.x5_c02026{left:191.550000px;}
.x6_c02026{left:218.550000px;}
.x2_c02026{left:820.950000px;}
@media print{
.v1_c02026{vertical-align:-67.840000pt;}
.v0_c02026{vertical-align:0.000000pt;}
.ls4_c02026{letter-spacing:0.000000pt;}
.ls0_c02026{letter-spacing:0.232960pt;}
.ls3_c02026{letter-spacing:11.680000pt;}
.ls1_c02026{letter-spacing:59.791360pt;}
.ls2_c02026{letter-spacing:212.458667pt;}
.ws0_c02026{word-spacing:-14.720000pt;}
.ws1_c02026{word-spacing:0.000000pt;}
._f_c02026{margin-left:-2.624000pt;}
._3_c02026{margin-left:-1.280000pt;}
._4_c02026{width:1.280000pt;}
._9_c02026{width:2.368000pt;}
._1_c02026{width:3.520000pt;}
._2_c02026{width:4.842688pt;}
._5_c02026{width:5.824000pt;}
._6_c02026{width:7.040000pt;}
._d_c02026{width:7.989376pt;}
._12_c02026{width:9.008522pt;}
._b_c02026{width:10.880000pt;}
._15_c02026{width:11.853094pt;}
._c_c02026{width:12.746688pt;}
._e_c02026{width:13.685312pt;}
._a_c02026{width:14.592000pt;}
._14_c02026{width:15.750180pt;}
._13_c02026{width:16.662922pt;}
._10_c02026{width:18.560000pt;}
._11_c02026{width:19.904000pt;}
._7_c02026{width:24.384000pt;}
._8_c02026{width:25.344000pt;}
._0_c02026{width:1334.165333pt;}
.fs0_c02026{font-size:53.120000pt;}
.fs1_c02026{font-size:58.880000pt;}
.fs2_c02026{font-size:64.000000pt;}
.y0_c02026{bottom:0.000000pt;}
.y4_c02026{bottom:4.160000pt;}
.y3_c02026{bottom:37.152000pt;}
.y2_c02026{bottom:67.072000pt;}
.y29_c02026{bottom:120.192000pt;}
.y28_c02026{bottom:136.986667pt;}
.y27_c02026{bottom:153.946667pt;}
.y26_c02026{bottom:187.706667pt;}
.y25_c02026{bottom:204.506667pt;}
.y24_c02026{bottom:221.306667pt;}
.y23_c02026{bottom:238.266667pt;}
.y22_c02026{bottom:255.106667pt;}
.y21_c02026{bottom:272.066667pt;}
.y20_c02026{bottom:288.866667pt;}
.y1f_c02026{bottom:305.826667pt;}
.y1e_c02026{bottom:322.626667pt;}
.y1d_c02026{bottom:339.426667pt;}
.y1c_c02026{bottom:356.386667pt;}
.y1b_c02026{bottom:373.186667pt;}
.y1a_c02026{bottom:390.146667pt;}
.y19_c02026{bottom:406.946667pt;}
.y18_c02026{bottom:423.746667pt;}
.y17_c02026{bottom:450.146667pt;}
.y16_c02026{bottom:477.693333pt;}
.y15_c02026{bottom:505.373333pt;}
.y14_c02026{bottom:532.893333pt;}
.y13_c02026{bottom:560.573333pt;}
.y12_c02026{bottom:588.093333pt;}
.y11_c02026{bottom:615.773333pt;}
.y10_c02026{bottom:643.293333pt;}
.yf_c02026{bottom:670.973333pt;}
.ye_c02026{bottom:698.493333pt;}
.yd_c02026{bottom:726.213333pt;}
.yc_c02026{bottom:753.733333pt;}
.yb_c02026{bottom:781.413333pt;}
.ya_c02026{bottom:808.933333pt;}
.y9_c02026{bottom:836.613333pt;}
.y8_c02026{bottom:864.133333pt;}
.y7_c02026{bottom:891.813333pt;}
.y6_c02026{bottom:919.333333pt;}
.y5_c02026{bottom:947.040000pt;}
.y1_c02026{bottom:996.800000pt;}
.h3_c02026{height:20.000000pt;}
.h2_c02026{height:43.441250pt;}
.h1_c02026{height:52.134375pt;}
.h6_c02026{height:57.787500pt;}
.h5_c02026{height:60.519362pt;}
.h4_c02026{height:62.812500pt;}
.h0_c02026{height:1056.000000pt;}
.w1_c02026{width:59.232000pt;}
.w0_c02026{width:816.000000pt;}
.x0_c02026{left:0.000000pt;}
.x3_c02026{left:14.720000pt;}
.x1_c02026{left:113.472000pt;}
.x4_c02026{left:160.666667pt;}
.x5_c02026{left:170.266667pt;}
.x6_c02026{left:194.266667pt;}
.x2_c02026{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02027 {
    display:none;
  }
  .loading-indicator_c02027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02027" -> "#page-container .classname_c02027")
 */
.pf_c02027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02027 {overflow:visible;}
  }
}
.c_c02027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02027:after { /* webkit #35443 */
  content: '';
}
.t_c02027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02027 { /* info for Javascript */
  display:none;
}
.l_c02027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02027:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02027 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02027.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02027;src:url('chunks/assets/font_fa3f159e62d1fa0ca0f430e1.woff2')format("woff");}.ff1_c02027{font-family:ff1_c02027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02027;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02027{font-family:ff2_c02027;line-height:0.863770;font-style:normal;font-weight: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_c02027;src:url('chunks/assets/font_239abaf96207529e83d362be.woff2')format("woff");}.ff3_c02027{font-family:ff3_c02027;line-height:1.402354;font-style:normal;font-weight: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_c02027;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02027{font-family:ff4_c02027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02027{vertical-align:-76.320000px;}
.v0_c02027{vertical-align:0.000000px;}
.ls4_c02027{letter-spacing:0.000000px;}
.ls0_c02027{letter-spacing:0.262080px;}
.ls2_c02027{letter-spacing:10.800000px;}
.ls1_c02027{letter-spacing:67.265280px;}
.ls3_c02027{letter-spacing:239.016000px;}
.sc__c02027{text-shadow:none;}
.sc0_c02027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02027{-webkit-text-stroke:0px transparent;}
.sc0_c02027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02027{word-spacing:0.000000px;}
._2_c02027{margin-left:-1.258229px;}
._5_c02027{width:1.125020px;}
._e_c02027{width:2.322374px;}
._c_c02027{width:3.444546px;}
._f_c02027{width:4.452944px;}
._8_c02027{width:5.616000px;}
._9_c02027{width:7.344000px;}
._d_c02027{width:8.611266px;}
._1_c02027{width:10.002041px;}
._3_c02027{width:11.077788px;}
._7_c02027{width:12.338384px;}
._10_c02027{width:13.380612px;}
._4_c02027{width:14.506825px;}
._b_c02027{width:17.817633px;}
._a_c02027{width:19.077054px;}
._12_c02027{width:20.202670px;}
._14_c02027{width:21.462025px;}
._6_c02027{width:22.918841px;}
._15_c02027{width:28.218041px;}
._16_c02027{width:29.277086px;}
._13_c02027{width:30.933616px;}
._11_c02027{width:41.996425px;}
._0_c02027{width:1500.936000px;}
.fc1_c02027{color:rgb(192,80,77);}
.fc0_c02027{color:rgb(0,0,0);}
.fs0_c02027{font-size:59.760000px;}
.fs1_c02027{font-size:66.240000px;}
.fs2_c02027{font-size:72.000000px;}
.y0_c02027{bottom:0.000000px;}
.y4_c02027{bottom:4.680000px;}
.y3_c02027{bottom:41.796000px;}
.y2_c02027{bottom:75.456000px;}
.y32_c02027{bottom:114.516000px;}
.y31_c02027{bottom:133.416000px;}
.y30_c02027{bottom:171.390000px;}
.y2f_c02027{bottom:190.470000px;}
.y2e_c02027{bottom:209.370000px;}
.y2d_c02027{bottom:247.350000px;}
.y2c_c02027{bottom:266.250000px;}
.y2b_c02027{bottom:285.375000px;}
.y2a_c02027{bottom:304.275000px;}
.y29_c02027{bottom:323.355000px;}
.y28_c02027{bottom:342.255000px;}
.y27_c02027{bottom:361.155000px;}
.y26_c02027{bottom:380.235000px;}
.y25_c02027{bottom:399.135000px;}
.y24_c02027{bottom:418.215000px;}
.y23_c02027{bottom:437.115000px;}
.y22_c02027{bottom:456.015000px;}
.y21_c02027{bottom:475.095000px;}
.y20_c02027{bottom:493.995000px;}
.y1f_c02027{bottom:513.075000px;}
.y1e_c02027{bottom:531.975000px;}
.y1d_c02027{bottom:550.905000px;}
.y1c_c02027{bottom:569.985000px;}
.y1b_c02027{bottom:588.885000px;}
.y1a_c02027{bottom:607.965000px;}
.y19_c02027{bottom:626.865000px;}
.y18_c02027{bottom:645.765000px;}
.y17_c02027{bottom:664.845000px;}
.y16_c02027{bottom:683.745000px;}
.y15_c02027{bottom:702.825000px;}
.y14_c02027{bottom:721.725000px;}
.y13_c02027{bottom:740.625000px;}
.y12_c02027{bottom:759.705000px;}
.y11_c02027{bottom:778.605000px;}
.y10_c02027{bottom:797.730000px;}
.yf_c02027{bottom:816.630000px;}
.ye_c02027{bottom:846.330000px;}
.yd_c02027{bottom:877.290000px;}
.yc_c02027{bottom:908.430000px;}
.yb_c02027{bottom:939.390000px;}
.ya_c02027{bottom:970.530000px;}
.y9_c02027{bottom:990.870000px;}
.y8_c02027{bottom:1009.770000px;}
.y7_c02027{bottom:1028.850000px;}
.y6_c02027{bottom:1047.750000px;}
.y5_c02027{bottom:1066.860000px;}
.y1_c02027{bottom:1121.400000px;}
.h3_c02027{height:22.500000px;}
.h2_c02027{height:48.871406px;}
.h1_c02027{height:58.651172px;}
.h5_c02027{height:65.010937px;}
.h4_c02027{height:68.084282px;}
.h6_c02027{height:70.664062px;}
.h0_c02027{height:1188.000000px;}
.w1_c02027{width:66.636000px;}
.w0_c02027{width:918.000000px;}
.x0_c02027{left:0.000000px;}
.x3_c02027{left:16.560000px;}
.x1_c02027{left:127.656000px;}
.x6_c02027{left:180.750000px;}
.x4_c02027{left:191.550000px;}
.x5_c02027{left:218.550000px;}
.x2_c02027{left:820.950000px;}
@media print{
.v1_c02027{vertical-align:-67.840000pt;}
.v0_c02027{vertical-align:0.000000pt;}
.ls4_c02027{letter-spacing:0.000000pt;}
.ls0_c02027{letter-spacing:0.232960pt;}
.ls2_c02027{letter-spacing:9.600000pt;}
.ls1_c02027{letter-spacing:59.791360pt;}
.ls3_c02027{letter-spacing:212.458667pt;}
.ws0_c02027{word-spacing:0.000000pt;}
._2_c02027{margin-left:-1.118426pt;}
._5_c02027{width:1.000018pt;}
._e_c02027{width:2.064333pt;}
._c_c02027{width:3.061819pt;}
._f_c02027{width:3.958172pt;}
._8_c02027{width:4.992000pt;}
._9_c02027{width:6.528000pt;}
._d_c02027{width:7.654459pt;}
._1_c02027{width:8.890703pt;}
._3_c02027{width:9.846922pt;}
._7_c02027{width:10.967452pt;}
._10_c02027{width:11.893878pt;}
._4_c02027{width:12.894956pt;}
._b_c02027{width:15.837896pt;}
._a_c02027{width:16.957381pt;}
._12_c02027{width:17.957929pt;}
._14_c02027{width:19.077356pt;}
._6_c02027{width:20.372303pt;}
._15_c02027{width:25.082703pt;}
._16_c02027{width:26.024077pt;}
._13_c02027{width:27.496548pt;}
._11_c02027{width:37.330156pt;}
._0_c02027{width:1334.165333pt;}
.fs0_c02027{font-size:53.120000pt;}
.fs1_c02027{font-size:58.880000pt;}
.fs2_c02027{font-size:64.000000pt;}
.y0_c02027{bottom:0.000000pt;}
.y4_c02027{bottom:4.160000pt;}
.y3_c02027{bottom:37.152000pt;}
.y2_c02027{bottom:67.072000pt;}
.y32_c02027{bottom:101.792000pt;}
.y31_c02027{bottom:118.592000pt;}
.y30_c02027{bottom:152.346667pt;}
.y2f_c02027{bottom:169.306667pt;}
.y2e_c02027{bottom:186.106667pt;}
.y2d_c02027{bottom:219.866667pt;}
.y2c_c02027{bottom:236.666667pt;}
.y2b_c02027{bottom:253.666667pt;}
.y2a_c02027{bottom:270.466667pt;}
.y29_c02027{bottom:287.426667pt;}
.y28_c02027{bottom:304.226667pt;}
.y27_c02027{bottom:321.026667pt;}
.y26_c02027{bottom:337.986667pt;}
.y25_c02027{bottom:354.786667pt;}
.y24_c02027{bottom:371.746667pt;}
.y23_c02027{bottom:388.546667pt;}
.y22_c02027{bottom:405.346667pt;}
.y21_c02027{bottom:422.306667pt;}
.y20_c02027{bottom:439.106667pt;}
.y1f_c02027{bottom:456.066667pt;}
.y1e_c02027{bottom:472.866667pt;}
.y1d_c02027{bottom:489.693333pt;}
.y1c_c02027{bottom:506.653333pt;}
.y1b_c02027{bottom:523.453333pt;}
.y1a_c02027{bottom:540.413333pt;}
.y19_c02027{bottom:557.213333pt;}
.y18_c02027{bottom:574.013333pt;}
.y17_c02027{bottom:590.973333pt;}
.y16_c02027{bottom:607.773333pt;}
.y15_c02027{bottom:624.733333pt;}
.y14_c02027{bottom:641.533333pt;}
.y13_c02027{bottom:658.333333pt;}
.y12_c02027{bottom:675.293333pt;}
.y11_c02027{bottom:692.093333pt;}
.y10_c02027{bottom:709.093333pt;}
.yf_c02027{bottom:725.893333pt;}
.ye_c02027{bottom:752.293333pt;}
.yd_c02027{bottom:779.813333pt;}
.yc_c02027{bottom:807.493333pt;}
.yb_c02027{bottom:835.013333pt;}
.ya_c02027{bottom:862.693333pt;}
.y9_c02027{bottom:880.773333pt;}
.y8_c02027{bottom:897.573333pt;}
.y7_c02027{bottom:914.533333pt;}
.y6_c02027{bottom:931.333333pt;}
.y5_c02027{bottom:948.320000pt;}
.y1_c02027{bottom:996.800000pt;}
.h3_c02027{height:20.000000pt;}
.h2_c02027{height:43.441250pt;}
.h1_c02027{height:52.134375pt;}
.h5_c02027{height:57.787500pt;}
.h4_c02027{height:60.519362pt;}
.h6_c02027{height:62.812500pt;}
.h0_c02027{height:1056.000000pt;}
.w1_c02027{width:59.232000pt;}
.w0_c02027{width:816.000000pt;}
.x0_c02027{left:0.000000pt;}
.x3_c02027{left:14.720000pt;}
.x1_c02027{left:113.472000pt;}
.x6_c02027{left:160.666667pt;}
.x4_c02027{left:170.266667pt;}
.x5_c02027{left:194.266667pt;}
.x2_c02027{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02028 {
    display:none;
  }
  .loading-indicator_c02028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02028" -> "#page-container .classname_c02028")
 */
.pf_c02028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02028 {overflow:visible;}
  }
}
.c_c02028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02028:after { /* webkit #35443 */
  content: '';
}
.t_c02028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02028 { /* info for Javascript */
  display:none;
}
.l_c02028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02028:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02028 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02028.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02028;src:url('chunks/assets/font_ad91d24db2c6c77b21b9965d.woff2')format("woff");}.ff1_c02028{font-family:ff1_c02028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02028;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff2_c02028{font-family:ff2_c02028;line-height:0.863770;font-style:normal;font-weight: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_c02028;src:url('chunks/assets/font_6b87b1535cd7074b71e8da95.woff2')format("woff");}.ff3_c02028{font-family:ff3_c02028;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02028{vertical-align:-76.440000px;}
.v0_c02028{vertical-align:0.000000px;}
.ls3_c02028{letter-spacing:0.000000px;}
.ls1_c02028{letter-spacing:0.262080px;}
.ls2_c02028{letter-spacing:67.265280px;}
.ls0_c02028{letter-spacing:239.016000px;}
.sc__c02028{text-shadow:none;}
.sc0_c02028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02028{-webkit-text-stroke:0px transparent;}
.sc0_c02028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02028{word-spacing:0.000000px;}
._1_c02028{margin-left:-1.168805px;}
._6_c02028{width:1.307843px;}
._8_c02028{width:2.308729px;}
._4_c02028{width:3.635914px;}
._3_c02028{width:5.134130px;}
._11_c02028{width:6.348110px;}
._10_c02028{width:7.925417px;}
._9_c02028{width:9.008441px;}
._e_c02028{width:10.399812px;}
._2_c02028{width:13.290659px;}
._b_c02028{width:14.413692px;}
._a_c02028{width:15.439882px;}
._14_c02028{width:18.063317px;}
._13_c02028{width:19.318764px;}
._15_c02028{width:20.893884px;}
._c_c02028{width:22.124425px;}
._d_c02028{width:23.351653px;}
._f_c02028{width:25.829957px;}
._7_c02028{width:26.854888px;}
._5_c02028{width:27.859153px;}
._12_c02028{width:32.748592px;}
._0_c02028{width:1500.936000px;}
.fc1_c02028{color:rgb(192,80,77);}
.fc0_c02028{color:rgb(0,0,0);}
.fs0_c02028{font-size:59.760000px;}
.fs1_c02028{font-size:66.240000px;}
.fs2_c02028{font-size:72.000000px;}
.y0_c02028{bottom:0.000000px;}
.y4_c02028{bottom:4.680000px;}
.y3_c02028{bottom:41.796000px;}
.y2_c02028{bottom:75.456000px;}
.y28_c02028{bottom:135.576000px;}
.y27_c02028{bottom:155.910000px;}
.y26_c02028{bottom:174.810000px;}
.y25_c02028{bottom:193.890000px;}
.y24_c02028{bottom:231.870000px;}
.y23_c02028{bottom:250.770000px;}
.y22_c02028{bottom:288.795000px;}
.y21_c02028{bottom:326.775000px;}
.y20_c02028{bottom:345.675000px;}
.y1f_c02028{bottom:364.575000px;}
.y1e_c02028{bottom:402.555000px;}
.y1d_c02028{bottom:421.635000px;}
.y1c_c02028{bottom:459.615000px;}
.y1b_c02028{bottom:478.515000px;}
.y1a_c02028{bottom:497.415000px;}
.y19_c02028{bottom:535.425000px;}
.y18_c02028{bottom:554.505000px;}
.y17_c02028{bottom:592.305000px;}
.y16_c02028{bottom:611.385000px;}
.y15_c02028{bottom:649.365000px;}
.y14_c02028{bottom:668.265000px;}
.y13_c02028{bottom:706.245000px;}
.y12_c02028{bottom:725.145000px;}
.y11_c02028{bottom:744.225000px;}
.y10_c02028{bottom:763.125000px;}
.yf_c02028{bottom:801.150000px;}
.ye_c02028{bottom:820.050000px;}
.yd_c02028{bottom:839.130000px;}
.yc_c02028{bottom:877.110000px;}
.yb_c02028{bottom:896.010000px;}
.ya_c02028{bottom:914.910000px;}
.y9_c02028{bottom:952.890000px;}
.y8_c02028{bottom:971.970000px;}
.y7_c02028{bottom:1009.770000px;}
.y6_c02028{bottom:1028.850000px;}
.y5_c02028{bottom:1066.860000px;}
.y1_c02028{bottom:1121.400000px;}
.h3_c02028{height:22.500000px;}
.h2_c02028{height:48.871406px;}
.h1_c02028{height:58.651172px;}
.h4_c02028{height:65.010937px;}
.h5_c02028{height:70.664062px;}
.h0_c02028{height:1188.000000px;}
.w1_c02028{width:66.636000px;}
.w0_c02028{width:918.000000px;}
.x0_c02028{left:0.000000px;}
.x3_c02028{left:16.560000px;}
.x1_c02028{left:127.656000px;}
.x4_c02028{left:218.550000px;}
.x2_c02028{left:820.950000px;}
@media print{
.v1_c02028{vertical-align:-67.946667pt;}
.v0_c02028{vertical-align:0.000000pt;}
.ls3_c02028{letter-spacing:0.000000pt;}
.ls1_c02028{letter-spacing:0.232960pt;}
.ls2_c02028{letter-spacing:59.791360pt;}
.ls0_c02028{letter-spacing:212.458667pt;}
.ws0_c02028{word-spacing:0.000000pt;}
._1_c02028{margin-left:-1.038938pt;}
._6_c02028{width:1.162527pt;}
._8_c02028{width:2.052204pt;}
._4_c02028{width:3.231923pt;}
._3_c02028{width:4.563671pt;}
._11_c02028{width:5.642765pt;}
._10_c02028{width:7.044815pt;}
._9_c02028{width:8.007503pt;}
._e_c02028{width:9.244278pt;}
._2_c02028{width:11.813919pt;}
._b_c02028{width:12.812170pt;}
._a_c02028{width:13.724339pt;}
._14_c02028{width:16.056282pt;}
._13_c02028{width:17.172234pt;}
._15_c02028{width:18.572342pt;}
._c_c02028{width:19.666156pt;}
._d_c02028{width:20.757025pt;}
._f_c02028{width:22.959962pt;}
._7_c02028{width:23.871012pt;}
._5_c02028{width:24.763692pt;}
._12_c02028{width:29.109860pt;}
._0_c02028{width:1334.165333pt;}
.fs0_c02028{font-size:53.120000pt;}
.fs1_c02028{font-size:58.880000pt;}
.fs2_c02028{font-size:64.000000pt;}
.y0_c02028{bottom:0.000000pt;}
.y4_c02028{bottom:4.160000pt;}
.y3_c02028{bottom:37.152000pt;}
.y2_c02028{bottom:67.072000pt;}
.y28_c02028{bottom:120.512000pt;}
.y27_c02028{bottom:138.586667pt;}
.y26_c02028{bottom:155.386667pt;}
.y25_c02028{bottom:172.346667pt;}
.y24_c02028{bottom:206.106667pt;}
.y23_c02028{bottom:222.906667pt;}
.y22_c02028{bottom:256.706667pt;}
.y21_c02028{bottom:290.466667pt;}
.y20_c02028{bottom:307.266667pt;}
.y1f_c02028{bottom:324.066667pt;}
.y1e_c02028{bottom:357.826667pt;}
.y1d_c02028{bottom:374.786667pt;}
.y1c_c02028{bottom:408.546667pt;}
.y1b_c02028{bottom:425.346667pt;}
.y1a_c02028{bottom:442.146667pt;}
.y19_c02028{bottom:475.933333pt;}
.y18_c02028{bottom:492.893333pt;}
.y17_c02028{bottom:526.493333pt;}
.y16_c02028{bottom:543.453333pt;}
.y15_c02028{bottom:577.213333pt;}
.y14_c02028{bottom:594.013333pt;}
.y13_c02028{bottom:627.773333pt;}
.y12_c02028{bottom:644.573333pt;}
.y11_c02028{bottom:661.533333pt;}
.y10_c02028{bottom:678.333333pt;}
.yf_c02028{bottom:712.133333pt;}
.ye_c02028{bottom:728.933333pt;}
.yd_c02028{bottom:745.893333pt;}
.yc_c02028{bottom:779.653333pt;}
.yb_c02028{bottom:796.453333pt;}
.ya_c02028{bottom:813.253333pt;}
.y9_c02028{bottom:847.013333pt;}
.y8_c02028{bottom:863.973333pt;}
.y7_c02028{bottom:897.573333pt;}
.y6_c02028{bottom:914.533333pt;}
.y5_c02028{bottom:948.320000pt;}
.y1_c02028{bottom:996.800000pt;}
.h3_c02028{height:20.000000pt;}
.h2_c02028{height:43.441250pt;}
.h1_c02028{height:52.134375pt;}
.h4_c02028{height:57.787500pt;}
.h5_c02028{height:62.812500pt;}
.h0_c02028{height:1056.000000pt;}
.w1_c02028{width:59.232000pt;}
.w0_c02028{width:816.000000pt;}
.x0_c02028{left:0.000000pt;}
.x3_c02028{left:14.720000pt;}
.x1_c02028{left:113.472000pt;}
.x4_c02028{left:194.266667pt;}
.x2_c02028{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02029 {
    display:none;
  }
  .loading-indicator_c02029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02029 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02029 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02029" -> "#page-container .classname_c02029")
 */
.pf_c02029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02029 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02029 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02029 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02029 {overflow:visible;}
  }
}
.c_c02029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02029 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02029:after { /* webkit #35443 */
  content: '';
}
.t_c02029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02029 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02029 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02029 { /* info for Javascript */
  display:none;
}
.l_c02029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02029:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02029 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02029.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02029;src:url('chunks/assets/font_ae3489410e5e56c6d6832618.woff2')format("woff");}.ff1_c02029{font-family:ff1_c02029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02029;src:url('chunks/assets/font_12a0079209aaa9bfa61662db.woff2')format("woff");}.ff2_c02029{font-family:ff2_c02029;line-height:0.863770;font-style:normal;font-weight: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_c02029;src:url('chunks/assets/font_6e59c94b200d14ced9a5433c.woff2')format("woff");}.ff3_c02029{font-family:ff3_c02029;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02029{vertical-align:-75.720000px;}
.v0_c02029{vertical-align:0.000000px;}
.ls2_c02029{letter-spacing:0.000000px;}
.ls0_c02029{letter-spacing:39.905280px;}
.ls1_c02029{letter-spacing:239.016000px;}
.sc__c02029{text-shadow:none;}
.sc0_c02029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02029{-webkit-text-stroke:0px transparent;}
.sc0_c02029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02029{word-spacing:0.000000px;}
._13_c02029{margin-left:-2.185788px;}
._2_c02029{margin-left:-1.008000px;}
._3_c02029{width:1.164024px;}
._1_c02029{width:2.736000px;}
._7_c02029{width:4.104179px;}
._5_c02029{width:5.256000px;}
._6_c02029{width:6.336000px;}
._14_c02029{width:7.816188px;}
._17_c02029{width:8.942400px;}
._18_c02029{width:10.215625px;}
._12_c02029{width:13.446654px;}
._19_c02029{width:15.235796px;}
._10_c02029{width:18.892734px;}
._16_c02029{width:21.660612px;}
._15_c02029{width:23.184000px;}
._11_c02029{width:25.141573px;}
._a_c02029{width:26.230775px;}
._d_c02029{width:27.953412px;}
._1a_c02029{width:29.542841px;}
._4_c02029{width:35.112024px;}
._c_c02029{width:36.365959px;}
._b_c02029{width:37.420842px;}
._1b_c02029{width:40.301951px;}
._8_c02029{width:41.731200px;}
._9_c02029{width:43.003895px;}
._e_c02029{width:49.614025px;}
._f_c02029{width:50.886654px;}
._0_c02029{width:1500.936000px;}
.fc1_c02029{color:rgb(192,80,77);}
.fc0_c02029{color:rgb(0,0,0);}
.fs0_c02029{font-size:59.760000px;}
.fs1_c02029{font-size:66.240000px;}
.fs2_c02029{font-size:72.000000px;}
.y0_c02029{bottom:0.000000px;}
.y4_c02029{bottom:4.680000px;}
.y3_c02029{bottom:41.796000px;}
.y2_c02029{bottom:75.456000px;}
.y2e_c02029{bottom:114.516000px;}
.y2d_c02029{bottom:133.416000px;}
.y2c_c02029{bottom:171.390000px;}
.y2b_c02029{bottom:190.470000px;}
.y2a_c02029{bottom:228.270000px;}
.y29_c02029{bottom:247.350000px;}
.y28_c02029{bottom:266.250000px;}
.y27_c02029{bottom:304.275000px;}
.y26_c02029{bottom:323.355000px;}
.y25_c02029{bottom:342.255000px;}
.y24_c02029{bottom:361.155000px;}
.y23_c02029{bottom:380.235000px;}
.y22_c02029{bottom:399.135000px;}
.y21_c02029{bottom:437.115000px;}
.y20_c02029{bottom:456.015000px;}
.y1f_c02029{bottom:493.995000px;}
.y1e_c02029{bottom:513.075000px;}
.y1d_c02029{bottom:550.905000px;}
.y1c_c02029{bottom:569.985000px;}
.y1b_c02029{bottom:588.885000px;}
.y1a_c02029{bottom:607.965000px;}
.y19_c02029{bottom:626.865000px;}
.y18_c02029{bottom:645.765000px;}
.y17_c02029{bottom:664.845000px;}
.y16_c02029{bottom:683.745000px;}
.y15_c02029{bottom:702.825000px;}
.y14_c02029{bottom:721.725000px;}
.y13_c02029{bottom:740.625000px;}
.y12_c02029{bottom:759.705000px;}
.y11_c02029{bottom:778.605000px;}
.y10_c02029{bottom:797.730000px;}
.yf_c02029{bottom:816.630000px;}
.ye_c02029{bottom:835.710000px;}
.yd_c02029{bottom:854.610000px;}
.yc_c02029{bottom:873.510000px;}
.yb_c02029{bottom:892.590000px;}
.ya_c02029{bottom:911.490000px;}
.y9_c02029{bottom:941.190000px;}
.y8_c02029{bottom:972.150000px;}
.y7_c02029{bottom:1003.290000px;}
.y6_c02029{bottom:1034.250000px;}
.y5_c02029{bottom:1065.420000px;}
.y1_c02029{bottom:1121.400000px;}
.h3_c02029{height:22.500000px;}
.h2_c02029{height:48.871406px;}
.h1_c02029{height:58.651172px;}
.h6_c02029{height:65.010937px;}
.h5_c02029{height:68.084282px;}
.h4_c02029{height:70.664062px;}
.h0_c02029{height:1188.000000px;}
.w1_c02029{width:66.636000px;}
.w0_c02029{width:918.000000px;}
.x0_c02029{left:0.000000px;}
.x3_c02029{left:16.560000px;}
.x1_c02029{left:127.656000px;}
.x4_c02029{left:180.750000px;}
.x5_c02029{left:191.550000px;}
.x6_c02029{left:218.550000px;}
.x2_c02029{left:820.950000px;}
@media print{
.v1_c02029{vertical-align:-67.306667pt;}
.v0_c02029{vertical-align:0.000000pt;}
.ls2_c02029{letter-spacing:0.000000pt;}
.ls0_c02029{letter-spacing:35.471360pt;}
.ls1_c02029{letter-spacing:212.458667pt;}
.ws0_c02029{word-spacing:0.000000pt;}
._13_c02029{margin-left:-1.942922pt;}
._2_c02029{margin-left:-0.896000pt;}
._3_c02029{width:1.034688pt;}
._1_c02029{width:2.432000pt;}
._7_c02029{width:3.648159pt;}
._5_c02029{width:4.672000pt;}
._6_c02029{width:5.632000pt;}
._14_c02029{width:6.947722pt;}
._17_c02029{width:7.948800pt;}
._18_c02029{width:9.080556pt;}
._12_c02029{width:11.952581pt;}
._19_c02029{width:13.542930pt;}
._10_c02029{width:16.793541pt;}
._16_c02029{width:19.253878pt;}
._15_c02029{width:20.608000pt;}
._11_c02029{width:22.348065pt;}
._a_c02029{width:23.316244pt;}
._d_c02029{width:24.847478pt;}
._1a_c02029{width:26.260303pt;}
._4_c02029{width:31.210688pt;}
._c_c02029{width:32.325297pt;}
._b_c02029{width:33.262971pt;}
._1b_c02029{width:35.823956pt;}
._8_c02029{width:37.094400pt;}
._9_c02029{width:38.225684pt;}
._e_c02029{width:44.101356pt;}
._f_c02029{width:45.232581pt;}
._0_c02029{width:1334.165333pt;}
.fs0_c02029{font-size:53.120000pt;}
.fs1_c02029{font-size:58.880000pt;}
.fs2_c02029{font-size:64.000000pt;}
.y0_c02029{bottom:0.000000pt;}
.y4_c02029{bottom:4.160000pt;}
.y3_c02029{bottom:37.152000pt;}
.y2_c02029{bottom:67.072000pt;}
.y2e_c02029{bottom:101.792000pt;}
.y2d_c02029{bottom:118.592000pt;}
.y2c_c02029{bottom:152.346667pt;}
.y2b_c02029{bottom:169.306667pt;}
.y2a_c02029{bottom:202.906667pt;}
.y29_c02029{bottom:219.866667pt;}
.y28_c02029{bottom:236.666667pt;}
.y27_c02029{bottom:270.466667pt;}
.y26_c02029{bottom:287.426667pt;}
.y25_c02029{bottom:304.226667pt;}
.y24_c02029{bottom:321.026667pt;}
.y23_c02029{bottom:337.986667pt;}
.y22_c02029{bottom:354.786667pt;}
.y21_c02029{bottom:388.546667pt;}
.y20_c02029{bottom:405.346667pt;}
.y1f_c02029{bottom:439.106667pt;}
.y1e_c02029{bottom:456.066667pt;}
.y1d_c02029{bottom:489.693333pt;}
.y1c_c02029{bottom:506.653333pt;}
.y1b_c02029{bottom:523.453333pt;}
.y1a_c02029{bottom:540.413333pt;}
.y19_c02029{bottom:557.213333pt;}
.y18_c02029{bottom:574.013333pt;}
.y17_c02029{bottom:590.973333pt;}
.y16_c02029{bottom:607.773333pt;}
.y15_c02029{bottom:624.733333pt;}
.y14_c02029{bottom:641.533333pt;}
.y13_c02029{bottom:658.333333pt;}
.y12_c02029{bottom:675.293333pt;}
.y11_c02029{bottom:692.093333pt;}
.y10_c02029{bottom:709.093333pt;}
.yf_c02029{bottom:725.893333pt;}
.ye_c02029{bottom:742.853333pt;}
.yd_c02029{bottom:759.653333pt;}
.yc_c02029{bottom:776.453333pt;}
.yb_c02029{bottom:793.413333pt;}
.ya_c02029{bottom:810.213333pt;}
.y9_c02029{bottom:836.613333pt;}
.y8_c02029{bottom:864.133333pt;}
.y7_c02029{bottom:891.813333pt;}
.y6_c02029{bottom:919.333333pt;}
.y5_c02029{bottom:947.040000pt;}
.y1_c02029{bottom:996.800000pt;}
.h3_c02029{height:20.000000pt;}
.h2_c02029{height:43.441250pt;}
.h1_c02029{height:52.134375pt;}
.h6_c02029{height:57.787500pt;}
.h5_c02029{height:60.519362pt;}
.h4_c02029{height:62.812500pt;}
.h0_c02029{height:1056.000000pt;}
.w1_c02029{width:59.232000pt;}
.w0_c02029{width:816.000000pt;}
.x0_c02029{left:0.000000pt;}
.x3_c02029{left:14.720000pt;}
.x1_c02029{left:113.472000pt;}
.x4_c02029{left:160.666667pt;}
.x5_c02029{left:170.266667pt;}
.x6_c02029{left:194.266667pt;}
.x2_c02029{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02030 {
    display:none;
  }
  .loading-indicator_c02030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02030 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02030 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02030" -> "#page-container .classname_c02030")
 */
.pf_c02030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02030 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02030 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02030 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02030 {overflow:visible;}
  }
}
.c_c02030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02030 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02030:after { /* webkit #35443 */
  content: '';
}
.t_c02030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02030 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02030 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02030 { /* info for Javascript */
  display:none;
}
.l_c02030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02030:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02030 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02030.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02030;src:url('chunks/assets/font_9d5d23c5830546509d7a4575.woff2')format("woff");}.ff1_c02030{font-family:ff1_c02030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02030;src:url('chunks/assets/font_bb01a55bf8bdc0a089d519e3.woff2')format("woff");}.ff2_c02030{font-family:ff2_c02030;line-height:0.863770;font-style:normal;font-weight: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_c02030;src:url('chunks/assets/font_8fd60e115d692b55b1b762fd.woff2')format("woff");}.ff3_c02030{font-family:ff3_c02030;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02030{vertical-align:-76.440000px;}
.v0_c02030{vertical-align:0.000000px;}
.ls3_c02030{letter-spacing:0.000000px;}
.ls2_c02030{letter-spacing:6.785280px;}
.ls1_c02030{letter-spacing:39.905280px;}
.ls0_c02030{letter-spacing:239.016000px;}
.sc__c02030{text-shadow:none;}
.sc0_c02030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02030{-webkit-text-stroke:0px transparent;}
.sc0_c02030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02030{word-spacing:0.000000px;}
._2_c02030{margin-left:-1.324204px;}
._3_c02030{width:1.058979px;}
._4_c02030{width:2.782212px;}
._7_c02030{width:3.906769px;}
._1_c02030{width:5.828988px;}
._6_c02030{width:7.816188px;}
._5_c02030{width:10.001975px;}
._8_c02030{width:13.680000px;}
._b_c02030{width:15.660588px;}
._a_c02030{width:22.204204px;}
._9_c02030{width:23.472000px;}
._0_c02030{width:1500.936000px;}
.fc1_c02030{color:rgb(192,80,77);}
.fc0_c02030{color:rgb(0,0,0);}
.fs0_c02030{font-size:59.760000px;}
.fs1_c02030{font-size:66.240000px;}
.fs2_c02030{font-size:72.000000px;}
.y0_c02030{bottom:0.000000px;}
.y4_c02030{bottom:4.680000px;}
.y3_c02030{bottom:41.796000px;}
.y2_c02030{bottom:75.456000px;}
.y24_c02030{bottom:149.256000px;}
.y23_c02030{bottom:180.390000px;}
.y22_c02030{bottom:211.350000px;}
.y21_c02030{bottom:242.490000px;}
.y20_c02030{bottom:273.495000px;}
.y1f_c02030{bottom:304.635000px;}
.y1e_c02030{bottom:335.595000px;}
.y1d_c02030{bottom:366.735000px;}
.y1c_c02030{bottom:397.695000px;}
.y1b_c02030{bottom:428.835000px;}
.y1a_c02030{bottom:459.795000px;}
.y19_c02030{bottom:490.935000px;}
.y18_c02030{bottom:521.895000px;}
.y17_c02030{bottom:553.065000px;}
.y16_c02030{bottom:592.305000px;}
.y15_c02030{bottom:611.385000px;}
.y14_c02030{bottom:649.365000px;}
.y13_c02030{bottom:668.265000px;}
.y12_c02030{bottom:706.245000px;}
.y11_c02030{bottom:725.145000px;}
.y10_c02030{bottom:763.125000px;}
.yf_c02030{bottom:782.025000px;}
.ye_c02030{bottom:801.150000px;}
.yd_c02030{bottom:839.130000px;}
.yc_c02030{bottom:858.030000px;}
.yb_c02030{bottom:896.010000px;}
.ya_c02030{bottom:933.990000px;}
.y9_c02030{bottom:952.890000px;}
.y8_c02030{bottom:990.870000px;}
.y7_c02030{bottom:1009.770000px;}
.y6_c02030{bottom:1028.850000px;}
.y5_c02030{bottom:1066.860000px;}
.y1_c02030{bottom:1121.400000px;}
.h3_c02030{height:22.500000px;}
.h2_c02030{height:48.871406px;}
.h1_c02030{height:58.651172px;}
.h4_c02030{height:65.010937px;}
.h5_c02030{height:70.664062px;}
.h0_c02030{height:1188.000000px;}
.w1_c02030{width:66.636000px;}
.w0_c02030{width:918.000000px;}
.x0_c02030{left:0.000000px;}
.x3_c02030{left:16.560000px;}
.x1_c02030{left:127.656000px;}
.x5_c02030{left:180.750000px;}
.x4_c02030{left:218.550000px;}
.x2_c02030{left:820.950000px;}
@media print{
.v1_c02030{vertical-align:-67.946667pt;}
.v0_c02030{vertical-align:0.000000pt;}
.ls3_c02030{letter-spacing:0.000000pt;}
.ls2_c02030{letter-spacing:6.031360pt;}
.ls1_c02030{letter-spacing:35.471360pt;}
.ls0_c02030{letter-spacing:212.458667pt;}
.ws0_c02030{word-spacing:0.000000pt;}
._2_c02030{margin-left:-1.177070pt;}
._3_c02030{width:0.941315pt;}
._4_c02030{width:2.473078pt;}
._7_c02030{width:3.472684pt;}
._1_c02030{width:5.181322pt;}
._6_c02030{width:6.947722pt;}
._5_c02030{width:8.890644pt;}
._8_c02030{width:12.160000pt;}
._b_c02030{width:13.920522pt;}
._a_c02030{width:19.737070pt;}
._9_c02030{width:20.864000pt;}
._0_c02030{width:1334.165333pt;}
.fs0_c02030{font-size:53.120000pt;}
.fs1_c02030{font-size:58.880000pt;}
.fs2_c02030{font-size:64.000000pt;}
.y0_c02030{bottom:0.000000pt;}
.y4_c02030{bottom:4.160000pt;}
.y3_c02030{bottom:37.152000pt;}
.y2_c02030{bottom:67.072000pt;}
.y24_c02030{bottom:132.672000pt;}
.y23_c02030{bottom:160.346667pt;}
.y22_c02030{bottom:187.866667pt;}
.y21_c02030{bottom:215.546667pt;}
.y20_c02030{bottom:243.106667pt;}
.y1f_c02030{bottom:270.786667pt;}
.y1e_c02030{bottom:298.306667pt;}
.y1d_c02030{bottom:325.986667pt;}
.y1c_c02030{bottom:353.506667pt;}
.y1b_c02030{bottom:381.186667pt;}
.y1a_c02030{bottom:408.706667pt;}
.y19_c02030{bottom:436.386667pt;}
.y18_c02030{bottom:463.906667pt;}
.y17_c02030{bottom:491.613333pt;}
.y16_c02030{bottom:526.493333pt;}
.y15_c02030{bottom:543.453333pt;}
.y14_c02030{bottom:577.213333pt;}
.y13_c02030{bottom:594.013333pt;}
.y12_c02030{bottom:627.773333pt;}
.y11_c02030{bottom:644.573333pt;}
.y10_c02030{bottom:678.333333pt;}
.yf_c02030{bottom:695.133333pt;}
.ye_c02030{bottom:712.133333pt;}
.yd_c02030{bottom:745.893333pt;}
.yc_c02030{bottom:762.693333pt;}
.yb_c02030{bottom:796.453333pt;}
.ya_c02030{bottom:830.213333pt;}
.y9_c02030{bottom:847.013333pt;}
.y8_c02030{bottom:880.773333pt;}
.y7_c02030{bottom:897.573333pt;}
.y6_c02030{bottom:914.533333pt;}
.y5_c02030{bottom:948.320000pt;}
.y1_c02030{bottom:996.800000pt;}
.h3_c02030{height:20.000000pt;}
.h2_c02030{height:43.441250pt;}
.h1_c02030{height:52.134375pt;}
.h4_c02030{height:57.787500pt;}
.h5_c02030{height:62.812500pt;}
.h0_c02030{height:1056.000000pt;}
.w1_c02030{width:59.232000pt;}
.w0_c02030{width:816.000000pt;}
.x0_c02030{left:0.000000pt;}
.x3_c02030{left:14.720000pt;}
.x1_c02030{left:113.472000pt;}
.x5_c02030{left:160.666667pt;}
.x4_c02030{left:194.266667pt;}
.x2_c02030{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02031 {
    display:none;
  }
  .loading-indicator_c02031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02031" -> "#page-container .classname_c02031")
 */
.pf_c02031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02031 {overflow:visible;}
  }
}
.c_c02031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02031:after { /* webkit #35443 */
  content: '';
}
.t_c02031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02031 { /* info for Javascript */
  display:none;
}
.l_c02031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02031:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02031 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02031.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02031;src:url('chunks/assets/font_515f8a4ef49e1215c4bad87c.woff2')format("woff");}.ff1_c02031{font-family:ff1_c02031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02031;src:url('chunks/assets/font_4b8f9dfaa719d92e24f86f91.woff2')format("woff");}.ff2_c02031{font-family:ff2_c02031;line-height:0.863770;font-style:normal;font-weight: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_c02031;src:url('chunks/assets/font_405a641d82180fb00767cca5.woff2')format("woff");}.ff3_c02031{font-family:ff3_c02031;line-height:1.112305;font-style:normal;font-weight: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_c02031;src:url('chunks/assets/font_20d5d3c9dcbf139e9f51dd88.woff2')format("woff");}.ff4_c02031{font-family:ff4_c02031;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02031{vertical-align:0.000000px;}
.ls1_c02031{letter-spacing:0.000000px;}
.ls2_c02031{letter-spacing:0.144000px;}
.ls0_c02031{letter-spacing:39.905280px;}
.sc__c02031{text-shadow:none;}
.sc0_c02031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02031{-webkit-text-stroke:0px transparent;}
.sc0_c02031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02031{word-spacing:0.000000px;}
._6_c02031{margin-left:-1.656000px;}
._3_c02031{width:1.224000px;}
._9_c02031{width:2.520000px;}
._4_c02031{width:4.536000px;}
._e_c02031{width:5.544000px;}
._5_c02031{width:6.552000px;}
._7_c02031{width:7.920000px;}
._8_c02031{width:9.851976px;}
._1_c02031{width:11.736000px;}
._2_c02031{width:12.816000px;}
._b_c02031{width:13.896000px;}
._c_c02031{width:15.132024px;}
._f_c02031{width:19.224000px;}
._10_c02031{width:20.808000px;}
._d_c02031{width:25.560000px;}
._a_c02031{width:26.712000px;}
._12_c02031{width:28.417225px;}
._11_c02031{width:29.675454px;}
._13_c02031{width:32.656254px;}
._14_c02031{width:34.114196px;}
._16_c02031{width:35.240475px;}
._15_c02031{width:36.497975px;}
._0_c02031{width:1500.936000px;}
.fc1_c02031{color:rgb(192,80,77);}
.fc0_c02031{color:rgb(0,0,0);}
.fs0_c02031{font-size:59.760000px;}
.fs1_c02031{font-size:66.240000px;}
.fs2_c02031{font-size:72.000000px;}
.y0_c02031{bottom:0.000000px;}
.y4_c02031{bottom:4.680000px;}
.y3_c02031{bottom:41.796000px;}
.y2_c02031{bottom:75.456000px;}
.y28_c02031{bottom:112.716000px;}
.y27_c02031{bottom:131.796000px;}
.y26_c02031{bottom:150.690000px;}
.y25_c02031{bottom:169.770000px;}
.y24_c02031{bottom:188.670000px;}
.y23_c02031{bottom:207.570000px;}
.y22_c02031{bottom:226.650000px;}
.y21_c02031{bottom:245.550000px;}
.y20_c02031{bottom:264.630000px;}
.y1f_c02031{bottom:283.575000px;}
.y1e_c02031{bottom:302.655000px;}
.y1d_c02031{bottom:321.555000px;}
.y1c_c02031{bottom:351.075000px;}
.y1b_c02031{bottom:382.215000px;}
.y1a_c02031{bottom:413.175000px;}
.y19_c02031{bottom:444.315000px;}
.y18_c02031{bottom:475.275000px;}
.y17_c02031{bottom:506.415000px;}
.y16_c02031{bottom:537.405000px;}
.y15_c02031{bottom:568.545000px;}
.y14_c02031{bottom:599.505000px;}
.y13_c02031{bottom:630.645000px;}
.y12_c02031{bottom:661.605000px;}
.y11_c02031{bottom:692.745000px;}
.y10_c02031{bottom:723.705000px;}
.yf_c02031{bottom:754.845000px;}
.ye_c02031{bottom:785.805000px;}
.yd_c02031{bottom:816.990000px;}
.yc_c02031{bottom:847.950000px;}
.yb_c02031{bottom:879.090000px;}
.ya_c02031{bottom:910.050000px;}
.y9_c02031{bottom:941.190000px;}
.y8_c02031{bottom:972.150000px;}
.y7_c02031{bottom:1003.290000px;}
.y6_c02031{bottom:1034.250000px;}
.y5_c02031{bottom:1065.420000px;}
.y1_c02031{bottom:1121.400000px;}
.h3_c02031{height:22.500000px;}
.h2_c02031{height:48.871406px;}
.h1_c02031{height:58.651172px;}
.h6_c02031{height:65.010937px;}
.h5_c02031{height:68.084282px;}
.h4_c02031{height:70.664062px;}
.h0_c02031{height:1188.000000px;}
.w1_c02031{width:66.636000px;}
.w0_c02031{width:918.000000px;}
.x0_c02031{left:0.000000px;}
.x3_c02031{left:16.560000px;}
.x1_c02031{left:127.656000px;}
.x4_c02031{left:180.750000px;}
.x5_c02031{left:191.550000px;}
.x6_c02031{left:218.550000px;}
.x2_c02031{left:820.950000px;}
@media print{
.v0_c02031{vertical-align:0.000000pt;}
.ls1_c02031{letter-spacing:0.000000pt;}
.ls2_c02031{letter-spacing:0.128000pt;}
.ls0_c02031{letter-spacing:35.471360pt;}
.ws0_c02031{word-spacing:0.000000pt;}
._6_c02031{margin-left:-1.472000pt;}
._3_c02031{width:1.088000pt;}
._9_c02031{width:2.240000pt;}
._4_c02031{width:4.032000pt;}
._e_c02031{width:4.928000pt;}
._5_c02031{width:5.824000pt;}
._7_c02031{width:7.040000pt;}
._8_c02031{width:8.757312pt;}
._1_c02031{width:10.432000pt;}
._2_c02031{width:11.392000pt;}
._b_c02031{width:12.352000pt;}
._c_c02031{width:13.450688pt;}
._f_c02031{width:17.088000pt;}
._10_c02031{width:18.496000pt;}
._d_c02031{width:22.720000pt;}
._a_c02031{width:23.744000pt;}
._12_c02031{width:25.259756pt;}
._11_c02031{width:26.378181pt;}
._13_c02031{width:29.027781pt;}
._14_c02031{width:30.323730pt;}
._16_c02031{width:31.324867pt;}
._15_c02031{width:32.442644pt;}
._0_c02031{width:1334.165333pt;}
.fs0_c02031{font-size:53.120000pt;}
.fs1_c02031{font-size:58.880000pt;}
.fs2_c02031{font-size:64.000000pt;}
.y0_c02031{bottom:0.000000pt;}
.y4_c02031{bottom:4.160000pt;}
.y3_c02031{bottom:37.152000pt;}
.y2_c02031{bottom:67.072000pt;}
.y28_c02031{bottom:100.192000pt;}
.y27_c02031{bottom:117.152000pt;}
.y26_c02031{bottom:133.946667pt;}
.y25_c02031{bottom:150.906667pt;}
.y24_c02031{bottom:167.706667pt;}
.y23_c02031{bottom:184.506667pt;}
.y22_c02031{bottom:201.466667pt;}
.y21_c02031{bottom:218.266667pt;}
.y20_c02031{bottom:235.226667pt;}
.y1f_c02031{bottom:252.066667pt;}
.y1e_c02031{bottom:269.026667pt;}
.y1d_c02031{bottom:285.826667pt;}
.y1c_c02031{bottom:312.066667pt;}
.y1b_c02031{bottom:339.746667pt;}
.y1a_c02031{bottom:367.266667pt;}
.y19_c02031{bottom:394.946667pt;}
.y18_c02031{bottom:422.466667pt;}
.y17_c02031{bottom:450.146667pt;}
.y16_c02031{bottom:477.693333pt;}
.y15_c02031{bottom:505.373333pt;}
.y14_c02031{bottom:532.893333pt;}
.y13_c02031{bottom:560.573333pt;}
.y12_c02031{bottom:588.093333pt;}
.y11_c02031{bottom:615.773333pt;}
.y10_c02031{bottom:643.293333pt;}
.yf_c02031{bottom:670.973333pt;}
.ye_c02031{bottom:698.493333pt;}
.yd_c02031{bottom:726.213333pt;}
.yc_c02031{bottom:753.733333pt;}
.yb_c02031{bottom:781.413333pt;}
.ya_c02031{bottom:808.933333pt;}
.y9_c02031{bottom:836.613333pt;}
.y8_c02031{bottom:864.133333pt;}
.y7_c02031{bottom:891.813333pt;}
.y6_c02031{bottom:919.333333pt;}
.y5_c02031{bottom:947.040000pt;}
.y1_c02031{bottom:996.800000pt;}
.h3_c02031{height:20.000000pt;}
.h2_c02031{height:43.441250pt;}
.h1_c02031{height:52.134375pt;}
.h6_c02031{height:57.787500pt;}
.h5_c02031{height:60.519362pt;}
.h4_c02031{height:62.812500pt;}
.h0_c02031{height:1056.000000pt;}
.w1_c02031{width:59.232000pt;}
.w0_c02031{width:816.000000pt;}
.x0_c02031{left:0.000000pt;}
.x3_c02031{left:14.720000pt;}
.x1_c02031{left:113.472000pt;}
.x4_c02031{left:160.666667pt;}
.x5_c02031{left:170.266667pt;}
.x6_c02031{left:194.266667pt;}
.x2_c02031{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02032 {
    display:none;
  }
  .loading-indicator_c02032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02032 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02032 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02032" -> "#page-container .classname_c02032")
 */
.pf_c02032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02032 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02032 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02032 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02032 {overflow:visible;}
  }
}
.c_c02032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02032 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02032:after { /* webkit #35443 */
  content: '';
}
.t_c02032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02032 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02032 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02032 { /* info for Javascript */
  display:none;
}
.l_c02032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02032:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02032 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02032.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02032;src:url('chunks/assets/font_b8fdb40bc8247828507bdf9a.woff2')format("woff");}.ff1_c02032{font-family:ff1_c02032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02032;src:url('chunks/assets/font_643595a65141043e8757fef3.woff2')format("woff");}.ff2_c02032{font-family:ff2_c02032;line-height:0.863770;font-style:normal;font-weight: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_c02032;src:url('chunks/assets/font_5d30a1664908357e29cbb274.woff2')format("woff");}.ff3_c02032{font-family:ff3_c02032;line-height:1.402354;font-style:normal;font-weight: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_c02032;src:url('chunks/assets/font_157861af1d4f737f0e2adc6d.woff2')format("woff");}.ff4_c02032{font-family:ff4_c02032;line-height:1.311035;font-style:normal;font-weight: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_c02032;src:url('chunks/assets/font_9fd1ad37266b53d23a7241b6.woff2')format("woff");}.ff5_c02032{font-family:ff5_c02032;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02032{vertical-align:-77.040000px;}
.v1_c02032{vertical-align:-75.600000px;}
.v0_c02032{vertical-align:0.000000px;}
.ls4_c02032{letter-spacing:-1.440000px;}
.ls3_c02032{letter-spacing:0.000000px;}
.ls2_c02032{letter-spacing:6.785280px;}
.ls0_c02032{letter-spacing:39.905280px;}
.ls1_c02032{letter-spacing:239.016000px;}
.sc__c02032{text-shadow:none;}
.sc0_c02032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02032{-webkit-text-stroke:0px transparent;}
.sc0_c02032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02032{word-spacing:0.000000px;}
._2_c02032{margin-left:-1.258825px;}
._5_c02032{width:1.390841px;}
._1_c02032{width:2.649600px;}
._b_c02032{width:3.775812px;}
._c_c02032{width:5.697037px;}
._f_c02032{width:6.766946px;}
._8_c02032{width:7.882891px;}
._9_c02032{width:8.940876px;}
._10_c02032{width:11.459454px;}
._4_c02032{width:13.447780px;}
._3_c02032{width:14.771454px;}
._a_c02032{width:18.084116px;}
._e_c02032{width:23.647812px;}
._d_c02032{width:24.707454px;}
._11_c02032{width:26.562637px;}
._7_c02032{width:30.072496px;}
._6_c02032{width:31.398091px;}
._0_c02032{width:1500.936000px;}
.fc1_c02032{color:rgb(192,80,77);}
.fc0_c02032{color:rgb(0,0,0);}
.fs0_c02032{font-size:59.760000px;}
.fs1_c02032{font-size:66.240000px;}
.y0_c02032{bottom:0.000000px;}
.y4_c02032{bottom:4.680000px;}
.y3_c02032{bottom:41.796000px;}
.y2_c02032{bottom:75.456000px;}
.y2e_c02032{bottom:117.576000px;}
.y2d_c02032{bottom:136.656000px;}
.y2c_c02032{bottom:155.550000px;}
.y2b_c02032{bottom:174.450000px;}
.y2a_c02032{bottom:212.790000px;}
.y29_c02032{bottom:231.510000px;}
.y28_c02032{bottom:250.410000px;}
.y27_c02032{bottom:269.310000px;}
.y26_c02032{bottom:288.435000px;}
.y25_c02032{bottom:326.775000px;}
.y24_c02032{bottom:345.315000px;}
.y23_c02032{bottom:364.215000px;}
.y22_c02032{bottom:383.295000px;}
.y21_c02032{bottom:402.195000px;}
.y20_c02032{bottom:440.535000px;}
.y1f_c02032{bottom:459.615000px;}
.y1e_c02032{bottom:478.515000px;}
.y1d_c02032{bottom:497.415000px;}
.y1c_c02032{bottom:535.425000px;}
.y1b_c02032{bottom:554.505000px;}
.y1a_c02032{bottom:592.305000px;}
.y19_c02032{bottom:611.385000px;}
.y18_c02032{bottom:630.285000px;}
.y17_c02032{bottom:668.265000px;}
.y16_c02032{bottom:687.165000px;}
.y15_c02032{bottom:706.245000px;}
.y14_c02032{bottom:725.145000px;}
.y13_c02032{bottom:763.125000px;}
.y12_c02032{bottom:782.025000px;}
.y11_c02032{bottom:801.150000px;}
.y10_c02032{bottom:820.050000px;}
.yf_c02032{bottom:839.130000px;}
.ye_c02032{bottom:858.030000px;}
.yd_c02032{bottom:877.110000px;}
.yc_c02032{bottom:914.910000px;}
.yb_c02032{bottom:933.990000px;}
.ya_c02032{bottom:952.890000px;}
.y9_c02032{bottom:990.870000px;}
.y8_c02032{bottom:1009.770000px;}
.y7_c02032{bottom:1028.850000px;}
.y6_c02032{bottom:1047.750000px;}
.y5_c02032{bottom:1066.860000px;}
.y1_c02032{bottom:1121.400000px;}
.h3_c02032{height:22.500000px;}
.h2_c02032{height:48.871406px;}
.h1_c02032{height:58.651172px;}
.h5_c02032{height:65.010937px;}
.h6_c02032{height:66.757500px;}
.h4_c02032{height:68.084282px;}
.h0_c02032{height:1188.000000px;}
.w1_c02032{width:66.636000px;}
.w0_c02032{width:918.000000px;}
.x0_c02032{left:0.000000px;}
.x3_c02032{left:16.560000px;}
.x1_c02032{left:127.656000px;}
.x4_c02032{left:191.550000px;}
.x5_c02032{left:218.550000px;}
.x2_c02032{left:820.950000px;}
@media print{
.v2_c02032{vertical-align:-68.480000pt;}
.v1_c02032{vertical-align:-67.200000pt;}
.v0_c02032{vertical-align:0.000000pt;}
.ls4_c02032{letter-spacing:-1.280000pt;}
.ls3_c02032{letter-spacing:0.000000pt;}
.ls2_c02032{letter-spacing:6.031360pt;}
.ls0_c02032{letter-spacing:35.471360pt;}
.ls1_c02032{letter-spacing:212.458667pt;}
.ws0_c02032{word-spacing:0.000000pt;}
._2_c02032{margin-left:-1.118956pt;}
._5_c02032{width:1.236303pt;}
._1_c02032{width:2.355200pt;}
._b_c02032{width:3.356278pt;}
._c_c02032{width:5.064033pt;}
._f_c02032{width:6.015063pt;}
._8_c02032{width:7.007014pt;}
._9_c02032{width:7.947446pt;}
._10_c02032{width:10.186181pt;}
._4_c02032{width:11.953582pt;}
._3_c02032{width:13.130181pt;}
._a_c02032{width:16.074770pt;}
._e_c02032{width:21.020278pt;}
._d_c02032{width:21.962181pt;}
._11_c02032{width:23.611233pt;}
._7_c02032{width:26.731108pt;}
._6_c02032{width:27.909414pt;}
._0_c02032{width:1334.165333pt;}
.fs0_c02032{font-size:53.120000pt;}
.fs1_c02032{font-size:58.880000pt;}
.y0_c02032{bottom:0.000000pt;}
.y4_c02032{bottom:4.160000pt;}
.y3_c02032{bottom:37.152000pt;}
.y2_c02032{bottom:67.072000pt;}
.y2e_c02032{bottom:104.512000pt;}
.y2d_c02032{bottom:121.472000pt;}
.y2c_c02032{bottom:138.266667pt;}
.y2b_c02032{bottom:155.066667pt;}
.y2a_c02032{bottom:189.146667pt;}
.y29_c02032{bottom:205.786667pt;}
.y28_c02032{bottom:222.586667pt;}
.y27_c02032{bottom:239.386667pt;}
.y26_c02032{bottom:256.386667pt;}
.y25_c02032{bottom:290.466667pt;}
.y24_c02032{bottom:306.946667pt;}
.y23_c02032{bottom:323.746667pt;}
.y22_c02032{bottom:340.706667pt;}
.y21_c02032{bottom:357.506667pt;}
.y20_c02032{bottom:391.586667pt;}
.y1f_c02032{bottom:408.546667pt;}
.y1e_c02032{bottom:425.346667pt;}
.y1d_c02032{bottom:442.146667pt;}
.y1c_c02032{bottom:475.933333pt;}
.y1b_c02032{bottom:492.893333pt;}
.y1a_c02032{bottom:526.493333pt;}
.y19_c02032{bottom:543.453333pt;}
.y18_c02032{bottom:560.253333pt;}
.y17_c02032{bottom:594.013333pt;}
.y16_c02032{bottom:610.813333pt;}
.y15_c02032{bottom:627.773333pt;}
.y14_c02032{bottom:644.573333pt;}
.y13_c02032{bottom:678.333333pt;}
.y12_c02032{bottom:695.133333pt;}
.y11_c02032{bottom:712.133333pt;}
.y10_c02032{bottom:728.933333pt;}
.yf_c02032{bottom:745.893333pt;}
.ye_c02032{bottom:762.693333pt;}
.yd_c02032{bottom:779.653333pt;}
.yc_c02032{bottom:813.253333pt;}
.yb_c02032{bottom:830.213333pt;}
.ya_c02032{bottom:847.013333pt;}
.y9_c02032{bottom:880.773333pt;}
.y8_c02032{bottom:897.573333pt;}
.y7_c02032{bottom:914.533333pt;}
.y6_c02032{bottom:931.333333pt;}
.y5_c02032{bottom:948.320000pt;}
.y1_c02032{bottom:996.800000pt;}
.h3_c02032{height:20.000000pt;}
.h2_c02032{height:43.441250pt;}
.h1_c02032{height:52.134375pt;}
.h5_c02032{height:57.787500pt;}
.h6_c02032{height:59.340000pt;}
.h4_c02032{height:60.519362pt;}
.h0_c02032{height:1056.000000pt;}
.w1_c02032{width:59.232000pt;}
.w0_c02032{width:816.000000pt;}
.x0_c02032{left:0.000000pt;}
.x3_c02032{left:14.720000pt;}
.x1_c02032{left:113.472000pt;}
.x4_c02032{left:170.266667pt;}
.x5_c02032{left:194.266667pt;}
.x2_c02032{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02033 {
    display:none;
  }
  .loading-indicator_c02033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02033 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02033 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02033" -> "#page-container .classname_c02033")
 */
.pf_c02033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02033 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02033 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02033 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02033 {overflow:visible;}
  }
}
.c_c02033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02033 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02033:after { /* webkit #35443 */
  content: '';
}
.t_c02033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02033 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02033 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02033 { /* info for Javascript */
  display:none;
}
.l_c02033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02033:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02033 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02033.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02033;src:url('chunks/assets/font_aba9d88375022e30fa758def.woff2')format("woff");}.ff1_c02033{font-family:ff1_c02033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02033;src:url('chunks/assets/font_a1727b33c91d190d3bad7f0c.woff2')format("woff");}.ff2_c02033{font-family:ff2_c02033;line-height:0.863770;font-style:normal;font-weight: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_c02033;src:url('chunks/assets/font_7e3a0fd4e9f7f72968fbfc40.woff2')format("woff");}.ff3_c02033{font-family:ff3_c02033;line-height:1.402354;font-style:normal;font-weight: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_c02033;src:url('chunks/assets/font_00f8c33beda47d7bedacfcf7.woff2')format("woff");}.ff4_c02033{font-family:ff4_c02033;line-height:1.311035;font-style:normal;font-weight: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_c02033;src:url('chunks/assets/font_67bd247b2dc035a6ecc1d2df.woff2')format("woff");}.ff5_c02033{font-family:ff5_c02033;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02033{vertical-align:-76.440000px;}
.v0_c02033{vertical-align:0.000000px;}
.ls4_c02033{letter-spacing:0.000000px;}
.ls1_c02033{letter-spacing:6.785280px;}
.ls2_c02033{letter-spacing:11.520000px;}
.ls3_c02033{letter-spacing:39.905280px;}
.ls0_c02033{letter-spacing:239.016000px;}
.sc__c02033{text-shadow:none;}
.sc0_c02033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02033{-webkit-text-stroke:0px transparent;}
.sc0_c02033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02033{word-spacing:-16.560000px;}
.ws1_c02033{word-spacing:0.000000px;}
._3_c02033{margin-left:-1.324005px;}
._6_c02033{width:1.261077px;}
._c_c02033{width:2.980800px;}
._7_c02033{width:4.101780px;}
._1_c02033{width:5.564359px;}
._2_c02033{width:6.755685px;}
._12_c02033{width:8.742156px;}
._4_c02033{width:10.002041px;}
._5_c02033{width:11.062742px;}
._e_c02033{width:12.451265px;}
._11_c02033{width:18.216066px;}
._9_c02033{width:20.995894px;}
._8_c02033{width:22.388988px;}
._d_c02033{width:23.581837px;}
._10_c02033{width:31.104000px;}
._f_c02033{width:32.328000px;}
._a_c02033{width:37.822841px;}
._b_c02033{width:38.949650px;}
._0_c02033{width:1500.936000px;}
.fc1_c02033{color:rgb(192,80,77);}
.fc0_c02033{color:rgb(0,0,0);}
.fs0_c02033{font-size:59.760000px;}
.fs1_c02033{font-size:66.240000px;}
.fs2_c02033{font-size:72.000000px;}
.y0_c02033{bottom:0.000000px;}
.y4_c02033{bottom:4.680000px;}
.y3_c02033{bottom:41.796000px;}
.y2_c02033{bottom:75.456000px;}
.y28_c02033{bottom:142.056000px;}
.y27_c02033{bottom:161.130000px;}
.y26_c02033{bottom:180.030000px;}
.y25_c02033{bottom:199.110000px;}
.y24_c02033{bottom:218.010000px;}
.y23_c02033{bottom:236.910000px;}
.y22_c02033{bottom:266.610000px;}
.y21_c02033{bottom:297.615000px;}
.y20_c02033{bottom:328.755000px;}
.y1f_c02033{bottom:359.715000px;}
.y1e_c02033{bottom:390.855000px;}
.y1d_c02033{bottom:421.815000px;}
.y1c_c02033{bottom:452.955000px;}
.y1b_c02033{bottom:483.915000px;}
.y1a_c02033{bottom:515.055000px;}
.y19_c02033{bottom:535.425000px;}
.y18_c02033{bottom:573.405000px;}
.y17_c02033{bottom:611.385000px;}
.y16_c02033{bottom:630.285000px;}
.y15_c02033{bottom:668.265000px;}
.y14_c02033{bottom:687.165000px;}
.y13_c02033{bottom:725.145000px;}
.y12_c02033{bottom:744.225000px;}
.y11_c02033{bottom:782.025000px;}
.y10_c02033{bottom:801.150000px;}
.yf_c02033{bottom:839.130000px;}
.ye_c02033{bottom:858.030000px;}
.yd_c02033{bottom:877.110000px;}
.yc_c02033{bottom:896.010000px;}
.yb_c02033{bottom:914.910000px;}
.ya_c02033{bottom:933.990000px;}
.y9_c02033{bottom:971.970000px;}
.y8_c02033{bottom:990.870000px;}
.y7_c02033{bottom:1009.770000px;}
.y6_c02033{bottom:1028.850000px;}
.y5_c02033{bottom:1066.860000px;}
.y1_c02033{bottom:1121.400000px;}
.h3_c02033{height:22.500000px;}
.h2_c02033{height:48.871406px;}
.h1_c02033{height:58.651172px;}
.h7_c02033{height:64.546875px;}
.h4_c02033{height:65.010937px;}
.h5_c02033{height:66.757500px;}
.h8_c02033{height:68.084282px;}
.h6_c02033{height:70.664062px;}
.h0_c02033{height:1188.000000px;}
.w1_c02033{width:66.636000px;}
.w0_c02033{width:918.000000px;}
.x0_c02033{left:0.000000px;}
.x3_c02033{left:16.560000px;}
.x1_c02033{left:127.656000px;}
.x5_c02033{left:181.650000px;}
.x6_c02033{left:191.550000px;}
.x4_c02033{left:218.550000px;}
.x2_c02033{left:820.950000px;}
@media print{
.v1_c02033{vertical-align:-67.946667pt;}
.v0_c02033{vertical-align:0.000000pt;}
.ls4_c02033{letter-spacing:0.000000pt;}
.ls1_c02033{letter-spacing:6.031360pt;}
.ls2_c02033{letter-spacing:10.240000pt;}
.ls3_c02033{letter-spacing:35.471360pt;}
.ls0_c02033{letter-spacing:212.458667pt;}
.ws0_c02033{word-spacing:-14.720000pt;}
.ws1_c02033{word-spacing:0.000000pt;}
._3_c02033{margin-left:-1.176893pt;}
._6_c02033{width:1.120957pt;}
._c_c02033{width:2.649600pt;}
._7_c02033{width:3.646026pt;}
._1_c02033{width:4.946097pt;}
._2_c02033{width:6.005053pt;}
._12_c02033{width:7.770806pt;}
._4_c02033{width:8.890703pt;}
._5_c02033{width:9.833549pt;}
._e_c02033{width:11.067791pt;}
._11_c02033{width:16.192059pt;}
._9_c02033{width:18.663017pt;}
._8_c02033{width:19.901322pt;}
._d_c02033{width:20.961633pt;}
._10_c02033{width:27.648000pt;}
._f_c02033{width:28.736000pt;}
._a_c02033{width:33.620303pt;}
._b_c02033{width:34.621911pt;}
._0_c02033{width:1334.165333pt;}
.fs0_c02033{font-size:53.120000pt;}
.fs1_c02033{font-size:58.880000pt;}
.fs2_c02033{font-size:64.000000pt;}
.y0_c02033{bottom:0.000000pt;}
.y4_c02033{bottom:4.160000pt;}
.y3_c02033{bottom:37.152000pt;}
.y2_c02033{bottom:67.072000pt;}
.y28_c02033{bottom:126.272000pt;}
.y27_c02033{bottom:143.226667pt;}
.y26_c02033{bottom:160.026667pt;}
.y25_c02033{bottom:176.986667pt;}
.y24_c02033{bottom:193.786667pt;}
.y23_c02033{bottom:210.586667pt;}
.y22_c02033{bottom:236.986667pt;}
.y21_c02033{bottom:264.546667pt;}
.y20_c02033{bottom:292.226667pt;}
.y1f_c02033{bottom:319.746667pt;}
.y1e_c02033{bottom:347.426667pt;}
.y1d_c02033{bottom:374.946667pt;}
.y1c_c02033{bottom:402.626667pt;}
.y1b_c02033{bottom:430.146667pt;}
.y1a_c02033{bottom:457.826667pt;}
.y19_c02033{bottom:475.933333pt;}
.y18_c02033{bottom:509.693333pt;}
.y17_c02033{bottom:543.453333pt;}
.y16_c02033{bottom:560.253333pt;}
.y15_c02033{bottom:594.013333pt;}
.y14_c02033{bottom:610.813333pt;}
.y13_c02033{bottom:644.573333pt;}
.y12_c02033{bottom:661.533333pt;}
.y11_c02033{bottom:695.133333pt;}
.y10_c02033{bottom:712.133333pt;}
.yf_c02033{bottom:745.893333pt;}
.ye_c02033{bottom:762.693333pt;}
.yd_c02033{bottom:779.653333pt;}
.yc_c02033{bottom:796.453333pt;}
.yb_c02033{bottom:813.253333pt;}
.ya_c02033{bottom:830.213333pt;}
.y9_c02033{bottom:863.973333pt;}
.y8_c02033{bottom:880.773333pt;}
.y7_c02033{bottom:897.573333pt;}
.y6_c02033{bottom:914.533333pt;}
.y5_c02033{bottom:948.320000pt;}
.y1_c02033{bottom:996.800000pt;}
.h3_c02033{height:20.000000pt;}
.h2_c02033{height:43.441250pt;}
.h1_c02033{height:52.134375pt;}
.h7_c02033{height:57.375000pt;}
.h4_c02033{height:57.787500pt;}
.h5_c02033{height:59.340000pt;}
.h8_c02033{height:60.519362pt;}
.h6_c02033{height:62.812500pt;}
.h0_c02033{height:1056.000000pt;}
.w1_c02033{width:59.232000pt;}
.w0_c02033{width:816.000000pt;}
.x0_c02033{left:0.000000pt;}
.x3_c02033{left:14.720000pt;}
.x1_c02033{left:113.472000pt;}
.x5_c02033{left:161.466667pt;}
.x6_c02033{left:170.266667pt;}
.x4_c02033{left:194.266667pt;}
.x2_c02033{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02034 {
    display:none;
  }
  .loading-indicator_c02034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02034 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02034 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02034" -> "#page-container .classname_c02034")
 */
.pf_c02034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02034 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02034 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02034 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02034 {overflow:visible;}
  }
}
.c_c02034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02034 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02034:after { /* webkit #35443 */
  content: '';
}
.t_c02034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02034 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02034 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02034 { /* info for Javascript */
  display:none;
}
.l_c02034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02034:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02034 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02034.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02034;src:url('chunks/assets/font_82fe04c11e5ad97b2eb2a86b.woff2')format("woff");}.ff1_c02034{font-family:ff1_c02034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02034;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02034{font-family:ff2_c02034;line-height:0.863770;font-style:normal;font-weight: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_c02034;src:url('chunks/assets/font_36cec606812f46c7dd67b06c.woff2')format("woff");}.ff3_c02034{font-family:ff3_c02034;line-height:1.402354;font-style:normal;font-weight: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_c02034;src:url('chunks/assets/font_397eac6469bd89d5d87e3c97.woff2')format("woff");}.ff4_c02034{font-family:ff4_c02034;line-height:1.112305;font-style:normal;font-weight: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_c02034;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02034{font-family:ff5_c02034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02034{vertical-align:-76.320000px;}
.v0_c02034{vertical-align:0.000000px;}
.ls5_c02034{letter-spacing:0.000000px;}
.ls2_c02034{letter-spacing:0.152400px;}
.ls4_c02034{letter-spacing:3.600000px;}
.ls3_c02034{letter-spacing:6.785280px;}
.ls0_c02034{letter-spacing:39.905280px;}
.ls1_c02034{letter-spacing:239.016000px;}
.sc__c02034{text-shadow:none;}
.sc0_c02034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02034{-webkit-text-stroke:0px transparent;}
.sc0_c02034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02034{word-spacing:-16.712400px;}
.ws1_c02034{word-spacing:0.000000px;}
._2_c02034{margin-left:-1.325264px;}
._4_c02034{width:1.110381px;}
._13_c02034{width:2.119680px;}
._12_c02034{width:3.246025px;}
._11_c02034{width:5.050866px;}
._6_c02034{width:6.292800px;}
._3_c02034{width:7.683641px;}
._14_c02034{width:8.744409px;}
._9_c02034{width:10.201225px;}
._5_c02034{width:11.924922px;}
._1_c02034{width:13.380612px;}
._8_c02034{width:14.440188px;}
._7_c02034{width:15.500955px;}
._15_c02034{width:17.620171px;}
._16_c02034{width:20.736000px;}
._10_c02034{width:21.925175px;}
._a_c02034{width:28.830695px;}
._b_c02034{width:29.990822px;}
._f_c02034{width:33.715961px;}
._e_c02034{width:34.842505px;}
._c_c02034{width:38.088066px;}
._d_c02034{width:39.147575px;}
._0_c02034{width:1500.936000px;}
.fc1_c02034{color:rgb(192,80,77);}
.fc0_c02034{color:rgb(0,0,0);}
.fs0_c02034{font-size:59.760000px;}
.fs1_c02034{font-size:66.240000px;}
.fs2_c02034{font-size:72.000000px;}
.y0_c02034{bottom:0.000000px;}
.y4_c02034{bottom:4.680000px;}
.y3_c02034{bottom:41.796000px;}
.y2_c02034{bottom:75.456000px;}
.y2b_c02034{bottom:125.136000px;}
.y2a_c02034{bottom:156.270000px;}
.y29_c02034{bottom:187.230000px;}
.y28_c02034{bottom:218.370000px;}
.y27_c02034{bottom:249.330000px;}
.y26_c02034{bottom:269.670000px;}
.y25_c02034{bottom:307.695000px;}
.y24_c02034{bottom:326.775000px;}
.y23_c02034{bottom:345.675000px;}
.y22_c02034{bottom:364.575000px;}
.y21_c02034{bottom:402.555000px;}
.y20_c02034{bottom:421.635000px;}
.y1f_c02034{bottom:440.535000px;}
.y1e_c02034{bottom:478.515000px;}
.y1d_c02034{bottom:497.415000px;}
.y1c_c02034{bottom:535.425000px;}
.y1b_c02034{bottom:554.505000px;}
.y1a_c02034{bottom:592.305000px;}
.y19_c02034{bottom:611.385000px;}
.y18_c02034{bottom:630.285000px;}
.y17_c02034{bottom:668.265000px;}
.y16_c02034{bottom:687.165000px;}
.y15_c02034{bottom:706.245000px;}
.y14_c02034{bottom:744.225000px;}
.y13_c02034{bottom:763.125000px;}
.y12_c02034{bottom:782.025000px;}
.y11_c02034{bottom:801.150000px;}
.y10_c02034{bottom:820.050000px;}
.yf_c02034{bottom:839.130000px;}
.ye_c02034{bottom:877.110000px;}
.yd_c02034{bottom:896.010000px;}
.yc_c02034{bottom:914.910000px;}
.yb_c02034{bottom:933.990000px;}
.ya_c02034{bottom:971.970000px;}
.y9_c02034{bottom:990.870000px;}
.y8_c02034{bottom:1009.770000px;}
.y7_c02034{bottom:1028.850000px;}
.y6_c02034{bottom:1047.750000px;}
.y5_c02034{bottom:1066.860000px;}
.y1_c02034{bottom:1121.400000px;}
.h3_c02034{height:22.500000px;}
.h2_c02034{height:48.871406px;}
.h1_c02034{height:58.651172px;}
.h5_c02034{height:65.010937px;}
.h4_c02034{height:68.084282px;}
.h6_c02034{height:70.664062px;}
.h7_c02034{height:72.562500px;}
.h0_c02034{height:1188.000000px;}
.w1_c02034{width:66.636000px;}
.w0_c02034{width:918.000000px;}
.x0_c02034{left:0.000000px;}
.x3_c02034{left:16.560000px;}
.x1_c02034{left:127.656000px;}
.x6_c02034{left:180.750000px;}
.x4_c02034{left:191.550000px;}
.x5_c02034{left:218.550000px;}
.x2_c02034{left:820.950000px;}
@media print{
.v1_c02034{vertical-align:-67.840000pt;}
.v0_c02034{vertical-align:0.000000pt;}
.ls5_c02034{letter-spacing:0.000000pt;}
.ls2_c02034{letter-spacing:0.135467pt;}
.ls4_c02034{letter-spacing:3.200000pt;}
.ls3_c02034{letter-spacing:6.031360pt;}
.ls0_c02034{letter-spacing:35.471360pt;}
.ls1_c02034{letter-spacing:212.458667pt;}
.ws0_c02034{word-spacing:-14.855467pt;}
.ws1_c02034{word-spacing:0.000000pt;}
._2_c02034{margin-left:-1.178012pt;}
._4_c02034{width:0.987005pt;}
._13_c02034{width:1.884160pt;}
._12_c02034{width:2.885356pt;}
._11_c02034{width:4.489659pt;}
._6_c02034{width:5.593600pt;}
._3_c02034{width:6.829903pt;}
._14_c02034{width:7.772808pt;}
._9_c02034{width:9.067756pt;}
._5_c02034{width:10.599931pt;}
._1_c02034{width:11.893878pt;}
._8_c02034{width:12.835722pt;}
._7_c02034{width:13.778627pt;}
._15_c02034{width:15.662374pt;}
._16_c02034{width:18.432000pt;}
._10_c02034{width:19.489044pt;}
._a_c02034{width:25.627284pt;}
._b_c02034{width:26.658509pt;}
._f_c02034{width:29.969743pt;}
._e_c02034{width:30.971116pt;}
._c_c02034{width:33.856059pt;}
._d_c02034{width:34.797844pt;}
._0_c02034{width:1334.165333pt;}
.fs0_c02034{font-size:53.120000pt;}
.fs1_c02034{font-size:58.880000pt;}
.fs2_c02034{font-size:64.000000pt;}
.y0_c02034{bottom:0.000000pt;}
.y4_c02034{bottom:4.160000pt;}
.y3_c02034{bottom:37.152000pt;}
.y2_c02034{bottom:67.072000pt;}
.y2b_c02034{bottom:111.232000pt;}
.y2a_c02034{bottom:138.906667pt;}
.y29_c02034{bottom:166.426667pt;}
.y28_c02034{bottom:194.106667pt;}
.y27_c02034{bottom:221.626667pt;}
.y26_c02034{bottom:239.706667pt;}
.y25_c02034{bottom:273.506667pt;}
.y24_c02034{bottom:290.466667pt;}
.y23_c02034{bottom:307.266667pt;}
.y22_c02034{bottom:324.066667pt;}
.y21_c02034{bottom:357.826667pt;}
.y20_c02034{bottom:374.786667pt;}
.y1f_c02034{bottom:391.586667pt;}
.y1e_c02034{bottom:425.346667pt;}
.y1d_c02034{bottom:442.146667pt;}
.y1c_c02034{bottom:475.933333pt;}
.y1b_c02034{bottom:492.893333pt;}
.y1a_c02034{bottom:526.493333pt;}
.y19_c02034{bottom:543.453333pt;}
.y18_c02034{bottom:560.253333pt;}
.y17_c02034{bottom:594.013333pt;}
.y16_c02034{bottom:610.813333pt;}
.y15_c02034{bottom:627.773333pt;}
.y14_c02034{bottom:661.533333pt;}
.y13_c02034{bottom:678.333333pt;}
.y12_c02034{bottom:695.133333pt;}
.y11_c02034{bottom:712.133333pt;}
.y10_c02034{bottom:728.933333pt;}
.yf_c02034{bottom:745.893333pt;}
.ye_c02034{bottom:779.653333pt;}
.yd_c02034{bottom:796.453333pt;}
.yc_c02034{bottom:813.253333pt;}
.yb_c02034{bottom:830.213333pt;}
.ya_c02034{bottom:863.973333pt;}
.y9_c02034{bottom:880.773333pt;}
.y8_c02034{bottom:897.573333pt;}
.y7_c02034{bottom:914.533333pt;}
.y6_c02034{bottom:931.333333pt;}
.y5_c02034{bottom:948.320000pt;}
.y1_c02034{bottom:996.800000pt;}
.h3_c02034{height:20.000000pt;}
.h2_c02034{height:43.441250pt;}
.h1_c02034{height:52.134375pt;}
.h5_c02034{height:57.787500pt;}
.h4_c02034{height:60.519362pt;}
.h6_c02034{height:62.812500pt;}
.h7_c02034{height:64.500000pt;}
.h0_c02034{height:1056.000000pt;}
.w1_c02034{width:59.232000pt;}
.w0_c02034{width:816.000000pt;}
.x0_c02034{left:0.000000pt;}
.x3_c02034{left:14.720000pt;}
.x1_c02034{left:113.472000pt;}
.x6_c02034{left:160.666667pt;}
.x4_c02034{left:170.266667pt;}
.x5_c02034{left:194.266667pt;}
.x2_c02034{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02035 {
    display:none;
  }
  .loading-indicator_c02035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02035 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02035 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02035" -> "#page-container .classname_c02035")
 */
.pf_c02035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02035 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02035 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02035 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02035 {overflow:visible;}
  }
}
.c_c02035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02035 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02035:after { /* webkit #35443 */
  content: '';
}
.t_c02035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02035 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02035 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02035 { /* info for Javascript */
  display:none;
}
.l_c02035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02035:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02035 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02035.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02035;src:url('chunks/assets/font_a886450fe5b4a11977cfb4a3.woff2')format("woff");}.ff1_c02035{font-family:ff1_c02035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02035;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02035{font-family:ff2_c02035;line-height:0.863770;font-style:normal;font-weight: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_c02035;src:url('chunks/assets/font_a11dacc65a30ae4bba1b8f93.woff2')format("woff");}.ff3_c02035{font-family:ff3_c02035;line-height:1.402354;font-style:normal;font-weight: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_c02035;src:url('chunks/assets/font_90da05117c2a8a97bbeec64c.woff2')format("woff");}.ff4_c02035{font-family:ff4_c02035;line-height:1.311035;font-style:normal;font-weight: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_c02035;src:url('chunks/assets/font_c01a4e2343b9c7bbeccadfce.woff2')format("woff");}.ff5_c02035{font-family:ff5_c02035;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02035{vertical-align:-77.040000px;}
.v1_c02035{vertical-align:-75.600000px;}
.v3_c02035{vertical-align:-74.160000px;}
.v0_c02035{vertical-align:0.000000px;}
.ls3_c02035{letter-spacing:0.000000px;}
.ls2_c02035{letter-spacing:6.785280px;}
.ls0_c02035{letter-spacing:39.905280px;}
.ls1_c02035{letter-spacing:239.016000px;}
.sc__c02035{text-shadow:none;}
.sc0_c02035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02035{-webkit-text-stroke:0px transparent;}
.sc0_c02035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02035{word-spacing:0.000000px;}
._3_c02035{margin-left:-1.440000px;}
._2_c02035{width:1.152000px;}
._11_c02035{width:2.403288px;}
._c_c02035{width:3.709175px;}
._e_c02035{width:4.881623px;}
._b_c02035{width:5.895559px;}
._a_c02035{width:7.816254px;}
._9_c02035{width:8.876425px;}
._1_c02035{width:11.880000px;}
._f_c02035{width:12.982841px;}
._10_c02035{width:14.104221px;}
._d_c02035{width:15.192000px;}
._8_c02035{width:18.036282px;}
._7_c02035{width:19.721975px;}
._14_c02035{width:21.521434px;}
._4_c02035{width:23.616000px;}
._5_c02035{width:25.128000px;}
._6_c02035{width:26.376000px;}
._12_c02035{width:34.378891px;}
._13_c02035{width:36.431470px;}
._0_c02035{width:1500.936000px;}
.fc1_c02035{color:rgb(192,80,77);}
.fc0_c02035{color:rgb(0,0,0);}
.fs0_c02035{font-size:59.760000px;}
.fs1_c02035{font-size:66.240000px;}
.fs2_c02035{font-size:72.000000px;}
.y0_c02035{bottom:0.000000px;}
.y4_c02035{bottom:4.680000px;}
.y3_c02035{bottom:41.796000px;}
.y2_c02035{bottom:75.456000px;}
.y2a_c02035{bottom:126.576000px;}
.y29_c02035{bottom:145.656000px;}
.y28_c02035{bottom:164.550000px;}
.y27_c02035{bottom:202.530000px;}
.y26_c02035{bottom:221.430000px;}
.y25_c02035{bottom:259.050000px;}
.y24_c02035{bottom:277.995000px;}
.y23_c02035{bottom:297.075000px;}
.y22_c02035{bottom:315.975000px;}
.y21_c02035{bottom:354.315000px;}
.y20_c02035{bottom:373.215000px;}
.y1f_c02035{bottom:392.295000px;}
.y1e_c02035{bottom:430.275000px;}
.y1d_c02035{bottom:449.175000px;}
.y1c_c02035{bottom:487.155000px;}
.y1b_c02035{bottom:506.055000px;}
.y1a_c02035{bottom:544.065000px;}
.y19_c02035{bottom:562.965000px;}
.y18_c02035{bottom:582.045000px;}
.y17_c02035{bottom:619.665000px;}
.y16_c02035{bottom:638.565000px;}
.y15_c02035{bottom:657.645000px;}
.y14_c02035{bottom:695.805000px;}
.y13_c02035{bottom:714.885000px;}
.y12_c02035{bottom:752.865000px;}
.y11_c02035{bottom:771.765000px;}
.y10_c02035{bottom:790.665000px;}
.yf_c02035{bottom:828.690000px;}
.ye_c02035{bottom:847.770000px;}
.yd_c02035{bottom:866.670000px;}
.yc_c02035{bottom:885.570000px;}
.yb_c02035{bottom:904.650000px;}
.ya_c02035{bottom:923.550000px;}
.y9_c02035{bottom:942.630000px;}
.y8_c02035{bottom:972.150000px;}
.y7_c02035{bottom:1003.290000px;}
.y6_c02035{bottom:1034.250000px;}
.y5_c02035{bottom:1065.420000px;}
.y1_c02035{bottom:1121.400000px;}
.h3_c02035{height:22.500000px;}
.h2_c02035{height:48.871406px;}
.h1_c02035{height:58.651172px;}
.h6_c02035{height:65.010937px;}
.h7_c02035{height:66.757500px;}
.h5_c02035{height:68.084282px;}
.h4_c02035{height:70.664062px;}
.h0_c02035{height:1188.000000px;}
.w1_c02035{width:66.636000px;}
.w0_c02035{width:918.000000px;}
.x0_c02035{left:0.000000px;}
.x3_c02035{left:16.560000px;}
.x1_c02035{left:127.656000px;}
.x4_c02035{left:191.550000px;}
.x5_c02035{left:218.550000px;}
.x2_c02035{left:820.950000px;}
@media print{
.v2_c02035{vertical-align:-68.480000pt;}
.v1_c02035{vertical-align:-67.200000pt;}
.v3_c02035{vertical-align:-65.920000pt;}
.v0_c02035{vertical-align:0.000000pt;}
.ls3_c02035{letter-spacing:0.000000pt;}
.ls2_c02035{letter-spacing:6.031360pt;}
.ls0_c02035{letter-spacing:35.471360pt;}
.ls1_c02035{letter-spacing:212.458667pt;}
.ws0_c02035{word-spacing:0.000000pt;}
._3_c02035{margin-left:-1.280000pt;}
._2_c02035{width:1.024000pt;}
._11_c02035{width:2.136256pt;}
._c_c02035{width:3.297044pt;}
._e_c02035{width:4.339220pt;}
._b_c02035{width:5.240497pt;}
._a_c02035{width:6.947781pt;}
._9_c02035{width:7.890156pt;}
._1_c02035{width:10.560000pt;}
._f_c02035{width:11.540303pt;}
._10_c02035{width:12.537085pt;}
._d_c02035{width:13.504000pt;}
._8_c02035{width:16.032251pt;}
._7_c02035{width:17.530644pt;}
._14_c02035{width:19.130163pt;}
._4_c02035{width:20.992000pt;}
._5_c02035{width:22.336000pt;}
._6_c02035{width:23.445333pt;}
._12_c02035{width:30.559014pt;}
._13_c02035{width:32.383529pt;}
._0_c02035{width:1334.165333pt;}
.fs0_c02035{font-size:53.120000pt;}
.fs1_c02035{font-size:58.880000pt;}
.fs2_c02035{font-size:64.000000pt;}
.y0_c02035{bottom:0.000000pt;}
.y4_c02035{bottom:4.160000pt;}
.y3_c02035{bottom:37.152000pt;}
.y2_c02035{bottom:67.072000pt;}
.y2a_c02035{bottom:112.512000pt;}
.y29_c02035{bottom:129.472000pt;}
.y28_c02035{bottom:146.266667pt;}
.y27_c02035{bottom:180.026667pt;}
.y26_c02035{bottom:196.826667pt;}
.y25_c02035{bottom:230.266667pt;}
.y24_c02035{bottom:247.106667pt;}
.y23_c02035{bottom:264.066667pt;}
.y22_c02035{bottom:280.866667pt;}
.y21_c02035{bottom:314.946667pt;}
.y20_c02035{bottom:331.746667pt;}
.y1f_c02035{bottom:348.706667pt;}
.y1e_c02035{bottom:382.466667pt;}
.y1d_c02035{bottom:399.266667pt;}
.y1c_c02035{bottom:433.026667pt;}
.y1b_c02035{bottom:449.826667pt;}
.y1a_c02035{bottom:483.613333pt;}
.y19_c02035{bottom:500.413333pt;}
.y18_c02035{bottom:517.373333pt;}
.y17_c02035{bottom:550.813333pt;}
.y16_c02035{bottom:567.613333pt;}
.y15_c02035{bottom:584.573333pt;}
.y14_c02035{bottom:618.493333pt;}
.y13_c02035{bottom:635.453333pt;}
.y12_c02035{bottom:669.213333pt;}
.y11_c02035{bottom:686.013333pt;}
.y10_c02035{bottom:702.813333pt;}
.yf_c02035{bottom:736.613333pt;}
.ye_c02035{bottom:753.573333pt;}
.yd_c02035{bottom:770.373333pt;}
.yc_c02035{bottom:787.173333pt;}
.yb_c02035{bottom:804.133333pt;}
.ya_c02035{bottom:820.933333pt;}
.y9_c02035{bottom:837.893333pt;}
.y8_c02035{bottom:864.133333pt;}
.y7_c02035{bottom:891.813333pt;}
.y6_c02035{bottom:919.333333pt;}
.y5_c02035{bottom:947.040000pt;}
.y1_c02035{bottom:996.800000pt;}
.h3_c02035{height:20.000000pt;}
.h2_c02035{height:43.441250pt;}
.h1_c02035{height:52.134375pt;}
.h6_c02035{height:57.787500pt;}
.h7_c02035{height:59.340000pt;}
.h5_c02035{height:60.519362pt;}
.h4_c02035{height:62.812500pt;}
.h0_c02035{height:1056.000000pt;}
.w1_c02035{width:59.232000pt;}
.w0_c02035{width:816.000000pt;}
.x0_c02035{left:0.000000pt;}
.x3_c02035{left:14.720000pt;}
.x1_c02035{left:113.472000pt;}
.x4_c02035{left:170.266667pt;}
.x5_c02035{left:194.266667pt;}
.x2_c02035{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02036 {
    display:none;
  }
  .loading-indicator_c02036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02036 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02036 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02036" -> "#page-container .classname_c02036")
 */
.pf_c02036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02036 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02036 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02036 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02036 {overflow:visible;}
  }
}
.c_c02036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02036 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02036:after { /* webkit #35443 */
  content: '';
}
.t_c02036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02036 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02036 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02036 { /* info for Javascript */
  display:none;
}
.l_c02036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02036:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02036 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02036.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02036;src:url('chunks/assets/font_0d0834752b905eb1831349ba.woff2')format("woff");}.ff1_c02036{font-family:ff1_c02036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02036;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02036{font-family:ff2_c02036;line-height:0.863770;font-style:normal;font-weight: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_c02036;src:url('chunks/assets/font_7af29715b1098c9f79d125f3.woff2')format("woff");}.ff3_c02036{font-family:ff3_c02036;line-height:1.402354;font-style:normal;font-weight: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_c02036;src:url('chunks/assets/font_27b21d092b933f188d32afd5.woff2')format("woff");}.ff4_c02036{font-family:ff4_c02036;line-height:1.311035;font-style:normal;font-weight: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_c02036;src:url('chunks/assets/font_966efcae972c77d23f53dcff.woff2')format("woff");}.ff5_c02036{font-family:ff5_c02036;line-height:1.435059;font-style:normal;font-weight: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_c02036;src:url('chunks/assets/font_b26e05489c8b1a87ca60b017.woff2')format("woff");}.ff6_c02036{font-family:ff6_c02036;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02036{vertical-align:-77.760000px;}
.v1_c02036{vertical-align:-75.600000px;}
.v0_c02036{vertical-align:0.000000px;}
.ls3_c02036{letter-spacing:0.000000px;}
.ls0_c02036{letter-spacing:6.785280px;}
.ls2_c02036{letter-spacing:39.905280px;}
.ls1_c02036{letter-spacing:239.016000px;}
.sc__c02036{text-shadow:none;}
.sc0_c02036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02036{-webkit-text-stroke:0px transparent;}
.sc0_c02036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02036{word-spacing:0.000000px;}
._2_c02036{margin-left:-1.854588px;}
._4_c02036{width:1.192254px;}
._3_c02036{width:2.384309px;}
._a_c02036{width:3.777932px;}
._9_c02036{width:5.166588px;}
._14_c02036{width:6.292866px;}
._5_c02036{width:7.419012px;}
._6_c02036{width:8.875299px;}
._8_c02036{width:10.002836px;}
._7_c02036{width:11.657975px;}
._b_c02036{width:13.711812px;}
._f_c02036{width:15.534588px;}
._c_c02036{width:16.704000px;}
._10_c02036{width:19.008000px;}
._11_c02036{width:21.342985px;}
._12_c02036{width:29.344188px;}
._13_c02036{width:30.537037px;}
._d_c02036{width:36.792000px;}
._e_c02036{width:38.088000px;}
._1_c02036{width:48.355266px;}
._0_c02036{width:1500.936000px;}
.fc1_c02036{color:rgb(192,80,77);}
.fc0_c02036{color:rgb(0,0,0);}
.fs0_c02036{font-size:59.760000px;}
.fs1_c02036{font-size:66.240000px;}
.fs2_c02036{font-size:72.000000px;}
.y0_c02036{bottom:0.000000px;}
.y4_c02036{bottom:4.680000px;}
.y3_c02036{bottom:41.796000px;}
.y2_c02036{bottom:75.456000px;}
.y2b_c02036{bottom:149.076000px;}
.y2a_c02036{bottom:167.970000px;}
.y29_c02036{bottom:186.870000px;}
.y28_c02036{bottom:224.850000px;}
.y27_c02036{bottom:243.930000px;}
.y26_c02036{bottom:262.830000px;}
.y25_c02036{bottom:281.955000px;}
.y24_c02036{bottom:300.855000px;}
.y23_c02036{bottom:319.755000px;}
.y22_c02036{bottom:338.835000px;}
.y21_c02036{bottom:357.735000px;}
.y20_c02036{bottom:376.815000px;}
.y1f_c02036{bottom:395.715000px;}
.y1e_c02036{bottom:414.615000px;}
.y1d_c02036{bottom:433.695000px;}
.y1c_c02036{bottom:452.595000px;}
.y1b_c02036{bottom:482.295000px;}
.y1a_c02036{bottom:513.255000px;}
.y19_c02036{bottom:544.425000px;}
.y18_c02036{bottom:575.385000px;}
.y17_c02036{bottom:606.525000px;}
.y16_c02036{bottom:637.485000px;}
.y15_c02036{bottom:668.625000px;}
.y14_c02036{bottom:699.585000px;}
.y13_c02036{bottom:730.725000px;}
.y12_c02036{bottom:761.685000px;}
.y11_c02036{bottom:782.025000px;}
.y10_c02036{bottom:801.150000px;}
.yf_c02036{bottom:838.770000px;}
.ye_c02036{bottom:857.670000px;}
.yd_c02036{bottom:876.750000px;}
.yc_c02036{bottom:895.650000px;}
.yb_c02036{bottom:933.990000px;}
.ya_c02036{bottom:952.890000px;}
.y9_c02036{bottom:971.970000px;}
.y8_c02036{bottom:1009.770000px;}
.y7_c02036{bottom:1028.850000px;}
.y6_c02036{bottom:1047.750000px;}
.y5_c02036{bottom:1066.860000px;}
.y1_c02036{bottom:1121.400000px;}
.h3_c02036{height:22.500000px;}
.h2_c02036{height:48.871406px;}
.h1_c02036{height:58.651172px;}
.h5_c02036{height:65.010937px;}
.h6_c02036{height:66.757500px;}
.h4_c02036{height:68.084282px;}
.h7_c02036{height:70.664062px;}
.h0_c02036{height:1188.000000px;}
.w1_c02036{width:66.636000px;}
.w0_c02036{width:918.000000px;}
.x0_c02036{left:0.000000px;}
.x3_c02036{left:16.560000px;}
.x1_c02036{left:127.656000px;}
.x6_c02036{left:180.750000px;}
.x4_c02036{left:191.550000px;}
.x5_c02036{left:218.550000px;}
.x2_c02036{left:820.950000px;}
@media print{
.v2_c02036{vertical-align:-69.120000pt;}
.v1_c02036{vertical-align:-67.200000pt;}
.v0_c02036{vertical-align:0.000000pt;}
.ls3_c02036{letter-spacing:0.000000pt;}
.ls0_c02036{letter-spacing:6.031360pt;}
.ls2_c02036{letter-spacing:35.471360pt;}
.ls1_c02036{letter-spacing:212.458667pt;}
.ws0_c02036{word-spacing:0.000000pt;}
._2_c02036{margin-left:-1.648522pt;}
._4_c02036{width:1.059781pt;}
._3_c02036{width:2.119386pt;}
._a_c02036{width:3.358162pt;}
._9_c02036{width:4.592522pt;}
._14_c02036{width:5.593659pt;}
._5_c02036{width:6.594678pt;}
._6_c02036{width:7.889155pt;}
._8_c02036{width:8.891410pt;}
._7_c02036{width:10.362644pt;}
._b_c02036{width:12.188278pt;}
._f_c02036{width:13.808522pt;}
._c_c02036{width:14.848000pt;}
._10_c02036{width:16.896000pt;}
._11_c02036{width:18.971542pt;}
._12_c02036{width:26.083722pt;}
._13_c02036{width:27.144033pt;}
._d_c02036{width:32.704000pt;}
._e_c02036{width:33.856000pt;}
._1_c02036{width:42.982459pt;}
._0_c02036{width:1334.165333pt;}
.fs0_c02036{font-size:53.120000pt;}
.fs1_c02036{font-size:58.880000pt;}
.fs2_c02036{font-size:64.000000pt;}
.y0_c02036{bottom:0.000000pt;}
.y4_c02036{bottom:4.160000pt;}
.y3_c02036{bottom:37.152000pt;}
.y2_c02036{bottom:67.072000pt;}
.y2b_c02036{bottom:132.512000pt;}
.y2a_c02036{bottom:149.306667pt;}
.y29_c02036{bottom:166.106667pt;}
.y28_c02036{bottom:199.866667pt;}
.y27_c02036{bottom:216.826667pt;}
.y26_c02036{bottom:233.626667pt;}
.y25_c02036{bottom:250.626667pt;}
.y24_c02036{bottom:267.426667pt;}
.y23_c02036{bottom:284.226667pt;}
.y22_c02036{bottom:301.186667pt;}
.y21_c02036{bottom:317.986667pt;}
.y20_c02036{bottom:334.946667pt;}
.y1f_c02036{bottom:351.746667pt;}
.y1e_c02036{bottom:368.546667pt;}
.y1d_c02036{bottom:385.506667pt;}
.y1c_c02036{bottom:402.306667pt;}
.y1b_c02036{bottom:428.706667pt;}
.y1a_c02036{bottom:456.226667pt;}
.y19_c02036{bottom:483.933333pt;}
.y18_c02036{bottom:511.453333pt;}
.y17_c02036{bottom:539.133333pt;}
.y16_c02036{bottom:566.653333pt;}
.y15_c02036{bottom:594.333333pt;}
.y14_c02036{bottom:621.853333pt;}
.y13_c02036{bottom:649.533333pt;}
.y12_c02036{bottom:677.053333pt;}
.y11_c02036{bottom:695.133333pt;}
.y10_c02036{bottom:712.133333pt;}
.yf_c02036{bottom:745.573333pt;}
.ye_c02036{bottom:762.373333pt;}
.yd_c02036{bottom:779.333333pt;}
.yc_c02036{bottom:796.133333pt;}
.yb_c02036{bottom:830.213333pt;}
.ya_c02036{bottom:847.013333pt;}
.y9_c02036{bottom:863.973333pt;}
.y8_c02036{bottom:897.573333pt;}
.y7_c02036{bottom:914.533333pt;}
.y6_c02036{bottom:931.333333pt;}
.y5_c02036{bottom:948.320000pt;}
.y1_c02036{bottom:996.800000pt;}
.h3_c02036{height:20.000000pt;}
.h2_c02036{height:43.441250pt;}
.h1_c02036{height:52.134375pt;}
.h5_c02036{height:57.787500pt;}
.h6_c02036{height:59.340000pt;}
.h4_c02036{height:60.519362pt;}
.h7_c02036{height:62.812500pt;}
.h0_c02036{height:1056.000000pt;}
.w1_c02036{width:59.232000pt;}
.w0_c02036{width:816.000000pt;}
.x0_c02036{left:0.000000pt;}
.x3_c02036{left:14.720000pt;}
.x1_c02036{left:113.472000pt;}
.x6_c02036{left:160.666667pt;}
.x4_c02036{left:170.266667pt;}
.x5_c02036{left:194.266667pt;}
.x2_c02036{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02037 {
    display:none;
  }
  .loading-indicator_c02037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02037 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02037 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02037" -> "#page-container .classname_c02037")
 */
.pf_c02037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02037 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02037 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02037 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02037 {overflow:visible;}
  }
}
.c_c02037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02037 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02037:after { /* webkit #35443 */
  content: '';
}
.t_c02037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02037 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02037 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02037 { /* info for Javascript */
  display:none;
}
.l_c02037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02037:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02037 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02037.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02037;src:url('chunks/assets/font_d9ccc851138b8c1667fd89ad.woff2')format("woff");}.ff1_c02037{font-family:ff1_c02037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02037;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02037{font-family:ff2_c02037;line-height:0.863770;font-style:normal;font-weight: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_c02037;src:url('chunks/assets/font_3fcd61fdfe20ae655eefc1e8.woff2')format("woff");}.ff3_c02037{font-family:ff3_c02037;line-height:1.311035;font-style:normal;font-weight: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_c02037;src:url('chunks/assets/font_672f5a3a20e98ba19a15f606.woff2')format("woff");}.ff4_c02037{font-family:ff4_c02037;line-height:1.435059;font-style:normal;font-weight: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_c02037;src:url('chunks/assets/font_ab69a6fc6943c56c75c3a453.woff2')format("woff");}.ff5_c02037{font-family:ff5_c02037;line-height:1.402354;font-style:normal;font-weight: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_c02037;src:url('chunks/assets/font_442de6229eb8a0c7bff210f6.woff2')format("woff");}.ff6_c02037{font-family:ff6_c02037;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02037{vertical-align:-75.600000px;}
.v2_c02037{vertical-align:-74.160000px;}
.v0_c02037{vertical-align:0.000000px;}
.ls2_c02037{letter-spacing:0.000000px;}
.ls0_c02037{letter-spacing:39.905280px;}
.ls1_c02037{letter-spacing:239.016000px;}
.sc__c02037{text-shadow:none;}
.sc0_c02037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02037{-webkit-text-stroke:0px transparent;}
.sc0_c02037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02037{word-spacing:0.000000px;}
._2_c02037{margin-left:-1.390709px;}
._8_c02037{width:1.522526px;}
._4_c02037{width:2.649666px;}
._9_c02037{width:3.708976px;}
._12_c02037{width:5.040000px;}
._1_c02037{width:6.358841px;}
._3_c02037{width:8.280530px;}
._b_c02037{width:9.935801px;}
._a_c02037{width:11.128254px;}
._11_c02037{width:12.332326px;}
._5_c02037{width:13.645241px;}
._c_c02037{width:15.250104px;}
._d_c02037{width:23.256000px;}
._e_c02037{width:24.480000px;}
._6_c02037{width:26.429429px;}
._f_c02037{width:34.344000px;}
._10_c02037{width:35.906947px;}
._7_c02037{width:55.509054px;}
._0_c02037{width:1500.936000px;}
.fc1_c02037{color:rgb(192,80,77);}
.fc0_c02037{color:rgb(0,0,0);}
.fs0_c02037{font-size:59.760000px;}
.fs1_c02037{font-size:66.240000px;}
.fs2_c02037{font-size:72.000000px;}
.y0_c02037{bottom:0.000000px;}
.y4_c02037{bottom:4.680000px;}
.y3_c02037{bottom:41.796000px;}
.y2_c02037{bottom:75.456000px;}
.y2a_c02037{bottom:112.716000px;}
.y29_c02037{bottom:150.690000px;}
.y28_c02037{bottom:169.770000px;}
.y27_c02037{bottom:188.670000px;}
.y26_c02037{bottom:207.570000px;}
.y25_c02037{bottom:226.650000px;}
.y24_c02037{bottom:245.550000px;}
.y23_c02037{bottom:275.295000px;}
.y22_c02037{bottom:306.255000px;}
.y21_c02037{bottom:337.395000px;}
.y20_c02037{bottom:368.355000px;}
.y1f_c02037{bottom:399.495000px;}
.y1e_c02037{bottom:430.455000px;}
.y1d_c02037{bottom:461.595000px;}
.y1c_c02037{bottom:492.555000px;}
.y1b_c02037{bottom:523.695000px;}
.y1a_c02037{bottom:554.685000px;}
.y19_c02037{bottom:585.825000px;}
.y18_c02037{bottom:616.785000px;}
.y17_c02037{bottom:647.925000px;}
.y16_c02037{bottom:668.265000px;}
.y15_c02037{bottom:706.245000px;}
.y14_c02037{bottom:725.145000px;}
.y13_c02037{bottom:763.125000px;}
.y12_c02037{bottom:782.025000px;}
.y11_c02037{bottom:801.150000px;}
.y10_c02037{bottom:820.050000px;}
.yf_c02037{bottom:839.130000px;}
.ye_c02037{bottom:858.030000px;}
.yd_c02037{bottom:895.650000px;}
.yc_c02037{bottom:914.550000px;}
.yb_c02037{bottom:933.630000px;}
.ya_c02037{bottom:952.530000px;}
.y9_c02037{bottom:971.610000px;}
.y8_c02037{bottom:1009.410000px;}
.y7_c02037{bottom:1028.490000px;}
.y6_c02037{bottom:1047.390000px;}
.y5_c02037{bottom:1066.500000px;}
.y1_c02037{bottom:1121.400000px;}
.h3_c02037{height:22.500000px;}
.h2_c02037{height:48.871406px;}
.h1_c02037{height:58.651172px;}
.h6_c02037{height:65.010937px;}
.h5_c02037{height:66.757500px;}
.h8_c02037{height:68.084282px;}
.h4_c02037{height:68.956875px;}
.h7_c02037{height:70.664062px;}
.h0_c02037{height:1188.000000px;}
.w1_c02037{width:66.636000px;}
.w0_c02037{width:918.000000px;}
.x0_c02037{left:0.000000px;}
.x3_c02037{left:16.560000px;}
.x1_c02037{left:127.656000px;}
.x6_c02037{left:180.750000px;}
.x4_c02037{left:191.550000px;}
.x5_c02037{left:218.550000px;}
.x2_c02037{left:820.950000px;}
@media print{
.v1_c02037{vertical-align:-67.200000pt;}
.v2_c02037{vertical-align:-65.920000pt;}
.v0_c02037{vertical-align:0.000000pt;}
.ls2_c02037{letter-spacing:0.000000pt;}
.ls0_c02037{letter-spacing:35.471360pt;}
.ls1_c02037{letter-spacing:212.458667pt;}
.ws0_c02037{word-spacing:0.000000pt;}
._2_c02037{margin-left:-1.236186pt;}
._8_c02037{width:1.353357pt;}
._4_c02037{width:2.355259pt;}
._9_c02037{width:3.296868pt;}
._12_c02037{width:4.480000pt;}
._1_c02037{width:5.652303pt;}
._3_c02037{width:7.360471pt;}
._b_c02037{width:8.831823pt;}
._a_c02037{width:9.891781pt;}
._11_c02037{width:10.962068pt;}
._5_c02037{width:12.129103pt;}
._c_c02037{width:13.555648pt;}
._d_c02037{width:20.672000pt;}
._e_c02037{width:21.760000pt;}
._6_c02037{width:23.492826pt;}
._f_c02037{width:30.528000pt;}
._10_c02037{width:31.917286pt;}
._7_c02037{width:49.341381pt;}
._0_c02037{width:1334.165333pt;}
.fs0_c02037{font-size:53.120000pt;}
.fs1_c02037{font-size:58.880000pt;}
.fs2_c02037{font-size:64.000000pt;}
.y0_c02037{bottom:0.000000pt;}
.y4_c02037{bottom:4.160000pt;}
.y3_c02037{bottom:37.152000pt;}
.y2_c02037{bottom:67.072000pt;}
.y2a_c02037{bottom:100.192000pt;}
.y29_c02037{bottom:133.946667pt;}
.y28_c02037{bottom:150.906667pt;}
.y27_c02037{bottom:167.706667pt;}
.y26_c02037{bottom:184.506667pt;}
.y25_c02037{bottom:201.466667pt;}
.y24_c02037{bottom:218.266667pt;}
.y23_c02037{bottom:244.706667pt;}
.y22_c02037{bottom:272.226667pt;}
.y21_c02037{bottom:299.906667pt;}
.y20_c02037{bottom:327.426667pt;}
.y1f_c02037{bottom:355.106667pt;}
.y1e_c02037{bottom:382.626667pt;}
.y1d_c02037{bottom:410.306667pt;}
.y1c_c02037{bottom:437.826667pt;}
.y1b_c02037{bottom:465.506667pt;}
.y1a_c02037{bottom:493.053333pt;}
.y19_c02037{bottom:520.733333pt;}
.y18_c02037{bottom:548.253333pt;}
.y17_c02037{bottom:575.933333pt;}
.y16_c02037{bottom:594.013333pt;}
.y15_c02037{bottom:627.773333pt;}
.y14_c02037{bottom:644.573333pt;}
.y13_c02037{bottom:678.333333pt;}
.y12_c02037{bottom:695.133333pt;}
.y11_c02037{bottom:712.133333pt;}
.y10_c02037{bottom:728.933333pt;}
.yf_c02037{bottom:745.893333pt;}
.ye_c02037{bottom:762.693333pt;}
.yd_c02037{bottom:796.133333pt;}
.yc_c02037{bottom:812.933333pt;}
.yb_c02037{bottom:829.893333pt;}
.ya_c02037{bottom:846.693333pt;}
.y9_c02037{bottom:863.653333pt;}
.y8_c02037{bottom:897.253333pt;}
.y7_c02037{bottom:914.213333pt;}
.y6_c02037{bottom:931.013333pt;}
.y5_c02037{bottom:948.000000pt;}
.y1_c02037{bottom:996.800000pt;}
.h3_c02037{height:20.000000pt;}
.h2_c02037{height:43.441250pt;}
.h1_c02037{height:52.134375pt;}
.h6_c02037{height:57.787500pt;}
.h5_c02037{height:59.340000pt;}
.h8_c02037{height:60.519362pt;}
.h4_c02037{height:61.295000pt;}
.h7_c02037{height:62.812500pt;}
.h0_c02037{height:1056.000000pt;}
.w1_c02037{width:59.232000pt;}
.w0_c02037{width:816.000000pt;}
.x0_c02037{left:0.000000pt;}
.x3_c02037{left:14.720000pt;}
.x1_c02037{left:113.472000pt;}
.x6_c02037{left:160.666667pt;}
.x4_c02037{left:170.266667pt;}
.x5_c02037{left:194.266667pt;}
.x2_c02037{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02038 {
    display:none;
  }
  .loading-indicator_c02038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02038 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02038 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02038" -> "#page-container .classname_c02038")
 */
.pf_c02038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02038 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02038 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02038 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02038 {overflow:visible;}
  }
}
.c_c02038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02038 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02038:after { /* webkit #35443 */
  content: '';
}
.t_c02038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02038 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02038 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02038 { /* info for Javascript */
  display:none;
}
.l_c02038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02038:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02038 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02038.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02038;src:url('chunks/assets/font_0c7c15138631bf93c65620cf.woff2')format("woff");}.ff1_c02038{font-family:ff1_c02038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02038;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02038{font-family:ff2_c02038;line-height:0.863770;font-style:normal;font-weight: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_c02038;src:url('chunks/assets/font_579a4f121dabd114d5c19bee.woff2')format("woff");}.ff3_c02038{font-family:ff3_c02038;line-height:1.402354;font-style:normal;font-weight: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_c02038;src:url('chunks/assets/font_1712616dea39d378c2e13ccf.woff2')format("woff");}.ff4_c02038{font-family:ff4_c02038;line-height:1.311035;font-style:normal;font-weight: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_c02038;src:url('chunks/assets/font_a0d697d6925ac26cf7906036.woff2')format("woff");}.ff5_c02038{font-family:ff5_c02038;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02038{vertical-align:-77.760000px;}
.v1_c02038{vertical-align:-76.320000px;}
.v0_c02038{vertical-align:0.000000px;}
.ls4_c02038{letter-spacing:0.000000px;}
.ls5_c02038{letter-spacing:0.109200px;}
.ls2_c02038{letter-spacing:6.785280px;}
.ls1_c02038{letter-spacing:39.905280px;}
.ls3_c02038{letter-spacing:195.816000px;}
.ls0_c02038{letter-spacing:239.016000px;}
.sc__c02038{text-shadow:none;}
.sc0_c02038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02038{-webkit-text-stroke:0px transparent;}
.sc0_c02038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02038{word-spacing:-16.669200px;}
.ws0_c02038{word-spacing:-16.560000px;}
.ws2_c02038{word-spacing:0.000000px;}
._1_c02038{margin-left:-1.059575px;}
._5_c02038{width:1.016375px;}
._2_c02038{width:2.781616px;}
._10_c02038{width:3.785380px;}
._b_c02038{width:4.835388px;}
._c_c02038{width:5.895029px;}
._d_c02038{width:7.153721px;}
._11_c02038{width:11.632550px;}
._9_c02038{width:12.785512px;}
._8_c02038{width:13.909208px;}
._6_c02038{width:15.169092px;}
._3_c02038{width:19.937975px;}
._4_c02038{width:21.661341px;}
._7_c02038{width:23.183205px;}
._a_c02038{width:29.079691px;}
._e_c02038{width:44.064000px;}
._f_c02038{width:45.406875px;}
._0_c02038{width:1500.936000px;}
.fc1_c02038{color:rgb(192,80,77);}
.fc0_c02038{color:rgb(0,0,0);}
.fs0_c02038{font-size:59.760000px;}
.fs1_c02038{font-size:66.240000px;}
.fs2_c02038{font-size:72.000000px;}
.y0_c02038{bottom:0.000000px;}
.y4_c02038{bottom:4.680000px;}
.y3_c02038{bottom:41.796000px;}
.y2_c02038{bottom:75.456000px;}
.y2a_c02038{bottom:122.616000px;}
.y29_c02038{bottom:153.570000px;}
.y28_c02038{bottom:184.710000px;}
.y27_c02038{bottom:215.670000px;}
.y26_c02038{bottom:246.810000px;}
.y25_c02038{bottom:277.815000px;}
.y24_c02038{bottom:307.695000px;}
.y23_c02038{bottom:326.775000px;}
.y22_c02038{bottom:364.575000px;}
.y21_c02038{bottom:383.655000px;}
.y20_c02038{bottom:421.635000px;}
.y1f_c02038{bottom:440.535000px;}
.y1e_c02038{bottom:478.515000px;}
.y1d_c02038{bottom:497.055000px;}
.y1c_c02038{bottom:516.135000px;}
.y1b_c02038{bottom:535.065000px;}
.y1a_c02038{bottom:573.045000px;}
.y19_c02038{bottom:591.945000px;}
.y18_c02038{bottom:611.025000px;}
.y17_c02038{bottom:629.925000px;}
.y16_c02038{bottom:667.905000px;}
.y15_c02038{bottom:686.805000px;}
.y14_c02038{bottom:705.885000px;}
.y13_c02038{bottom:724.785000px;}
.y12_c02038{bottom:743.865000px;}
.y11_c02038{bottom:781.665000px;}
.y10_c02038{bottom:800.790000px;}
.yf_c02038{bottom:819.690000px;}
.ye_c02038{bottom:838.770000px;}
.yd_c02038{bottom:877.110000px;}
.yc_c02038{bottom:896.010000px;}
.yb_c02038{bottom:914.910000px;}
.ya_c02038{bottom:952.890000px;}
.y9_c02038{bottom:971.970000px;}
.y8_c02038{bottom:990.870000px;}
.y7_c02038{bottom:1028.850000px;}
.y6_c02038{bottom:1047.750000px;}
.y5_c02038{bottom:1066.860000px;}
.y1_c02038{bottom:1121.400000px;}
.h3_c02038{height:22.500000px;}
.h2_c02038{height:48.871406px;}
.h1_c02038{height:58.651172px;}
.h4_c02038{height:65.010937px;}
.h5_c02038{height:66.757500px;}
.h6_c02038{height:70.664062px;}
.h0_c02038{height:1188.000000px;}
.w1_c02038{width:66.636000px;}
.w0_c02038{width:918.000000px;}
.x0_c02038{left:0.000000px;}
.x3_c02038{left:16.560000px;}
.x1_c02038{left:127.656000px;}
.x5_c02038{left:180.750000px;}
.x4_c02038{left:218.550000px;}
.x2_c02038{left:820.950000px;}
@media print{
.v2_c02038{vertical-align:-69.120000pt;}
.v1_c02038{vertical-align:-67.840000pt;}
.v0_c02038{vertical-align:0.000000pt;}
.ls4_c02038{letter-spacing:0.000000pt;}
.ls5_c02038{letter-spacing:0.097067pt;}
.ls2_c02038{letter-spacing:6.031360pt;}
.ls1_c02038{letter-spacing:35.471360pt;}
.ls3_c02038{letter-spacing:174.058667pt;}
.ls0_c02038{letter-spacing:212.458667pt;}
.ws1_c02038{word-spacing:-14.817067pt;}
.ws0_c02038{word-spacing:-14.720000pt;}
.ws2_c02038{word-spacing:0.000000pt;}
._1_c02038{margin-left:-0.941844pt;}
._5_c02038{width:0.903444pt;}
._2_c02038{width:2.472548pt;}
._10_c02038{width:3.364782pt;}
._b_c02038{width:4.298122pt;}
._c_c02038{width:5.240026pt;}
._d_c02038{width:6.358863pt;}
._11_c02038{width:10.340045pt;}
._9_c02038{width:11.364900pt;}
._8_c02038{width:12.363740pt;}
._6_c02038{width:13.483638pt;}
._3_c02038{width:17.722644pt;}
._4_c02038{width:19.254525pt;}
._7_c02038{width:20.607293pt;}
._a_c02038{width:25.848614pt;}
._e_c02038{width:39.168000pt;}
._f_c02038{width:40.361667pt;}
._0_c02038{width:1334.165333pt;}
.fs0_c02038{font-size:53.120000pt;}
.fs1_c02038{font-size:58.880000pt;}
.fs2_c02038{font-size:64.000000pt;}
.y0_c02038{bottom:0.000000pt;}
.y4_c02038{bottom:4.160000pt;}
.y3_c02038{bottom:37.152000pt;}
.y2_c02038{bottom:67.072000pt;}
.y2a_c02038{bottom:108.992000pt;}
.y29_c02038{bottom:136.506667pt;}
.y28_c02038{bottom:164.186667pt;}
.y27_c02038{bottom:191.706667pt;}
.y26_c02038{bottom:219.386667pt;}
.y25_c02038{bottom:246.946667pt;}
.y24_c02038{bottom:273.506667pt;}
.y23_c02038{bottom:290.466667pt;}
.y22_c02038{bottom:324.066667pt;}
.y21_c02038{bottom:341.026667pt;}
.y20_c02038{bottom:374.786667pt;}
.y1f_c02038{bottom:391.586667pt;}
.y1e_c02038{bottom:425.346667pt;}
.y1d_c02038{bottom:441.826667pt;}
.y1c_c02038{bottom:458.786667pt;}
.y1b_c02038{bottom:475.613333pt;}
.y1a_c02038{bottom:509.373333pt;}
.y19_c02038{bottom:526.173333pt;}
.y18_c02038{bottom:543.133333pt;}
.y17_c02038{bottom:559.933333pt;}
.y16_c02038{bottom:593.693333pt;}
.y15_c02038{bottom:610.493333pt;}
.y14_c02038{bottom:627.453333pt;}
.y13_c02038{bottom:644.253333pt;}
.y12_c02038{bottom:661.213333pt;}
.y11_c02038{bottom:694.813333pt;}
.y10_c02038{bottom:711.813333pt;}
.yf_c02038{bottom:728.613333pt;}
.ye_c02038{bottom:745.573333pt;}
.yd_c02038{bottom:779.653333pt;}
.yc_c02038{bottom:796.453333pt;}
.yb_c02038{bottom:813.253333pt;}
.ya_c02038{bottom:847.013333pt;}
.y9_c02038{bottom:863.973333pt;}
.y8_c02038{bottom:880.773333pt;}
.y7_c02038{bottom:914.533333pt;}
.y6_c02038{bottom:931.333333pt;}
.y5_c02038{bottom:948.320000pt;}
.y1_c02038{bottom:996.800000pt;}
.h3_c02038{height:20.000000pt;}
.h2_c02038{height:43.441250pt;}
.h1_c02038{height:52.134375pt;}
.h4_c02038{height:57.787500pt;}
.h5_c02038{height:59.340000pt;}
.h6_c02038{height:62.812500pt;}
.h0_c02038{height:1056.000000pt;}
.w1_c02038{width:59.232000pt;}
.w0_c02038{width:816.000000pt;}
.x0_c02038{left:0.000000pt;}
.x3_c02038{left:14.720000pt;}
.x1_c02038{left:113.472000pt;}
.x5_c02038{left:160.666667pt;}
.x4_c02038{left:194.266667pt;}
.x2_c02038{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02039 {
    display:none;
  }
  .loading-indicator_c02039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02039" -> "#page-container .classname_c02039")
 */
.pf_c02039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02039 {overflow:visible;}
  }
}
.c_c02039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02039:after { /* webkit #35443 */
  content: '';
}
.t_c02039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02039 { /* info for Javascript */
  display:none;
}
.l_c02039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02039:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02039 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02039.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02039;src:url('chunks/assets/font_94da0e1fd7f7136f7b876553.woff2')format("woff");}.ff1_c02039{font-family:ff1_c02039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02039;src:url('chunks/assets/font_ccbf79486361ad111fb99109.woff2')format("woff");}.ff2_c02039{font-family:ff2_c02039;line-height:0.863770;font-style:normal;font-weight: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_c02039;src:url('chunks/assets/font_ed9d233955d36d5ae1a92340.woff2')format("woff");}.ff3_c02039{font-family:ff3_c02039;line-height:1.112305;font-style:normal;font-weight: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_c02039;src:url('chunks/assets/font_e32d84606320c85a8c8b1e4b.woff2')format("woff");}.ff4_c02039{font-family:ff4_c02039;line-height:1.402354;font-style:normal;font-weight: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_c02039;src:url('chunks/assets/font_885cdf7ef1a4459ae7103685.woff2')format("woff");}.ff5_c02039{font-family:ff5_c02039;line-height:1.311035;font-style:normal;font-weight: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_c02039;src:url('chunks/assets/font_6cc99781696a4f2e5851db07.woff2')format("woff");}.ff6_c02039{font-family:ff6_c02039;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02039{vertical-align:0.000000px;}
.ls3_c02039{letter-spacing:-0.720000px;}
.ls2_c02039{letter-spacing:0.000000px;}
.ls1_c02039{letter-spacing:6.785280px;}
.ls0_c02039{letter-spacing:39.905280px;}
.sc__c02039{text-shadow:none;}
.sc0_c02039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02039{-webkit-text-stroke:0px transparent;}
.sc0_c02039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02039{word-spacing:0.000000px;}
._5_c02039{margin-left:-1.440000px;}
._3_c02039{width:1.080000px;}
._8_c02039{width:2.297975px;}
._12_c02039{width:3.580966px;}
._16_c02039{width:4.702908px;}
._17_c02039{width:6.123675px;}
._11_c02039{width:8.081412px;}
._9_c02039{width:9.472254px;}
._a_c02039{width:10.912717px;}
._1_c02039{width:12.456000px;}
._2_c02039{width:13.536000px;}
._4_c02039{width:14.544000px;}
._10_c02039{width:15.546041px;}
._d_c02039{width:18.397241px;}
._c_c02039{width:19.673412px;}
._e_c02039{width:20.732988px;}
._f_c02039{width:21.775879px;}
._b_c02039{width:23.581175px;}
._14_c02039{width:24.974004px;}
._7_c02039{width:26.280000px;}
._13_c02039{width:27.357054px;}
._6_c02039{width:28.632000px;}
._15_c02039{width:30.015824px;}
._18_c02039{width:32.987454px;}
._0_c02039{width:1500.936000px;}
.fc1_c02039{color:rgb(192,80,77);}
.fc0_c02039{color:rgb(0,0,0);}
.fs0_c02039{font-size:59.760000px;}
.fs1_c02039{font-size:66.240000px;}
.fs2_c02039{font-size:72.000000px;}
.y0_c02039{bottom:0.000000px;}
.y4_c02039{bottom:4.680000px;}
.y3_c02039{bottom:41.796000px;}
.y2_c02039{bottom:75.456000px;}
.y34_c02039{bottom:126.576000px;}
.y33_c02039{bottom:145.656000px;}
.y32_c02039{bottom:164.550000px;}
.y31_c02039{bottom:183.450000px;}
.y30_c02039{bottom:202.170000px;}
.y2f_c02039{bottom:221.070000px;}
.y2e_c02039{bottom:240.150000px;}
.y2d_c02039{bottom:259.050000px;}
.y2c_c02039{bottom:277.995000px;}
.y2b_c02039{bottom:297.075000px;}
.y2a_c02039{bottom:315.975000px;}
.y29_c02039{bottom:335.055000px;}
.y28_c02039{bottom:353.955000px;}
.y27_c02039{bottom:372.855000px;}
.y26_c02039{bottom:391.935000px;}
.y25_c02039{bottom:410.835000px;}
.y24_c02039{bottom:429.915000px;}
.y23_c02039{bottom:448.815000px;}
.y22_c02039{bottom:467.715000px;}
.y21_c02039{bottom:486.795000px;}
.y20_c02039{bottom:505.695000px;}
.y1f_c02039{bottom:524.775000px;}
.y1e_c02039{bottom:543.705000px;}
.y1d_c02039{bottom:562.605000px;}
.y1c_c02039{bottom:581.685000px;}
.y1b_c02039{bottom:600.945000px;}
.y1a_c02039{bottom:620.025000px;}
.y19_c02039{bottom:638.925000px;}
.y18_c02039{bottom:658.005000px;}
.y17_c02039{bottom:676.905000px;}
.y16_c02039{bottom:695.805000px;}
.y15_c02039{bottom:714.885000px;}
.y14_c02039{bottom:733.785000px;}
.y13_c02039{bottom:752.865000px;}
.y12_c02039{bottom:771.765000px;}
.y11_c02039{bottom:790.665000px;}
.y10_c02039{bottom:809.790000px;}
.yf_c02039{bottom:828.690000px;}
.ye_c02039{bottom:847.770000px;}
.yd_c02039{bottom:866.670000px;}
.yc_c02039{bottom:885.570000px;}
.yb_c02039{bottom:904.650000px;}
.ya_c02039{bottom:923.550000px;}
.y9_c02039{bottom:942.630000px;}
.y8_c02039{bottom:972.150000px;}
.y7_c02039{bottom:1003.290000px;}
.y6_c02039{bottom:1034.250000px;}
.y5_c02039{bottom:1065.420000px;}
.y1_c02039{bottom:1121.400000px;}
.h3_c02039{height:22.500000px;}
.h2_c02039{height:48.871406px;}
.h1_c02039{height:58.651172px;}
.h6_c02039{height:65.010937px;}
.h8_c02039{height:66.757500px;}
.h5_c02039{height:68.084282px;}
.h7_c02039{height:68.956875px;}
.h4_c02039{height:70.664062px;}
.h0_c02039{height:1188.000000px;}
.w1_c02039{width:66.636000px;}
.w0_c02039{width:918.000000px;}
.x0_c02039{left:0.000000px;}
.x3_c02039{left:16.560000px;}
.x1_c02039{left:127.656000px;}
.x4_c02039{left:191.550000px;}
.x5_c02039{left:218.550000px;}
.x2_c02039{left:820.950000px;}
@media print{
.v0_c02039{vertical-align:0.000000pt;}
.ls3_c02039{letter-spacing:-0.640000pt;}
.ls2_c02039{letter-spacing:0.000000pt;}
.ls1_c02039{letter-spacing:6.031360pt;}
.ls0_c02039{letter-spacing:35.471360pt;}
.ws0_c02039{word-spacing:0.000000pt;}
._5_c02039{margin-left:-1.280000pt;}
._3_c02039{width:0.960000pt;}
._8_c02039{width:2.042644pt;}
._12_c02039{width:3.183081pt;}
._16_c02039{width:4.180362pt;}
._17_c02039{width:5.443267pt;}
._11_c02039{width:7.183478pt;}
._9_c02039{width:8.419781pt;}
._a_c02039{width:9.700193pt;}
._1_c02039{width:11.072000pt;}
._2_c02039{width:12.032000pt;}
._4_c02039{width:12.928000pt;}
._10_c02039{width:13.818703pt;}
._d_c02039{width:16.353103pt;}
._c_c02039{width:17.487478pt;}
._e_c02039{width:18.429322pt;}
._f_c02039{width:19.356337pt;}
._b_c02039{width:20.961044pt;}
._14_c02039{width:22.199114pt;}
._7_c02039{width:23.360000pt;}
._13_c02039{width:24.317381pt;}
._6_c02039{width:25.450667pt;}
._15_c02039{width:26.680732pt;}
._18_c02039{width:29.322181pt;}
._0_c02039{width:1334.165333pt;}
.fs0_c02039{font-size:53.120000pt;}
.fs1_c02039{font-size:58.880000pt;}
.fs2_c02039{font-size:64.000000pt;}
.y0_c02039{bottom:0.000000pt;}
.y4_c02039{bottom:4.160000pt;}
.y3_c02039{bottom:37.152000pt;}
.y2_c02039{bottom:67.072000pt;}
.y34_c02039{bottom:112.512000pt;}
.y33_c02039{bottom:129.472000pt;}
.y32_c02039{bottom:146.266667pt;}
.y31_c02039{bottom:163.066667pt;}
.y30_c02039{bottom:179.706667pt;}
.y2f_c02039{bottom:196.506667pt;}
.y2e_c02039{bottom:213.466667pt;}
.y2d_c02039{bottom:230.266667pt;}
.y2c_c02039{bottom:247.106667pt;}
.y2b_c02039{bottom:264.066667pt;}
.y2a_c02039{bottom:280.866667pt;}
.y29_c02039{bottom:297.826667pt;}
.y28_c02039{bottom:314.626667pt;}
.y27_c02039{bottom:331.426667pt;}
.y26_c02039{bottom:348.386667pt;}
.y25_c02039{bottom:365.186667pt;}
.y24_c02039{bottom:382.146667pt;}
.y23_c02039{bottom:398.946667pt;}
.y22_c02039{bottom:415.746667pt;}
.y21_c02039{bottom:432.706667pt;}
.y20_c02039{bottom:449.506667pt;}
.y1f_c02039{bottom:466.466667pt;}
.y1e_c02039{bottom:483.293333pt;}
.y1d_c02039{bottom:500.093333pt;}
.y1c_c02039{bottom:517.053333pt;}
.y1b_c02039{bottom:534.173333pt;}
.y1a_c02039{bottom:551.133333pt;}
.y19_c02039{bottom:567.933333pt;}
.y18_c02039{bottom:584.893333pt;}
.y17_c02039{bottom:601.693333pt;}
.y16_c02039{bottom:618.493333pt;}
.y15_c02039{bottom:635.453333pt;}
.y14_c02039{bottom:652.253333pt;}
.y13_c02039{bottom:669.213333pt;}
.y12_c02039{bottom:686.013333pt;}
.y11_c02039{bottom:702.813333pt;}
.y10_c02039{bottom:719.813333pt;}
.yf_c02039{bottom:736.613333pt;}
.ye_c02039{bottom:753.573333pt;}
.yd_c02039{bottom:770.373333pt;}
.yc_c02039{bottom:787.173333pt;}
.yb_c02039{bottom:804.133333pt;}
.ya_c02039{bottom:820.933333pt;}
.y9_c02039{bottom:837.893333pt;}
.y8_c02039{bottom:864.133333pt;}
.y7_c02039{bottom:891.813333pt;}
.y6_c02039{bottom:919.333333pt;}
.y5_c02039{bottom:947.040000pt;}
.y1_c02039{bottom:996.800000pt;}
.h3_c02039{height:20.000000pt;}
.h2_c02039{height:43.441250pt;}
.h1_c02039{height:52.134375pt;}
.h6_c02039{height:57.787500pt;}
.h8_c02039{height:59.340000pt;}
.h5_c02039{height:60.519362pt;}
.h7_c02039{height:61.295000pt;}
.h4_c02039{height:62.812500pt;}
.h0_c02039{height:1056.000000pt;}
.w1_c02039{width:59.232000pt;}
.w0_c02039{width:816.000000pt;}
.x0_c02039{left:0.000000pt;}
.x3_c02039{left:14.720000pt;}
.x1_c02039{left:113.472000pt;}
.x4_c02039{left:170.266667pt;}
.x5_c02039{left:194.266667pt;}
.x2_c02039{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02040 {
    display:none;
  }
  .loading-indicator_c02040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02040 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02040 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02040" -> "#page-container .classname_c02040")
 */
.pf_c02040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02040 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02040 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02040 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02040 {overflow:visible;}
  }
}
.c_c02040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02040 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02040:after { /* webkit #35443 */
  content: '';
}
.t_c02040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02040 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02040 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02040 { /* info for Javascript */
  display:none;
}
.l_c02040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02040:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02040 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02040.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02040;src:url('chunks/assets/font_03b271072a4f06415807b6a4.woff2')format("woff");}.ff1_c02040{font-family:ff1_c02040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02040;src:url('chunks/assets/font_adef02499f7e6e79b96c6dc1.woff2')format("woff");}.ff2_c02040{font-family:ff2_c02040;line-height:0.863770;font-style:normal;font-weight: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_c02040;src:url('chunks/assets/font_7af95a5bb3d2a905f565dc16.woff2')format("woff");}.ff3_c02040{font-family:ff3_c02040;line-height:1.402354;font-style:normal;font-weight: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_c02040;src:url('chunks/assets/font_00f8c33beda47d7bedacfcf7.woff2')format("woff");}.ff4_c02040{font-family:ff4_c02040;line-height:1.311035;font-style:normal;font-weight: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_c02040;src:url('chunks/assets/font_9a1a6b985f1a73b05215bca9.woff2')format("woff");}.ff5_c02040{font-family:ff5_c02040;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02040{vertical-align:-76.320000px;}
.v0_c02040{vertical-align:0.000000px;}
.ls3_c02040{letter-spacing:0.000000px;}
.ls0_c02040{letter-spacing:6.785280px;}
.ls2_c02040{letter-spacing:39.905280px;}
.ls1_c02040{letter-spacing:199.416000px;}
.sc__c02040{text-shadow:none;}
.sc0_c02040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02040{-webkit-text-stroke:0px transparent;}
.sc0_c02040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02040{word-spacing:-16.560000px;}
.ws1_c02040{word-spacing:0.000000px;}
._1_c02040{margin-left:-1.655934px;}
._6_c02040{width:1.079934px;}
._3_c02040{width:2.726020px;}
._7_c02040{width:3.744000px;}
._8_c02040{width:4.782736px;}
._2_c02040{width:5.828988px;}
._b_c02040{width:7.494091px;}
._11_c02040{width:11.658041px;}
._a_c02040{width:14.760000px;}
._9_c02040{width:16.343934px;}
._c_c02040{width:19.673479px;}
._d_c02040{width:20.997153px;}
._10_c02040{width:26.562041px;}
._e_c02040{width:30.470400px;}
._f_c02040{width:31.662588px;}
._4_c02040{width:36.504000px;}
._5_c02040{width:38.124000px;}
._0_c02040{width:1500.936000px;}
.fc1_c02040{color:rgb(192,80,77);}
.fc0_c02040{color:rgb(0,0,0);}
.fs0_c02040{font-size:59.760000px;}
.fs1_c02040{font-size:66.240000px;}
.fs2_c02040{font-size:72.000000px;}
.y0_c02040{bottom:0.000000px;}
.y4_c02040{bottom:4.680000px;}
.y3_c02040{bottom:41.796000px;}
.y2_c02040{bottom:75.456000px;}
.y2d_c02040{bottom:110.196000px;}
.y2c_c02040{bottom:129.096000px;}
.y2b_c02040{bottom:148.176000px;}
.y2a_c02040{bottom:167.070000px;}
.y29_c02040{bottom:186.150000px;}
.y28_c02040{bottom:205.050000px;}
.y27_c02040{bottom:224.130000px;}
.y26_c02040{bottom:243.030000px;}
.y25_c02040{bottom:261.930000px;}
.y24_c02040{bottom:281.055000px;}
.y23_c02040{bottom:299.955000px;}
.y22_c02040{bottom:319.035000px;}
.y21_c02040{bottom:337.935000px;}
.y20_c02040{bottom:356.835000px;}
.y1f_c02040{bottom:375.915000px;}
.y1e_c02040{bottom:394.815000px;}
.y1d_c02040{bottom:413.895000px;}
.y1c_c02040{bottom:432.795000px;}
.y1b_c02040{bottom:451.695000px;}
.y1a_c02040{bottom:470.775000px;}
.y19_c02040{bottom:489.675000px;}
.y18_c02040{bottom:508.755000px;}
.y17_c02040{bottom:538.305000px;}
.y16_c02040{bottom:569.445000px;}
.y15_c02040{bottom:600.405000px;}
.y14_c02040{bottom:631.545000px;}
.y13_c02040{bottom:662.505000px;}
.y12_c02040{bottom:693.645000px;}
.y11_c02040{bottom:724.605000px;}
.y10_c02040{bottom:755.745000px;}
.yf_c02040{bottom:786.705000px;}
.ye_c02040{bottom:817.710000px;}
.yd_c02040{bottom:848.850000px;}
.yc_c02040{bottom:879.810000px;}
.yb_c02040{bottom:910.950000px;}
.ya_c02040{bottom:941.910000px;}
.y9_c02040{bottom:971.970000px;}
.y8_c02040{bottom:990.870000px;}
.y7_c02040{bottom:1028.850000px;}
.y6_c02040{bottom:1047.750000px;}
.y5_c02040{bottom:1066.860000px;}
.y1_c02040{bottom:1121.400000px;}
.h3_c02040{height:22.500000px;}
.h2_c02040{height:48.871406px;}
.h1_c02040{height:58.651172px;}
.h8_c02040{height:64.546875px;}
.h5_c02040{height:65.010937px;}
.h6_c02040{height:66.757500px;}
.h4_c02040{height:68.084282px;}
.h7_c02040{height:70.664062px;}
.h0_c02040{height:1188.000000px;}
.w1_c02040{width:66.636000px;}
.w0_c02040{width:918.000000px;}
.x0_c02040{left:0.000000px;}
.x3_c02040{left:16.560000px;}
.x1_c02040{left:127.656000px;}
.x6_c02040{left:181.650000px;}
.x4_c02040{left:191.550000px;}
.x5_c02040{left:218.550000px;}
.x2_c02040{left:820.950000px;}
@media print{
.v1_c02040{vertical-align:-67.840000pt;}
.v0_c02040{vertical-align:0.000000pt;}
.ls3_c02040{letter-spacing:0.000000pt;}
.ls0_c02040{letter-spacing:6.031360pt;}
.ls2_c02040{letter-spacing:35.471360pt;}
.ls1_c02040{letter-spacing:177.258667pt;}
.ws0_c02040{word-spacing:-14.720000pt;}
.ws1_c02040{word-spacing:0.000000pt;}
._1_c02040{margin-left:-1.471941pt;}
._6_c02040{width:0.959941pt;}
._3_c02040{width:2.423129pt;}
._7_c02040{width:3.328000pt;}
._8_c02040{width:4.251321pt;}
._2_c02040{width:5.181322pt;}
._b_c02040{width:6.661414pt;}
._11_c02040{width:10.362703pt;}
._a_c02040{width:13.120000pt;}
._9_c02040{width:14.527941pt;}
._c_c02040{width:17.487537pt;}
._d_c02040{width:18.664136pt;}
._10_c02040{width:23.610703pt;}
._e_c02040{width:27.084800pt;}
._f_c02040{width:28.144522pt;}
._4_c02040{width:32.448000pt;}
._5_c02040{width:33.888000pt;}
._0_c02040{width:1334.165333pt;}
.fs0_c02040{font-size:53.120000pt;}
.fs1_c02040{font-size:58.880000pt;}
.fs2_c02040{font-size:64.000000pt;}
.y0_c02040{bottom:0.000000pt;}
.y4_c02040{bottom:4.160000pt;}
.y3_c02040{bottom:37.152000pt;}
.y2_c02040{bottom:67.072000pt;}
.y2d_c02040{bottom:97.952000pt;}
.y2c_c02040{bottom:114.752000pt;}
.y2b_c02040{bottom:131.712000pt;}
.y2a_c02040{bottom:148.506667pt;}
.y29_c02040{bottom:165.466667pt;}
.y28_c02040{bottom:182.266667pt;}
.y27_c02040{bottom:199.226667pt;}
.y26_c02040{bottom:216.026667pt;}
.y25_c02040{bottom:232.826667pt;}
.y24_c02040{bottom:249.826667pt;}
.y23_c02040{bottom:266.626667pt;}
.y22_c02040{bottom:283.586667pt;}
.y21_c02040{bottom:300.386667pt;}
.y20_c02040{bottom:317.186667pt;}
.y1f_c02040{bottom:334.146667pt;}
.y1e_c02040{bottom:350.946667pt;}
.y1d_c02040{bottom:367.906667pt;}
.y1c_c02040{bottom:384.706667pt;}
.y1b_c02040{bottom:401.506667pt;}
.y1a_c02040{bottom:418.466667pt;}
.y19_c02040{bottom:435.266667pt;}
.y18_c02040{bottom:452.226667pt;}
.y17_c02040{bottom:478.493333pt;}
.y16_c02040{bottom:506.173333pt;}
.y15_c02040{bottom:533.693333pt;}
.y14_c02040{bottom:561.373333pt;}
.y13_c02040{bottom:588.893333pt;}
.y12_c02040{bottom:616.573333pt;}
.y11_c02040{bottom:644.093333pt;}
.y10_c02040{bottom:671.773333pt;}
.yf_c02040{bottom:699.293333pt;}
.ye_c02040{bottom:726.853333pt;}
.yd_c02040{bottom:754.533333pt;}
.yc_c02040{bottom:782.053333pt;}
.yb_c02040{bottom:809.733333pt;}
.ya_c02040{bottom:837.253333pt;}
.y9_c02040{bottom:863.973333pt;}
.y8_c02040{bottom:880.773333pt;}
.y7_c02040{bottom:914.533333pt;}
.y6_c02040{bottom:931.333333pt;}
.y5_c02040{bottom:948.320000pt;}
.y1_c02040{bottom:996.800000pt;}
.h3_c02040{height:20.000000pt;}
.h2_c02040{height:43.441250pt;}
.h1_c02040{height:52.134375pt;}
.h8_c02040{height:57.375000pt;}
.h5_c02040{height:57.787500pt;}
.h6_c02040{height:59.340000pt;}
.h4_c02040{height:60.519362pt;}
.h7_c02040{height:62.812500pt;}
.h0_c02040{height:1056.000000pt;}
.w1_c02040{width:59.232000pt;}
.w0_c02040{width:816.000000pt;}
.x0_c02040{left:0.000000pt;}
.x3_c02040{left:14.720000pt;}
.x1_c02040{left:113.472000pt;}
.x6_c02040{left:161.466667pt;}
.x4_c02040{left:170.266667pt;}
.x5_c02040{left:194.266667pt;}
.x2_c02040{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02041 {
    display:none;
  }
  .loading-indicator_c02041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02041 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02041 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02041" -> "#page-container .classname_c02041")
 */
.pf_c02041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02041 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02041 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02041 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02041 {overflow:visible;}
  }
}
.c_c02041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02041 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02041:after { /* webkit #35443 */
  content: '';
}
.t_c02041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02041 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02041 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02041 { /* info for Javascript */
  display:none;
}
.l_c02041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02041:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02041 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02041.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02041;src:url('chunks/assets/font_3f980872f50dfc68ac31d087.woff2')format("woff");}.ff1_c02041{font-family:ff1_c02041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02041;src:url('chunks/assets/font_44af4564633968b4ac3e67a3.woff2')format("woff");}.ff2_c02041{font-family:ff2_c02041;line-height:0.863770;font-style:normal;font-weight: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_c02041;src:url('chunks/assets/font_30c6b78180c3d463e6d680eb.woff2')format("woff");}.ff3_c02041{font-family:ff3_c02041;line-height:1.311035;font-style:normal;font-weight: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_c02041;src:url('chunks/assets/font_40367e02832e8b4f071fdf98.woff2')format("woff");}.ff4_c02041{font-family:ff4_c02041;line-height:1.435059;font-style:normal;font-weight: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_c02041;src:url('chunks/assets/font_65674b14876c95143a6915ee.woff2')format("woff");}.ff5_c02041{font-family:ff5_c02041;line-height:1.402354;font-style:normal;font-weight: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_c02041;src:url('chunks/assets/font_d05718050f8a99ac1512e5e8.woff2')format("woff");}.ff6_c02041{font-family:ff6_c02041;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02041{vertical-align:0.000000px;}
.ls3_c02041{letter-spacing:-0.288000px;}
.ls2_c02041{letter-spacing:0.000000px;}
.ls1_c02041{letter-spacing:6.785280px;}
.ls0_c02041{letter-spacing:39.905280px;}
.sc__c02041{text-shadow:none;}
.sc0_c02041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02041{-webkit-text-stroke:0px transparent;}
.sc0_c02041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02041{word-spacing:0.000000px;}
._1_c02041{margin-left:-1.059575px;}
._4_c02041{width:1.029038px;}
._6_c02041{width:2.141340px;}
._5_c02041{width:3.179388px;}
._a_c02041{width:4.371641px;}
._b_c02041{width:5.896552px;}
._8_c02041{width:7.702255px;}
._3_c02041{width:9.406742px;}
._2_c02041{width:10.664508px;}
._c_c02041{width:11.689505px;}
._d_c02041{width:13.098298px;}
._9_c02041{width:14.970041px;}
._10_c02041{width:16.416000px;}
._7_c02041{width:18.414588px;}
._f_c02041{width:21.263570px;}
._e_c02041{width:22.388988px;}
._11_c02041{width:26.856000px;}
._12_c02041{width:28.152000px;}
._0_c02041{width:1500.936000px;}
.fc1_c02041{color:rgb(192,80,77);}
.fc0_c02041{color:rgb(0,0,0);}
.fs0_c02041{font-size:59.760000px;}
.fs1_c02041{font-size:66.240000px;}
.fs2_c02041{font-size:72.000000px;}
.y0_c02041{bottom:0.000000px;}
.y4_c02041{bottom:4.680000px;}
.y3_c02041{bottom:41.796000px;}
.y2_c02041{bottom:75.456000px;}
.y2e_c02041{bottom:120.816000px;}
.y2d_c02041{bottom:151.950000px;}
.y2c_c02041{bottom:182.910000px;}
.y2b_c02041{bottom:214.050000px;}
.y2a_c02041{bottom:245.010000px;}
.y29_c02041{bottom:276.195000px;}
.y28_c02041{bottom:307.155000px;}
.y27_c02041{bottom:338.295000px;}
.y26_c02041{bottom:369.255000px;}
.y25_c02041{bottom:400.395000px;}
.y24_c02041{bottom:431.355000px;}
.y23_c02041{bottom:462.315000px;}
.y22_c02041{bottom:493.455000px;}
.y21_c02041{bottom:524.415000px;}
.y20_c02041{bottom:554.505000px;}
.y1f_c02041{bottom:573.405000px;}
.y1e_c02041{bottom:592.305000px;}
.y1d_c02041{bottom:611.385000px;}
.y1c_c02041{bottom:630.285000px;}
.y1b_c02041{bottom:649.365000px;}
.y1a_c02041{bottom:668.265000px;}
.y19_c02041{bottom:687.165000px;}
.y18_c02041{bottom:706.245000px;}
.y17_c02041{bottom:725.145000px;}
.y16_c02041{bottom:744.225000px;}
.y15_c02041{bottom:763.125000px;}
.y14_c02041{bottom:782.025000px;}
.y13_c02041{bottom:800.790000px;}
.y12_c02041{bottom:819.690000px;}
.y11_c02041{bottom:838.770000px;}
.y10_c02041{bottom:857.670000px;}
.yf_c02041{bottom:876.750000px;}
.ye_c02041{bottom:895.650000px;}
.yd_c02041{bottom:914.550000px;}
.yc_c02041{bottom:933.630000px;}
.yb_c02041{bottom:952.530000px;}
.ya_c02041{bottom:971.610000px;}
.y9_c02041{bottom:990.510000px;}
.y8_c02041{bottom:1009.410000px;}
.y7_c02041{bottom:1028.490000px;}
.y6_c02041{bottom:1047.390000px;}
.y5_c02041{bottom:1066.500000px;}
.y1_c02041{bottom:1121.400000px;}
.h3_c02041{height:22.500000px;}
.h2_c02041{height:48.871406px;}
.h1_c02041{height:58.651172px;}
.h9_c02041{height:64.546875px;}
.h6_c02041{height:65.010937px;}
.h5_c02041{height:66.757500px;}
.h7_c02041{height:68.084282px;}
.h4_c02041{height:68.956875px;}
.h8_c02041{height:70.664062px;}
.h0_c02041{height:1188.000000px;}
.w1_c02041{width:66.636000px;}
.w0_c02041{width:918.000000px;}
.x0_c02041{left:0.000000px;}
.x3_c02041{left:16.560000px;}
.x1_c02041{left:127.656000px;}
.x6_c02041{left:180.750000px;}
.x4_c02041{left:191.550000px;}
.x5_c02041{left:218.550000px;}
.x2_c02041{left:820.950000px;}
@media print{
.v0_c02041{vertical-align:0.000000pt;}
.ls3_c02041{letter-spacing:-0.256000pt;}
.ls2_c02041{letter-spacing:0.000000pt;}
.ls1_c02041{letter-spacing:6.031360pt;}
.ls0_c02041{letter-spacing:35.471360pt;}
.ws0_c02041{word-spacing:0.000000pt;}
._1_c02041{margin-left:-0.941844pt;}
._4_c02041{width:0.914701pt;}
._6_c02041{width:1.903414pt;}
._5_c02041{width:2.826122pt;}
._a_c02041{width:3.885903pt;}
._b_c02041{width:5.241380pt;}
._8_c02041{width:6.846449pt;}
._3_c02041{width:8.361549pt;}
._2_c02041{width:9.479562pt;}
._c_c02041{width:10.390671pt;}
._d_c02041{width:11.642931pt;}
._9_c02041{width:13.306703pt;}
._10_c02041{width:14.592000pt;}
._7_c02041{width:16.368522pt;}
._f_c02041{width:18.900951pt;}
._e_c02041{width:19.901322pt;}
._11_c02041{width:23.872000pt;}
._12_c02041{width:25.024000pt;}
._0_c02041{width:1334.165333pt;}
.fs0_c02041{font-size:53.120000pt;}
.fs1_c02041{font-size:58.880000pt;}
.fs2_c02041{font-size:64.000000pt;}
.y0_c02041{bottom:0.000000pt;}
.y4_c02041{bottom:4.160000pt;}
.y3_c02041{bottom:37.152000pt;}
.y2_c02041{bottom:67.072000pt;}
.y2e_c02041{bottom:107.392000pt;}
.y2d_c02041{bottom:135.066667pt;}
.y2c_c02041{bottom:162.586667pt;}
.y2b_c02041{bottom:190.266667pt;}
.y2a_c02041{bottom:217.786667pt;}
.y29_c02041{bottom:245.506667pt;}
.y28_c02041{bottom:273.026667pt;}
.y27_c02041{bottom:300.706667pt;}
.y26_c02041{bottom:328.226667pt;}
.y25_c02041{bottom:355.906667pt;}
.y24_c02041{bottom:383.426667pt;}
.y23_c02041{bottom:410.946667pt;}
.y22_c02041{bottom:438.626667pt;}
.y21_c02041{bottom:466.146667pt;}
.y20_c02041{bottom:492.893333pt;}
.y1f_c02041{bottom:509.693333pt;}
.y1e_c02041{bottom:526.493333pt;}
.y1d_c02041{bottom:543.453333pt;}
.y1c_c02041{bottom:560.253333pt;}
.y1b_c02041{bottom:577.213333pt;}
.y1a_c02041{bottom:594.013333pt;}
.y19_c02041{bottom:610.813333pt;}
.y18_c02041{bottom:627.773333pt;}
.y17_c02041{bottom:644.573333pt;}
.y16_c02041{bottom:661.533333pt;}
.y15_c02041{bottom:678.333333pt;}
.y14_c02041{bottom:695.133333pt;}
.y13_c02041{bottom:711.813333pt;}
.y12_c02041{bottom:728.613333pt;}
.y11_c02041{bottom:745.573333pt;}
.y10_c02041{bottom:762.373333pt;}
.yf_c02041{bottom:779.333333pt;}
.ye_c02041{bottom:796.133333pt;}
.yd_c02041{bottom:812.933333pt;}
.yc_c02041{bottom:829.893333pt;}
.yb_c02041{bottom:846.693333pt;}
.ya_c02041{bottom:863.653333pt;}
.y9_c02041{bottom:880.453333pt;}
.y8_c02041{bottom:897.253333pt;}
.y7_c02041{bottom:914.213333pt;}
.y6_c02041{bottom:931.013333pt;}
.y5_c02041{bottom:948.000000pt;}
.y1_c02041{bottom:996.800000pt;}
.h3_c02041{height:20.000000pt;}
.h2_c02041{height:43.441250pt;}
.h1_c02041{height:52.134375pt;}
.h9_c02041{height:57.375000pt;}
.h6_c02041{height:57.787500pt;}
.h5_c02041{height:59.340000pt;}
.h7_c02041{height:60.519362pt;}
.h4_c02041{height:61.295000pt;}
.h8_c02041{height:62.812500pt;}
.h0_c02041{height:1056.000000pt;}
.w1_c02041{width:59.232000pt;}
.w0_c02041{width:816.000000pt;}
.x0_c02041{left:0.000000pt;}
.x3_c02041{left:14.720000pt;}
.x1_c02041{left:113.472000pt;}
.x6_c02041{left:160.666667pt;}
.x4_c02041{left:170.266667pt;}
.x5_c02041{left:194.266667pt;}
.x2_c02041{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02042 {
    display:none;
  }
  .loading-indicator_c02042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02042 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02042 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02042" -> "#page-container .classname_c02042")
 */
.pf_c02042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02042 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02042 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02042 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02042 {overflow:visible;}
  }
}
.c_c02042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02042 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02042:after { /* webkit #35443 */
  content: '';
}
.t_c02042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02042 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02042 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02042 { /* info for Javascript */
  display:none;
}
.l_c02042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02042:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02042 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02042.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02042;src:url('chunks/assets/font_1f36ab2aebe7872e58057301.woff2')format("woff");}.ff1_c02042{font-family:ff1_c02042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02042;src:url('chunks/assets/font_b6959c56e21bce763fd1084e.woff2')format("woff");}.ff2_c02042{font-family:ff2_c02042;line-height:0.863770;font-style:normal;font-weight: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_c02042;src:url('chunks/assets/font_58ef184693b1f6cda440d84a.woff2')format("woff");}.ff3_c02042{font-family:ff3_c02042;line-height:1.311035;font-style:normal;font-weight: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_c02042;src:url('chunks/assets/font_a5dc50b0be9c52c5804f2d2f.woff2')format("woff");}.ff4_c02042{font-family:ff4_c02042;line-height:1.435059;font-style:normal;font-weight: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_c02042;src:url('chunks/assets/font_8acfd39cda161b1cda59c6ab.woff2')format("woff");}.ff5_c02042{font-family:ff5_c02042;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02042{vertical-align:0.000000px;}
.ls2_c02042{letter-spacing:0.000000px;}
.ls1_c02042{letter-spacing:6.785280px;}
.ls0_c02042{letter-spacing:39.905280px;}
.sc__c02042{text-shadow:none;}
.sc0_c02042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02042{-webkit-text-stroke:0px transparent;}
.sc0_c02042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02042{word-spacing:0.000000px;}
._2_c02042{margin-left:-1.080000px;}
._4_c02042{width:1.224000px;}
._b_c02042{width:2.848188px;}
._e_c02042{width:4.211686px;}
._7_c02042{width:5.212800px;}
._1_c02042{width:6.264000px;}
._12_c02042{width:7.876270px;}
._a_c02042{width:9.273666px;}
._3_c02042{width:10.440000px;}
._5_c02042{width:11.664000px;}
._11_c02042{width:12.772158px;}
._8_c02042{width:13.777854px;}
._c_c02042{width:15.189097px;}
._9_c02042{width:21.528000px;}
._6_c02042{width:25.369854px;}
._10_c02042{width:26.562041px;}
._f_c02042{width:30.470400px;}
._d_c02042{width:45.374400px;}
._0_c02042{width:1500.936000px;}
.fc1_c02042{color:rgb(192,80,77);}
.fc0_c02042{color:rgb(0,0,0);}
.fs0_c02042{font-size:59.760000px;}
.fs1_c02042{font-size:66.240000px;}
.fs2_c02042{font-size:72.000000px;}
.y0_c02042{bottom:0.000000px;}
.y4_c02042{bottom:4.680000px;}
.y3_c02042{bottom:41.796000px;}
.y2_c02042{bottom:75.456000px;}
.y34_c02042{bottom:126.216000px;}
.y33_c02042{bottom:145.296000px;}
.y32_c02042{bottom:164.190000px;}
.y31_c02042{bottom:183.090000px;}
.y30_c02042{bottom:202.170000px;}
.y2f_c02042{bottom:221.070000px;}
.y2e_c02042{bottom:240.150000px;}
.y2d_c02042{bottom:259.050000px;}
.y2c_c02042{bottom:277.995000px;}
.y2b_c02042{bottom:297.075000px;}
.y2a_c02042{bottom:315.975000px;}
.y29_c02042{bottom:335.415000px;}
.y28_c02042{bottom:354.315000px;}
.y27_c02042{bottom:373.215000px;}
.y26_c02042{bottom:392.295000px;}
.y25_c02042{bottom:411.195000px;}
.y24_c02042{bottom:430.275000px;}
.y23_c02042{bottom:449.175000px;}
.y22_c02042{bottom:468.075000px;}
.y21_c02042{bottom:487.155000px;}
.y20_c02042{bottom:506.055000px;}
.y1f_c02042{bottom:525.135000px;}
.y1e_c02042{bottom:544.065000px;}
.y1d_c02042{bottom:562.965000px;}
.y1c_c02042{bottom:582.045000px;}
.y1b_c02042{bottom:600.945000px;}
.y1a_c02042{bottom:620.025000px;}
.y19_c02042{bottom:638.925000px;}
.y18_c02042{bottom:658.005000px;}
.y17_c02042{bottom:676.905000px;}
.y16_c02042{bottom:695.805000px;}
.y15_c02042{bottom:714.885000px;}
.y14_c02042{bottom:733.785000px;}
.y13_c02042{bottom:752.865000px;}
.y12_c02042{bottom:771.765000px;}
.y11_c02042{bottom:790.665000px;}
.y10_c02042{bottom:809.790000px;}
.yf_c02042{bottom:828.690000px;}
.ye_c02042{bottom:847.770000px;}
.yd_c02042{bottom:866.670000px;}
.yc_c02042{bottom:885.210000px;}
.yb_c02042{bottom:904.290000px;}
.ya_c02042{bottom:923.190000px;}
.y9_c02042{bottom:942.270000px;}
.y8_c02042{bottom:972.150000px;}
.y7_c02042{bottom:1003.290000px;}
.y6_c02042{bottom:1034.250000px;}
.y5_c02042{bottom:1065.420000px;}
.y1_c02042{bottom:1121.400000px;}
.h3_c02042{height:22.500000px;}
.h2_c02042{height:48.871406px;}
.h1_c02042{height:58.651172px;}
.h7_c02042{height:65.010937px;}
.h6_c02042{height:66.757500px;}
.h8_c02042{height:68.084282px;}
.h5_c02042{height:68.956875px;}
.h4_c02042{height:70.664062px;}
.h0_c02042{height:1188.000000px;}
.w1_c02042{width:66.636000px;}
.w0_c02042{width:918.000000px;}
.x0_c02042{left:0.000000px;}
.x3_c02042{left:16.560000px;}
.x1_c02042{left:127.656000px;}
.x4_c02042{left:180.750000px;}
.x5_c02042{left:191.550000px;}
.x6_c02042{left:218.550000px;}
.x2_c02042{left:820.950000px;}
@media print{
.v0_c02042{vertical-align:0.000000pt;}
.ls2_c02042{letter-spacing:0.000000pt;}
.ls1_c02042{letter-spacing:6.031360pt;}
.ls0_c02042{letter-spacing:35.471360pt;}
.ws0_c02042{word-spacing:0.000000pt;}
._2_c02042{margin-left:-0.960000pt;}
._4_c02042{width:1.088000pt;}
._b_c02042{width:2.531722pt;}
._e_c02042{width:3.743721pt;}
._7_c02042{width:4.633600pt;}
._1_c02042{width:5.568000pt;}
._12_c02042{width:7.001129pt;}
._a_c02042{width:8.243259pt;}
._3_c02042{width:9.280000pt;}
._5_c02042{width:10.368000pt;}
._11_c02042{width:11.353029pt;}
._8_c02042{width:12.246981pt;}
._c_c02042{width:13.501420pt;}
._9_c02042{width:19.136000pt;}
._6_c02042{width:22.550981pt;}
._10_c02042{width:23.610703pt;}
._f_c02042{width:27.084800pt;}
._d_c02042{width:40.332800pt;}
._0_c02042{width:1334.165333pt;}
.fs0_c02042{font-size:53.120000pt;}
.fs1_c02042{font-size:58.880000pt;}
.fs2_c02042{font-size:64.000000pt;}
.y0_c02042{bottom:0.000000pt;}
.y4_c02042{bottom:4.160000pt;}
.y3_c02042{bottom:37.152000pt;}
.y2_c02042{bottom:67.072000pt;}
.y34_c02042{bottom:112.192000pt;}
.y33_c02042{bottom:129.152000pt;}
.y32_c02042{bottom:145.946667pt;}
.y31_c02042{bottom:162.746667pt;}
.y30_c02042{bottom:179.706667pt;}
.y2f_c02042{bottom:196.506667pt;}
.y2e_c02042{bottom:213.466667pt;}
.y2d_c02042{bottom:230.266667pt;}
.y2c_c02042{bottom:247.106667pt;}
.y2b_c02042{bottom:264.066667pt;}
.y2a_c02042{bottom:280.866667pt;}
.y29_c02042{bottom:298.146667pt;}
.y28_c02042{bottom:314.946667pt;}
.y27_c02042{bottom:331.746667pt;}
.y26_c02042{bottom:348.706667pt;}
.y25_c02042{bottom:365.506667pt;}
.y24_c02042{bottom:382.466667pt;}
.y23_c02042{bottom:399.266667pt;}
.y22_c02042{bottom:416.066667pt;}
.y21_c02042{bottom:433.026667pt;}
.y20_c02042{bottom:449.826667pt;}
.y1f_c02042{bottom:466.786667pt;}
.y1e_c02042{bottom:483.613333pt;}
.y1d_c02042{bottom:500.413333pt;}
.y1c_c02042{bottom:517.373333pt;}
.y1b_c02042{bottom:534.173333pt;}
.y1a_c02042{bottom:551.133333pt;}
.y19_c02042{bottom:567.933333pt;}
.y18_c02042{bottom:584.893333pt;}
.y17_c02042{bottom:601.693333pt;}
.y16_c02042{bottom:618.493333pt;}
.y15_c02042{bottom:635.453333pt;}
.y14_c02042{bottom:652.253333pt;}
.y13_c02042{bottom:669.213333pt;}
.y12_c02042{bottom:686.013333pt;}
.y11_c02042{bottom:702.813333pt;}
.y10_c02042{bottom:719.813333pt;}
.yf_c02042{bottom:736.613333pt;}
.ye_c02042{bottom:753.573333pt;}
.yd_c02042{bottom:770.373333pt;}
.yc_c02042{bottom:786.853333pt;}
.yb_c02042{bottom:803.813333pt;}
.ya_c02042{bottom:820.613333pt;}
.y9_c02042{bottom:837.573333pt;}
.y8_c02042{bottom:864.133333pt;}
.y7_c02042{bottom:891.813333pt;}
.y6_c02042{bottom:919.333333pt;}
.y5_c02042{bottom:947.040000pt;}
.y1_c02042{bottom:996.800000pt;}
.h3_c02042{height:20.000000pt;}
.h2_c02042{height:43.441250pt;}
.h1_c02042{height:52.134375pt;}
.h7_c02042{height:57.787500pt;}
.h6_c02042{height:59.340000pt;}
.h8_c02042{height:60.519362pt;}
.h5_c02042{height:61.295000pt;}
.h4_c02042{height:62.812500pt;}
.h0_c02042{height:1056.000000pt;}
.w1_c02042{width:59.232000pt;}
.w0_c02042{width:816.000000pt;}
.x0_c02042{left:0.000000pt;}
.x3_c02042{left:14.720000pt;}
.x1_c02042{left:113.472000pt;}
.x4_c02042{left:160.666667pt;}
.x5_c02042{left:170.266667pt;}
.x6_c02042{left:194.266667pt;}
.x2_c02042{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02043 {
    display:none;
  }
  .loading-indicator_c02043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02043 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02043 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02043" -> "#page-container .classname_c02043")
 */
.pf_c02043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02043 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02043 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02043 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02043 {overflow:visible;}
  }
}
.c_c02043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02043 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02043:after { /* webkit #35443 */
  content: '';
}
.t_c02043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02043 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02043 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02043 { /* info for Javascript */
  display:none;
}
.l_c02043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02043:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02043 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02043.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02043;src:url('chunks/assets/font_119758e2b5f351ff96248161.woff2')format("woff");}.ff1_c02043{font-family:ff1_c02043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02043;src:url('chunks/assets/font_d4ded2c29fdc2bdf6f365143.woff2')format("woff");}.ff2_c02043{font-family:ff2_c02043;line-height:0.863770;font-style:normal;font-weight: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_c02043;src:url('chunks/assets/font_f16589209fe9ec6fb18a88d4.woff2')format("woff");}.ff3_c02043{font-family:ff3_c02043;line-height:1.311035;font-style:normal;font-weight: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_c02043;src:url('chunks/assets/font_46ac122609669c29fe097599.woff2')format("woff");}.ff4_c02043{font-family:ff4_c02043;line-height:1.435059;font-style:normal;font-weight: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_c02043;src:url('chunks/assets/font_29265e64164729984ab10c20.woff2')format("woff");}.ff5_c02043{font-family:ff5_c02043;line-height:1.402354;font-style:normal;font-weight: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_c02043;src:url('chunks/assets/font_eb73bba855235e6ee47406ba.woff2')format("woff");}.ff6_c02043{font-family:ff6_c02043;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02043{vertical-align:0.000000px;}
.ls2_c02043{letter-spacing:0.000000px;}
.ls0_c02043{letter-spacing:6.785280px;}
.ls1_c02043{letter-spacing:39.905280px;}
.sc__c02043{text-shadow:none;}
.sc0_c02043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02043{-webkit-text-stroke:0px transparent;}
.sc0_c02043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02043{word-spacing:0.000000px;}
._2_c02043{margin-left:-1.258759px;}
._7_c02043{width:1.058913px;}
._8_c02043{width:2.253816px;}
._6_c02043{width:3.444546px;}
._5_c02043{width:4.570825px;}
._a_c02043{width:6.048000px;}
._f_c02043{width:7.632000px;}
._1_c02043{width:9.936000px;}
._3_c02043{width:11.128850px;}
._11_c02043{width:12.454047px;}
._10_c02043{width:13.777854px;}
._9_c02043{width:15.221422px;}
._b_c02043{width:20.036292px;}
._c_c02043{width:21.061241px;}
._4_c02043{width:22.190466px;}
._d_c02043{width:24.912000px;}
._e_c02043{width:26.098759px;}
._0_c02043{width:1500.936000px;}
.fc1_c02043{color:rgb(192,80,77);}
.fc0_c02043{color:rgb(0,0,0);}
.fs0_c02043{font-size:59.760000px;}
.fs1_c02043{font-size:66.240000px;}
.fs2_c02043{font-size:72.000000px;}
.y0_c02043{bottom:0.000000px;}
.y4_c02043{bottom:4.680000px;}
.y3_c02043{bottom:41.796000px;}
.y2_c02043{bottom:75.456000px;}
.y30_c02043{bottom:132.696000px;}
.y2f_c02043{bottom:151.590000px;}
.y2e_c02043{bottom:170.490000px;}
.y2d_c02043{bottom:189.570000px;}
.y2c_c02043{bottom:208.470000px;}
.y2b_c02043{bottom:227.550000px;}
.y2a_c02043{bottom:246.450000px;}
.y29_c02043{bottom:265.530000px;}
.y28_c02043{bottom:284.475000px;}
.y27_c02043{bottom:303.375000px;}
.y26_c02043{bottom:322.095000px;}
.y25_c02043{bottom:340.995000px;}
.y24_c02043{bottom:360.075000px;}
.y23_c02043{bottom:378.975000px;}
.y22_c02043{bottom:408.855000px;}
.y21_c02043{bottom:439.995000px;}
.y20_c02043{bottom:470.955000px;}
.y1f_c02043{bottom:502.095000px;}
.y1e_c02043{bottom:533.085000px;}
.y1d_c02043{bottom:564.225000px;}
.y1c_c02043{bottom:595.185000px;}
.y1b_c02043{bottom:626.325000px;}
.y1a_c02043{bottom:657.285000px;}
.y19_c02043{bottom:687.165000px;}
.y18_c02043{bottom:706.245000px;}
.y17_c02043{bottom:725.145000px;}
.y16_c02043{bottom:744.225000px;}
.y15_c02043{bottom:763.125000px;}
.y14_c02043{bottom:782.025000px;}
.y13_c02043{bottom:801.150000px;}
.y12_c02043{bottom:820.050000px;}
.y11_c02043{bottom:839.130000px;}
.y10_c02043{bottom:858.030000px;}
.yf_c02043{bottom:877.110000px;}
.ye_c02043{bottom:896.010000px;}
.yd_c02043{bottom:914.910000px;}
.yc_c02043{bottom:933.990000px;}
.yb_c02043{bottom:952.890000px;}
.ya_c02043{bottom:971.970000px;}
.y9_c02043{bottom:990.510000px;}
.y8_c02043{bottom:1009.410000px;}
.y7_c02043{bottom:1028.490000px;}
.y6_c02043{bottom:1047.390000px;}
.y5_c02043{bottom:1066.500000px;}
.y1_c02043{bottom:1121.400000px;}
.h3_c02043{height:22.500000px;}
.h2_c02043{height:48.871406px;}
.h1_c02043{height:58.651172px;}
.h8_c02043{height:64.546875px;}
.h6_c02043{height:65.010937px;}
.h5_c02043{height:66.757500px;}
.h7_c02043{height:68.084282px;}
.h4_c02043{height:68.956875px;}
.h9_c02043{height:70.664062px;}
.h0_c02043{height:1188.000000px;}
.w1_c02043{width:66.636000px;}
.w0_c02043{width:918.000000px;}
.x0_c02043{left:0.000000px;}
.x3_c02043{left:16.560000px;}
.x1_c02043{left:127.656000px;}
.x6_c02043{left:180.750000px;}
.x4_c02043{left:191.550000px;}
.x5_c02043{left:218.550000px;}
.x2_c02043{left:820.950000px;}
@media print{
.v0_c02043{vertical-align:0.000000pt;}
.ls2_c02043{letter-spacing:0.000000pt;}
.ls0_c02043{letter-spacing:6.031360pt;}
.ls1_c02043{letter-spacing:35.471360pt;}
.ws0_c02043{word-spacing:0.000000pt;}
._2_c02043{margin-left:-1.118897pt;}
._7_c02043{width:0.941256pt;}
._8_c02043{width:2.003392pt;}
._6_c02043{width:3.061819pt;}
._5_c02043{width:4.062956pt;}
._a_c02043{width:5.376000pt;}
._f_c02043{width:6.784000pt;}
._1_c02043{width:8.832000pt;}
._3_c02043{width:9.892311pt;}
._11_c02043{width:11.070264pt;}
._10_c02043{width:12.246981pt;}
._9_c02043{width:13.530153pt;}
._b_c02043{width:17.810038pt;}
._c_c02043{width:18.721103pt;}
._4_c02043{width:19.724859pt;}
._d_c02043{width:22.144000pt;}
._e_c02043{width:23.198897pt;}
._0_c02043{width:1334.165333pt;}
.fs0_c02043{font-size:53.120000pt;}
.fs1_c02043{font-size:58.880000pt;}
.fs2_c02043{font-size:64.000000pt;}
.y0_c02043{bottom:0.000000pt;}
.y4_c02043{bottom:4.160000pt;}
.y3_c02043{bottom:37.152000pt;}
.y2_c02043{bottom:67.072000pt;}
.y30_c02043{bottom:117.952000pt;}
.y2f_c02043{bottom:134.746667pt;}
.y2e_c02043{bottom:151.546667pt;}
.y2d_c02043{bottom:168.506667pt;}
.y2c_c02043{bottom:185.306667pt;}
.y2b_c02043{bottom:202.266667pt;}
.y2a_c02043{bottom:219.066667pt;}
.y29_c02043{bottom:236.026667pt;}
.y28_c02043{bottom:252.866667pt;}
.y27_c02043{bottom:269.666667pt;}
.y26_c02043{bottom:286.306667pt;}
.y25_c02043{bottom:303.106667pt;}
.y24_c02043{bottom:320.066667pt;}
.y23_c02043{bottom:336.866667pt;}
.y22_c02043{bottom:363.426667pt;}
.y21_c02043{bottom:391.106667pt;}
.y20_c02043{bottom:418.626667pt;}
.y1f_c02043{bottom:446.306667pt;}
.y1e_c02043{bottom:473.853333pt;}
.y1d_c02043{bottom:501.533333pt;}
.y1c_c02043{bottom:529.053333pt;}
.y1b_c02043{bottom:556.733333pt;}
.y1a_c02043{bottom:584.253333pt;}
.y19_c02043{bottom:610.813333pt;}
.y18_c02043{bottom:627.773333pt;}
.y17_c02043{bottom:644.573333pt;}
.y16_c02043{bottom:661.533333pt;}
.y15_c02043{bottom:678.333333pt;}
.y14_c02043{bottom:695.133333pt;}
.y13_c02043{bottom:712.133333pt;}
.y12_c02043{bottom:728.933333pt;}
.y11_c02043{bottom:745.893333pt;}
.y10_c02043{bottom:762.693333pt;}
.yf_c02043{bottom:779.653333pt;}
.ye_c02043{bottom:796.453333pt;}
.yd_c02043{bottom:813.253333pt;}
.yc_c02043{bottom:830.213333pt;}
.yb_c02043{bottom:847.013333pt;}
.ya_c02043{bottom:863.973333pt;}
.y9_c02043{bottom:880.453333pt;}
.y8_c02043{bottom:897.253333pt;}
.y7_c02043{bottom:914.213333pt;}
.y6_c02043{bottom:931.013333pt;}
.y5_c02043{bottom:948.000000pt;}
.y1_c02043{bottom:996.800000pt;}
.h3_c02043{height:20.000000pt;}
.h2_c02043{height:43.441250pt;}
.h1_c02043{height:52.134375pt;}
.h8_c02043{height:57.375000pt;}
.h6_c02043{height:57.787500pt;}
.h5_c02043{height:59.340000pt;}
.h7_c02043{height:60.519362pt;}
.h4_c02043{height:61.295000pt;}
.h9_c02043{height:62.812500pt;}
.h0_c02043{height:1056.000000pt;}
.w1_c02043{width:59.232000pt;}
.w0_c02043{width:816.000000pt;}
.x0_c02043{left:0.000000pt;}
.x3_c02043{left:14.720000pt;}
.x1_c02043{left:113.472000pt;}
.x6_c02043{left:160.666667pt;}
.x4_c02043{left:170.266667pt;}
.x5_c02043{left:194.266667pt;}
.x2_c02043{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02044 {
    display:none;
  }
  .loading-indicator_c02044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02044 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02044 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02044" -> "#page-container .classname_c02044")
 */
.pf_c02044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02044 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02044 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02044 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02044 {overflow:visible;}
  }
}
.c_c02044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02044 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02044:after { /* webkit #35443 */
  content: '';
}
.t_c02044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02044 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02044 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02044 { /* info for Javascript */
  display:none;
}
.l_c02044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02044:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02044 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02044.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02044;src:url('chunks/assets/font_f82ae8b1f9318a4d34009361.woff2')format("woff");}.ff1_c02044{font-family:ff1_c02044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02044;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02044{font-family:ff2_c02044;line-height:0.863770;font-style:normal;font-weight: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_c02044;src:url('chunks/assets/font_fb896bd1338cbf9490a64035.woff2')format("woff");}.ff3_c02044{font-family:ff3_c02044;line-height:1.402354;font-style:normal;font-weight: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_c02044;src:url('chunks/assets/font_eeee8a6089952a5df9c1a546.woff2')format("woff");}.ff4_c02044{font-family:ff4_c02044;line-height:1.311035;font-style:normal;font-weight: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_c02044;src:url('chunks/assets/font_2827f69109ae6959031b1156.woff2')format("woff");}.ff5_c02044{font-family:ff5_c02044;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02044{vertical-align:0.000000px;}
.ls2_c02044{letter-spacing:0.000000px;}
.ls1_c02044{letter-spacing:6.785280px;}
.ls0_c02044{letter-spacing:39.905280px;}
.sc__c02044{text-shadow:none;}
.sc0_c02044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02044{-webkit-text-stroke:0px transparent;}
.sc0_c02044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02044{word-spacing:0.000000px;}
._2_c02044{margin-left:-1.855250px;}
._1_c02044{width:1.590025px;}
._3_c02044{width:2.715641px;}
._5_c02044{width:3.841788px;}
._6_c02044{width:4.902025px;}
._12_c02044{width:6.758865px;}
._4_c02044{width:7.816188px;}
._13_c02044{width:10.533617px;}
._c_c02044{width:11.658041px;}
._b_c02044{width:13.645241px;}
._7_c02044{width:15.238711px;}
._f_c02044{width:17.818891px;}
._10_c02044{width:19.209666px;}
._11_c02044{width:20.290041px;}
._a_c02044{width:30.470400px;}
._d_c02044{width:33.151795px;}
._e_c02044{width:34.678230px;}
._8_c02044{width:45.374400px;}
._9_c02044{width:47.031062px;}
._0_c02044{width:1500.936000px;}
.fc1_c02044{color:rgb(192,80,77);}
.fc0_c02044{color:rgb(0,0,0);}
.fs0_c02044{font-size:59.760000px;}
.fs1_c02044{font-size:66.240000px;}
.y0_c02044{bottom:0.000000px;}
.y4_c02044{bottom:4.680000px;}
.y3_c02044{bottom:41.796000px;}
.y2_c02044{bottom:75.456000px;}
.y37_c02044{bottom:117.936000px;}
.y36_c02044{bottom:137.016000px;}
.y35_c02044{bottom:155.910000px;}
.y34_c02044{bottom:174.810000px;}
.y33_c02044{bottom:193.890000px;}
.y32_c02044{bottom:212.790000px;}
.y31_c02044{bottom:231.870000px;}
.y30_c02044{bottom:250.770000px;}
.y2f_c02044{bottom:269.670000px;}
.y2e_c02044{bottom:288.795000px;}
.y2d_c02044{bottom:307.335000px;}
.y2c_c02044{bottom:326.415000px;}
.y2b_c02044{bottom:345.315000px;}
.y2a_c02044{bottom:364.215000px;}
.y29_c02044{bottom:383.295000px;}
.y28_c02044{bottom:402.195000px;}
.y27_c02044{bottom:421.275000px;}
.y26_c02044{bottom:440.175000px;}
.y25_c02044{bottom:459.255000px;}
.y24_c02044{bottom:478.155000px;}
.y23_c02044{bottom:497.055000px;}
.y22_c02044{bottom:516.135000px;}
.y21_c02044{bottom:535.065000px;}
.y20_c02044{bottom:554.145000px;}
.y1f_c02044{bottom:573.045000px;}
.y1e_c02044{bottom:592.305000px;}
.y1d_c02044{bottom:611.385000px;}
.y1c_c02044{bottom:630.285000px;}
.y1b_c02044{bottom:649.365000px;}
.y1a_c02044{bottom:668.265000px;}
.y19_c02044{bottom:687.165000px;}
.y18_c02044{bottom:706.245000px;}
.y17_c02044{bottom:725.145000px;}
.y16_c02044{bottom:744.225000px;}
.y15_c02044{bottom:763.125000px;}
.y14_c02044{bottom:782.025000px;}
.y13_c02044{bottom:801.150000px;}
.y12_c02044{bottom:820.050000px;}
.y11_c02044{bottom:839.130000px;}
.y10_c02044{bottom:858.030000px;}
.yf_c02044{bottom:877.110000px;}
.ye_c02044{bottom:896.010000px;}
.yd_c02044{bottom:914.910000px;}
.yc_c02044{bottom:933.990000px;}
.yb_c02044{bottom:952.890000px;}
.ya_c02044{bottom:971.970000px;}
.y9_c02044{bottom:990.870000px;}
.y8_c02044{bottom:1009.770000px;}
.y7_c02044{bottom:1028.850000px;}
.y6_c02044{bottom:1047.750000px;}
.y5_c02044{bottom:1066.860000px;}
.y1_c02044{bottom:1121.400000px;}
.h3_c02044{height:22.500000px;}
.h2_c02044{height:48.871406px;}
.h1_c02044{height:58.651172px;}
.h5_c02044{height:65.010937px;}
.h7_c02044{height:66.757500px;}
.h4_c02044{height:68.084282px;}
.h6_c02044{height:68.956875px;}
.h0_c02044{height:1188.000000px;}
.w1_c02044{width:66.636000px;}
.w0_c02044{width:918.000000px;}
.x0_c02044{left:0.000000px;}
.x3_c02044{left:16.560000px;}
.x1_c02044{left:127.656000px;}
.x4_c02044{left:191.550000px;}
.x5_c02044{left:218.550000px;}
.x2_c02044{left:820.950000px;}
@media print{
.v0_c02044{vertical-align:0.000000pt;}
.ls2_c02044{letter-spacing:0.000000pt;}
.ls1_c02044{letter-spacing:6.031360pt;}
.ls0_c02044{letter-spacing:35.471360pt;}
.ws0_c02044{word-spacing:0.000000pt;}
._2_c02044{margin-left:-1.649111pt;}
._1_c02044{width:1.413356pt;}
._3_c02044{width:2.413903pt;}
._5_c02044{width:3.414922pt;}
._6_c02044{width:4.357356pt;}
._12_c02044{width:6.007880pt;}
._4_c02044{width:6.947722pt;}
._13_c02044{width:9.363215pt;}
._c_c02044{width:10.362703pt;}
._b_c02044{width:12.129103pt;}
._7_c02044{width:13.545521pt;}
._f_c02044{width:15.839014pt;}
._10_c02044{width:17.075259pt;}
._11_c02044{width:18.035592pt;}
._a_c02044{width:27.084800pt;}
._d_c02044{width:29.468262pt;}
._e_c02044{width:30.825093pt;}
._8_c02044{width:40.332800pt;}
._9_c02044{width:41.805389pt;}
._0_c02044{width:1334.165333pt;}
.fs0_c02044{font-size:53.120000pt;}
.fs1_c02044{font-size:58.880000pt;}
.y0_c02044{bottom:0.000000pt;}
.y4_c02044{bottom:4.160000pt;}
.y3_c02044{bottom:37.152000pt;}
.y2_c02044{bottom:67.072000pt;}
.y37_c02044{bottom:104.832000pt;}
.y36_c02044{bottom:121.792000pt;}
.y35_c02044{bottom:138.586667pt;}
.y34_c02044{bottom:155.386667pt;}
.y33_c02044{bottom:172.346667pt;}
.y32_c02044{bottom:189.146667pt;}
.y31_c02044{bottom:206.106667pt;}
.y30_c02044{bottom:222.906667pt;}
.y2f_c02044{bottom:239.706667pt;}
.y2e_c02044{bottom:256.706667pt;}
.y2d_c02044{bottom:273.186667pt;}
.y2c_c02044{bottom:290.146667pt;}
.y2b_c02044{bottom:306.946667pt;}
.y2a_c02044{bottom:323.746667pt;}
.y29_c02044{bottom:340.706667pt;}
.y28_c02044{bottom:357.506667pt;}
.y27_c02044{bottom:374.466667pt;}
.y26_c02044{bottom:391.266667pt;}
.y25_c02044{bottom:408.226667pt;}
.y24_c02044{bottom:425.026667pt;}
.y23_c02044{bottom:441.826667pt;}
.y22_c02044{bottom:458.786667pt;}
.y21_c02044{bottom:475.613333pt;}
.y20_c02044{bottom:492.573333pt;}
.y1f_c02044{bottom:509.373333pt;}
.y1e_c02044{bottom:526.493333pt;}
.y1d_c02044{bottom:543.453333pt;}
.y1c_c02044{bottom:560.253333pt;}
.y1b_c02044{bottom:577.213333pt;}
.y1a_c02044{bottom:594.013333pt;}
.y19_c02044{bottom:610.813333pt;}
.y18_c02044{bottom:627.773333pt;}
.y17_c02044{bottom:644.573333pt;}
.y16_c02044{bottom:661.533333pt;}
.y15_c02044{bottom:678.333333pt;}
.y14_c02044{bottom:695.133333pt;}
.y13_c02044{bottom:712.133333pt;}
.y12_c02044{bottom:728.933333pt;}
.y11_c02044{bottom:745.893333pt;}
.y10_c02044{bottom:762.693333pt;}
.yf_c02044{bottom:779.653333pt;}
.ye_c02044{bottom:796.453333pt;}
.yd_c02044{bottom:813.253333pt;}
.yc_c02044{bottom:830.213333pt;}
.yb_c02044{bottom:847.013333pt;}
.ya_c02044{bottom:863.973333pt;}
.y9_c02044{bottom:880.773333pt;}
.y8_c02044{bottom:897.573333pt;}
.y7_c02044{bottom:914.533333pt;}
.y6_c02044{bottom:931.333333pt;}
.y5_c02044{bottom:948.320000pt;}
.y1_c02044{bottom:996.800000pt;}
.h3_c02044{height:20.000000pt;}
.h2_c02044{height:43.441250pt;}
.h1_c02044{height:52.134375pt;}
.h5_c02044{height:57.787500pt;}
.h7_c02044{height:59.340000pt;}
.h4_c02044{height:60.519362pt;}
.h6_c02044{height:61.295000pt;}
.h0_c02044{height:1056.000000pt;}
.w1_c02044{width:59.232000pt;}
.w0_c02044{width:816.000000pt;}
.x0_c02044{left:0.000000pt;}
.x3_c02044{left:14.720000pt;}
.x1_c02044{left:113.472000pt;}
.x4_c02044{left:170.266667pt;}
.x5_c02044{left:194.266667pt;}
.x2_c02044{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02045 {
    display:none;
  }
  .loading-indicator_c02045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02045 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02045 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02045" -> "#page-container .classname_c02045")
 */
.pf_c02045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02045 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02045 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02045 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02045 {overflow:visible;}
  }
}
.c_c02045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02045 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02045:after { /* webkit #35443 */
  content: '';
}
.t_c02045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02045 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02045 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02045 { /* info for Javascript */
  display:none;
}
.l_c02045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02045:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02045 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02045.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02045;src:url('chunks/assets/font_87c4e1557c86e051097448b6.woff2')format("woff");}.ff1_c02045{font-family:ff1_c02045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02045;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02045{font-family:ff2_c02045;line-height:0.863770;font-style:normal;font-weight: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_c02045;src:url('chunks/assets/font_081c3631127b4d3238979118.woff2')format("woff");}.ff3_c02045{font-family:ff3_c02045;line-height:1.402354;font-style:normal;font-weight: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_c02045;src:url('chunks/assets/font_00f8c33beda47d7bedacfcf7.woff2')format("woff");}.ff4_c02045{font-family:ff4_c02045;line-height:1.311035;font-style:normal;font-weight: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_c02045;src:url('chunks/assets/font_d456cd7747993e345c8af554.woff2')format("woff");}.ff5_c02045{font-family:ff5_c02045;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02045{vertical-align:0.000000px;}
.ls2_c02045{letter-spacing:0.000000px;}
.ls0_c02045{letter-spacing:6.785280px;}
.ls1_c02045{letter-spacing:39.905280px;}
.sc__c02045{text-shadow:none;}
.sc0_c02045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02045{-webkit-text-stroke:0px transparent;}
.sc0_c02045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02045{word-spacing:-18.000000px;}
.ws1_c02045{word-spacing:0.000000px;}
._1_c02045{margin-left:-1.258825px;}
._2_c02045{width:1.324800px;}
._6_c02045{width:2.592000px;}
._8_c02045{width:3.618075px;}
._7_c02045{width:4.939200px;}
._c_c02045{width:6.278400px;}
._9_c02045{width:10.944000px;}
._5_c02045{width:12.490825px;}
._4_c02045{width:13.536000px;}
._3_c02045{width:15.301904px;}
._11_c02045{width:19.494697px;}
._10_c02045{width:22.587575px;}
._f_c02045{width:24.045054px;}
._d_c02045{width:25.992000px;}
._e_c02045{width:27.199200px;}
._a_c02045{width:28.800000px;}
._b_c02045{width:30.024000px;}
._12_c02045{width:35.107200px;}
._13_c02045{width:36.630654px;}
._0_c02045{width:1500.936000px;}
.fc1_c02045{color:rgb(192,80,77);}
.fc0_c02045{color:rgb(0,0,0);}
.fs0_c02045{font-size:59.760000px;}
.fs1_c02045{font-size:66.240000px;}
.fs2_c02045{font-size:72.000000px;}
.y0_c02045{bottom:0.000000px;}
.y4_c02045{bottom:4.680000px;}
.y3_c02045{bottom:41.796000px;}
.y2_c02045{bottom:75.456000px;}
.y2f_c02045{bottom:115.416000px;}
.y2e_c02045{bottom:134.316000px;}
.y2d_c02045{bottom:153.390000px;}
.y2c_c02045{bottom:172.290000px;}
.y2b_c02045{bottom:191.190000px;}
.y2a_c02045{bottom:210.270000px;}
.y29_c02045{bottom:229.170000px;}
.y28_c02045{bottom:248.250000px;}
.y27_c02045{bottom:267.150000px;}
.y26_c02045{bottom:286.095000px;}
.y25_c02045{bottom:305.175000px;}
.y24_c02045{bottom:324.075000px;}
.y23_c02045{bottom:343.155000px;}
.y22_c02045{bottom:362.055000px;}
.y21_c02045{bottom:381.135000px;}
.y20_c02045{bottom:400.035000px;}
.y1f_c02045{bottom:418.935000px;}
.y1e_c02045{bottom:438.015000px;}
.y1d_c02045{bottom:456.915000px;}
.y1c_c02045{bottom:475.995000px;}
.y1b_c02045{bottom:494.895000px;}
.y1a_c02045{bottom:513.795000px;}
.y19_c02045{bottom:532.875000px;}
.y18_c02045{bottom:551.805000px;}
.y17_c02045{bottom:570.885000px;}
.y16_c02045{bottom:600.405000px;}
.y15_c02045{bottom:631.545000px;}
.y14_c02045{bottom:662.505000px;}
.y13_c02045{bottom:693.645000px;}
.y12_c02045{bottom:724.605000px;}
.y11_c02045{bottom:755.745000px;}
.y10_c02045{bottom:786.705000px;}
.yf_c02045{bottom:817.710000px;}
.ye_c02045{bottom:848.850000px;}
.yd_c02045{bottom:879.810000px;}
.yc_c02045{bottom:910.950000px;}
.yb_c02045{bottom:941.910000px;}
.ya_c02045{bottom:971.970000px;}
.y9_c02045{bottom:990.870000px;}
.y8_c02045{bottom:1009.770000px;}
.y7_c02045{bottom:1028.850000px;}
.y6_c02045{bottom:1047.750000px;}
.y5_c02045{bottom:1066.860000px;}
.y1_c02045{bottom:1121.400000px;}
.h3_c02045{height:22.500000px;}
.h2_c02045{height:48.871406px;}
.h1_c02045{height:58.651172px;}
.h8_c02045{height:64.546875px;}
.h5_c02045{height:65.010937px;}
.h6_c02045{height:66.757500px;}
.h4_c02045{height:68.084282px;}
.h7_c02045{height:70.664062px;}
.h0_c02045{height:1188.000000px;}
.w1_c02045{width:66.636000px;}
.w0_c02045{width:918.000000px;}
.x0_c02045{left:0.000000px;}
.x3_c02045{left:16.560000px;}
.x1_c02045{left:127.656000px;}
.x6_c02045{left:180.750000px;}
.x4_c02045{left:191.550000px;}
.x5_c02045{left:218.550000px;}
.x2_c02045{left:820.950000px;}
@media print{
.v0_c02045{vertical-align:0.000000pt;}
.ls2_c02045{letter-spacing:0.000000pt;}
.ls0_c02045{letter-spacing:6.031360pt;}
.ls1_c02045{letter-spacing:35.471360pt;}
.ws0_c02045{word-spacing:-16.000000pt;}
.ws1_c02045{word-spacing:0.000000pt;}
._1_c02045{margin-left:-1.118956pt;}
._2_c02045{width:1.177600pt;}
._6_c02045{width:2.304000pt;}
._8_c02045{width:3.216067pt;}
._7_c02045{width:4.390400pt;}
._c_c02045{width:5.580800pt;}
._9_c02045{width:9.728000pt;}
._5_c02045{width:11.102956pt;}
._4_c02045{width:12.032000pt;}
._3_c02045{width:13.601692pt;}
._11_c02045{width:17.328620pt;}
._10_c02045{width:20.077844pt;}
._f_c02045{width:21.373381pt;}
._d_c02045{width:23.104000pt;}
._e_c02045{width:24.177067pt;}
._a_c02045{width:25.600000pt;}
._b_c02045{width:26.688000pt;}
._12_c02045{width:31.206400pt;}
._13_c02045{width:32.560581pt;}
._0_c02045{width:1334.165333pt;}
.fs0_c02045{font-size:53.120000pt;}
.fs1_c02045{font-size:58.880000pt;}
.fs2_c02045{font-size:64.000000pt;}
.y0_c02045{bottom:0.000000pt;}
.y4_c02045{bottom:4.160000pt;}
.y3_c02045{bottom:37.152000pt;}
.y2_c02045{bottom:67.072000pt;}
.y2f_c02045{bottom:102.592000pt;}
.y2e_c02045{bottom:119.392000pt;}
.y2d_c02045{bottom:136.346667pt;}
.y2c_c02045{bottom:153.146667pt;}
.y2b_c02045{bottom:169.946667pt;}
.y2a_c02045{bottom:186.906667pt;}
.y29_c02045{bottom:203.706667pt;}
.y28_c02045{bottom:220.666667pt;}
.y27_c02045{bottom:237.466667pt;}
.y26_c02045{bottom:254.306667pt;}
.y25_c02045{bottom:271.266667pt;}
.y24_c02045{bottom:288.066667pt;}
.y23_c02045{bottom:305.026667pt;}
.y22_c02045{bottom:321.826667pt;}
.y21_c02045{bottom:338.786667pt;}
.y20_c02045{bottom:355.586667pt;}
.y1f_c02045{bottom:372.386667pt;}
.y1e_c02045{bottom:389.346667pt;}
.y1d_c02045{bottom:406.146667pt;}
.y1c_c02045{bottom:423.106667pt;}
.y1b_c02045{bottom:439.906667pt;}
.y1a_c02045{bottom:456.706667pt;}
.y19_c02045{bottom:473.666667pt;}
.y18_c02045{bottom:490.493333pt;}
.y17_c02045{bottom:507.453333pt;}
.y16_c02045{bottom:533.693333pt;}
.y15_c02045{bottom:561.373333pt;}
.y14_c02045{bottom:588.893333pt;}
.y13_c02045{bottom:616.573333pt;}
.y12_c02045{bottom:644.093333pt;}
.y11_c02045{bottom:671.773333pt;}
.y10_c02045{bottom:699.293333pt;}
.yf_c02045{bottom:726.853333pt;}
.ye_c02045{bottom:754.533333pt;}
.yd_c02045{bottom:782.053333pt;}
.yc_c02045{bottom:809.733333pt;}
.yb_c02045{bottom:837.253333pt;}
.ya_c02045{bottom:863.973333pt;}
.y9_c02045{bottom:880.773333pt;}
.y8_c02045{bottom:897.573333pt;}
.y7_c02045{bottom:914.533333pt;}
.y6_c02045{bottom:931.333333pt;}
.y5_c02045{bottom:948.320000pt;}
.y1_c02045{bottom:996.800000pt;}
.h3_c02045{height:20.000000pt;}
.h2_c02045{height:43.441250pt;}
.h1_c02045{height:52.134375pt;}
.h8_c02045{height:57.375000pt;}
.h5_c02045{height:57.787500pt;}
.h6_c02045{height:59.340000pt;}
.h4_c02045{height:60.519362pt;}
.h7_c02045{height:62.812500pt;}
.h0_c02045{height:1056.000000pt;}
.w1_c02045{width:59.232000pt;}
.w0_c02045{width:816.000000pt;}
.x0_c02045{left:0.000000pt;}
.x3_c02045{left:14.720000pt;}
.x1_c02045{left:113.472000pt;}
.x6_c02045{left:160.666667pt;}
.x4_c02045{left:170.266667pt;}
.x5_c02045{left:194.266667pt;}
.x2_c02045{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02046 {
    display:none;
  }
  .loading-indicator_c02046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02046" -> "#page-container .classname_c02046")
 */
.pf_c02046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02046 {overflow:visible;}
  }
}
.c_c02046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02046:after { /* webkit #35443 */
  content: '';
}
.t_c02046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02046 { /* info for Javascript */
  display:none;
}
.l_c02046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02046:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02046 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02046.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02046;src:url('chunks/assets/font_bd468fadf71d5b563b277282.woff2')format("woff");}.ff1_c02046{font-family:ff1_c02046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02046;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff2_c02046{font-family:ff2_c02046;line-height:0.863770;font-style:normal;font-weight: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_c02046;src:url('chunks/assets/font_761adce302d9f617db88e983.woff2')format("woff");}.ff3_c02046{font-family:ff3_c02046;line-height:1.402354;font-style:normal;font-weight: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_c02046;src:url('chunks/assets/font_0a1a2a02bbc02a6f5e95f386.woff2')format("woff");}.ff4_c02046{font-family:ff4_c02046;line-height:1.311035;font-style:normal;font-weight: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_c02046;src:url('chunks/assets/font_bb42c801be98a58056601366.woff2')format("woff");}.ff5_c02046{font-family:ff5_c02046;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02046{vertical-align:0.000000px;}
.ls2_c02046{letter-spacing:0.000000px;}
.ls1_c02046{letter-spacing:6.785280px;}
.ls0_c02046{letter-spacing:39.905280px;}
.sc__c02046{text-shadow:none;}
.sc0_c02046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02046{-webkit-text-stroke:0px transparent;}
.sc0_c02046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02046{word-spacing:0.000000px;}
._5_c02046{margin-left:-2.251299px;}
._2_c02046{margin-left:-1.060105px;}
._6_c02046{width:1.125086px;}
._3_c02046{width:3.179388px;}
._a_c02046{width:4.438212px;}
._b_c02046{width:5.630334px;}
._c_c02046{width:6.756612px;}
._d_c02046{width:8.147652px;}
._11_c02046{width:9.605065px;}
._10_c02046{width:10.664375px;}
._19_c02046{width:12.321236px;}
._16_c02046{width:13.512364px;}
._15_c02046{width:15.169092px;}
._1_c02046{width:17.818825px;}
._9_c02046{width:19.209070px;}
._7_c02046{width:23.647812px;}
._8_c02046{width:24.839404px;}
._f_c02046{width:26.694588px;}
._e_c02046{width:28.283619px;}
._14_c02046{width:29.412216px;}
._12_c02046{width:30.470400px;}
._13_c02046{width:31.662190px;}
._17_c02046{width:40.141241px;}
._18_c02046{width:41.333959px;}
._4_c02046{width:46.699266px;}
._0_c02046{width:1500.936000px;}
.fc1_c02046{color:rgb(192,80,77);}
.fc0_c02046{color:rgb(0,0,0);}
.fs0_c02046{font-size:59.760000px;}
.fs1_c02046{font-size:66.240000px;}
.y0_c02046{bottom:0.000000px;}
.y4_c02046{bottom:4.680000px;}
.y3_c02046{bottom:41.796000px;}
.y2_c02046{bottom:75.456000px;}
.y36_c02046{bottom:136.656000px;}
.y35_c02046{bottom:155.550000px;}
.y34_c02046{bottom:174.450000px;}
.y33_c02046{bottom:193.530000px;}
.y32_c02046{bottom:212.430000px;}
.y31_c02046{bottom:231.870000px;}
.y30_c02046{bottom:250.770000px;}
.y2f_c02046{bottom:269.670000px;}
.y2e_c02046{bottom:288.795000px;}
.y2d_c02046{bottom:307.335000px;}
.y2c_c02046{bottom:326.415000px;}
.y2b_c02046{bottom:345.315000px;}
.y2a_c02046{bottom:364.575000px;}
.y29_c02046{bottom:383.655000px;}
.y28_c02046{bottom:402.555000px;}
.y27_c02046{bottom:421.635000px;}
.y26_c02046{bottom:440.535000px;}
.y25_c02046{bottom:459.615000px;}
.y24_c02046{bottom:478.515000px;}
.y23_c02046{bottom:497.415000px;}
.y22_c02046{bottom:516.495000px;}
.y21_c02046{bottom:535.425000px;}
.y20_c02046{bottom:554.505000px;}
.y1f_c02046{bottom:573.405000px;}
.y1e_c02046{bottom:592.305000px;}
.y1d_c02046{bottom:611.385000px;}
.y1c_c02046{bottom:630.285000px;}
.y1b_c02046{bottom:649.365000px;}
.y1a_c02046{bottom:668.265000px;}
.y19_c02046{bottom:687.165000px;}
.y18_c02046{bottom:706.245000px;}
.y17_c02046{bottom:725.145000px;}
.y16_c02046{bottom:744.225000px;}
.y15_c02046{bottom:763.125000px;}
.y14_c02046{bottom:782.025000px;}
.y13_c02046{bottom:801.150000px;}
.y12_c02046{bottom:820.050000px;}
.y11_c02046{bottom:839.130000px;}
.y10_c02046{bottom:858.030000px;}
.yf_c02046{bottom:877.110000px;}
.ye_c02046{bottom:896.010000px;}
.yd_c02046{bottom:914.910000px;}
.yc_c02046{bottom:933.990000px;}
.yb_c02046{bottom:952.890000px;}
.ya_c02046{bottom:971.970000px;}
.y9_c02046{bottom:990.870000px;}
.y8_c02046{bottom:1009.770000px;}
.y7_c02046{bottom:1028.850000px;}
.y6_c02046{bottom:1047.750000px;}
.y5_c02046{bottom:1066.860000px;}
.y1_c02046{bottom:1121.400000px;}
.h3_c02046{height:22.500000px;}
.h2_c02046{height:48.871406px;}
.h1_c02046{height:58.651172px;}
.h5_c02046{height:65.010937px;}
.h7_c02046{height:66.757500px;}
.h4_c02046{height:68.084282px;}
.h6_c02046{height:68.956875px;}
.h0_c02046{height:1188.000000px;}
.w1_c02046{width:66.636000px;}
.w0_c02046{width:918.000000px;}
.x0_c02046{left:0.000000px;}
.x3_c02046{left:16.560000px;}
.x1_c02046{left:127.656000px;}
.x4_c02046{left:191.550000px;}
.x5_c02046{left:218.550000px;}
.x2_c02046{left:820.950000px;}
@media print{
.v0_c02046{vertical-align:0.000000pt;}
.ls2_c02046{letter-spacing:0.000000pt;}
.ls1_c02046{letter-spacing:6.031360pt;}
.ls0_c02046{letter-spacing:35.471360pt;}
.ws0_c02046{word-spacing:0.000000pt;}
._5_c02046{margin-left:-2.001155pt;}
._2_c02046{margin-left:-0.942316pt;}
._6_c02046{width:1.000077pt;}
._3_c02046{width:2.826122pt;}
._a_c02046{width:3.945078pt;}
._b_c02046{width:5.004741pt;}
._c_c02046{width:6.005878pt;}
._d_c02046{width:7.242358pt;}
._11_c02046{width:8.537836pt;}
._10_c02046{width:9.479444pt;}
._19_c02046{width:10.952210pt;}
._16_c02046{width:12.010990pt;}
._15_c02046{width:13.483638pt;}
._1_c02046{width:15.838956pt;}
._9_c02046{width:17.074729pt;}
._7_c02046{width:21.020278pt;}
._8_c02046{width:22.079470pt;}
._f_c02046{width:23.728522pt;}
._e_c02046{width:25.140995pt;}
._14_c02046{width:26.144192pt;}
._12_c02046{width:27.084800pt;}
._13_c02046{width:28.144169pt;}
._17_c02046{width:35.681103pt;}
._18_c02046{width:36.741297pt;}
._4_c02046{width:41.510459pt;}
._0_c02046{width:1334.165333pt;}
.fs0_c02046{font-size:53.120000pt;}
.fs1_c02046{font-size:58.880000pt;}
.y0_c02046{bottom:0.000000pt;}
.y4_c02046{bottom:4.160000pt;}
.y3_c02046{bottom:37.152000pt;}
.y2_c02046{bottom:67.072000pt;}
.y36_c02046{bottom:121.472000pt;}
.y35_c02046{bottom:138.266667pt;}
.y34_c02046{bottom:155.066667pt;}
.y33_c02046{bottom:172.026667pt;}
.y32_c02046{bottom:188.826667pt;}
.y31_c02046{bottom:206.106667pt;}
.y30_c02046{bottom:222.906667pt;}
.y2f_c02046{bottom:239.706667pt;}
.y2e_c02046{bottom:256.706667pt;}
.y2d_c02046{bottom:273.186667pt;}
.y2c_c02046{bottom:290.146667pt;}
.y2b_c02046{bottom:306.946667pt;}
.y2a_c02046{bottom:324.066667pt;}
.y29_c02046{bottom:341.026667pt;}
.y28_c02046{bottom:357.826667pt;}
.y27_c02046{bottom:374.786667pt;}
.y26_c02046{bottom:391.586667pt;}
.y25_c02046{bottom:408.546667pt;}
.y24_c02046{bottom:425.346667pt;}
.y23_c02046{bottom:442.146667pt;}
.y22_c02046{bottom:459.106667pt;}
.y21_c02046{bottom:475.933333pt;}
.y20_c02046{bottom:492.893333pt;}
.y1f_c02046{bottom:509.693333pt;}
.y1e_c02046{bottom:526.493333pt;}
.y1d_c02046{bottom:543.453333pt;}
.y1c_c02046{bottom:560.253333pt;}
.y1b_c02046{bottom:577.213333pt;}
.y1a_c02046{bottom:594.013333pt;}
.y19_c02046{bottom:610.813333pt;}
.y18_c02046{bottom:627.773333pt;}
.y17_c02046{bottom:644.573333pt;}
.y16_c02046{bottom:661.533333pt;}
.y15_c02046{bottom:678.333333pt;}
.y14_c02046{bottom:695.133333pt;}
.y13_c02046{bottom:712.133333pt;}
.y12_c02046{bottom:728.933333pt;}
.y11_c02046{bottom:745.893333pt;}
.y10_c02046{bottom:762.693333pt;}
.yf_c02046{bottom:779.653333pt;}
.ye_c02046{bottom:796.453333pt;}
.yd_c02046{bottom:813.253333pt;}
.yc_c02046{bottom:830.213333pt;}
.yb_c02046{bottom:847.013333pt;}
.ya_c02046{bottom:863.973333pt;}
.y9_c02046{bottom:880.773333pt;}
.y8_c02046{bottom:897.573333pt;}
.y7_c02046{bottom:914.533333pt;}
.y6_c02046{bottom:931.333333pt;}
.y5_c02046{bottom:948.320000pt;}
.y1_c02046{bottom:996.800000pt;}
.h3_c02046{height:20.000000pt;}
.h2_c02046{height:43.441250pt;}
.h1_c02046{height:52.134375pt;}
.h5_c02046{height:57.787500pt;}
.h7_c02046{height:59.340000pt;}
.h4_c02046{height:60.519362pt;}
.h6_c02046{height:61.295000pt;}
.h0_c02046{height:1056.000000pt;}
.w1_c02046{width:59.232000pt;}
.w0_c02046{width:816.000000pt;}
.x0_c02046{left:0.000000pt;}
.x3_c02046{left:14.720000pt;}
.x1_c02046{left:113.472000pt;}
.x4_c02046{left:170.266667pt;}
.x5_c02046{left:194.266667pt;}
.x2_c02046{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02047 {
    display:none;
  }
  .loading-indicator_c02047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02047 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02047 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02047" -> "#page-container .classname_c02047")
 */
.pf_c02047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02047 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02047 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02047 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02047 {overflow:visible;}
  }
}
.c_c02047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02047 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02047:after { /* webkit #35443 */
  content: '';
}
.t_c02047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02047 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02047 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02047 { /* info for Javascript */
  display:none;
}
.l_c02047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02047:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02047 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02047.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02047;src:url('chunks/assets/font_93c6de5719d4af19d533ba3f.woff2')format("woff");}.ff1_c02047{font-family:ff1_c02047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02047;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02047{font-family:ff2_c02047;line-height:0.863770;font-style:normal;font-weight: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_c02047;src:url('chunks/assets/font_8bf94771d0784982a54465cc.woff2')format("woff");}.ff3_c02047{font-family:ff3_c02047;line-height:1.311035;font-style:normal;font-weight: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_c02047;src:url('chunks/assets/font_01b3424ed7197d1743a7b8b6.woff2')format("woff");}.ff4_c02047{font-family:ff4_c02047;line-height:1.435059;font-style:normal;font-weight: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_c02047;src:url('chunks/assets/font_18eb9c1bfa81db2c36622df1.woff2')format("woff");}.ff5_c02047{font-family:ff5_c02047;line-height:1.402354;font-style:normal;font-weight: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_c02047;src:url('chunks/assets/font_5388219c1b14f73735af669d.woff2')format("woff");}.ff6_c02047{font-family:ff6_c02047;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02047{vertical-align:-75.600000px;}
.v0_c02047{vertical-align:0.000000px;}
.ls3_c02047{letter-spacing:0.000000px;}
.ls0_c02047{letter-spacing:6.785280px;}
.ls1_c02047{letter-spacing:39.905280px;}
.ls2_c02047{letter-spacing:239.016000px;}
.sc__c02047{text-shadow:none;}
.sc0_c02047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02047{-webkit-text-stroke:0px transparent;}
.sc0_c02047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02047{word-spacing:0.000000px;}
._10_c02047{margin-left:-2.351007px;}
._2_c02047{margin-left:-1.126212px;}
._5_c02047{width:1.258096px;}
._1_c02047{width:2.960994px;}
._15_c02047{width:4.371509px;}
._16_c02047{width:5.849588px;}
._1a_c02047{width:7.220425px;}
._11_c02047{width:9.288000px;}
._c_c02047{width:11.063007px;}
._8_c02047{width:12.320375px;}
._9_c02047{width:13.447184px;}
._19_c02047{width:14.572403px;}
._12_c02047{width:18.182632px;}
._3_c02047{width:19.342279px;}
._4_c02047{width:21.064121px;}
._d_c02047{width:22.388988px;}
._13_c02047{width:24.045054px;}
._14_c02047{width:25.403057px;}
._7_c02047{width:27.953412px;}
._6_c02047{width:29.211641px;}
._17_c02047{width:30.670908px;}
._18_c02047{width:31.951858px;}
._a_c02047{width:35.107200px;}
._b_c02047{width:36.167835px;}
._e_c02047{width:44.856000px;}
._f_c02047{width:45.998020px;}
._0_c02047{width:1500.936000px;}
.fc1_c02047{color:rgb(192,80,77);}
.fc0_c02047{color:rgb(0,0,0);}
.fs0_c02047{font-size:59.760000px;}
.fs1_c02047{font-size:66.240000px;}
.fs2_c02047{font-size:72.000000px;}
.y0_c02047{bottom:0.000000px;}
.y4_c02047{bottom:4.680000px;}
.y3_c02047{bottom:41.796000px;}
.y2_c02047{bottom:75.456000px;}
.y2e_c02047{bottom:140.436000px;}
.y2d_c02047{bottom:159.330000px;}
.y2c_c02047{bottom:178.410000px;}
.y2b_c02047{bottom:197.310000px;}
.y2a_c02047{bottom:235.290000px;}
.y29_c02047{bottom:254.190000px;}
.y28_c02047{bottom:273.315000px;}
.y27_c02047{bottom:292.215000px;}
.y26_c02047{bottom:330.195000px;}
.y25_c02047{bottom:349.095000px;}
.y24_c02047{bottom:368.175000px;}
.y23_c02047{bottom:387.075000px;}
.y22_c02047{bottom:405.975000px;}
.y21_c02047{bottom:443.955000px;}
.y20_c02047{bottom:463.035000px;}
.y1f_c02047{bottom:481.935000px;}
.y1e_c02047{bottom:519.915000px;}
.y1d_c02047{bottom:538.845000px;}
.y1c_c02047{bottom:557.925000px;}
.y1b_c02047{bottom:576.825000px;}
.y1a_c02047{bottom:595.905000px;}
.y19_c02047{bottom:614.805000px;}
.y18_c02047{bottom:633.705000px;}
.y17_c02047{bottom:652.785000px;}
.y16_c02047{bottom:682.305000px;}
.y15_c02047{bottom:713.445000px;}
.y14_c02047{bottom:744.405000px;}
.y13_c02047{bottom:775.545000px;}
.y12_c02047{bottom:806.550000px;}
.y11_c02047{bottom:837.690000px;}
.y10_c02047{bottom:858.030000px;}
.yf_c02047{bottom:877.110000px;}
.ye_c02047{bottom:896.010000px;}
.yd_c02047{bottom:914.910000px;}
.yc_c02047{bottom:933.990000px;}
.yb_c02047{bottom:952.890000px;}
.ya_c02047{bottom:971.970000px;}
.y9_c02047{bottom:990.510000px;}
.y8_c02047{bottom:1009.410000px;}
.y7_c02047{bottom:1028.490000px;}
.y6_c02047{bottom:1047.390000px;}
.y5_c02047{bottom:1066.500000px;}
.y1_c02047{bottom:1121.400000px;}
.h3_c02047{height:22.500000px;}
.h2_c02047{height:48.871406px;}
.h1_c02047{height:58.651172px;}
.h9_c02047{height:64.546875px;}
.h6_c02047{height:65.010937px;}
.h5_c02047{height:66.757500px;}
.h7_c02047{height:68.084282px;}
.h4_c02047{height:68.956875px;}
.h8_c02047{height:70.664062px;}
.h0_c02047{height:1188.000000px;}
.w1_c02047{width:66.636000px;}
.w0_c02047{width:918.000000px;}
.x0_c02047{left:0.000000px;}
.x3_c02047{left:16.560000px;}
.x1_c02047{left:127.656000px;}
.x6_c02047{left:180.750000px;}
.x4_c02047{left:191.550000px;}
.x5_c02047{left:218.550000px;}
.x2_c02047{left:820.950000px;}
@media print{
.v1_c02047{vertical-align:-67.200000pt;}
.v0_c02047{vertical-align:0.000000pt;}
.ls3_c02047{letter-spacing:0.000000pt;}
.ls0_c02047{letter-spacing:6.031360pt;}
.ls1_c02047{letter-spacing:35.471360pt;}
.ls2_c02047{letter-spacing:212.458667pt;}
.ws0_c02047{word-spacing:0.000000pt;}
._10_c02047{margin-left:-2.089784pt;}
._2_c02047{margin-left:-1.001078pt;}
._5_c02047{width:1.118308pt;}
._1_c02047{width:2.631995pt;}
._15_c02047{width:3.885786pt;}
._16_c02047{width:5.199634pt;}
._1a_c02047{width:6.418156pt;}
._11_c02047{width:8.256000pt;}
._c_c02047{width:9.833784pt;}
._8_c02047{width:10.951444pt;}
._9_c02047{width:11.953052pt;}
._19_c02047{width:12.953247pt;}
._12_c02047{width:16.162340pt;}
._3_c02047{width:17.193137pt;}
._4_c02047{width:18.723663pt;}
._d_c02047{width:19.901322pt;}
._13_c02047{width:21.373381pt;}
._14_c02047{width:22.580495pt;}
._7_c02047{width:24.847478pt;}
._6_c02047{width:25.965903pt;}
._17_c02047{width:27.263030pt;}
._18_c02047{width:28.401651pt;}
._a_c02047{width:31.206400pt;}
._b_c02047{width:32.149187pt;}
._e_c02047{width:39.872000pt;}
._f_c02047{width:40.887129pt;}
._0_c02047{width:1334.165333pt;}
.fs0_c02047{font-size:53.120000pt;}
.fs1_c02047{font-size:58.880000pt;}
.fs2_c02047{font-size:64.000000pt;}
.y0_c02047{bottom:0.000000pt;}
.y4_c02047{bottom:4.160000pt;}
.y3_c02047{bottom:37.152000pt;}
.y2_c02047{bottom:67.072000pt;}
.y2e_c02047{bottom:124.832000pt;}
.y2d_c02047{bottom:141.626667pt;}
.y2c_c02047{bottom:158.586667pt;}
.y2b_c02047{bottom:175.386667pt;}
.y2a_c02047{bottom:209.146667pt;}
.y29_c02047{bottom:225.946667pt;}
.y28_c02047{bottom:242.946667pt;}
.y27_c02047{bottom:259.746667pt;}
.y26_c02047{bottom:293.506667pt;}
.y25_c02047{bottom:310.306667pt;}
.y24_c02047{bottom:327.266667pt;}
.y23_c02047{bottom:344.066667pt;}
.y22_c02047{bottom:360.866667pt;}
.y21_c02047{bottom:394.626667pt;}
.y20_c02047{bottom:411.586667pt;}
.y1f_c02047{bottom:428.386667pt;}
.y1e_c02047{bottom:462.146667pt;}
.y1d_c02047{bottom:478.973333pt;}
.y1c_c02047{bottom:495.933333pt;}
.y1b_c02047{bottom:512.733333pt;}
.y1a_c02047{bottom:529.693333pt;}
.y19_c02047{bottom:546.493333pt;}
.y18_c02047{bottom:563.293333pt;}
.y17_c02047{bottom:580.253333pt;}
.y16_c02047{bottom:606.493333pt;}
.y15_c02047{bottom:634.173333pt;}
.y14_c02047{bottom:661.693333pt;}
.y13_c02047{bottom:689.373333pt;}
.y12_c02047{bottom:716.933333pt;}
.y11_c02047{bottom:744.613333pt;}
.y10_c02047{bottom:762.693333pt;}
.yf_c02047{bottom:779.653333pt;}
.ye_c02047{bottom:796.453333pt;}
.yd_c02047{bottom:813.253333pt;}
.yc_c02047{bottom:830.213333pt;}
.yb_c02047{bottom:847.013333pt;}
.ya_c02047{bottom:863.973333pt;}
.y9_c02047{bottom:880.453333pt;}
.y8_c02047{bottom:897.253333pt;}
.y7_c02047{bottom:914.213333pt;}
.y6_c02047{bottom:931.013333pt;}
.y5_c02047{bottom:948.000000pt;}
.y1_c02047{bottom:996.800000pt;}
.h3_c02047{height:20.000000pt;}
.h2_c02047{height:43.441250pt;}
.h1_c02047{height:52.134375pt;}
.h9_c02047{height:57.375000pt;}
.h6_c02047{height:57.787500pt;}
.h5_c02047{height:59.340000pt;}
.h7_c02047{height:60.519362pt;}
.h4_c02047{height:61.295000pt;}
.h8_c02047{height:62.812500pt;}
.h0_c02047{height:1056.000000pt;}
.w1_c02047{width:59.232000pt;}
.w0_c02047{width:816.000000pt;}
.x0_c02047{left:0.000000pt;}
.x3_c02047{left:14.720000pt;}
.x1_c02047{left:113.472000pt;}
.x6_c02047{left:160.666667pt;}
.x4_c02047{left:170.266667pt;}
.x5_c02047{left:194.266667pt;}
.x2_c02047{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02048 {
    display:none;
  }
  .loading-indicator_c02048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02048 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02048 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02048" -> "#page-container .classname_c02048")
 */
.pf_c02048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02048 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02048 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02048 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02048 {overflow:visible;}
  }
}
.c_c02048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02048 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02048:after { /* webkit #35443 */
  content: '';
}
.t_c02048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02048 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02048 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02048 { /* info for Javascript */
  display:none;
}
.l_c02048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02048:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02048 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02048.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02048;src:url('chunks/assets/font_525b66dd8827e18f884f237e.woff2')format("woff");}.ff1_c02048{font-family:ff1_c02048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02048;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02048{font-family:ff2_c02048;line-height:0.863770;font-style:normal;font-weight: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_c02048;src:url('chunks/assets/font_272cf5321d9ee417076ca986.woff2')format("woff");}.ff3_c02048{font-family:ff3_c02048;line-height:1.402354;font-style:normal;font-weight: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_c02048;src:url('chunks/assets/font_ed46925af75239672985ad7a.woff2')format("woff");}.ff4_c02048{font-family:ff4_c02048;line-height:1.311035;font-style:normal;font-weight: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_c02048;src:url('chunks/assets/font_f678e9438d9fa2b1d5758bd9.woff2')format("woff");}.ff5_c02048{font-family:ff5_c02048;line-height:1.435059;font-style:normal;font-weight: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_c02048;src:url('chunks/assets/font_8c609a9e3453e35456a4f208.woff2')format("woff");}.ff6_c02048{font-family:ff6_c02048;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02048{vertical-align:-77.040000px;}
.v1_c02048{vertical-align:-75.600000px;}
.v3_c02048{vertical-align:-74.160000px;}
.v0_c02048{vertical-align:0.000000px;}
.ls3_c02048{letter-spacing:0.000000px;}
.ls4_c02048{letter-spacing:0.720000px;}
.ls2_c02048{letter-spacing:6.785280px;}
.ls0_c02048{letter-spacing:39.905280px;}
.ls1_c02048{letter-spacing:239.016000px;}
.sc__c02048{text-shadow:none;}
.sc0_c02048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02048{-webkit-text-stroke:0px transparent;}
.sc0_c02048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02048{word-spacing:-16.560000px;}
.ws1_c02048{word-spacing:0.000000px;}
._5_c02048{margin-left:-2.252160px;}
._3_c02048{margin-left:-1.126212px;}
._8_c02048{width:1.257964px;}
._10_c02048{width:2.290398px;}
._15_c02048{width:3.774421px;}
._b_c02048{width:4.969457px;}
._a_c02048{width:6.558025px;}
._d_c02048{width:8.743812px;}
._e_c02048{width:10.134588px;}
._11_c02048{width:12.600000px;}
._12_c02048{width:13.628160px;}
._c_c02048{width:15.434781px;}
._f_c02048{width:16.560000px;}
._4_c02048{width:18.348679px;}
._1_c02048{width:21.395388px;}
._2_c02048{width:22.588171px;}
._13_c02048{width:24.045054px;}
._14_c02048{width:25.371112px;}
._9_c02048{width:28.947012px;}
._6_c02048{width:30.470400px;}
._7_c02048{width:31.663051px;}
._0_c02048{width:1500.936000px;}
.fc1_c02048{color:rgb(192,80,77);}
.fc0_c02048{color:rgb(0,0,0);}
.fs0_c02048{font-size:59.760000px;}
.fs1_c02048{font-size:66.240000px;}
.fs2_c02048{font-size:72.000000px;}
.y0_c02048{bottom:0.000000px;}
.y4_c02048{bottom:4.680000px;}
.y3_c02048{bottom:41.796000px;}
.y2_c02048{bottom:75.456000px;}
.y2a_c02048{bottom:115.056000px;}
.y29_c02048{bottom:133.956000px;}
.y28_c02048{bottom:153.030000px;}
.y27_c02048{bottom:172.290000px;}
.y26_c02048{bottom:191.190000px;}
.y25_c02048{bottom:210.270000px;}
.y24_c02048{bottom:229.170000px;}
.y23_c02048{bottom:258.870000px;}
.y22_c02048{bottom:289.875000px;}
.y21_c02048{bottom:321.015000px;}
.y20_c02048{bottom:351.975000px;}
.y1f_c02048{bottom:383.115000px;}
.y1e_c02048{bottom:414.075000px;}
.y1d_c02048{bottom:445.215000px;}
.y1c_c02048{bottom:476.175000px;}
.y1b_c02048{bottom:507.315000px;}
.y1a_c02048{bottom:538.305000px;}
.y19_c02048{bottom:569.445000px;}
.y18_c02048{bottom:600.405000px;}
.y17_c02048{bottom:630.285000px;}
.y16_c02048{bottom:649.365000px;}
.y15_c02048{bottom:686.805000px;}
.y14_c02048{bottom:705.885000px;}
.y13_c02048{bottom:724.785000px;}
.y12_c02048{bottom:743.865000px;}
.y11_c02048{bottom:782.025000px;}
.y10_c02048{bottom:801.150000px;}
.yf_c02048{bottom:839.130000px;}
.ye_c02048{bottom:858.030000px;}
.yd_c02048{bottom:877.110000px;}
.yc_c02048{bottom:914.910000px;}
.yb_c02048{bottom:933.990000px;}
.ya_c02048{bottom:952.890000px;}
.y9_c02048{bottom:971.970000px;}
.y8_c02048{bottom:1009.770000px;}
.y7_c02048{bottom:1028.850000px;}
.y6_c02048{bottom:1047.750000px;}
.y5_c02048{bottom:1066.860000px;}
.y1_c02048{bottom:1121.400000px;}
.h3_c02048{height:22.500000px;}
.h2_c02048{height:48.871406px;}
.h1_c02048{height:58.651172px;}
.h5_c02048{height:65.010937px;}
.h6_c02048{height:66.757500px;}
.h4_c02048{height:68.084282px;}
.h8_c02048{height:68.956875px;}
.h7_c02048{height:70.664062px;}
.h0_c02048{height:1188.000000px;}
.w1_c02048{width:66.636000px;}
.w0_c02048{width:918.000000px;}
.x0_c02048{left:0.000000px;}
.x3_c02048{left:16.560000px;}
.x1_c02048{left:127.656000px;}
.x6_c02048{left:180.750000px;}
.x4_c02048{left:191.550000px;}
.x5_c02048{left:218.550000px;}
.x2_c02048{left:820.950000px;}
@media print{
.v2_c02048{vertical-align:-68.480000pt;}
.v1_c02048{vertical-align:-67.200000pt;}
.v3_c02048{vertical-align:-65.920000pt;}
.v0_c02048{vertical-align:0.000000pt;}
.ls3_c02048{letter-spacing:0.000000pt;}
.ls4_c02048{letter-spacing:0.640000pt;}
.ls2_c02048{letter-spacing:6.031360pt;}
.ls0_c02048{letter-spacing:35.471360pt;}
.ls1_c02048{letter-spacing:212.458667pt;}
.ws0_c02048{word-spacing:-14.720000pt;}
.ws1_c02048{word-spacing:0.000000pt;}
._5_c02048{margin-left:-2.001920pt;}
._3_c02048{margin-left:-1.001078pt;}
._8_c02048{width:1.118190pt;}
._10_c02048{width:2.035909pt;}
._15_c02048{width:3.355041pt;}
._b_c02048{width:4.417295pt;}
._a_c02048{width:5.829356pt;}
._d_c02048{width:7.772278pt;}
._e_c02048{width:9.008522pt;}
._11_c02048{width:11.200000pt;}
._12_c02048{width:12.113920pt;}
._c_c02048{width:13.719805pt;}
._f_c02048{width:14.720000pt;}
._4_c02048{width:16.309937pt;}
._1_c02048{width:19.018122pt;}
._2_c02048{width:20.078374pt;}
._13_c02048{width:21.373381pt;}
._14_c02048{width:22.552100pt;}
._9_c02048{width:25.730678pt;}
._6_c02048{width:27.084800pt;}
._7_c02048{width:28.144934pt;}
._0_c02048{width:1334.165333pt;}
.fs0_c02048{font-size:53.120000pt;}
.fs1_c02048{font-size:58.880000pt;}
.fs2_c02048{font-size:64.000000pt;}
.y0_c02048{bottom:0.000000pt;}
.y4_c02048{bottom:4.160000pt;}
.y3_c02048{bottom:37.152000pt;}
.y2_c02048{bottom:67.072000pt;}
.y2a_c02048{bottom:102.272000pt;}
.y29_c02048{bottom:119.072000pt;}
.y28_c02048{bottom:136.026667pt;}
.y27_c02048{bottom:153.146667pt;}
.y26_c02048{bottom:169.946667pt;}
.y25_c02048{bottom:186.906667pt;}
.y24_c02048{bottom:203.706667pt;}
.y23_c02048{bottom:230.106667pt;}
.y22_c02048{bottom:257.666667pt;}
.y21_c02048{bottom:285.346667pt;}
.y20_c02048{bottom:312.866667pt;}
.y1f_c02048{bottom:340.546667pt;}
.y1e_c02048{bottom:368.066667pt;}
.y1d_c02048{bottom:395.746667pt;}
.y1c_c02048{bottom:423.266667pt;}
.y1b_c02048{bottom:450.946667pt;}
.y1a_c02048{bottom:478.493333pt;}
.y19_c02048{bottom:506.173333pt;}
.y18_c02048{bottom:533.693333pt;}
.y17_c02048{bottom:560.253333pt;}
.y16_c02048{bottom:577.213333pt;}
.y15_c02048{bottom:610.493333pt;}
.y14_c02048{bottom:627.453333pt;}
.y13_c02048{bottom:644.253333pt;}
.y12_c02048{bottom:661.213333pt;}
.y11_c02048{bottom:695.133333pt;}
.y10_c02048{bottom:712.133333pt;}
.yf_c02048{bottom:745.893333pt;}
.ye_c02048{bottom:762.693333pt;}
.yd_c02048{bottom:779.653333pt;}
.yc_c02048{bottom:813.253333pt;}
.yb_c02048{bottom:830.213333pt;}
.ya_c02048{bottom:847.013333pt;}
.y9_c02048{bottom:863.973333pt;}
.y8_c02048{bottom:897.573333pt;}
.y7_c02048{bottom:914.533333pt;}
.y6_c02048{bottom:931.333333pt;}
.y5_c02048{bottom:948.320000pt;}
.y1_c02048{bottom:996.800000pt;}
.h3_c02048{height:20.000000pt;}
.h2_c02048{height:43.441250pt;}
.h1_c02048{height:52.134375pt;}
.h5_c02048{height:57.787500pt;}
.h6_c02048{height:59.340000pt;}
.h4_c02048{height:60.519362pt;}
.h8_c02048{height:61.295000pt;}
.h7_c02048{height:62.812500pt;}
.h0_c02048{height:1056.000000pt;}
.w1_c02048{width:59.232000pt;}
.w0_c02048{width:816.000000pt;}
.x0_c02048{left:0.000000pt;}
.x3_c02048{left:14.720000pt;}
.x1_c02048{left:113.472000pt;}
.x6_c02048{left:160.666667pt;}
.x4_c02048{left:170.266667pt;}
.x5_c02048{left:194.266667pt;}
.x2_c02048{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02049 {
    display:none;
  }
  .loading-indicator_c02049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02049 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02049 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02049" -> "#page-container .classname_c02049")
 */
.pf_c02049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02049 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02049 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02049 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02049 {overflow:visible;}
  }
}
.c_c02049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02049 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02049:after { /* webkit #35443 */
  content: '';
}
.t_c02049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02049 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02049 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02049 { /* info for Javascript */
  display:none;
}
.l_c02049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02049:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02049 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02049.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02049;src:url('chunks/assets/font_879bb7611c4ab5a2a2448c05.woff2')format("woff");}.ff1_c02049{font-family:ff1_c02049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02049;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02049{font-family:ff2_c02049;line-height:0.863770;font-style:normal;font-weight: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_c02049;src:url('chunks/assets/font_6995bee3009473a0f316a682.woff2')format("woff");}.ff3_c02049{font-family:ff3_c02049;line-height:1.402354;font-style:normal;font-weight: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_c02049;src:url('chunks/assets/font_05e9596a50954b2b94844343.woff2')format("woff");}.ff4_c02049{font-family:ff4_c02049;line-height:1.311035;font-style:normal;font-weight: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_c02049;src:url('chunks/assets/font_2598f17acc5edd7d5e5099ac.woff2')format("woff");}.ff5_c02049{font-family:ff5_c02049;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02049{vertical-align:0.000000px;}
.ls2_c02049{letter-spacing:0.000000px;}
.ls1_c02049{letter-spacing:6.785280px;}
.ls0_c02049{letter-spacing:39.905280px;}
.sc__c02049{text-shadow:none;}
.sc0_c02049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02049{-webkit-text-stroke:0px transparent;}
.sc0_c02049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02049{word-spacing:0.000000px;}
._3_c02049{margin-left:-1.258825px;}
._4_c02049{width:1.191658px;}
._c_c02049{width:2.649600px;}
._11_c02049{width:4.172988px;}
._6_c02049{width:5.365175px;}
._7_c02049{width:6.492050px;}
._5_c02049{width:8.677109px;}
._b_c02049{width:9.940372px;}
._1_c02049{width:11.260800px;}
._2_c02049{width:12.519625px;}
._15_c02049{width:13.579068px;}
._a_c02049{width:14.638775px;}
._d_c02049{width:17.686279px;}
._8_c02049{width:19.673412px;}
._9_c02049{width:20.998411px;}
._12_c02049{width:22.189671px;}
._10_c02049{width:24.909287px;}
._f_c02049{width:26.032320px;}
._e_c02049{width:27.291145px;}
._16_c02049{width:33.782532px;}
._14_c02049{width:40.737666px;}
._13_c02049{width:41.929854px;}
._0_c02049{width:1500.936000px;}
.fc1_c02049{color:rgb(192,80,77);}
.fc0_c02049{color:rgb(0,0,0);}
.fs0_c02049{font-size:59.760000px;}
.fs1_c02049{font-size:66.240000px;}
.y0_c02049{bottom:0.000000px;}
.y4_c02049{bottom:4.680000px;}
.y3_c02049{bottom:41.796000px;}
.y2_c02049{bottom:75.456000px;}
.y36_c02049{bottom:136.656000px;}
.y35_c02049{bottom:155.550000px;}
.y34_c02049{bottom:174.450000px;}
.y33_c02049{bottom:193.530000px;}
.y32_c02049{bottom:212.430000px;}
.y31_c02049{bottom:231.510000px;}
.y30_c02049{bottom:250.410000px;}
.y2f_c02049{bottom:269.670000px;}
.y2e_c02049{bottom:288.795000px;}
.y2d_c02049{bottom:307.695000px;}
.y2c_c02049{bottom:326.775000px;}
.y2b_c02049{bottom:345.675000px;}
.y2a_c02049{bottom:364.575000px;}
.y29_c02049{bottom:383.655000px;}
.y28_c02049{bottom:402.555000px;}
.y27_c02049{bottom:421.635000px;}
.y26_c02049{bottom:440.535000px;}
.y25_c02049{bottom:459.615000px;}
.y24_c02049{bottom:478.515000px;}
.y23_c02049{bottom:497.415000px;}
.y22_c02049{bottom:516.495000px;}
.y21_c02049{bottom:535.425000px;}
.y20_c02049{bottom:554.505000px;}
.y1f_c02049{bottom:573.405000px;}
.y1e_c02049{bottom:592.305000px;}
.y1d_c02049{bottom:611.385000px;}
.y1c_c02049{bottom:630.285000px;}
.y1b_c02049{bottom:649.365000px;}
.y1a_c02049{bottom:668.265000px;}
.y19_c02049{bottom:687.165000px;}
.y18_c02049{bottom:706.245000px;}
.y17_c02049{bottom:725.145000px;}
.y16_c02049{bottom:744.225000px;}
.y15_c02049{bottom:763.125000px;}
.y14_c02049{bottom:782.025000px;}
.y13_c02049{bottom:801.150000px;}
.y12_c02049{bottom:820.050000px;}
.y11_c02049{bottom:839.130000px;}
.y10_c02049{bottom:858.030000px;}
.yf_c02049{bottom:877.110000px;}
.ye_c02049{bottom:896.010000px;}
.yd_c02049{bottom:914.910000px;}
.yc_c02049{bottom:933.990000px;}
.yb_c02049{bottom:952.890000px;}
.ya_c02049{bottom:971.970000px;}
.y9_c02049{bottom:990.870000px;}
.y8_c02049{bottom:1009.770000px;}
.y7_c02049{bottom:1028.850000px;}
.y6_c02049{bottom:1047.750000px;}
.y5_c02049{bottom:1066.860000px;}
.y1_c02049{bottom:1121.400000px;}
.h3_c02049{height:22.500000px;}
.h2_c02049{height:48.871406px;}
.h1_c02049{height:58.651172px;}
.h4_c02049{height:65.010937px;}
.h7_c02049{height:66.757500px;}
.h5_c02049{height:68.084282px;}
.h6_c02049{height:68.956875px;}
.h0_c02049{height:1188.000000px;}
.w1_c02049{width:66.636000px;}
.w0_c02049{width:918.000000px;}
.x0_c02049{left:0.000000px;}
.x3_c02049{left:16.560000px;}
.x1_c02049{left:127.656000px;}
.x5_c02049{left:191.550000px;}
.x4_c02049{left:218.550000px;}
.x2_c02049{left:820.950000px;}
@media print{
.v0_c02049{vertical-align:0.000000pt;}
.ls2_c02049{letter-spacing:0.000000pt;}
.ls1_c02049{letter-spacing:6.031360pt;}
.ls0_c02049{letter-spacing:35.471360pt;}
.ws0_c02049{word-spacing:0.000000pt;}
._3_c02049{margin-left:-1.118956pt;}
._4_c02049{width:1.059251pt;}
._c_c02049{width:2.355200pt;}
._11_c02049{width:3.709322pt;}
._6_c02049{width:4.769044pt;}
._7_c02049{width:5.770711pt;}
._5_c02049{width:7.712986pt;}
._b_c02049{width:8.835886pt;}
._1_c02049{width:10.009600pt;}
._2_c02049{width:11.128556pt;}
._15_c02049{width:12.070282pt;}
._a_c02049{width:13.012244pt;}
._d_c02049{width:15.721137pt;}
._8_c02049{width:17.487478pt;}
._9_c02049{width:18.665254pt;}
._12_c02049{width:19.724152pt;}
._10_c02049{width:22.141588pt;}
._f_c02049{width:23.139840pt;}
._e_c02049{width:24.258796pt;}
._16_c02049{width:30.028918pt;}
._14_c02049{width:36.211259pt;}
._13_c02049{width:37.270981pt;}
._0_c02049{width:1334.165333pt;}
.fs0_c02049{font-size:53.120000pt;}
.fs1_c02049{font-size:58.880000pt;}
.y0_c02049{bottom:0.000000pt;}
.y4_c02049{bottom:4.160000pt;}
.y3_c02049{bottom:37.152000pt;}
.y2_c02049{bottom:67.072000pt;}
.y36_c02049{bottom:121.472000pt;}
.y35_c02049{bottom:138.266667pt;}
.y34_c02049{bottom:155.066667pt;}
.y33_c02049{bottom:172.026667pt;}
.y32_c02049{bottom:188.826667pt;}
.y31_c02049{bottom:205.786667pt;}
.y30_c02049{bottom:222.586667pt;}
.y2f_c02049{bottom:239.706667pt;}
.y2e_c02049{bottom:256.706667pt;}
.y2d_c02049{bottom:273.506667pt;}
.y2c_c02049{bottom:290.466667pt;}
.y2b_c02049{bottom:307.266667pt;}
.y2a_c02049{bottom:324.066667pt;}
.y29_c02049{bottom:341.026667pt;}
.y28_c02049{bottom:357.826667pt;}
.y27_c02049{bottom:374.786667pt;}
.y26_c02049{bottom:391.586667pt;}
.y25_c02049{bottom:408.546667pt;}
.y24_c02049{bottom:425.346667pt;}
.y23_c02049{bottom:442.146667pt;}
.y22_c02049{bottom:459.106667pt;}
.y21_c02049{bottom:475.933333pt;}
.y20_c02049{bottom:492.893333pt;}
.y1f_c02049{bottom:509.693333pt;}
.y1e_c02049{bottom:526.493333pt;}
.y1d_c02049{bottom:543.453333pt;}
.y1c_c02049{bottom:560.253333pt;}
.y1b_c02049{bottom:577.213333pt;}
.y1a_c02049{bottom:594.013333pt;}
.y19_c02049{bottom:610.813333pt;}
.y18_c02049{bottom:627.773333pt;}
.y17_c02049{bottom:644.573333pt;}
.y16_c02049{bottom:661.533333pt;}
.y15_c02049{bottom:678.333333pt;}
.y14_c02049{bottom:695.133333pt;}
.y13_c02049{bottom:712.133333pt;}
.y12_c02049{bottom:728.933333pt;}
.y11_c02049{bottom:745.893333pt;}
.y10_c02049{bottom:762.693333pt;}
.yf_c02049{bottom:779.653333pt;}
.ye_c02049{bottom:796.453333pt;}
.yd_c02049{bottom:813.253333pt;}
.yc_c02049{bottom:830.213333pt;}
.yb_c02049{bottom:847.013333pt;}
.ya_c02049{bottom:863.973333pt;}
.y9_c02049{bottom:880.773333pt;}
.y8_c02049{bottom:897.573333pt;}
.y7_c02049{bottom:914.533333pt;}
.y6_c02049{bottom:931.333333pt;}
.y5_c02049{bottom:948.320000pt;}
.y1_c02049{bottom:996.800000pt;}
.h3_c02049{height:20.000000pt;}
.h2_c02049{height:43.441250pt;}
.h1_c02049{height:52.134375pt;}
.h4_c02049{height:57.787500pt;}
.h7_c02049{height:59.340000pt;}
.h5_c02049{height:60.519362pt;}
.h6_c02049{height:61.295000pt;}
.h0_c02049{height:1056.000000pt;}
.w1_c02049{width:59.232000pt;}
.w0_c02049{width:816.000000pt;}
.x0_c02049{left:0.000000pt;}
.x3_c02049{left:14.720000pt;}
.x1_c02049{left:113.472000pt;}
.x5_c02049{left:170.266667pt;}
.x4_c02049{left:194.266667pt;}
.x2_c02049{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02050 {
    display:none;
  }
  .loading-indicator_c02050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02050 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02050 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02050" -> "#page-container .classname_c02050")
 */
.pf_c02050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02050 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02050 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02050 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02050 {overflow:visible;}
  }
}
.c_c02050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02050 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02050:after { /* webkit #35443 */
  content: '';
}
.t_c02050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02050 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02050 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02050 { /* info for Javascript */
  display:none;
}
.l_c02050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02050:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02050 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02050.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02050;src:url('chunks/assets/font_27963f0fa5f3f5727774ba67.woff2')format("woff");}.ff1_c02050{font-family:ff1_c02050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02050;src:url('chunks/assets/font_e90a743d00850c5cfaaff3e6.woff2')format("woff");}.ff2_c02050{font-family:ff2_c02050;line-height:0.863770;font-style:normal;font-weight: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_c02050;src:url('chunks/assets/font_d6090ce17b4b4e9a041500ff.woff2')format("woff");}.ff3_c02050{font-family:ff3_c02050;line-height:1.311035;font-style:normal;font-weight: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_c02050;src:url('chunks/assets/font_84264f4ef88fd8addbae7a17.woff2')format("woff");}.ff4_c02050{font-family:ff4_c02050;line-height:1.435059;font-style:normal;font-weight: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_c02050;src:url('chunks/assets/font_bfaf115c249ee550496fd746.woff2')format("woff");}.ff5_c02050{font-family:ff5_c02050;line-height:1.402354;font-style:normal;font-weight: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_c02050;src:url('chunks/assets/font_0fb76a4b845be4997515fcf4.woff2')format("woff");}.ff6_c02050{font-family:ff6_c02050;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02050{vertical-align:0.000000px;}
.ls2_c02050{letter-spacing:-0.612000px;}
.ls1_c02050{letter-spacing:0.000000px;}
.ls0_c02050{letter-spacing:6.785280px;}
.sc__c02050{text-shadow:none;}
.sc0_c02050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02050{-webkit-text-stroke:0px transparent;}
.sc0_c02050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02050{word-spacing:0.000000px;}
._1_c02050{margin-left:-1.258825px;}
._4_c02050{width:1.191061px;}
._8_c02050{width:2.914957px;}
._12_c02050{width:3.960000px;}
._3_c02050{width:4.968662px;}
._2_c02050{width:6.425412px;}
._9_c02050{width:8.418640px;}
._a_c02050{width:9.670841px;}
._d_c02050{width:11.326841px;}
._5_c02050{width:13.248000px;}
._f_c02050{width:14.904000px;}
._6_c02050{width:19.937975px;}
._7_c02050{width:21.064916px;}
._b_c02050{width:22.455691px;}
._11_c02050{width:23.630268px;}
._10_c02050{width:24.632309px;}
._e_c02050{width:27.489600px;}
._c_c02050{width:29.079691px;}
._0_c02050{width:1500.936000px;}
.fc1_c02050{color:rgb(192,80,77);}
.fc0_c02050{color:rgb(0,0,0);}
.fs0_c02050{font-size:59.760000px;}
.fs1_c02050{font-size:66.240000px;}
.fs2_c02050{font-size:72.000000px;}
.y0_c02050{bottom:0.000000px;}
.y4_c02050{bottom:4.680000px;}
.y3_c02050{bottom:41.796000px;}
.y2_c02050{bottom:75.456000px;}
.y31_c02050{bottom:112.176000px;}
.y30_c02050{bottom:143.316000px;}
.y2f_c02050{bottom:174.270000px;}
.y2e_c02050{bottom:205.410000px;}
.y2d_c02050{bottom:236.370000px;}
.y2c_c02050{bottom:267.510000px;}
.y2b_c02050{bottom:298.515000px;}
.y2a_c02050{bottom:329.655000px;}
.y29_c02050{bottom:360.615000px;}
.y28_c02050{bottom:391.755000px;}
.y27_c02050{bottom:421.635000px;}
.y26_c02050{bottom:440.535000px;}
.y25_c02050{bottom:459.615000px;}
.y24_c02050{bottom:478.515000px;}
.y23_c02050{bottom:497.415000px;}
.y22_c02050{bottom:516.495000px;}
.y21_c02050{bottom:535.425000px;}
.y20_c02050{bottom:554.505000px;}
.y1f_c02050{bottom:573.045000px;}
.y1e_c02050{bottom:591.945000px;}
.y1d_c02050{bottom:611.025000px;}
.y1c_c02050{bottom:629.925000px;}
.y1b_c02050{bottom:649.005000px;}
.y1a_c02050{bottom:667.905000px;}
.y19_c02050{bottom:686.805000px;}
.y18_c02050{bottom:705.885000px;}
.y17_c02050{bottom:724.785000px;}
.y16_c02050{bottom:743.865000px;}
.y15_c02050{bottom:763.125000px;}
.y14_c02050{bottom:782.025000px;}
.y13_c02050{bottom:801.150000px;}
.y12_c02050{bottom:820.050000px;}
.y11_c02050{bottom:839.130000px;}
.y10_c02050{bottom:858.030000px;}
.yf_c02050{bottom:877.110000px;}
.ye_c02050{bottom:896.010000px;}
.yd_c02050{bottom:914.550000px;}
.yc_c02050{bottom:933.630000px;}
.yb_c02050{bottom:952.530000px;}
.ya_c02050{bottom:971.610000px;}
.y9_c02050{bottom:990.510000px;}
.y8_c02050{bottom:1009.410000px;}
.y7_c02050{bottom:1028.490000px;}
.y6_c02050{bottom:1047.390000px;}
.y5_c02050{bottom:1066.500000px;}
.y1_c02050{bottom:1121.400000px;}
.h3_c02050{height:22.500000px;}
.h2_c02050{height:48.871406px;}
.h1_c02050{height:58.651172px;}
.h6_c02050{height:65.010937px;}
.h4_c02050{height:66.757500px;}
.h7_c02050{height:68.084282px;}
.h5_c02050{height:68.956875px;}
.h8_c02050{height:70.664062px;}
.h0_c02050{height:1188.000000px;}
.w1_c02050{width:66.636000px;}
.w0_c02050{width:918.000000px;}
.x0_c02050{left:0.000000px;}
.x3_c02050{left:16.560000px;}
.x1_c02050{left:127.656000px;}
.x6_c02050{left:180.750000px;}
.x5_c02050{left:191.550000px;}
.x4_c02050{left:218.550000px;}
.x2_c02050{left:820.950000px;}
@media print{
.v0_c02050{vertical-align:0.000000pt;}
.ls2_c02050{letter-spacing:-0.544000pt;}
.ls1_c02050{letter-spacing:0.000000pt;}
.ls0_c02050{letter-spacing:6.031360pt;}
.ws0_c02050{word-spacing:0.000000pt;}
._1_c02050{margin-left:-1.118956pt;}
._4_c02050{width:1.058721pt;}
._8_c02050{width:2.591073pt;}
._12_c02050{width:3.520000pt;}
._3_c02050{width:4.416589pt;}
._2_c02050{width:5.711478pt;}
._9_c02050{width:7.483236pt;}
._a_c02050{width:8.596303pt;}
._d_c02050{width:10.068303pt;}
._5_c02050{width:11.776000pt;}
._f_c02050{width:13.248000pt;}
._6_c02050{width:17.722644pt;}
._7_c02050{width:18.724370pt;}
._b_c02050{width:19.960614pt;}
._11_c02050{width:21.004682pt;}
._10_c02050{width:21.895386pt;}
._e_c02050{width:24.435200pt;}
._c_c02050{width:25.848614pt;}
._0_c02050{width:1334.165333pt;}
.fs0_c02050{font-size:53.120000pt;}
.fs1_c02050{font-size:58.880000pt;}
.fs2_c02050{font-size:64.000000pt;}
.y0_c02050{bottom:0.000000pt;}
.y4_c02050{bottom:4.160000pt;}
.y3_c02050{bottom:37.152000pt;}
.y2_c02050{bottom:67.072000pt;}
.y31_c02050{bottom:99.712000pt;}
.y30_c02050{bottom:127.392000pt;}
.y2f_c02050{bottom:154.906667pt;}
.y2e_c02050{bottom:182.586667pt;}
.y2d_c02050{bottom:210.106667pt;}
.y2c_c02050{bottom:237.786667pt;}
.y2b_c02050{bottom:265.346667pt;}
.y2a_c02050{bottom:293.026667pt;}
.y29_c02050{bottom:320.546667pt;}
.y28_c02050{bottom:348.226667pt;}
.y27_c02050{bottom:374.786667pt;}
.y26_c02050{bottom:391.586667pt;}
.y25_c02050{bottom:408.546667pt;}
.y24_c02050{bottom:425.346667pt;}
.y23_c02050{bottom:442.146667pt;}
.y22_c02050{bottom:459.106667pt;}
.y21_c02050{bottom:475.933333pt;}
.y20_c02050{bottom:492.893333pt;}
.y1f_c02050{bottom:509.373333pt;}
.y1e_c02050{bottom:526.173333pt;}
.y1d_c02050{bottom:543.133333pt;}
.y1c_c02050{bottom:559.933333pt;}
.y1b_c02050{bottom:576.893333pt;}
.y1a_c02050{bottom:593.693333pt;}
.y19_c02050{bottom:610.493333pt;}
.y18_c02050{bottom:627.453333pt;}
.y17_c02050{bottom:644.253333pt;}
.y16_c02050{bottom:661.213333pt;}
.y15_c02050{bottom:678.333333pt;}
.y14_c02050{bottom:695.133333pt;}
.y13_c02050{bottom:712.133333pt;}
.y12_c02050{bottom:728.933333pt;}
.y11_c02050{bottom:745.893333pt;}
.y10_c02050{bottom:762.693333pt;}
.yf_c02050{bottom:779.653333pt;}
.ye_c02050{bottom:796.453333pt;}
.yd_c02050{bottom:812.933333pt;}
.yc_c02050{bottom:829.893333pt;}
.yb_c02050{bottom:846.693333pt;}
.ya_c02050{bottom:863.653333pt;}
.y9_c02050{bottom:880.453333pt;}
.y8_c02050{bottom:897.253333pt;}
.y7_c02050{bottom:914.213333pt;}
.y6_c02050{bottom:931.013333pt;}
.y5_c02050{bottom:948.000000pt;}
.y1_c02050{bottom:996.800000pt;}
.h3_c02050{height:20.000000pt;}
.h2_c02050{height:43.441250pt;}
.h1_c02050{height:52.134375pt;}
.h6_c02050{height:57.787500pt;}
.h4_c02050{height:59.340000pt;}
.h7_c02050{height:60.519362pt;}
.h5_c02050{height:61.295000pt;}
.h8_c02050{height:62.812500pt;}
.h0_c02050{height:1056.000000pt;}
.w1_c02050{width:59.232000pt;}
.w0_c02050{width:816.000000pt;}
.x0_c02050{left:0.000000pt;}
.x3_c02050{left:14.720000pt;}
.x1_c02050{left:113.472000pt;}
.x6_c02050{left:160.666667pt;}
.x5_c02050{left:170.266667pt;}
.x4_c02050{left:194.266667pt;}
.x2_c02050{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02051 {
    display:none;
  }
  .loading-indicator_c02051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02051 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02051 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02051" -> "#page-container .classname_c02051")
 */
.pf_c02051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02051 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02051 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02051 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02051 {overflow:visible;}
  }
}
.c_c02051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02051 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02051:after { /* webkit #35443 */
  content: '';
}
.t_c02051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02051 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02051 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02051 { /* info for Javascript */
  display:none;
}
.l_c02051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02051:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02051 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02051.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02051;src:url('chunks/assets/font_61fa257e46fb7e20223b5b8a.woff2')format("woff");}.ff1_c02051{font-family:ff1_c02051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02051;src:url('chunks/assets/font_c3d86259765a43afca692c25.woff2')format("woff");}.ff2_c02051{font-family:ff2_c02051;line-height:0.863770;font-style:normal;font-weight: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_c02051;src:url('chunks/assets/font_2da9e1e313c91ad587acd84b.woff2')format("woff");}.ff3_c02051{font-family:ff3_c02051;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02051{vertical-align:0.000000px;}
.ls2_c02051{letter-spacing:0.000000px;}
.ls1_c02051{letter-spacing:6.785280px;}
.ls0_c02051{letter-spacing:39.905280px;}
.sc__c02051{text-shadow:none;}
.sc0_c02051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02051{-webkit-text-stroke:0px transparent;}
.sc0_c02051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02051{word-spacing:0.000000px;}
._4_c02051{margin-left:-1.126279px;}
._3_c02051{width:1.192188px;}
._1_c02051{width:2.782279px;}
._2_c02051{width:4.238830px;}
._7_c02051{width:5.897678px;}
._9_c02051{width:7.078473px;}
._5_c02051{width:8.345975px;}
._6_c02051{width:10.069275px;}
._a_c02051{width:11.586303px;}
._8_c02051{width:13.182157px;}
._e_c02051{width:24.969565px;}
._c_c02051{width:26.099090px;}
._b_c02051{width:27.158599px;}
._d_c02051{width:28.284480px;}
._f_c02051{width:48.222654px;}
._10_c02051{width:49.349264px;}
._0_c02051{width:1500.936000px;}
.fc1_c02051{color:rgb(192,80,77);}
.fc0_c02051{color:rgb(0,0,0);}
.fs0_c02051{font-size:59.760000px;}
.fs1_c02051{font-size:66.240000px;}
.fs2_c02051{font-size:72.000000px;}
.y0_c02051{bottom:0.000000px;}
.y4_c02051{bottom:4.680000px;}
.y3_c02051{bottom:41.796000px;}
.y2_c02051{bottom:75.456000px;}
.y36_c02051{bottom:124.956000px;}
.y35_c02051{bottom:143.856000px;}
.y34_c02051{bottom:162.750000px;}
.y33_c02051{bottom:181.830000px;}
.y32_c02051{bottom:200.730000px;}
.y31_c02051{bottom:219.810000px;}
.y30_c02051{bottom:238.710000px;}
.y2f_c02051{bottom:257.610000px;}
.y2e_c02051{bottom:276.735000px;}
.y2d_c02051{bottom:295.635000px;}
.y2c_c02051{bottom:314.715000px;}
.y2b_c02051{bottom:333.615000px;}
.y2a_c02051{bottom:352.515000px;}
.y29_c02051{bottom:371.595000px;}
.y28_c02051{bottom:390.495000px;}
.y27_c02051{bottom:409.575000px;}
.y26_c02051{bottom:428.475000px;}
.y25_c02051{bottom:447.375000px;}
.y24_c02051{bottom:466.455000px;}
.y23_c02051{bottom:485.355000px;}
.y22_c02051{bottom:504.435000px;}
.y21_c02051{bottom:523.335000px;}
.y20_c02051{bottom:542.265000px;}
.y1f_c02051{bottom:561.345000px;}
.y1e_c02051{bottom:580.245000px;}
.y1d_c02051{bottom:599.325000px;}
.y1c_c02051{bottom:618.225000px;}
.y1b_c02051{bottom:637.305000px;}
.y1a_c02051{bottom:656.205000px;}
.y19_c02051{bottom:675.105000px;}
.y18_c02051{bottom:694.185000px;}
.y17_c02051{bottom:713.085000px;}
.y16_c02051{bottom:732.165000px;}
.y15_c02051{bottom:751.065000px;}
.y14_c02051{bottom:769.965000px;}
.y13_c02051{bottom:789.045000px;}
.y12_c02051{bottom:807.990000px;}
.y11_c02051{bottom:827.070000px;}
.y10_c02051{bottom:845.970000px;}
.yf_c02051{bottom:864.870000px;}
.ye_c02051{bottom:883.950000px;}
.yd_c02051{bottom:902.850000px;}
.yc_c02051{bottom:921.930000px;}
.yb_c02051{bottom:940.830000px;}
.ya_c02051{bottom:959.730000px;}
.y9_c02051{bottom:978.810000px;}
.y8_c02051{bottom:997.710000px;}
.y7_c02051{bottom:1016.790000px;}
.y6_c02051{bottom:1035.690000px;}
.y5_c02051{bottom:1065.420000px;}
.y1_c02051{bottom:1121.400000px;}
.h3_c02051{height:22.500000px;}
.h2_c02051{height:48.871406px;}
.h1_c02051{height:58.651172px;}
.h6_c02051{height:65.010937px;}
.h5_c02051{height:68.084282px;}
.h4_c02051{height:70.664062px;}
.h0_c02051{height:1188.000000px;}
.w1_c02051{width:66.636000px;}
.w0_c02051{width:918.000000px;}
.x0_c02051{left:0.000000px;}
.x3_c02051{left:16.560000px;}
.x1_c02051{left:127.656000px;}
.x4_c02051{left:180.750000px;}
.x5_c02051{left:191.550000px;}
.x6_c02051{left:218.550000px;}
.x2_c02051{left:820.950000px;}
@media print{
.v0_c02051{vertical-align:0.000000pt;}
.ls2_c02051{letter-spacing:0.000000pt;}
.ls1_c02051{letter-spacing:6.031360pt;}
.ls0_c02051{letter-spacing:35.471360pt;}
.ws0_c02051{word-spacing:0.000000pt;}
._4_c02051{margin-left:-1.001137pt;}
._3_c02051{width:1.059722pt;}
._1_c02051{width:2.473137pt;}
._2_c02051{width:3.767849pt;}
._7_c02051{width:5.242381pt;}
._9_c02051{width:6.291976pt;}
._5_c02051{width:7.418644pt;}
._6_c02051{width:8.950467pt;}
._a_c02051{width:10.298936pt;}
._8_c02051{width:11.717473pt;}
._e_c02051{width:22.195169pt;}
._c_c02051{width:23.199191pt;}
._b_c02051{width:24.140977pt;}
._d_c02051{width:25.141760pt;}
._f_c02051{width:42.864581pt;}
._10_c02051{width:43.866012pt;}
._0_c02051{width:1334.165333pt;}
.fs0_c02051{font-size:53.120000pt;}
.fs1_c02051{font-size:58.880000pt;}
.fs2_c02051{font-size:64.000000pt;}
.y0_c02051{bottom:0.000000pt;}
.y4_c02051{bottom:4.160000pt;}
.y3_c02051{bottom:37.152000pt;}
.y2_c02051{bottom:67.072000pt;}
.y36_c02051{bottom:111.072000pt;}
.y35_c02051{bottom:127.872000pt;}
.y34_c02051{bottom:144.666667pt;}
.y33_c02051{bottom:161.626667pt;}
.y32_c02051{bottom:178.426667pt;}
.y31_c02051{bottom:195.386667pt;}
.y30_c02051{bottom:212.186667pt;}
.y2f_c02051{bottom:228.986667pt;}
.y2e_c02051{bottom:245.986667pt;}
.y2d_c02051{bottom:262.786667pt;}
.y2c_c02051{bottom:279.746667pt;}
.y2b_c02051{bottom:296.546667pt;}
.y2a_c02051{bottom:313.346667pt;}
.y29_c02051{bottom:330.306667pt;}
.y28_c02051{bottom:347.106667pt;}
.y27_c02051{bottom:364.066667pt;}
.y26_c02051{bottom:380.866667pt;}
.y25_c02051{bottom:397.666667pt;}
.y24_c02051{bottom:414.626667pt;}
.y23_c02051{bottom:431.426667pt;}
.y22_c02051{bottom:448.386667pt;}
.y21_c02051{bottom:465.186667pt;}
.y20_c02051{bottom:482.013333pt;}
.y1f_c02051{bottom:498.973333pt;}
.y1e_c02051{bottom:515.773333pt;}
.y1d_c02051{bottom:532.733333pt;}
.y1c_c02051{bottom:549.533333pt;}
.y1b_c02051{bottom:566.493333pt;}
.y1a_c02051{bottom:583.293333pt;}
.y19_c02051{bottom:600.093333pt;}
.y18_c02051{bottom:617.053333pt;}
.y17_c02051{bottom:633.853333pt;}
.y16_c02051{bottom:650.813333pt;}
.y15_c02051{bottom:667.613333pt;}
.y14_c02051{bottom:684.413333pt;}
.y13_c02051{bottom:701.373333pt;}
.y12_c02051{bottom:718.213333pt;}
.y11_c02051{bottom:735.173333pt;}
.y10_c02051{bottom:751.973333pt;}
.yf_c02051{bottom:768.773333pt;}
.ye_c02051{bottom:785.733333pt;}
.yd_c02051{bottom:802.533333pt;}
.yc_c02051{bottom:819.493333pt;}
.yb_c02051{bottom:836.293333pt;}
.ya_c02051{bottom:853.093333pt;}
.y9_c02051{bottom:870.053333pt;}
.y8_c02051{bottom:886.853333pt;}
.y7_c02051{bottom:903.813333pt;}
.y6_c02051{bottom:920.613333pt;}
.y5_c02051{bottom:947.040000pt;}
.y1_c02051{bottom:996.800000pt;}
.h3_c02051{height:20.000000pt;}
.h2_c02051{height:43.441250pt;}
.h1_c02051{height:52.134375pt;}
.h6_c02051{height:57.787500pt;}
.h5_c02051{height:60.519362pt;}
.h4_c02051{height:62.812500pt;}
.h0_c02051{height:1056.000000pt;}
.w1_c02051{width:59.232000pt;}
.w0_c02051{width:816.000000pt;}
.x0_c02051{left:0.000000pt;}
.x3_c02051{left:14.720000pt;}
.x1_c02051{left:113.472000pt;}
.x4_c02051{left:160.666667pt;}
.x5_c02051{left:170.266667pt;}
.x6_c02051{left:194.266667pt;}
.x2_c02051{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02052 {
    display:none;
  }
  .loading-indicator_c02052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02052 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02052 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02052" -> "#page-container .classname_c02052")
 */
.pf_c02052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02052 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02052 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02052 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02052 {overflow:visible;}
  }
}
.c_c02052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02052 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02052:after { /* webkit #35443 */
  content: '';
}
.t_c02052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02052 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02052 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02052 { /* info for Javascript */
  display:none;
}
.l_c02052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02052:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02052 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02052.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02052;src:url('chunks/assets/font_ebfb39114987f9a8b88ffb25.woff2')format("woff");}.ff1_c02052{font-family:ff1_c02052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02052;src:url('chunks/assets/font_48dc4d9840460d103ea74434.woff2')format("woff");}.ff2_c02052{font-family:ff2_c02052;line-height:0.863770;font-style:normal;font-weight: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_c02052;src:url('chunks/assets/font_0fa2654aa72c979fecff461c.woff2')format("woff");}.ff3_c02052{font-family:ff3_c02052;line-height:1.311035;font-style:normal;font-weight: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_c02052;src:url('chunks/assets/font_2329fd4a3e63fa502181aad2.woff2')format("woff");}.ff4_c02052{font-family:ff4_c02052;line-height:1.435059;font-style:normal;font-weight: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_c02052;src:url('chunks/assets/font_9c2d351839f0991b1e1e11ee.woff2')format("woff");}.ff5_c02052{font-family:ff5_c02052;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02052{vertical-align:0.000000px;}
.ls1_c02052{letter-spacing:0.000000px;}
.ls0_c02052{letter-spacing:6.785280px;}
.sc__c02052{text-shadow:none;}
.sc0_c02052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02052{-webkit-text-stroke:0px transparent;}
.sc0_c02052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02052{word-spacing:0.000000px;}
._2_c02052{margin-left:-1.589959px;}
._5_c02052{width:1.192254px;}
._8_c02052{width:2.318797px;}
._6_c02052{width:3.378571px;}
._4_c02052{width:4.968000px;}
._16_c02052{width:5.990880px;}
._13_c02052{width:8.346041px;}
._b_c02052{width:10.001975px;}
._12_c02052{width:11.062809px;}
._11_c02052{width:12.188425px;}
._10_c02052{width:13.248000px;}
._e_c02052{width:14.440254px;}
._f_c02052{width:15.500889px;}
._7_c02052{width:18.745920px;}
._3_c02052{width:20.137225px;}
._1_c02052{width:21.196800px;}
._14_c02052{width:22.256441px;}
._15_c02052{width:29.079691px;}
._c_c02052{width:30.337854px;}
._d_c02052{width:31.468306px;}
._a_c02052{width:40.737666px;}
._9_c02052{width:41.929854px;}
._0_c02052{width:1500.936000px;}
.fc1_c02052{color:rgb(192,80,77);}
.fc0_c02052{color:rgb(0,0,0);}
.fs0_c02052{font-size:59.760000px;}
.fs1_c02052{font-size:66.240000px;}
.fs2_c02052{font-size:72.000000px;}
.y0_c02052{bottom:0.000000px;}
.y4_c02052{bottom:4.680000px;}
.y3_c02052{bottom:41.796000px;}
.y2_c02052{bottom:75.456000px;}
.y33_c02052{bottom:158.790000px;}
.y32_c02052{bottom:189.750000px;}
.y31_c02052{bottom:220.890000px;}
.y30_c02052{bottom:250.770000px;}
.y2f_c02052{bottom:269.670000px;}
.y2e_c02052{bottom:288.795000px;}
.y2d_c02052{bottom:307.695000px;}
.y2c_c02052{bottom:326.415000px;}
.y2b_c02052{bottom:345.315000px;}
.y2a_c02052{bottom:364.215000px;}
.y29_c02052{bottom:383.295000px;}
.y28_c02052{bottom:402.195000px;}
.y27_c02052{bottom:421.275000px;}
.y26_c02052{bottom:440.175000px;}
.y25_c02052{bottom:459.255000px;}
.y24_c02052{bottom:478.155000px;}
.y23_c02052{bottom:497.055000px;}
.y22_c02052{bottom:516.495000px;}
.y21_c02052{bottom:535.425000px;}
.y20_c02052{bottom:554.505000px;}
.y1f_c02052{bottom:573.405000px;}
.y1e_c02052{bottom:592.305000px;}
.y1d_c02052{bottom:611.385000px;}
.y1c_c02052{bottom:630.285000px;}
.y1b_c02052{bottom:649.365000px;}
.y1a_c02052{bottom:667.905000px;}
.y19_c02052{bottom:686.805000px;}
.y18_c02052{bottom:705.885000px;}
.y17_c02052{bottom:724.785000px;}
.y16_c02052{bottom:743.865000px;}
.y15_c02052{bottom:762.765000px;}
.y14_c02052{bottom:781.665000px;}
.y13_c02052{bottom:800.790000px;}
.y12_c02052{bottom:819.690000px;}
.y11_c02052{bottom:838.770000px;}
.y10_c02052{bottom:857.670000px;}
.yf_c02052{bottom:876.750000px;}
.ye_c02052{bottom:895.650000px;}
.yd_c02052{bottom:914.550000px;}
.yc_c02052{bottom:933.630000px;}
.yb_c02052{bottom:952.530000px;}
.ya_c02052{bottom:971.610000px;}
.y9_c02052{bottom:990.870000px;}
.y8_c02052{bottom:1009.770000px;}
.y7_c02052{bottom:1028.850000px;}
.y6_c02052{bottom:1047.750000px;}
.y5_c02052{bottom:1066.860000px;}
.y1_c02052{bottom:1121.400000px;}
.h3_c02052{height:22.500000px;}
.h2_c02052{height:48.871406px;}
.h1_c02052{height:58.651172px;}
.h4_c02052{height:65.010937px;}
.h6_c02052{height:66.757500px;}
.h7_c02052{height:68.084282px;}
.h5_c02052{height:68.956875px;}
.h8_c02052{height:70.664062px;}
.h0_c02052{height:1188.000000px;}
.w1_c02052{width:66.636000px;}
.w0_c02052{width:918.000000px;}
.x0_c02052{left:0.000000px;}
.x3_c02052{left:16.560000px;}
.x1_c02052{left:127.656000px;}
.x7_c02052{left:180.750000px;}
.x5_c02052{left:191.550000px;}
.x4_c02052{left:218.550000px;}
.x6_c02052{left:233.850000px;}
.x2_c02052{left:820.950000px;}
@media print{
.v0_c02052{vertical-align:0.000000pt;}
.ls1_c02052{letter-spacing:0.000000pt;}
.ls0_c02052{letter-spacing:6.031360pt;}
.ws0_c02052{word-spacing:0.000000pt;}
._2_c02052{margin-left:-1.413297pt;}
._5_c02052{width:1.059781pt;}
._8_c02052{width:2.061153pt;}
._6_c02052{width:3.003174pt;}
._4_c02052{width:4.416000pt;}
._16_c02052{width:5.325227pt;}
._13_c02052{width:7.418703pt;}
._b_c02052{width:8.890644pt;}
._12_c02052{width:9.833608pt;}
._11_c02052{width:10.834156pt;}
._10_c02052{width:11.776000pt;}
._e_c02052{width:12.835781pt;}
._f_c02052{width:13.778568pt;}
._7_c02052{width:16.663040pt;}
._3_c02052{width:17.899756pt;}
._1_c02052{width:18.841600pt;}
._14_c02052{width:19.783503pt;}
._15_c02052{width:25.848614pt;}
._c_c02052{width:26.966981pt;}
._d_c02052{width:27.971827pt;}
._a_c02052{width:36.211259pt;}
._9_c02052{width:37.270981pt;}
._0_c02052{width:1334.165333pt;}
.fs0_c02052{font-size:53.120000pt;}
.fs1_c02052{font-size:58.880000pt;}
.fs2_c02052{font-size:64.000000pt;}
.y0_c02052{bottom:0.000000pt;}
.y4_c02052{bottom:4.160000pt;}
.y3_c02052{bottom:37.152000pt;}
.y2_c02052{bottom:67.072000pt;}
.y33_c02052{bottom:141.146667pt;}
.y32_c02052{bottom:168.666667pt;}
.y31_c02052{bottom:196.346667pt;}
.y30_c02052{bottom:222.906667pt;}
.y2f_c02052{bottom:239.706667pt;}
.y2e_c02052{bottom:256.706667pt;}
.y2d_c02052{bottom:273.506667pt;}
.y2c_c02052{bottom:290.146667pt;}
.y2b_c02052{bottom:306.946667pt;}
.y2a_c02052{bottom:323.746667pt;}
.y29_c02052{bottom:340.706667pt;}
.y28_c02052{bottom:357.506667pt;}
.y27_c02052{bottom:374.466667pt;}
.y26_c02052{bottom:391.266667pt;}
.y25_c02052{bottom:408.226667pt;}
.y24_c02052{bottom:425.026667pt;}
.y23_c02052{bottom:441.826667pt;}
.y22_c02052{bottom:459.106667pt;}
.y21_c02052{bottom:475.933333pt;}
.y20_c02052{bottom:492.893333pt;}
.y1f_c02052{bottom:509.693333pt;}
.y1e_c02052{bottom:526.493333pt;}
.y1d_c02052{bottom:543.453333pt;}
.y1c_c02052{bottom:560.253333pt;}
.y1b_c02052{bottom:577.213333pt;}
.y1a_c02052{bottom:593.693333pt;}
.y19_c02052{bottom:610.493333pt;}
.y18_c02052{bottom:627.453333pt;}
.y17_c02052{bottom:644.253333pt;}
.y16_c02052{bottom:661.213333pt;}
.y15_c02052{bottom:678.013333pt;}
.y14_c02052{bottom:694.813333pt;}
.y13_c02052{bottom:711.813333pt;}
.y12_c02052{bottom:728.613333pt;}
.y11_c02052{bottom:745.573333pt;}
.y10_c02052{bottom:762.373333pt;}
.yf_c02052{bottom:779.333333pt;}
.ye_c02052{bottom:796.133333pt;}
.yd_c02052{bottom:812.933333pt;}
.yc_c02052{bottom:829.893333pt;}
.yb_c02052{bottom:846.693333pt;}
.ya_c02052{bottom:863.653333pt;}
.y9_c02052{bottom:880.773333pt;}
.y8_c02052{bottom:897.573333pt;}
.y7_c02052{bottom:914.533333pt;}
.y6_c02052{bottom:931.333333pt;}
.y5_c02052{bottom:948.320000pt;}
.y1_c02052{bottom:996.800000pt;}
.h3_c02052{height:20.000000pt;}
.h2_c02052{height:43.441250pt;}
.h1_c02052{height:52.134375pt;}
.h4_c02052{height:57.787500pt;}
.h6_c02052{height:59.340000pt;}
.h7_c02052{height:60.519362pt;}
.h5_c02052{height:61.295000pt;}
.h8_c02052{height:62.812500pt;}
.h0_c02052{height:1056.000000pt;}
.w1_c02052{width:59.232000pt;}
.w0_c02052{width:816.000000pt;}
.x0_c02052{left:0.000000pt;}
.x3_c02052{left:14.720000pt;}
.x1_c02052{left:113.472000pt;}
.x7_c02052{left:160.666667pt;}
.x5_c02052{left:170.266667pt;}
.x4_c02052{left:194.266667pt;}
.x6_c02052{left:207.866667pt;}
.x2_c02052{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02053 {
    display:none;
  }
  .loading-indicator_c02053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02053 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02053 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02053" -> "#page-container .classname_c02053")
 */
.pf_c02053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02053 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02053 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02053 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02053 {overflow:visible;}
  }
}
.c_c02053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02053 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02053:after { /* webkit #35443 */
  content: '';
}
.t_c02053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02053 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02053 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02053 { /* info for Javascript */
  display:none;
}
.l_c02053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02053:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02053 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02053.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02053;src:url('chunks/assets/font_a232911d0548a89efca040b9.woff2')format("woff");}.ff1_c02053{font-family:ff1_c02053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02053;src:url('chunks/assets/font_4d93ce469372740a9bf543cf.woff2')format("woff");}.ff2_c02053{font-family:ff2_c02053;line-height:0.863770;font-style:normal;font-weight: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_c02053;src:url('chunks/assets/font_389e4c0c5882b5346182b44c.woff2')format("woff");}.ff3_c02053{font-family:ff3_c02053;line-height:1.112305;font-style:normal;font-weight: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_c02053;src:url('chunks/assets/font_560de9fbbf00916cd97b10af.woff2')format("woff");}.ff4_c02053{font-family:ff4_c02053;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02053{vertical-align:0.000000px;}
.ls1_c02053{letter-spacing:0.000000px;}
.ls0_c02053{letter-spacing:39.905280px;}
.sc__c02053{text-shadow:none;}
.sc0_c02053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02053{-webkit-text-stroke:0px transparent;}
.sc0_c02053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02053{word-spacing:0.000000px;}
._4_c02053{margin-left:-1.572000px;}
._2_c02053{width:1.296000px;}
._5_c02053{width:2.782279px;}
._6_c02053{width:4.238830px;}
._9_c02053{width:5.480624px;}
._a_c02053{width:7.261721px;}
._7_c02053{width:8.280000px;}
._8_c02053{width:9.406212px;}
._f_c02053{width:10.531895px;}
._c_c02053{width:17.950841px;}
._b_c02053{width:19.390825px;}
._d_c02053{width:20.533936px;}
._10_c02053{width:22.124955px;}
._e_c02053{width:26.290908px;}
._1_c02053{width:28.008000px;}
._3_c02053{width:29.736000px;}
._11_c02053{width:31.697611px;}
._0_c02053{width:1500.936000px;}
.fc1_c02053{color:rgb(192,80,77);}
.fc0_c02053{color:rgb(0,0,0);}
.fs0_c02053{font-size:59.760000px;}
.fs1_c02053{font-size:66.240000px;}
.fs2_c02053{font-size:72.000000px;}
.y0_c02053{bottom:0.000000px;}
.y4_c02053{bottom:4.680000px;}
.y3_c02053{bottom:41.796000px;}
.y2_c02053{bottom:75.456000px;}
.y33_c02053{bottom:157.710000px;}
.y32_c02053{bottom:176.610000px;}
.y31_c02053{bottom:195.510000px;}
.y30_c02053{bottom:214.590000px;}
.y2f_c02053{bottom:233.490000px;}
.y2e_c02053{bottom:252.570000px;}
.y2d_c02053{bottom:271.515000px;}
.y2c_c02053{bottom:290.415000px;}
.y2b_c02053{bottom:309.495000px;}
.y2a_c02053{bottom:328.395000px;}
.y29_c02053{bottom:347.475000px;}
.y28_c02053{bottom:366.375000px;}
.y27_c02053{bottom:385.275000px;}
.y26_c02053{bottom:404.355000px;}
.y25_c02053{bottom:423.255000px;}
.y24_c02053{bottom:442.335000px;}
.y23_c02053{bottom:461.235000px;}
.y22_c02053{bottom:480.315000px;}
.y21_c02053{bottom:499.215000px;}
.y20_c02053{bottom:518.115000px;}
.y1f_c02053{bottom:537.225000px;}
.y1e_c02053{bottom:556.125000px;}
.y1d_c02053{bottom:575.205000px;}
.y1c_c02053{bottom:594.105000px;}
.y1b_c02053{bottom:613.005000px;}
.y1a_c02053{bottom:632.085000px;}
.y19_c02053{bottom:650.985000px;}
.y18_c02053{bottom:670.065000px;}
.y17_c02053{bottom:688.965000px;}
.y16_c02053{bottom:707.865000px;}
.y15_c02053{bottom:726.945000px;}
.y14_c02053{bottom:745.845000px;}
.y13_c02053{bottom:764.925000px;}
.y12_c02053{bottom:783.825000px;}
.y11_c02053{bottom:802.770000px;}
.y10_c02053{bottom:821.850000px;}
.yf_c02053{bottom:840.750000px;}
.ye_c02053{bottom:859.830000px;}
.yd_c02053{bottom:878.730000px;}
.yc_c02053{bottom:897.630000px;}
.yb_c02053{bottom:916.710000px;}
.ya_c02053{bottom:935.610000px;}
.y9_c02053{bottom:954.690000px;}
.y8_c02053{bottom:973.590000px;}
.y7_c02053{bottom:1003.290000px;}
.y6_c02053{bottom:1034.250000px;}
.y5_c02053{bottom:1065.420000px;}
.y1_c02053{bottom:1121.400000px;}
.h3_c02053{height:22.500000px;}
.h2_c02053{height:48.871406px;}
.h1_c02053{height:58.651172px;}
.h6_c02053{height:65.010937px;}
.h5_c02053{height:68.084282px;}
.h4_c02053{height:70.664062px;}
.h0_c02053{height:1188.000000px;}
.w1_c02053{width:66.636000px;}
.w0_c02053{width:918.000000px;}
.x0_c02053{left:0.000000px;}
.x3_c02053{left:16.560000px;}
.x1_c02053{left:127.656000px;}
.x4_c02053{left:180.750000px;}
.x5_c02053{left:191.550000px;}
.x6_c02053{left:218.550000px;}
.x2_c02053{left:820.950000px;}
@media print{
.v0_c02053{vertical-align:0.000000pt;}
.ls1_c02053{letter-spacing:0.000000pt;}
.ls0_c02053{letter-spacing:35.471360pt;}
.ws0_c02053{word-spacing:0.000000pt;}
._4_c02053{margin-left:-1.397333pt;}
._2_c02053{width:1.152000pt;}
._5_c02053{width:2.473137pt;}
._6_c02053{width:3.767849pt;}
._9_c02053{width:4.871665pt;}
._a_c02053{width:6.454863pt;}
._7_c02053{width:7.360000pt;}
._8_c02053{width:8.361078pt;}
._f_c02053{width:9.361684pt;}
._c_c02053{width:15.956303pt;}
._b_c02053{width:17.236289pt;}
._d_c02053{width:18.252388pt;}
._10_c02053{width:19.666627pt;}
._e_c02053{width:23.369696pt;}
._1_c02053{width:24.896000pt;}
._3_c02053{width:26.432000pt;}
._11_c02053{width:28.175654pt;}
._0_c02053{width:1334.165333pt;}
.fs0_c02053{font-size:53.120000pt;}
.fs1_c02053{font-size:58.880000pt;}
.fs2_c02053{font-size:64.000000pt;}
.y0_c02053{bottom:0.000000pt;}
.y4_c02053{bottom:4.160000pt;}
.y3_c02053{bottom:37.152000pt;}
.y2_c02053{bottom:67.072000pt;}
.y33_c02053{bottom:140.186667pt;}
.y32_c02053{bottom:156.986667pt;}
.y31_c02053{bottom:173.786667pt;}
.y30_c02053{bottom:190.746667pt;}
.y2f_c02053{bottom:207.546667pt;}
.y2e_c02053{bottom:224.506667pt;}
.y2d_c02053{bottom:241.346667pt;}
.y2c_c02053{bottom:258.146667pt;}
.y2b_c02053{bottom:275.106667pt;}
.y2a_c02053{bottom:291.906667pt;}
.y29_c02053{bottom:308.866667pt;}
.y28_c02053{bottom:325.666667pt;}
.y27_c02053{bottom:342.466667pt;}
.y26_c02053{bottom:359.426667pt;}
.y25_c02053{bottom:376.226667pt;}
.y24_c02053{bottom:393.186667pt;}
.y23_c02053{bottom:409.986667pt;}
.y22_c02053{bottom:426.946667pt;}
.y21_c02053{bottom:443.746667pt;}
.y20_c02053{bottom:460.546667pt;}
.y1f_c02053{bottom:477.533333pt;}
.y1e_c02053{bottom:494.333333pt;}
.y1d_c02053{bottom:511.293333pt;}
.y1c_c02053{bottom:528.093333pt;}
.y1b_c02053{bottom:544.893333pt;}
.y1a_c02053{bottom:561.853333pt;}
.y19_c02053{bottom:578.653333pt;}
.y18_c02053{bottom:595.613333pt;}
.y17_c02053{bottom:612.413333pt;}
.y16_c02053{bottom:629.213333pt;}
.y15_c02053{bottom:646.173333pt;}
.y14_c02053{bottom:662.973333pt;}
.y13_c02053{bottom:679.933333pt;}
.y12_c02053{bottom:696.733333pt;}
.y11_c02053{bottom:713.573333pt;}
.y10_c02053{bottom:730.533333pt;}
.yf_c02053{bottom:747.333333pt;}
.ye_c02053{bottom:764.293333pt;}
.yd_c02053{bottom:781.093333pt;}
.yc_c02053{bottom:797.893333pt;}
.yb_c02053{bottom:814.853333pt;}
.ya_c02053{bottom:831.653333pt;}
.y9_c02053{bottom:848.613333pt;}
.y8_c02053{bottom:865.413333pt;}
.y7_c02053{bottom:891.813333pt;}
.y6_c02053{bottom:919.333333pt;}
.y5_c02053{bottom:947.040000pt;}
.y1_c02053{bottom:996.800000pt;}
.h3_c02053{height:20.000000pt;}
.h2_c02053{height:43.441250pt;}
.h1_c02053{height:52.134375pt;}
.h6_c02053{height:57.787500pt;}
.h5_c02053{height:60.519362pt;}
.h4_c02053{height:62.812500pt;}
.h0_c02053{height:1056.000000pt;}
.w1_c02053{width:59.232000pt;}
.w0_c02053{width:816.000000pt;}
.x0_c02053{left:0.000000pt;}
.x3_c02053{left:14.720000pt;}
.x1_c02053{left:113.472000pt;}
.x4_c02053{left:160.666667pt;}
.x5_c02053{left:170.266667pt;}
.x6_c02053{left:194.266667pt;}
.x2_c02053{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02054 {
    display:none;
  }
  .loading-indicator_c02054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02054 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02054 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02054" -> "#page-container .classname_c02054")
 */
.pf_c02054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02054 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02054 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02054 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02054 {overflow:visible;}
  }
}
.c_c02054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02054 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02054:after { /* webkit #35443 */
  content: '';
}
.t_c02054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02054 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02054 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02054 { /* info for Javascript */
  display:none;
}
.l_c02054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02054:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02054 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02054.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02054;src:url('chunks/assets/font_1a9e1e1a8f9885bb642c4bc4.woff2')format("woff");}.ff1_c02054{font-family:ff1_c02054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02054;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02054{font-family:ff2_c02054;line-height:0.863770;font-style:normal;font-weight: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_c02054;src:url('chunks/assets/font_0d78be506873699aaabc0323.woff2')format("woff");}.ff3_c02054{font-family:ff3_c02054;line-height:1.402354;font-style:normal;font-weight: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_c02054;src:url('chunks/assets/font_0fa2654aa72c979fecff461c.woff2')format("woff");}.ff4_c02054{font-family:ff4_c02054;line-height:1.311035;font-style:normal;font-weight: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_c02054;src:url('chunks/assets/font_274bc480fef84594bb76ef80.woff2')format("woff");}.ff5_c02054{font-family:ff5_c02054;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02054{vertical-align:0.000000px;}
.ls2_c02054{letter-spacing:-0.720000px;}
.ls4_c02054{letter-spacing:-0.305400px;}
.ls1_c02054{letter-spacing:0.000000px;}
.ls3_c02054{letter-spacing:0.109200px;}
.ls0_c02054{letter-spacing:6.785280px;}
.sc__c02054{text-shadow:none;}
.sc0_c02054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02054{-webkit-text-stroke:0px transparent;}
.sc0_c02054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02054{word-spacing:-16.669200px;}
.ws1_c02054{word-spacing:-16.254600px;}
.ws2_c02054{word-spacing:0.000000px;}
._1_c02054{margin-left:-1.192188px;}
._2_c02054{width:1.126212px;}
._6_c02054{width:2.185854px;}
._5_c02054{width:3.907829px;}
._c_c02054{width:9.015595px;}
._7_c02054{width:10.134588px;}
._f_c02054{width:11.187671px;}
._d_c02054{width:13.248000px;}
._e_c02054{width:14.521265px;}
._9_c02054{width:17.619972px;}
._8_c02054{width:18.745920px;}
._10_c02054{width:19.937975px;}
._11_c02054{width:20.998279px;}
._12_c02054{width:22.455691px;}
._4_c02054{width:25.171796px;}
._3_c02054{width:26.230775px;}
._13_c02054{width:29.079691px;}
._b_c02054{width:40.737666px;}
._a_c02054{width:41.929854px;}
._0_c02054{width:1500.936000px;}
.fc1_c02054{color:rgb(192,80,77);}
.fc0_c02054{color:rgb(0,0,0);}
.fs0_c02054{font-size:59.760000px;}
.fs1_c02054{font-size:66.240000px;}
.fs2_c02054{font-size:72.000000px;}
.y0_c02054{bottom:0.000000px;}
.y4_c02054{bottom:4.680000px;}
.y3_c02054{bottom:41.796000px;}
.y2_c02054{bottom:75.456000px;}
.y36_c02054{bottom:135.576000px;}
.y35_c02054{bottom:155.910000px;}
.y34_c02054{bottom:174.810000px;}
.y33_c02054{bottom:193.890000px;}
.y32_c02054{bottom:212.430000px;}
.y31_c02054{bottom:231.510000px;}
.y30_c02054{bottom:250.410000px;}
.y2f_c02054{bottom:269.310000px;}
.y2e_c02054{bottom:288.435000px;}
.y2d_c02054{bottom:307.335000px;}
.y2c_c02054{bottom:326.415000px;}
.y2b_c02054{bottom:345.315000px;}
.y2a_c02054{bottom:364.215000px;}
.y29_c02054{bottom:383.295000px;}
.y28_c02054{bottom:402.555000px;}
.y27_c02054{bottom:421.635000px;}
.y26_c02054{bottom:440.535000px;}
.y25_c02054{bottom:459.615000px;}
.y24_c02054{bottom:478.515000px;}
.y23_c02054{bottom:497.415000px;}
.y22_c02054{bottom:516.495000px;}
.y21_c02054{bottom:535.425000px;}
.y20_c02054{bottom:554.145000px;}
.y1f_c02054{bottom:573.045000px;}
.y1e_c02054{bottom:591.945000px;}
.y1d_c02054{bottom:611.025000px;}
.y1c_c02054{bottom:629.925000px;}
.y1b_c02054{bottom:649.005000px;}
.y1a_c02054{bottom:667.905000px;}
.y19_c02054{bottom:686.805000px;}
.y18_c02054{bottom:705.885000px;}
.y17_c02054{bottom:724.785000px;}
.y16_c02054{bottom:743.865000px;}
.y15_c02054{bottom:762.765000px;}
.y14_c02054{bottom:781.665000px;}
.y13_c02054{bottom:800.790000px;}
.y12_c02054{bottom:819.690000px;}
.y11_c02054{bottom:838.770000px;}
.y10_c02054{bottom:857.670000px;}
.yf_c02054{bottom:877.110000px;}
.ye_c02054{bottom:896.010000px;}
.yd_c02054{bottom:914.910000px;}
.yc_c02054{bottom:933.990000px;}
.yb_c02054{bottom:952.890000px;}
.ya_c02054{bottom:971.970000px;}
.y9_c02054{bottom:990.870000px;}
.y8_c02054{bottom:1009.770000px;}
.y7_c02054{bottom:1028.850000px;}
.y6_c02054{bottom:1047.750000px;}
.y5_c02054{bottom:1066.860000px;}
.y1_c02054{bottom:1121.400000px;}
.h3_c02054{height:22.500000px;}
.h2_c02054{height:48.871406px;}
.h1_c02054{height:58.651172px;}
.h5_c02054{height:65.010937px;}
.h7_c02054{height:66.757500px;}
.h4_c02054{height:68.084282px;}
.h6_c02054{height:68.956875px;}
.h8_c02054{height:70.664062px;}
.h0_c02054{height:1188.000000px;}
.w1_c02054{width:66.636000px;}
.w0_c02054{width:918.000000px;}
.x0_c02054{left:0.000000px;}
.x3_c02054{left:16.560000px;}
.x1_c02054{left:127.656000px;}
.x4_c02054{left:191.550000px;}
.x5_c02054{left:218.550000px;}
.x2_c02054{left:820.950000px;}
@media print{
.v0_c02054{vertical-align:0.000000pt;}
.ls2_c02054{letter-spacing:-0.640000pt;}
.ls4_c02054{letter-spacing:-0.271467pt;}
.ls1_c02054{letter-spacing:0.000000pt;}
.ls3_c02054{letter-spacing:0.097067pt;}
.ls0_c02054{letter-spacing:6.031360pt;}
.ws0_c02054{word-spacing:-14.817067pt;}
.ws1_c02054{word-spacing:-14.448533pt;}
.ws2_c02054{word-spacing:0.000000pt;}
._1_c02054{margin-left:-1.059722pt;}
._2_c02054{width:1.001078pt;}
._6_c02054{width:1.942981pt;}
._5_c02054{width:3.473626pt;}
._c_c02054{width:8.013862pt;}
._7_c02054{width:9.008522pt;}
._f_c02054{width:9.944596pt;}
._d_c02054{width:11.776000pt;}
._e_c02054{width:12.907791pt;}
._9_c02054{width:15.662198pt;}
._8_c02054{width:16.663040pt;}
._10_c02054{width:17.722644pt;}
._11_c02054{width:18.665137pt;}
._12_c02054{width:19.960614pt;}
._4_c02054{width:22.374930pt;}
._3_c02054{width:23.316244pt;}
._13_c02054{width:25.848614pt;}
._b_c02054{width:36.211259pt;}
._a_c02054{width:37.270981pt;}
._0_c02054{width:1334.165333pt;}
.fs0_c02054{font-size:53.120000pt;}
.fs1_c02054{font-size:58.880000pt;}
.fs2_c02054{font-size:64.000000pt;}
.y0_c02054{bottom:0.000000pt;}
.y4_c02054{bottom:4.160000pt;}
.y3_c02054{bottom:37.152000pt;}
.y2_c02054{bottom:67.072000pt;}
.y36_c02054{bottom:120.512000pt;}
.y35_c02054{bottom:138.586667pt;}
.y34_c02054{bottom:155.386667pt;}
.y33_c02054{bottom:172.346667pt;}
.y32_c02054{bottom:188.826667pt;}
.y31_c02054{bottom:205.786667pt;}
.y30_c02054{bottom:222.586667pt;}
.y2f_c02054{bottom:239.386667pt;}
.y2e_c02054{bottom:256.386667pt;}
.y2d_c02054{bottom:273.186667pt;}
.y2c_c02054{bottom:290.146667pt;}
.y2b_c02054{bottom:306.946667pt;}
.y2a_c02054{bottom:323.746667pt;}
.y29_c02054{bottom:340.706667pt;}
.y28_c02054{bottom:357.826667pt;}
.y27_c02054{bottom:374.786667pt;}
.y26_c02054{bottom:391.586667pt;}
.y25_c02054{bottom:408.546667pt;}
.y24_c02054{bottom:425.346667pt;}
.y23_c02054{bottom:442.146667pt;}
.y22_c02054{bottom:459.106667pt;}
.y21_c02054{bottom:475.933333pt;}
.y20_c02054{bottom:492.573333pt;}
.y1f_c02054{bottom:509.373333pt;}
.y1e_c02054{bottom:526.173333pt;}
.y1d_c02054{bottom:543.133333pt;}
.y1c_c02054{bottom:559.933333pt;}
.y1b_c02054{bottom:576.893333pt;}
.y1a_c02054{bottom:593.693333pt;}
.y19_c02054{bottom:610.493333pt;}
.y18_c02054{bottom:627.453333pt;}
.y17_c02054{bottom:644.253333pt;}
.y16_c02054{bottom:661.213333pt;}
.y15_c02054{bottom:678.013333pt;}
.y14_c02054{bottom:694.813333pt;}
.y13_c02054{bottom:711.813333pt;}
.y12_c02054{bottom:728.613333pt;}
.y11_c02054{bottom:745.573333pt;}
.y10_c02054{bottom:762.373333pt;}
.yf_c02054{bottom:779.653333pt;}
.ye_c02054{bottom:796.453333pt;}
.yd_c02054{bottom:813.253333pt;}
.yc_c02054{bottom:830.213333pt;}
.yb_c02054{bottom:847.013333pt;}
.ya_c02054{bottom:863.973333pt;}
.y9_c02054{bottom:880.773333pt;}
.y8_c02054{bottom:897.573333pt;}
.y7_c02054{bottom:914.533333pt;}
.y6_c02054{bottom:931.333333pt;}
.y5_c02054{bottom:948.320000pt;}
.y1_c02054{bottom:996.800000pt;}
.h3_c02054{height:20.000000pt;}
.h2_c02054{height:43.441250pt;}
.h1_c02054{height:52.134375pt;}
.h5_c02054{height:57.787500pt;}
.h7_c02054{height:59.340000pt;}
.h4_c02054{height:60.519362pt;}
.h6_c02054{height:61.295000pt;}
.h8_c02054{height:62.812500pt;}
.h0_c02054{height:1056.000000pt;}
.w1_c02054{width:59.232000pt;}
.w0_c02054{width:816.000000pt;}
.x0_c02054{left:0.000000pt;}
.x3_c02054{left:14.720000pt;}
.x1_c02054{left:113.472000pt;}
.x4_c02054{left:170.266667pt;}
.x5_c02054{left:194.266667pt;}
.x2_c02054{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02055 {
    display:none;
  }
  .loading-indicator_c02055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02055 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02055 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02055" -> "#page-container .classname_c02055")
 */
.pf_c02055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02055 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02055 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02055 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02055 {overflow:visible;}
  }
}
.c_c02055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02055 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02055:after { /* webkit #35443 */
  content: '';
}
.t_c02055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02055 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02055 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02055 { /* info for Javascript */
  display:none;
}
.l_c02055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02055:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02055 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02055.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02055;src:url('chunks/assets/font_24d82f68bcc2c64765489c88.woff2')format("woff");}.ff1_c02055{font-family:ff1_c02055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02055;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02055{font-family:ff2_c02055;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02055{vertical-align:0.000000px;}
.ls0_c02055{letter-spacing:0.000000px;}
.sc__c02055{text-shadow:none;}
.sc0_c02055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02055{-webkit-text-stroke:0px transparent;}
.sc0_c02055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02055{word-spacing:0.000000px;}
._5_c02055{margin-left:-1.440000px;}
._2_c02055{width:1.020000px;}
._1_c02055{width:2.664000px;}
._3_c02055{width:5.400000px;}
._4_c02055{width:6.984000px;}
._8_c02055{width:8.784000px;}
._6_c02055{width:9.792000px;}
._7_c02055{width:10.836000px;}
._a_c02055{width:22.476000px;}
._9_c02055{width:23.532000px;}
._0_c02055{width:1500.936000px;}
.fc1_c02055{color:rgb(192,80,77);}
.fc0_c02055{color:rgb(0,0,0);}
.fs0_c02055{font-size:59.760000px;}
.fs1_c02055{font-size:66.240000px;}
.fs2_c02055{font-size:72.000000px;}
.y0_c02055{bottom:0.000000px;}
.y4_c02055{bottom:4.680000px;}
.y3_c02055{bottom:41.796000px;}
.y2_c02055{bottom:75.456000px;}
.ya_c02055{bottom:910.050000px;}
.y9_c02055{bottom:941.190000px;}
.y8_c02055{bottom:972.150000px;}
.y7_c02055{bottom:1003.290000px;}
.y6_c02055{bottom:1034.250000px;}
.y5_c02055{bottom:1065.420000px;}
.y1_c02055{bottom:1121.400000px;}
.h3_c02055{height:22.500000px;}
.h2_c02055{height:48.871406px;}
.h1_c02055{height:58.651172px;}
.h4_c02055{height:70.664062px;}
.h0_c02055{height:1188.000000px;}
.w1_c02055{width:66.636000px;}
.w0_c02055{width:918.000000px;}
.x0_c02055{left:0.000000px;}
.x3_c02055{left:16.560000px;}
.x1_c02055{left:127.656000px;}
.x4_c02055{left:180.750000px;}
.x2_c02055{left:820.950000px;}
@media print{
.v0_c02055{vertical-align:0.000000pt;}
.ls0_c02055{letter-spacing:0.000000pt;}
.ws0_c02055{word-spacing:0.000000pt;}
._5_c02055{margin-left:-1.280000pt;}
._2_c02055{width:0.906667pt;}
._1_c02055{width:2.368000pt;}
._3_c02055{width:4.800000pt;}
._4_c02055{width:6.208000pt;}
._8_c02055{width:7.808000pt;}
._6_c02055{width:8.704000pt;}
._7_c02055{width:9.632000pt;}
._a_c02055{width:19.978667pt;}
._9_c02055{width:20.917333pt;}
._0_c02055{width:1334.165333pt;}
.fs0_c02055{font-size:53.120000pt;}
.fs1_c02055{font-size:58.880000pt;}
.fs2_c02055{font-size:64.000000pt;}
.y0_c02055{bottom:0.000000pt;}
.y4_c02055{bottom:4.160000pt;}
.y3_c02055{bottom:37.152000pt;}
.y2_c02055{bottom:67.072000pt;}
.ya_c02055{bottom:808.933333pt;}
.y9_c02055{bottom:836.613333pt;}
.y8_c02055{bottom:864.133333pt;}
.y7_c02055{bottom:891.813333pt;}
.y6_c02055{bottom:919.333333pt;}
.y5_c02055{bottom:947.040000pt;}
.y1_c02055{bottom:996.800000pt;}
.h3_c02055{height:20.000000pt;}
.h2_c02055{height:43.441250pt;}
.h1_c02055{height:52.134375pt;}
.h4_c02055{height:62.812500pt;}
.h0_c02055{height:1056.000000pt;}
.w1_c02055{width:59.232000pt;}
.w0_c02055{width:816.000000pt;}
.x0_c02055{left:0.000000pt;}
.x3_c02055{left:14.720000pt;}
.x1_c02055{left:113.472000pt;}
.x4_c02055{left:160.666667pt;}
.x2_c02055{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02056 {
    display:none;
  }
  .loading-indicator_c02056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02056 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02056 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02056" -> "#page-container .classname_c02056")
 */
.pf_c02056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02056 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02056 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02056 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02056 {overflow:visible;}
  }
}
.c_c02056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02056 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02056:after { /* webkit #35443 */
  content: '';
}
.t_c02056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02056 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02056 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02056 { /* info for Javascript */
  display:none;
}
.l_c02056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02056:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02056 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02056.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02056;src:url('chunks/assets/font_e5d9f87b907cf0f112bd15f8.woff2')format("woff");}.ff1_c02056{font-family:ff1_c02056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02056;src:url('chunks/assets/font_12a0079209aaa9bfa61662db.woff2')format("woff");}.ff2_c02056{font-family:ff2_c02056;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02056{vertical-align:0.000000px;}
.ls0_c02056{letter-spacing:0.000000px;}
.sc__c02056{text-shadow:none;}
.sc0_c02056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02056{-webkit-text-stroke:0px transparent;}
.sc0_c02056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02056{word-spacing:0.000000px;}
._4_c02056{margin-left:-2.321407px;}
._1_c02056{margin-left:-1.152000px;}
._2_c02056{width:1.728000px;}
._3_c02056{width:19.134593px;}
._0_c02056{width:1500.960000px;}
.fc1_c02056{color:rgb(192,80,77);}
.fc2_c02056{color:rgb(255,255,255);}
.fc0_c02056{color:rgb(0,0,0);}
.fs0_c02056{font-size:59.760000px;}
.fs3_c02056{font-size:63.360000px;}
.fs1_c02056{font-size:66.240000px;}
.fs2_c02056{font-size:72.000000px;}
.y0_c02056{bottom:0.000000px;}
.yb_c02056{bottom:3.780000px;}
.y12_c02056{bottom:3.960000px;}
.y4_c02056{bottom:4.860000px;}
.y22_c02056{bottom:21.954000px;}
.ya_c02056{bottom:21.960000px;}
.y1e_c02056{bottom:22.005000px;}
.y11_c02056{bottom:22.140000px;}
.y21_c02056{bottom:40.134000px;}
.y9_c02056{bottom:40.140000px;}
.y1d_c02056{bottom:40.185000px;}
.y3_c02056{bottom:52.416000px;}
.y16_c02056{bottom:58.140000px;}
.y1c_c02056{bottom:58.185000px;}
.y20_c02056{bottom:58.314000px;}
.y10_c02056{bottom:58.320000px;}
.y2_c02056{bottom:75.456000px;}
.yf_c02056{bottom:76.320000px;}
.y15_c02056{bottom:76.350000px;}
.y1b_c02056{bottom:76.365000px;}
.y1a_c02056{bottom:94.365000px;}
.ye_c02056{bottom:94.545000px;}
.y19_c02056{bottom:112.545000px;}
.yd_c02056{bottom:112.725000px;}
.y18_c02056{bottom:130.725000px;}
.y1f_c02056{bottom:133.776000px;}
.y17_c02056{bottom:207.030000px;}
.y14_c02056{bottom:352.695000px;}
.y13_c02056{bottom:443.985000px;}
.yc_c02056{bottom:535.245000px;}
.y8_c02056{bottom:662.910000px;}
.y7_c02056{bottom:732.570000px;}
.y6_c02056{bottom:753.450000px;}
.y5_c02056{bottom:774.150000px;}
.y1_c02056{bottom:851.400000px;}
.h3_c02056{height:22.680000px;}
.h2_c02056{height:48.871406px;}
.h5_c02056{height:54.360000px;}
.h1_c02056{height:58.651172px;}
.h6_c02056{height:62.184375px;}
.h4_c02056{height:70.664062px;}
.hb_c02056{height:72.540000px;}
.h8_c02056{height:90.540000px;}
.h9_c02056{height:90.576000px;}
.h7_c02056{height:126.936000px;}
.ha_c02056{height:144.936000px;}
.h0_c02056{height:918.000000px;}
.w1_c02056{width:66.780000px;}
.w5_c02056{width:126.756000px;}
.w3_c02056{width:126.900000px;}
.w4_c02056{width:126.936000px;}
.w6_c02056{width:158.760000px;}
.w7_c02056{width:315.615000px;}
.w2_c02056{width:316.155000px;}
.w0_c02056{width:1188.000000px;}
.x0_c02056{left:0.000000px;}
.x8_c02056{left:8.100000px;}
.x3_c02056{left:16.560000px;}
.xb_c02056{left:34.740000px;}
.xd_c02056{left:36.360000px;}
.xf_c02056{left:40.680000px;}
.x11_c02056{left:43.380000px;}
.x14_c02056{left:53.460000px;}
.xa_c02056{left:63.360000px;}
.x13_c02056{left:79.380000px;}
.x7_c02056{left:98.100000px;}
.x1_c02056{left:106.200000px;}
.x5_c02056{left:331.770000px;}
.x9_c02056{left:414.975000px;}
.xc_c02056{left:542.595000px;}
.x4_c02056{left:550.695000px;}
.x6_c02056{left:593.895000px;}
.xe_c02056{left:670.245000px;}
.x10_c02056{left:797.865000px;}
.x12_c02056{left:925.350000px;}
.x2_c02056{left:1101.570000px;}
@media print{
.v0_c02056{vertical-align:0.000000pt;}
.ls0_c02056{letter-spacing:0.000000pt;}
.ws0_c02056{word-spacing:0.000000pt;}
._4_c02056{margin-left:-2.063473pt;}
._1_c02056{margin-left:-1.024000pt;}
._2_c02056{width:1.536000pt;}
._3_c02056{width:17.008527pt;}
._0_c02056{width:1334.186667pt;}
.fs0_c02056{font-size:53.120000pt;}
.fs3_c02056{font-size:56.320000pt;}
.fs1_c02056{font-size:58.880000pt;}
.fs2_c02056{font-size:64.000000pt;}
.y0_c02056{bottom:0.000000pt;}
.yb_c02056{bottom:3.360000pt;}
.y12_c02056{bottom:3.520000pt;}
.y4_c02056{bottom:4.320000pt;}
.y22_c02056{bottom:19.514667pt;}
.ya_c02056{bottom:19.520000pt;}
.y1e_c02056{bottom:19.560000pt;}
.y11_c02056{bottom:19.680000pt;}
.y21_c02056{bottom:35.674667pt;}
.y9_c02056{bottom:35.680000pt;}
.y1d_c02056{bottom:35.720000pt;}
.y3_c02056{bottom:46.592000pt;}
.y16_c02056{bottom:51.680000pt;}
.y1c_c02056{bottom:51.720000pt;}
.y20_c02056{bottom:51.834667pt;}
.y10_c02056{bottom:51.840000pt;}
.y2_c02056{bottom:67.072000pt;}
.yf_c02056{bottom:67.840000pt;}
.y15_c02056{bottom:67.866667pt;}
.y1b_c02056{bottom:67.880000pt;}
.y1a_c02056{bottom:83.880000pt;}
.ye_c02056{bottom:84.040000pt;}
.y19_c02056{bottom:100.040000pt;}
.yd_c02056{bottom:100.200000pt;}
.y18_c02056{bottom:116.200000pt;}
.y1f_c02056{bottom:118.912000pt;}
.y17_c02056{bottom:184.026667pt;}
.y14_c02056{bottom:313.506667pt;}
.y13_c02056{bottom:394.653333pt;}
.yc_c02056{bottom:475.773333pt;}
.y8_c02056{bottom:589.253333pt;}
.y7_c02056{bottom:651.173333pt;}
.y6_c02056{bottom:669.733333pt;}
.y5_c02056{bottom:688.133333pt;}
.y1_c02056{bottom:756.800000pt;}
.h3_c02056{height:20.160000pt;}
.h2_c02056{height:43.441250pt;}
.h5_c02056{height:48.320000pt;}
.h1_c02056{height:52.134375pt;}
.h6_c02056{height:55.275000pt;}
.h4_c02056{height:62.812500pt;}
.hb_c02056{height:64.480000pt;}
.h8_c02056{height:80.480000pt;}
.h9_c02056{height:80.512000pt;}
.h7_c02056{height:112.832000pt;}
.ha_c02056{height:128.832000pt;}
.h0_c02056{height:816.000000pt;}
.w1_c02056{width:59.360000pt;}
.w5_c02056{width:112.672000pt;}
.w3_c02056{width:112.800000pt;}
.w4_c02056{width:112.832000pt;}
.w6_c02056{width:141.120000pt;}
.w7_c02056{width:280.546667pt;}
.w2_c02056{width:281.026667pt;}
.w0_c02056{width:1056.000000pt;}
.x0_c02056{left:0.000000pt;}
.x8_c02056{left:7.200000pt;}
.x3_c02056{left:14.720000pt;}
.xb_c02056{left:30.880000pt;}
.xd_c02056{left:32.320000pt;}
.xf_c02056{left:36.160000pt;}
.x11_c02056{left:38.560000pt;}
.x14_c02056{left:47.520000pt;}
.xa_c02056{left:56.320000pt;}
.x13_c02056{left:70.560000pt;}
.x7_c02056{left:87.200000pt;}
.x1_c02056{left:94.400000pt;}
.x5_c02056{left:294.906667pt;}
.x9_c02056{left:368.866667pt;}
.xc_c02056{left:482.306667pt;}
.x4_c02056{left:489.506667pt;}
.x6_c02056{left:527.906667pt;}
.xe_c02056{left:595.773333pt;}
.x10_c02056{left:709.213333pt;}
.x12_c02056{left:822.533333pt;}
.x2_c02056{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02057 {
    display:none;
  }
  .loading-indicator_c02057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02057" -> "#page-container .classname_c02057")
 */
.pf_c02057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02057 {overflow:visible;}
  }
}
.c_c02057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02057:after { /* webkit #35443 */
  content: '';
}
.t_c02057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02057 { /* info for Javascript */
  display:none;
}
.l_c02057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02057:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02057 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02057.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02057;src:url('chunks/assets/font_07e91427c89ce226d9dede3c.woff2')format("woff");}.ff1_c02057{font-family:ff1_c02057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02057;src:url('chunks/assets/font_ccbf79486361ad111fb99109.woff2')format("woff");}.ff2_c02057{font-family:ff2_c02057;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02057{vertical-align:0.000000px;}
.ls0_c02057{letter-spacing:0.000000px;}
.sc__c02057{text-shadow:none;}
.sc0_c02057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02057{-webkit-text-stroke:0px transparent;}
.sc0_c02057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02057{word-spacing:0.000000px;}
._1_c02057{margin-left:-1.900800px;}
._2_c02057{width:1.140607px;}
._3_c02057{width:13.608000px;}
._4_c02057{width:14.843393px;}
._0_c02057{width:1500.960000px;}
.fc1_c02057{color:rgb(192,80,77);}
.fc0_c02057{color:rgb(0,0,0);}
.fs0_c02057{font-size:59.760000px;}
.fs2_c02057{font-size:63.360000px;}
.fs1_c02057{font-size:66.240000px;}
.fs3_c02057{font-size:72.000000px;}
.y0_c02057{bottom:0.000000px;}
.y7_c02057{bottom:3.780000px;}
.y17_c02057{bottom:3.960000px;}
.y4_c02057{bottom:4.860000px;}
.y6_c02057{bottom:21.960000px;}
.yf_c02057{bottom:22.005000px;}
.y16_c02057{bottom:22.140000px;}
.y15_c02057{bottom:40.140000px;}
.y1b_c02057{bottom:40.170000px;}
.ye_c02057{bottom:40.185000px;}
.y3_c02057{bottom:52.416000px;}
.y1f_c02057{bottom:58.140000px;}
.y1a_c02057{bottom:58.170000px;}
.yd_c02057{bottom:58.185000px;}
.y14_c02057{bottom:58.320000px;}
.y2_c02057{bottom:75.456000px;}
.y13_c02057{bottom:76.320000px;}
.y19_c02057{bottom:76.350000px;}
.yc_c02057{bottom:76.365000px;}
.yb_c02057{bottom:94.365000px;}
.y12_c02057{bottom:94.500000px;}
.y1e_c02057{bottom:112.500000px;}
.ya_c02057{bottom:112.545000px;}
.y11_c02057{bottom:112.680000px;}
.y1d_c02057{bottom:130.680000px;}
.y9_c02057{bottom:130.725000px;}
.y21_c02057{bottom:205.590000px;}
.y20_c02057{bottom:226.290000px;}
.y1c_c02057{bottom:243.255000px;}
.y18_c02057{bottom:388.875000px;}
.y10_c02057{bottom:480.165000px;}
.y8_c02057{bottom:607.785000px;}
.y5_c02057{bottom:753.450000px;}
.y1_c02057{bottom:851.400000px;}
.h3_c02057{height:22.680000px;}
.h4_c02057{height:36.180000px;}
.h2_c02057{height:48.871406px;}
.h1_c02057{height:58.651172px;}
.h5_c02057{height:62.184375px;}
.ha_c02057{height:70.664062px;}
.h8_c02057{height:90.576000px;}
.h7_c02057{height:126.900000px;}
.h9_c02057{height:144.900000px;}
.h6_c02057{height:144.936000px;}
.h0_c02057{height:918.000000px;}
.w1_c02057{width:66.780000px;}
.w4_c02057{width:126.756000px;}
.w3_c02057{width:126.900000px;}
.w6_c02057{width:126.936000px;}
.w5_c02057{width:158.760000px;}
.w2_c02057{width:315.615000px;}
.w0_c02057{width:1188.000000px;}
.x0_c02057{left:0.000000px;}
.x5_c02057{left:7.560000px;}
.x3_c02057{left:16.560000px;}
.x4_c02057{left:98.640000px;}
.x1_c02057{left:106.200000px;}
.x9_c02057{left:414.975000px;}
.xa_c02057{left:542.595000px;}
.x6_c02057{left:670.245000px;}
.x7_c02057{left:797.865000px;}
.x8_c02057{left:925.350000px;}
.x2_c02057{left:1101.570000px;}
@media print{
.v0_c02057{vertical-align:0.000000pt;}
.ls0_c02057{letter-spacing:0.000000pt;}
.ws0_c02057{word-spacing:0.000000pt;}
._1_c02057{margin-left:-1.689600pt;}
._2_c02057{width:1.013873pt;}
._3_c02057{width:12.096000pt;}
._4_c02057{width:13.194127pt;}
._0_c02057{width:1334.186667pt;}
.fs0_c02057{font-size:53.120000pt;}
.fs2_c02057{font-size:56.320000pt;}
.fs1_c02057{font-size:58.880000pt;}
.fs3_c02057{font-size:64.000000pt;}
.y0_c02057{bottom:0.000000pt;}
.y7_c02057{bottom:3.360000pt;}
.y17_c02057{bottom:3.520000pt;}
.y4_c02057{bottom:4.320000pt;}
.y6_c02057{bottom:19.520000pt;}
.yf_c02057{bottom:19.560000pt;}
.y16_c02057{bottom:19.680000pt;}
.y15_c02057{bottom:35.680000pt;}
.y1b_c02057{bottom:35.706667pt;}
.ye_c02057{bottom:35.720000pt;}
.y3_c02057{bottom:46.592000pt;}
.y1f_c02057{bottom:51.680000pt;}
.y1a_c02057{bottom:51.706667pt;}
.yd_c02057{bottom:51.720000pt;}
.y14_c02057{bottom:51.840000pt;}
.y2_c02057{bottom:67.072000pt;}
.y13_c02057{bottom:67.840000pt;}
.y19_c02057{bottom:67.866667pt;}
.yc_c02057{bottom:67.880000pt;}
.yb_c02057{bottom:83.880000pt;}
.y12_c02057{bottom:84.000000pt;}
.y1e_c02057{bottom:100.000000pt;}
.ya_c02057{bottom:100.040000pt;}
.y11_c02057{bottom:100.160000pt;}
.y1d_c02057{bottom:116.160000pt;}
.y9_c02057{bottom:116.200000pt;}
.y21_c02057{bottom:182.746667pt;}
.y20_c02057{bottom:201.146667pt;}
.y1c_c02057{bottom:216.226667pt;}
.y18_c02057{bottom:345.666667pt;}
.y10_c02057{bottom:426.813333pt;}
.y8_c02057{bottom:540.253333pt;}
.y5_c02057{bottom:669.733333pt;}
.y1_c02057{bottom:756.800000pt;}
.h3_c02057{height:20.160000pt;}
.h4_c02057{height:32.160000pt;}
.h2_c02057{height:43.441250pt;}
.h1_c02057{height:52.134375pt;}
.h5_c02057{height:55.275000pt;}
.ha_c02057{height:62.812500pt;}
.h8_c02057{height:80.512000pt;}
.h7_c02057{height:112.800000pt;}
.h9_c02057{height:128.800000pt;}
.h6_c02057{height:128.832000pt;}
.h0_c02057{height:816.000000pt;}
.w1_c02057{width:59.360000pt;}
.w4_c02057{width:112.672000pt;}
.w3_c02057{width:112.800000pt;}
.w6_c02057{width:112.832000pt;}
.w5_c02057{width:141.120000pt;}
.w2_c02057{width:280.546667pt;}
.w0_c02057{width:1056.000000pt;}
.x0_c02057{left:0.000000pt;}
.x5_c02057{left:6.720000pt;}
.x3_c02057{left:14.720000pt;}
.x4_c02057{left:87.680000pt;}
.x1_c02057{left:94.400000pt;}
.x9_c02057{left:368.866667pt;}
.xa_c02057{left:482.306667pt;}
.x6_c02057{left:595.773333pt;}
.x7_c02057{left:709.213333pt;}
.x8_c02057{left:822.533333pt;}
.x2_c02057{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02058 {
    display:none;
  }
  .loading-indicator_c02058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02058 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02058 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02058" -> "#page-container .classname_c02058")
 */
.pf_c02058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02058 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02058 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02058 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02058 {overflow:visible;}
  }
}
.c_c02058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02058 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02058:after { /* webkit #35443 */
  content: '';
}
.t_c02058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02058 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02058 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02058 { /* info for Javascript */
  display:none;
}
.l_c02058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02058:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02058 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02058.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02058;src:url('chunks/assets/font_2766ef1a794a4f715fc1c91e.woff2')format("woff");}.ff1_c02058{font-family:ff1_c02058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02058;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02058{font-family:ff2_c02058;line-height:0.863770;font-style:normal;font-weight: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_c02058;src:url('chunks/assets/font_1113fb40818216c2116f3917.woff2')format("woff");}.ff3_c02058{font-family:ff3_c02058;line-height:1.112305;font-style:normal;font-weight: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_c02058;src:url('chunks/assets/font_7795cabbb5926eb4bd336fc1.woff2')format("woff");}.ff4_c02058{font-family:ff4_c02058;line-height:1.402354;font-style:normal;font-weight: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_c02058;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02058{font-family:ff5_c02058;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02058{vertical-align:0.000000px;}
.ls3_c02058{letter-spacing:0.000000px;}
.ls2_c02058{letter-spacing:18.720000px;}
.ls0_c02058{letter-spacing:24.624000px;}
.ls1_c02058{letter-spacing:64.224000px;}
.sc__c02058{text-shadow:none;}
.sc0_c02058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02058{-webkit-text-stroke:0px transparent;}
.sc0_c02058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02058{word-spacing:-18.000000px;}
.ws1_c02058{word-spacing:0.000000px;}
._5_c02058{margin-left:-2.160000px;}
._2_c02058{margin-left:-1.008000px;}
._1_c02058{width:1.872000px;}
._3_c02058{width:2.952000px;}
._4_c02058{width:3.972000px;}
._8_c02058{width:5.112000px;}
._6_c02058{width:7.200000px;}
._14_c02058{width:8.352000px;}
._c_c02058{width:9.360000px;}
._f_c02058{width:10.944000px;}
._11_c02058{width:12.744000px;}
._12_c02058{width:13.752000px;}
._10_c02058{width:16.416000px;}
._7_c02058{width:19.944000px;}
._d_c02058{width:22.608000px;}
._e_c02058{width:24.408000px;}
._9_c02058{width:25.560000px;}
._a_c02058{width:27.000000px;}
._b_c02058{width:28.656000px;}
._13_c02058{width:52.416000px;}
._0_c02058{width:1500.936000px;}
.fc1_c02058{color:rgb(192,80,77);}
.fc0_c02058{color:rgb(0,0,0);}
.fs0_c02058{font-size:59.760000px;}
.fs1_c02058{font-size:66.240000px;}
.fs2_c02058{font-size:72.000000px;}
.y0_c02058{bottom:0.000000px;}
.y4_c02058{bottom:4.680000px;}
.y3_c02058{bottom:41.796000px;}
.y2_c02058{bottom:75.456000px;}
.y23_c02058{bottom:133.776000px;}
.y22_c02058{bottom:164.910000px;}
.y21_c02058{bottom:195.870000px;}
.y20_c02058{bottom:226.830000px;}
.y1f_c02058{bottom:257.970000px;}
.y1e_c02058{bottom:288.975000px;}
.y1d_c02058{bottom:320.115000px;}
.y1c_c02058{bottom:351.075000px;}
.y1b_c02058{bottom:382.215000px;}
.y1a_c02058{bottom:413.175000px;}
.y19_c02058{bottom:444.315000px;}
.y18_c02058{bottom:475.275000px;}
.y17_c02058{bottom:506.415000px;}
.y16_c02058{bottom:537.405000px;}
.y15_c02058{bottom:568.545000px;}
.y14_c02058{bottom:599.505000px;}
.y13_c02058{bottom:630.645000px;}
.y12_c02058{bottom:661.605000px;}
.y11_c02058{bottom:692.745000px;}
.y10_c02058{bottom:723.705000px;}
.yf_c02058{bottom:754.845000px;}
.ye_c02058{bottom:785.805000px;}
.yd_c02058{bottom:816.990000px;}
.yc_c02058{bottom:847.950000px;}
.yb_c02058{bottom:879.090000px;}
.ya_c02058{bottom:910.050000px;}
.y9_c02058{bottom:941.190000px;}
.y8_c02058{bottom:972.150000px;}
.y7_c02058{bottom:1003.290000px;}
.y6_c02058{bottom:1034.250000px;}
.y5_c02058{bottom:1065.420000px;}
.y1_c02058{bottom:1121.400000px;}
.h3_c02058{height:22.500000px;}
.h2_c02058{height:48.871406px;}
.h1_c02058{height:58.651172px;}
.h6_c02058{height:64.546875px;}
.h4_c02058{height:70.664062px;}
.h7_c02058{height:72.562500px;}
.h5_c02058{height:74.004654px;}
.h0_c02058{height:1188.000000px;}
.w1_c02058{width:66.636000px;}
.w0_c02058{width:918.000000px;}
.x0_c02058{left:0.000000px;}
.x3_c02058{left:16.560000px;}
.x1_c02058{left:127.656000px;}
.x5_c02058{left:154.650000px;}
.x4_c02058{left:180.750000px;}
.x6_c02058{left:191.550000px;}
.x7_c02058{left:218.550000px;}
.x2_c02058{left:820.950000px;}
@media print{
.v0_c02058{vertical-align:0.000000pt;}
.ls3_c02058{letter-spacing:0.000000pt;}
.ls2_c02058{letter-spacing:16.640000pt;}
.ls0_c02058{letter-spacing:21.888000pt;}
.ls1_c02058{letter-spacing:57.088000pt;}
.ws0_c02058{word-spacing:-16.000000pt;}
.ws1_c02058{word-spacing:0.000000pt;}
._5_c02058{margin-left:-1.920000pt;}
._2_c02058{margin-left:-0.896000pt;}
._1_c02058{width:1.664000pt;}
._3_c02058{width:2.624000pt;}
._4_c02058{width:3.530667pt;}
._8_c02058{width:4.544000pt;}
._6_c02058{width:6.400000pt;}
._14_c02058{width:7.424000pt;}
._c_c02058{width:8.320000pt;}
._f_c02058{width:9.728000pt;}
._11_c02058{width:11.328000pt;}
._12_c02058{width:12.224000pt;}
._10_c02058{width:14.592000pt;}
._7_c02058{width:17.728000pt;}
._d_c02058{width:20.096000pt;}
._e_c02058{width:21.696000pt;}
._9_c02058{width:22.720000pt;}
._a_c02058{width:24.000000pt;}
._b_c02058{width:25.472000pt;}
._13_c02058{width:46.592000pt;}
._0_c02058{width:1334.165333pt;}
.fs0_c02058{font-size:53.120000pt;}
.fs1_c02058{font-size:58.880000pt;}
.fs2_c02058{font-size:64.000000pt;}
.y0_c02058{bottom:0.000000pt;}
.y4_c02058{bottom:4.160000pt;}
.y3_c02058{bottom:37.152000pt;}
.y2_c02058{bottom:67.072000pt;}
.y23_c02058{bottom:118.912000pt;}
.y22_c02058{bottom:146.586667pt;}
.y21_c02058{bottom:174.106667pt;}
.y20_c02058{bottom:201.626667pt;}
.y1f_c02058{bottom:229.306667pt;}
.y1e_c02058{bottom:256.866667pt;}
.y1d_c02058{bottom:284.546667pt;}
.y1c_c02058{bottom:312.066667pt;}
.y1b_c02058{bottom:339.746667pt;}
.y1a_c02058{bottom:367.266667pt;}
.y19_c02058{bottom:394.946667pt;}
.y18_c02058{bottom:422.466667pt;}
.y17_c02058{bottom:450.146667pt;}
.y16_c02058{bottom:477.693333pt;}
.y15_c02058{bottom:505.373333pt;}
.y14_c02058{bottom:532.893333pt;}
.y13_c02058{bottom:560.573333pt;}
.y12_c02058{bottom:588.093333pt;}
.y11_c02058{bottom:615.773333pt;}
.y10_c02058{bottom:643.293333pt;}
.yf_c02058{bottom:670.973333pt;}
.ye_c02058{bottom:698.493333pt;}
.yd_c02058{bottom:726.213333pt;}
.yc_c02058{bottom:753.733333pt;}
.yb_c02058{bottom:781.413333pt;}
.ya_c02058{bottom:808.933333pt;}
.y9_c02058{bottom:836.613333pt;}
.y8_c02058{bottom:864.133333pt;}
.y7_c02058{bottom:891.813333pt;}
.y6_c02058{bottom:919.333333pt;}
.y5_c02058{bottom:947.040000pt;}
.y1_c02058{bottom:996.800000pt;}
.h3_c02058{height:20.000000pt;}
.h2_c02058{height:43.441250pt;}
.h1_c02058{height:52.134375pt;}
.h6_c02058{height:57.375000pt;}
.h4_c02058{height:62.812500pt;}
.h7_c02058{height:64.500000pt;}
.h5_c02058{height:65.781915pt;}
.h0_c02058{height:1056.000000pt;}
.w1_c02058{width:59.232000pt;}
.w0_c02058{width:816.000000pt;}
.x0_c02058{left:0.000000pt;}
.x3_c02058{left:14.720000pt;}
.x1_c02058{left:113.472000pt;}
.x5_c02058{left:137.466667pt;}
.x4_c02058{left:160.666667pt;}
.x6_c02058{left:170.266667pt;}
.x7_c02058{left:194.266667pt;}
.x2_c02058{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02059 {
    display:none;
  }
  .loading-indicator_c02059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02059 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02059 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02059" -> "#page-container .classname_c02059")
 */
.pf_c02059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02059 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02059 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02059 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02059 {overflow:visible;}
  }
}
.c_c02059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02059 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02059:after { /* webkit #35443 */
  content: '';
}
.t_c02059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02059 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02059 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02059 { /* info for Javascript */
  display:none;
}
.l_c02059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02059:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02059 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02059.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02059;src:url('chunks/assets/font_73a56e9c82dd368b3ba99fa0.woff2')format("woff");}.ff1_c02059{font-family:ff1_c02059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02059;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02059{font-family:ff2_c02059;line-height:0.863770;font-style:normal;font-weight: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_c02059;src:url('chunks/assets/font_cbe891931ee051b31c235c68.woff2')format("woff");}.ff3_c02059{font-family:ff3_c02059;line-height:1.402354;font-style:normal;font-weight: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_c02059;src:url('chunks/assets/font_0a6a4cc2a7f345fcc518c21f.woff2')format("woff");}.ff4_c02059{font-family:ff4_c02059;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02059{vertical-align:0.000000px;}
.ls3_c02059{letter-spacing:-0.288000px;}
.ls2_c02059{letter-spacing:0.000000px;}
.ls1_c02059{letter-spacing:24.624000px;}
.ls0_c02059{letter-spacing:64.224000px;}
.sc__c02059{text-shadow:none;}
.sc0_c02059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02059{-webkit-text-stroke:0px transparent;}
.sc0_c02059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02059{word-spacing:-18.000000px;}
.ws1_c02059{word-spacing:0.000000px;}
._17_c02059{margin-left:-2.436000px;}
._3_c02059{margin-left:-1.368000px;}
._5_c02059{width:1.020000px;}
._c_c02059{width:2.232000px;}
._8_c02059{width:4.176000px;}
._9_c02059{width:5.724000px;}
._14_c02059{width:7.044000px;}
._1_c02059{width:9.216000px;}
._2_c02059{width:10.584000px;}
._d_c02059{width:13.320000px;}
._e_c02059{width:14.448000px;}
._10_c02059{width:15.564000px;}
._f_c02059{width:16.572000px;}
._b_c02059{width:19.944000px;}
._a_c02059{width:21.744000px;}
._11_c02059{width:23.040000px;}
._13_c02059{width:28.116000px;}
._12_c02059{width:29.304000px;}
._15_c02059{width:30.960000px;}
._16_c02059{width:32.328000px;}
._6_c02059{width:36.792000px;}
._7_c02059{width:37.872000px;}
._4_c02059{width:44.568000px;}
._0_c02059{width:1500.936000px;}
.fc1_c02059{color:rgb(192,80,77);}
.fc0_c02059{color:rgb(0,0,0);}
.fs0_c02059{font-size:59.760000px;}
.fs1_c02059{font-size:66.240000px;}
.fs2_c02059{font-size:72.000000px;}
.y0_c02059{bottom:0.000000px;}
.y4_c02059{bottom:4.680000px;}
.y3_c02059{bottom:41.796000px;}
.y2_c02059{bottom:75.456000px;}
.y23_c02059{bottom:133.776000px;}
.y22_c02059{bottom:164.910000px;}
.y21_c02059{bottom:195.870000px;}
.y20_c02059{bottom:226.830000px;}
.y1f_c02059{bottom:257.970000px;}
.y1e_c02059{bottom:288.975000px;}
.y1d_c02059{bottom:320.115000px;}
.y1c_c02059{bottom:351.075000px;}
.y1b_c02059{bottom:382.215000px;}
.y1a_c02059{bottom:413.175000px;}
.y19_c02059{bottom:444.315000px;}
.y18_c02059{bottom:475.275000px;}
.y17_c02059{bottom:506.415000px;}
.y16_c02059{bottom:537.405000px;}
.y15_c02059{bottom:568.545000px;}
.y14_c02059{bottom:599.505000px;}
.y13_c02059{bottom:630.645000px;}
.y12_c02059{bottom:661.605000px;}
.y11_c02059{bottom:692.745000px;}
.y10_c02059{bottom:723.705000px;}
.yf_c02059{bottom:754.845000px;}
.ye_c02059{bottom:785.805000px;}
.yd_c02059{bottom:816.990000px;}
.yc_c02059{bottom:847.950000px;}
.yb_c02059{bottom:879.090000px;}
.ya_c02059{bottom:910.050000px;}
.y9_c02059{bottom:941.190000px;}
.y8_c02059{bottom:972.150000px;}
.y7_c02059{bottom:1003.290000px;}
.y6_c02059{bottom:1034.250000px;}
.y5_c02059{bottom:1065.420000px;}
.y1_c02059{bottom:1121.400000px;}
.h3_c02059{height:22.500000px;}
.h2_c02059{height:48.871406px;}
.h1_c02059{height:58.651172px;}
.h6_c02059{height:64.546875px;}
.h4_c02059{height:70.664062px;}
.h5_c02059{height:74.004654px;}
.h0_c02059{height:1188.000000px;}
.w1_c02059{width:66.636000px;}
.w0_c02059{width:918.000000px;}
.x0_c02059{left:0.000000px;}
.x3_c02059{left:16.560000px;}
.x1_c02059{left:127.656000px;}
.x6_c02059{left:154.650000px;}
.x7_c02059{left:181.650000px;}
.x5_c02059{left:191.550000px;}
.x4_c02059{left:218.550000px;}
.x2_c02059{left:820.950000px;}
@media print{
.v0_c02059{vertical-align:0.000000pt;}
.ls3_c02059{letter-spacing:-0.256000pt;}
.ls2_c02059{letter-spacing:0.000000pt;}
.ls1_c02059{letter-spacing:21.888000pt;}
.ls0_c02059{letter-spacing:57.088000pt;}
.ws0_c02059{word-spacing:-16.000000pt;}
.ws1_c02059{word-spacing:0.000000pt;}
._17_c02059{margin-left:-2.165333pt;}
._3_c02059{margin-left:-1.216000pt;}
._5_c02059{width:0.906667pt;}
._c_c02059{width:1.984000pt;}
._8_c02059{width:3.712000pt;}
._9_c02059{width:5.088000pt;}
._14_c02059{width:6.261333pt;}
._1_c02059{width:8.192000pt;}
._2_c02059{width:9.408000pt;}
._d_c02059{width:11.840000pt;}
._e_c02059{width:12.842667pt;}
._10_c02059{width:13.834667pt;}
._f_c02059{width:14.730667pt;}
._b_c02059{width:17.728000pt;}
._a_c02059{width:19.328000pt;}
._11_c02059{width:20.480000pt;}
._13_c02059{width:24.992000pt;}
._12_c02059{width:26.048000pt;}
._15_c02059{width:27.520000pt;}
._16_c02059{width:28.736000pt;}
._6_c02059{width:32.704000pt;}
._7_c02059{width:33.664000pt;}
._4_c02059{width:39.616000pt;}
._0_c02059{width:1334.165333pt;}
.fs0_c02059{font-size:53.120000pt;}
.fs1_c02059{font-size:58.880000pt;}
.fs2_c02059{font-size:64.000000pt;}
.y0_c02059{bottom:0.000000pt;}
.y4_c02059{bottom:4.160000pt;}
.y3_c02059{bottom:37.152000pt;}
.y2_c02059{bottom:67.072000pt;}
.y23_c02059{bottom:118.912000pt;}
.y22_c02059{bottom:146.586667pt;}
.y21_c02059{bottom:174.106667pt;}
.y20_c02059{bottom:201.626667pt;}
.y1f_c02059{bottom:229.306667pt;}
.y1e_c02059{bottom:256.866667pt;}
.y1d_c02059{bottom:284.546667pt;}
.y1c_c02059{bottom:312.066667pt;}
.y1b_c02059{bottom:339.746667pt;}
.y1a_c02059{bottom:367.266667pt;}
.y19_c02059{bottom:394.946667pt;}
.y18_c02059{bottom:422.466667pt;}
.y17_c02059{bottom:450.146667pt;}
.y16_c02059{bottom:477.693333pt;}
.y15_c02059{bottom:505.373333pt;}
.y14_c02059{bottom:532.893333pt;}
.y13_c02059{bottom:560.573333pt;}
.y12_c02059{bottom:588.093333pt;}
.y11_c02059{bottom:615.773333pt;}
.y10_c02059{bottom:643.293333pt;}
.yf_c02059{bottom:670.973333pt;}
.ye_c02059{bottom:698.493333pt;}
.yd_c02059{bottom:726.213333pt;}
.yc_c02059{bottom:753.733333pt;}
.yb_c02059{bottom:781.413333pt;}
.ya_c02059{bottom:808.933333pt;}
.y9_c02059{bottom:836.613333pt;}
.y8_c02059{bottom:864.133333pt;}
.y7_c02059{bottom:891.813333pt;}
.y6_c02059{bottom:919.333333pt;}
.y5_c02059{bottom:947.040000pt;}
.y1_c02059{bottom:996.800000pt;}
.h3_c02059{height:20.000000pt;}
.h2_c02059{height:43.441250pt;}
.h1_c02059{height:52.134375pt;}
.h6_c02059{height:57.375000pt;}
.h4_c02059{height:62.812500pt;}
.h5_c02059{height:65.781915pt;}
.h0_c02059{height:1056.000000pt;}
.w1_c02059{width:59.232000pt;}
.w0_c02059{width:816.000000pt;}
.x0_c02059{left:0.000000pt;}
.x3_c02059{left:14.720000pt;}
.x1_c02059{left:113.472000pt;}
.x6_c02059{left:137.466667pt;}
.x7_c02059{left:161.466667pt;}
.x5_c02059{left:170.266667pt;}
.x4_c02059{left:194.266667pt;}
.x2_c02059{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02060 {
    display:none;
  }
  .loading-indicator_c02060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02060 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02060 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02060" -> "#page-container .classname_c02060")
 */
.pf_c02060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02060 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02060 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02060 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02060 {overflow:visible;}
  }
}
.c_c02060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02060 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02060:after { /* webkit #35443 */
  content: '';
}
.t_c02060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02060 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02060 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02060 { /* info for Javascript */
  display:none;
}
.l_c02060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02060:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02060 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02060.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02060;src:url('chunks/assets/font_6800b22c538b6cedbb320a48.woff2')format("woff");}.ff1_c02060{font-family:ff1_c02060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02060;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02060{font-family:ff2_c02060;line-height:0.863770;font-style:normal;font-weight: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_c02060;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02060{font-family:ff3_c02060;line-height:1.311035;font-style:normal;font-weight: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_c02060;src:url('chunks/assets/font_889b70f8f080005a694701da.woff2')format("woff");}.ff4_c02060{font-family:ff4_c02060;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02060{vertical-align:0.000000px;}
.ls2_c02060{letter-spacing:0.000000px;}
.ls0_c02060{letter-spacing:24.624000px;}
.ls1_c02060{letter-spacing:64.224000px;}
.sc__c02060{text-shadow:none;}
.sc0_c02060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02060{-webkit-text-stroke:0px transparent;}
.sc0_c02060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02060{word-spacing:-18.000000px;}
.ws1_c02060{word-spacing:0.000000px;}
._9_c02060{margin-left:-2.520000px;}
._1_c02060{margin-left:-1.440000px;}
._4_c02060{width:1.224000px;}
._d_c02060{width:2.352000px;}
._e_c02060{width:3.600000px;}
._3_c02060{width:5.328000px;}
._2_c02060{width:6.408000px;}
._b_c02060{width:7.848000px;}
._a_c02060{width:8.856000px;}
._6_c02060{width:10.476000px;}
._5_c02060{width:11.664000px;}
._11_c02060{width:13.032000px;}
._7_c02060{width:15.840000px;}
._8_c02060{width:16.992000px;}
._c_c02060{width:19.296000px;}
._f_c02060{width:20.304000px;}
._10_c02060{width:21.348000px;}
._12_c02060{width:34.776000px;}
._13_c02060{width:35.928000px;}
._0_c02060{width:1500.936000px;}
.fc1_c02060{color:rgb(192,80,77);}
.fc0_c02060{color:rgb(0,0,0);}
.fs0_c02060{font-size:59.760000px;}
.fs1_c02060{font-size:66.240000px;}
.fs2_c02060{font-size:72.000000px;}
.y0_c02060{bottom:0.000000px;}
.y4_c02060{bottom:4.680000px;}
.y3_c02060{bottom:41.796000px;}
.y2_c02060{bottom:75.456000px;}
.y23_c02060{bottom:133.776000px;}
.y22_c02060{bottom:164.910000px;}
.y21_c02060{bottom:195.870000px;}
.y20_c02060{bottom:226.830000px;}
.y1f_c02060{bottom:257.970000px;}
.y1e_c02060{bottom:288.975000px;}
.y1d_c02060{bottom:320.115000px;}
.y1c_c02060{bottom:351.075000px;}
.y1b_c02060{bottom:382.215000px;}
.y1a_c02060{bottom:413.175000px;}
.y19_c02060{bottom:444.315000px;}
.y18_c02060{bottom:475.275000px;}
.y17_c02060{bottom:506.415000px;}
.y16_c02060{bottom:537.405000px;}
.y15_c02060{bottom:568.545000px;}
.y14_c02060{bottom:599.505000px;}
.y13_c02060{bottom:630.645000px;}
.y12_c02060{bottom:661.605000px;}
.y11_c02060{bottom:692.745000px;}
.y10_c02060{bottom:723.705000px;}
.yf_c02060{bottom:754.845000px;}
.ye_c02060{bottom:785.805000px;}
.yd_c02060{bottom:816.990000px;}
.yc_c02060{bottom:847.950000px;}
.yb_c02060{bottom:879.090000px;}
.ya_c02060{bottom:910.050000px;}
.y9_c02060{bottom:941.190000px;}
.y8_c02060{bottom:972.150000px;}
.y7_c02060{bottom:1003.290000px;}
.y6_c02060{bottom:1034.250000px;}
.y5_c02060{bottom:1065.420000px;}
.y1_c02060{bottom:1121.400000px;}
.h3_c02060{height:22.500000px;}
.h2_c02060{height:48.871406px;}
.h1_c02060{height:58.651172px;}
.h4_c02060{height:70.664062px;}
.h5_c02060{height:72.562500px;}
.h6_c02060{height:74.004654px;}
.h0_c02060{height:1188.000000px;}
.w1_c02060{width:66.636000px;}
.w0_c02060{width:918.000000px;}
.x0_c02060{left:0.000000px;}
.x3_c02060{left:16.560000px;}
.x1_c02060{left:127.656000px;}
.x5_c02060{left:154.650000px;}
.x4_c02060{left:181.650000px;}
.x6_c02060{left:191.550000px;}
.x7_c02060{left:218.550000px;}
.x2_c02060{left:820.950000px;}
@media print{
.v0_c02060{vertical-align:0.000000pt;}
.ls2_c02060{letter-spacing:0.000000pt;}
.ls0_c02060{letter-spacing:21.888000pt;}
.ls1_c02060{letter-spacing:57.088000pt;}
.ws0_c02060{word-spacing:-16.000000pt;}
.ws1_c02060{word-spacing:0.000000pt;}
._9_c02060{margin-left:-2.240000pt;}
._1_c02060{margin-left:-1.280000pt;}
._4_c02060{width:1.088000pt;}
._d_c02060{width:2.090667pt;}
._e_c02060{width:3.200000pt;}
._3_c02060{width:4.736000pt;}
._2_c02060{width:5.696000pt;}
._b_c02060{width:6.976000pt;}
._a_c02060{width:7.872000pt;}
._6_c02060{width:9.312000pt;}
._5_c02060{width:10.368000pt;}
._11_c02060{width:11.584000pt;}
._7_c02060{width:14.080000pt;}
._8_c02060{width:15.104000pt;}
._c_c02060{width:17.152000pt;}
._f_c02060{width:18.048000pt;}
._10_c02060{width:18.976000pt;}
._12_c02060{width:30.912000pt;}
._13_c02060{width:31.936000pt;}
._0_c02060{width:1334.165333pt;}
.fs0_c02060{font-size:53.120000pt;}
.fs1_c02060{font-size:58.880000pt;}
.fs2_c02060{font-size:64.000000pt;}
.y0_c02060{bottom:0.000000pt;}
.y4_c02060{bottom:4.160000pt;}
.y3_c02060{bottom:37.152000pt;}
.y2_c02060{bottom:67.072000pt;}
.y23_c02060{bottom:118.912000pt;}
.y22_c02060{bottom:146.586667pt;}
.y21_c02060{bottom:174.106667pt;}
.y20_c02060{bottom:201.626667pt;}
.y1f_c02060{bottom:229.306667pt;}
.y1e_c02060{bottom:256.866667pt;}
.y1d_c02060{bottom:284.546667pt;}
.y1c_c02060{bottom:312.066667pt;}
.y1b_c02060{bottom:339.746667pt;}
.y1a_c02060{bottom:367.266667pt;}
.y19_c02060{bottom:394.946667pt;}
.y18_c02060{bottom:422.466667pt;}
.y17_c02060{bottom:450.146667pt;}
.y16_c02060{bottom:477.693333pt;}
.y15_c02060{bottom:505.373333pt;}
.y14_c02060{bottom:532.893333pt;}
.y13_c02060{bottom:560.573333pt;}
.y12_c02060{bottom:588.093333pt;}
.y11_c02060{bottom:615.773333pt;}
.y10_c02060{bottom:643.293333pt;}
.yf_c02060{bottom:670.973333pt;}
.ye_c02060{bottom:698.493333pt;}
.yd_c02060{bottom:726.213333pt;}
.yc_c02060{bottom:753.733333pt;}
.yb_c02060{bottom:781.413333pt;}
.ya_c02060{bottom:808.933333pt;}
.y9_c02060{bottom:836.613333pt;}
.y8_c02060{bottom:864.133333pt;}
.y7_c02060{bottom:891.813333pt;}
.y6_c02060{bottom:919.333333pt;}
.y5_c02060{bottom:947.040000pt;}
.y1_c02060{bottom:996.800000pt;}
.h3_c02060{height:20.000000pt;}
.h2_c02060{height:43.441250pt;}
.h1_c02060{height:52.134375pt;}
.h4_c02060{height:62.812500pt;}
.h5_c02060{height:64.500000pt;}
.h6_c02060{height:65.781915pt;}
.h0_c02060{height:1056.000000pt;}
.w1_c02060{width:59.232000pt;}
.w0_c02060{width:816.000000pt;}
.x0_c02060{left:0.000000pt;}
.x3_c02060{left:14.720000pt;}
.x1_c02060{left:113.472000pt;}
.x5_c02060{left:137.466667pt;}
.x4_c02060{left:161.466667pt;}
.x6_c02060{left:170.266667pt;}
.x7_c02060{left:194.266667pt;}
.x2_c02060{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02061 {
    display:none;
  }
  .loading-indicator_c02061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02061 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02061 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02061" -> "#page-container .classname_c02061")
 */
.pf_c02061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02061 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02061 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02061 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02061 {overflow:visible;}
  }
}
.c_c02061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02061 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02061:after { /* webkit #35443 */
  content: '';
}
.t_c02061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02061 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02061 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02061 { /* info for Javascript */
  display:none;
}
.l_c02061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02061:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02061 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02061.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02061;src:url('chunks/assets/font_f9e329a0ebe3b7057189ea54.woff2')format("woff");}.ff1_c02061{font-family:ff1_c02061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02061;src:url('chunks/assets/font_2a12c45a395e819e257bdcc1.woff2')format("woff");}.ff2_c02061{font-family:ff2_c02061;line-height:0.863770;font-style:normal;font-weight: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_c02061;src:url('chunks/assets/font_91e1991c7e265e9f6956e589.woff2')format("woff");}.ff3_c02061{font-family:ff3_c02061;line-height:1.112305;font-style:normal;font-weight: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_c02061;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02061{font-family:ff4_c02061;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02061{vertical-align:0.000000px;}
.ls0_c02061{letter-spacing:0.000000px;}
.sc__c02061{text-shadow:none;}
.sc0_c02061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02061{-webkit-text-stroke:0px transparent;}
.sc0_c02061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02061{word-spacing:0.000000px;}
._b_c02061{margin-left:-2.916000px;}
._3_c02061{margin-left:-1.152000px;}
._2_c02061{width:1.008000px;}
._a_c02061{width:2.448000px;}
._11_c02061{width:3.600000px;}
._6_c02061{width:4.752000px;}
._f_c02061{width:5.796000px;}
._14_c02061{width:6.840000px;}
._e_c02061{width:7.992000px;}
._1_c02061{width:9.288000px;}
._13_c02061{width:10.440000px;}
._12_c02061{width:12.312000px;}
._4_c02061{width:13.824000px;}
._5_c02061{width:15.192000px;}
._7_c02061{width:16.200000px;}
._10_c02061{width:19.728000px;}
._15_c02061{width:20.808000px;}
._16_c02061{width:22.248000px;}
._d_c02061{width:24.192000px;}
._c_c02061{width:25.272000px;}
._8_c02061{width:29.016000px;}
._9_c02061{width:30.240000px;}
._17_c02061{width:32.328000px;}
._0_c02061{width:1500.936000px;}
.fc1_c02061{color:rgb(192,80,77);}
.fc0_c02061{color:rgb(0,0,0);}
.fs0_c02061{font-size:59.760000px;}
.fs1_c02061{font-size:66.240000px;}
.fs2_c02061{font-size:72.000000px;}
.y0_c02061{bottom:0.000000px;}
.y4_c02061{bottom:4.680000px;}
.y3_c02061{bottom:41.796000px;}
.y2_c02061{bottom:75.456000px;}
.y23_c02061{bottom:133.776000px;}
.y22_c02061{bottom:164.910000px;}
.y21_c02061{bottom:195.870000px;}
.y20_c02061{bottom:226.830000px;}
.y1f_c02061{bottom:257.970000px;}
.y1e_c02061{bottom:288.975000px;}
.y1d_c02061{bottom:320.115000px;}
.y1c_c02061{bottom:351.075000px;}
.y1b_c02061{bottom:382.215000px;}
.y1a_c02061{bottom:413.175000px;}
.y19_c02061{bottom:444.315000px;}
.y18_c02061{bottom:474.915000px;}
.y17_c02061{bottom:506.415000px;}
.y16_c02061{bottom:537.405000px;}
.y15_c02061{bottom:568.545000px;}
.y14_c02061{bottom:599.505000px;}
.y13_c02061{bottom:630.645000px;}
.y12_c02061{bottom:661.605000px;}
.y11_c02061{bottom:692.745000px;}
.y10_c02061{bottom:723.705000px;}
.yf_c02061{bottom:754.845000px;}
.ye_c02061{bottom:785.805000px;}
.yd_c02061{bottom:816.990000px;}
.yc_c02061{bottom:847.950000px;}
.yb_c02061{bottom:879.090000px;}
.ya_c02061{bottom:910.050000px;}
.y9_c02061{bottom:941.190000px;}
.y8_c02061{bottom:972.150000px;}
.y7_c02061{bottom:1003.290000px;}
.y6_c02061{bottom:1034.250000px;}
.y5_c02061{bottom:1065.420000px;}
.y1_c02061{bottom:1121.400000px;}
.h3_c02061{height:22.500000px;}
.h2_c02061{height:48.871406px;}
.h1_c02061{height:58.651172px;}
.h5_c02061{height:64.546875px;}
.h4_c02061{height:70.664062px;}
.h6_c02061{height:72.562500px;}
.h0_c02061{height:1188.000000px;}
.w1_c02061{width:66.636000px;}
.w0_c02061{width:918.000000px;}
.x0_c02061{left:0.000000px;}
.x3_c02061{left:16.560000px;}
.x1_c02061{left:127.656000px;}
.x4_c02061{left:181.650000px;}
.x2_c02061{left:820.950000px;}
@media print{
.v0_c02061{vertical-align:0.000000pt;}
.ls0_c02061{letter-spacing:0.000000pt;}
.ws0_c02061{word-spacing:0.000000pt;}
._b_c02061{margin-left:-2.592000pt;}
._3_c02061{margin-left:-1.024000pt;}
._2_c02061{width:0.896000pt;}
._a_c02061{width:2.176000pt;}
._11_c02061{width:3.200000pt;}
._6_c02061{width:4.224000pt;}
._f_c02061{width:5.152000pt;}
._14_c02061{width:6.080000pt;}
._e_c02061{width:7.104000pt;}
._1_c02061{width:8.256000pt;}
._13_c02061{width:9.280000pt;}
._12_c02061{width:10.944000pt;}
._4_c02061{width:12.288000pt;}
._5_c02061{width:13.504000pt;}
._7_c02061{width:14.400000pt;}
._10_c02061{width:17.536000pt;}
._15_c02061{width:18.496000pt;}
._16_c02061{width:19.776000pt;}
._d_c02061{width:21.504000pt;}
._c_c02061{width:22.464000pt;}
._8_c02061{width:25.792000pt;}
._9_c02061{width:26.880000pt;}
._17_c02061{width:28.736000pt;}
._0_c02061{width:1334.165333pt;}
.fs0_c02061{font-size:53.120000pt;}
.fs1_c02061{font-size:58.880000pt;}
.fs2_c02061{font-size:64.000000pt;}
.y0_c02061{bottom:0.000000pt;}
.y4_c02061{bottom:4.160000pt;}
.y3_c02061{bottom:37.152000pt;}
.y2_c02061{bottom:67.072000pt;}
.y23_c02061{bottom:118.912000pt;}
.y22_c02061{bottom:146.586667pt;}
.y21_c02061{bottom:174.106667pt;}
.y20_c02061{bottom:201.626667pt;}
.y1f_c02061{bottom:229.306667pt;}
.y1e_c02061{bottom:256.866667pt;}
.y1d_c02061{bottom:284.546667pt;}
.y1c_c02061{bottom:312.066667pt;}
.y1b_c02061{bottom:339.746667pt;}
.y1a_c02061{bottom:367.266667pt;}
.y19_c02061{bottom:394.946667pt;}
.y18_c02061{bottom:422.146667pt;}
.y17_c02061{bottom:450.146667pt;}
.y16_c02061{bottom:477.693333pt;}
.y15_c02061{bottom:505.373333pt;}
.y14_c02061{bottom:532.893333pt;}
.y13_c02061{bottom:560.573333pt;}
.y12_c02061{bottom:588.093333pt;}
.y11_c02061{bottom:615.773333pt;}
.y10_c02061{bottom:643.293333pt;}
.yf_c02061{bottom:670.973333pt;}
.ye_c02061{bottom:698.493333pt;}
.yd_c02061{bottom:726.213333pt;}
.yc_c02061{bottom:753.733333pt;}
.yb_c02061{bottom:781.413333pt;}
.ya_c02061{bottom:808.933333pt;}
.y9_c02061{bottom:836.613333pt;}
.y8_c02061{bottom:864.133333pt;}
.y7_c02061{bottom:891.813333pt;}
.y6_c02061{bottom:919.333333pt;}
.y5_c02061{bottom:947.040000pt;}
.y1_c02061{bottom:996.800000pt;}
.h3_c02061{height:20.000000pt;}
.h2_c02061{height:43.441250pt;}
.h1_c02061{height:52.134375pt;}
.h5_c02061{height:57.375000pt;}
.h4_c02061{height:62.812500pt;}
.h6_c02061{height:64.500000pt;}
.h0_c02061{height:1056.000000pt;}
.w1_c02061{width:59.232000pt;}
.w0_c02061{width:816.000000pt;}
.x0_c02061{left:0.000000pt;}
.x3_c02061{left:14.720000pt;}
.x1_c02061{left:113.472000pt;}
.x4_c02061{left:161.466667pt;}
.x2_c02061{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02062 {
    display:none;
  }
  .loading-indicator_c02062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02062 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02062 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02062" -> "#page-container .classname_c02062")
 */
.pf_c02062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02062 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02062 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02062 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02062 {overflow:visible;}
  }
}
.c_c02062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02062 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02062:after { /* webkit #35443 */
  content: '';
}
.t_c02062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02062 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02062 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02062 { /* info for Javascript */
  display:none;
}
.l_c02062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02062:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02062 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02062.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02062;src:url('chunks/assets/font_1e10a338c210dea6a806d9ab.woff2')format("woff");}.ff1_c02062{font-family:ff1_c02062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02062;src:url('chunks/assets/font_f727060d10a4c2f513ddaeff.woff2')format("woff");}.ff2_c02062{font-family:ff2_c02062;line-height:0.863770;font-style:normal;font-weight: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_c02062;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02062{font-family:ff3_c02062;line-height:1.311035;font-style:normal;font-weight: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_c02062;src:url('chunks/assets/font_372699c2796629bde708da61.woff2')format("woff");}.ff4_c02062{font-family:ff4_c02062;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02062{vertical-align:0.000000px;}
.ls3_c02062{letter-spacing:0.000000px;}
.ls0_c02062{letter-spacing:4.320000px;}
.ls2_c02062{letter-spacing:10.800000px;}
.ls1_c02062{letter-spacing:64.224000px;}
.sc__c02062{text-shadow:none;}
.sc0_c02062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02062{-webkit-text-stroke:0px transparent;}
.sc0_c02062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02062{word-spacing:-18.000000px;}
.ws1_c02062{word-spacing:0.000000px;}
._10_c02062{margin-left:-2.172000px;}
._2_c02062{margin-left:-1.152000px;}
._3_c02062{width:1.008000px;}
._13_c02062{width:2.496000px;}
._c_c02062{width:3.888000px;}
._d_c02062{width:5.040000px;}
._11_c02062{width:6.048000px;}
._12_c02062{width:7.200000px;}
._6_c02062{width:8.352000px;}
._7_c02062{width:9.720000px;}
._8_c02062{width:10.956000px;}
._b_c02062{width:12.108000px;}
._a_c02062{width:13.248000px;}
._9_c02062{width:14.472000px;}
._14_c02062{width:15.480000px;}
._1_c02062{width:16.920000px;}
._17_c02062{width:21.924000px;}
._18_c02062{width:23.112000px;}
._4_c02062{width:24.408000px;}
._5_c02062{width:25.560000px;}
._e_c02062{width:27.000000px;}
._f_c02062{width:28.884000px;}
._15_c02062{width:39.888000px;}
._16_c02062{width:41.976000px;}
._0_c02062{width:1500.936000px;}
.fc1_c02062{color:rgb(192,80,77);}
.fc0_c02062{color:rgb(0,0,0);}
.fs0_c02062{font-size:59.760000px;}
.fs1_c02062{font-size:66.240000px;}
.fs2_c02062{font-size:72.000000px;}
.y0_c02062{bottom:0.000000px;}
.y4_c02062{bottom:4.680000px;}
.y3_c02062{bottom:41.796000px;}
.y2_c02062{bottom:75.456000px;}
.y23_c02062{bottom:133.776000px;}
.y22_c02062{bottom:164.910000px;}
.y21_c02062{bottom:195.870000px;}
.y20_c02062{bottom:226.830000px;}
.y1f_c02062{bottom:257.970000px;}
.y1e_c02062{bottom:288.975000px;}
.y1d_c02062{bottom:320.115000px;}
.y1c_c02062{bottom:351.075000px;}
.y1b_c02062{bottom:382.215000px;}
.y1a_c02062{bottom:413.175000px;}
.y19_c02062{bottom:444.315000px;}
.y18_c02062{bottom:475.275000px;}
.y17_c02062{bottom:506.415000px;}
.y16_c02062{bottom:537.405000px;}
.y15_c02062{bottom:568.545000px;}
.y14_c02062{bottom:599.505000px;}
.y13_c02062{bottom:630.645000px;}
.y12_c02062{bottom:661.605000px;}
.y11_c02062{bottom:692.745000px;}
.y10_c02062{bottom:723.705000px;}
.yf_c02062{bottom:754.845000px;}
.ye_c02062{bottom:785.805000px;}
.yd_c02062{bottom:816.990000px;}
.yc_c02062{bottom:847.950000px;}
.yb_c02062{bottom:879.090000px;}
.ya_c02062{bottom:910.050000px;}
.y9_c02062{bottom:941.190000px;}
.y8_c02062{bottom:972.150000px;}
.y7_c02062{bottom:1003.290000px;}
.y6_c02062{bottom:1034.250000px;}
.y5_c02062{bottom:1065.420000px;}
.y1_c02062{bottom:1121.400000px;}
.h3_c02062{height:22.500000px;}
.h2_c02062{height:48.871406px;}
.h1_c02062{height:58.651172px;}
.h4_c02062{height:70.664062px;}
.h5_c02062{height:72.562500px;}
.h6_c02062{height:74.004654px;}
.h0_c02062{height:1188.000000px;}
.w1_c02062{width:66.636000px;}
.w0_c02062{width:918.000000px;}
.x0_c02062{left:0.000000px;}
.x3_c02062{left:16.560000px;}
.x1_c02062{left:127.656000px;}
.x4_c02062{left:181.650000px;}
.x5_c02062{left:191.550000px;}
.x6_c02062{left:218.550000px;}
.x2_c02062{left:820.950000px;}
@media print{
.v0_c02062{vertical-align:0.000000pt;}
.ls3_c02062{letter-spacing:0.000000pt;}
.ls0_c02062{letter-spacing:3.840000pt;}
.ls2_c02062{letter-spacing:9.600000pt;}
.ls1_c02062{letter-spacing:57.088000pt;}
.ws0_c02062{word-spacing:-16.000000pt;}
.ws1_c02062{word-spacing:0.000000pt;}
._10_c02062{margin-left:-1.930667pt;}
._2_c02062{margin-left:-1.024000pt;}
._3_c02062{width:0.896000pt;}
._13_c02062{width:2.218667pt;}
._c_c02062{width:3.456000pt;}
._d_c02062{width:4.480000pt;}
._11_c02062{width:5.376000pt;}
._12_c02062{width:6.400000pt;}
._6_c02062{width:7.424000pt;}
._7_c02062{width:8.640000pt;}
._8_c02062{width:9.738667pt;}
._b_c02062{width:10.762667pt;}
._a_c02062{width:11.776000pt;}
._9_c02062{width:12.864000pt;}
._14_c02062{width:13.760000pt;}
._1_c02062{width:15.040000pt;}
._17_c02062{width:19.488000pt;}
._18_c02062{width:20.544000pt;}
._4_c02062{width:21.696000pt;}
._5_c02062{width:22.720000pt;}
._e_c02062{width:24.000000pt;}
._f_c02062{width:25.674667pt;}
._15_c02062{width:35.456000pt;}
._16_c02062{width:37.312000pt;}
._0_c02062{width:1334.165333pt;}
.fs0_c02062{font-size:53.120000pt;}
.fs1_c02062{font-size:58.880000pt;}
.fs2_c02062{font-size:64.000000pt;}
.y0_c02062{bottom:0.000000pt;}
.y4_c02062{bottom:4.160000pt;}
.y3_c02062{bottom:37.152000pt;}
.y2_c02062{bottom:67.072000pt;}
.y23_c02062{bottom:118.912000pt;}
.y22_c02062{bottom:146.586667pt;}
.y21_c02062{bottom:174.106667pt;}
.y20_c02062{bottom:201.626667pt;}
.y1f_c02062{bottom:229.306667pt;}
.y1e_c02062{bottom:256.866667pt;}
.y1d_c02062{bottom:284.546667pt;}
.y1c_c02062{bottom:312.066667pt;}
.y1b_c02062{bottom:339.746667pt;}
.y1a_c02062{bottom:367.266667pt;}
.y19_c02062{bottom:394.946667pt;}
.y18_c02062{bottom:422.466667pt;}
.y17_c02062{bottom:450.146667pt;}
.y16_c02062{bottom:477.693333pt;}
.y15_c02062{bottom:505.373333pt;}
.y14_c02062{bottom:532.893333pt;}
.y13_c02062{bottom:560.573333pt;}
.y12_c02062{bottom:588.093333pt;}
.y11_c02062{bottom:615.773333pt;}
.y10_c02062{bottom:643.293333pt;}
.yf_c02062{bottom:670.973333pt;}
.ye_c02062{bottom:698.493333pt;}
.yd_c02062{bottom:726.213333pt;}
.yc_c02062{bottom:753.733333pt;}
.yb_c02062{bottom:781.413333pt;}
.ya_c02062{bottom:808.933333pt;}
.y9_c02062{bottom:836.613333pt;}
.y8_c02062{bottom:864.133333pt;}
.y7_c02062{bottom:891.813333pt;}
.y6_c02062{bottom:919.333333pt;}
.y5_c02062{bottom:947.040000pt;}
.y1_c02062{bottom:996.800000pt;}
.h3_c02062{height:20.000000pt;}
.h2_c02062{height:43.441250pt;}
.h1_c02062{height:52.134375pt;}
.h4_c02062{height:62.812500pt;}
.h5_c02062{height:64.500000pt;}
.h6_c02062{height:65.781915pt;}
.h0_c02062{height:1056.000000pt;}
.w1_c02062{width:59.232000pt;}
.w0_c02062{width:816.000000pt;}
.x0_c02062{left:0.000000pt;}
.x3_c02062{left:14.720000pt;}
.x1_c02062{left:113.472000pt;}
.x4_c02062{left:161.466667pt;}
.x5_c02062{left:170.266667pt;}
.x6_c02062{left:194.266667pt;}
.x2_c02062{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02063 {
    display:none;
  }
  .loading-indicator_c02063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02063 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02063 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02063" -> "#page-container .classname_c02063")
 */
.pf_c02063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02063 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02063 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02063 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02063 {overflow:visible;}
  }
}
.c_c02063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02063 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02063:after { /* webkit #35443 */
  content: '';
}
.t_c02063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02063 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02063 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02063 { /* info for Javascript */
  display:none;
}
.l_c02063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02063:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02063 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02063.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02063;src:url('chunks/assets/font_8b6d4e195c9925b1c69bd010.woff2')format("woff");}.ff1_c02063{font-family:ff1_c02063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02063;src:url('chunks/assets/font_5271ad50cb82760ad8e941c4.woff2')format("woff");}.ff2_c02063{font-family:ff2_c02063;line-height:0.863770;font-style:normal;font-weight: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_c02063;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02063{font-family:ff3_c02063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02063{vertical-align:0.000000px;}
.ls0_c02063{letter-spacing:0.000000px;}
.sc__c02063{text-shadow:none;}
.sc0_c02063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02063{-webkit-text-stroke:0px transparent;}
.sc0_c02063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02063{word-spacing:0.000000px;}
._e_c02063{margin-left:-2.412000px;}
._3_c02063{margin-left:-1.080000px;}
._2_c02063{width:1.008000px;}
._8_c02063{width:2.388000px;}
._4_c02063{width:4.320000px;}
._5_c02063{width:5.760000px;}
._d_c02063{width:7.200000px;}
._6_c02063{width:8.568000px;}
._7_c02063{width:10.008000px;}
._11_c02063{width:12.096000px;}
._12_c02063{width:13.140000px;}
._b_c02063{width:14.184000px;}
._c_c02063{width:16.776000px;}
._10_c02063{width:19.224000px;}
._f_c02063{width:25.704000px;}
._1_c02063{width:27.216000px;}
._a_c02063{width:32.184000px;}
._9_c02063{width:33.264000px;}
._0_c02063{width:1500.936000px;}
.fc1_c02063{color:rgb(192,80,77);}
.fc0_c02063{color:rgb(0,0,0);}
.fs0_c02063{font-size:59.760000px;}
.fs1_c02063{font-size:66.240000px;}
.fs2_c02063{font-size:72.000000px;}
.y0_c02063{bottom:0.000000px;}
.y4_c02063{bottom:4.680000px;}
.y3_c02063{bottom:41.796000px;}
.y2_c02063{bottom:75.456000px;}
.y23_c02063{bottom:133.956000px;}
.y22_c02063{bottom:164.910000px;}
.y21_c02063{bottom:195.870000px;}
.y20_c02063{bottom:226.830000px;}
.y1f_c02063{bottom:257.970000px;}
.y1e_c02063{bottom:288.975000px;}
.y1d_c02063{bottom:320.115000px;}
.y1c_c02063{bottom:351.075000px;}
.y1b_c02063{bottom:382.215000px;}
.y1a_c02063{bottom:413.175000px;}
.y19_c02063{bottom:444.315000px;}
.y18_c02063{bottom:475.275000px;}
.y17_c02063{bottom:506.415000px;}
.y16_c02063{bottom:537.405000px;}
.y15_c02063{bottom:568.545000px;}
.y14_c02063{bottom:599.505000px;}
.y13_c02063{bottom:630.645000px;}
.y12_c02063{bottom:661.605000px;}
.y11_c02063{bottom:692.745000px;}
.y10_c02063{bottom:723.705000px;}
.yf_c02063{bottom:754.845000px;}
.ye_c02063{bottom:785.805000px;}
.yd_c02063{bottom:816.990000px;}
.yc_c02063{bottom:847.950000px;}
.yb_c02063{bottom:879.090000px;}
.ya_c02063{bottom:910.050000px;}
.y9_c02063{bottom:941.190000px;}
.y8_c02063{bottom:972.150000px;}
.y7_c02063{bottom:1003.290000px;}
.y6_c02063{bottom:1034.250000px;}
.y5_c02063{bottom:1065.060000px;}
.y1_c02063{bottom:1121.400000px;}
.h3_c02063{height:22.500000px;}
.h2_c02063{height:48.871406px;}
.h1_c02063{height:58.651172px;}
.h5_c02063{height:70.664062px;}
.h4_c02063{height:72.562500px;}
.h0_c02063{height:1188.000000px;}
.w1_c02063{width:66.636000px;}
.w0_c02063{width:918.000000px;}
.x0_c02063{left:0.000000px;}
.x3_c02063{left:16.560000px;}
.x1_c02063{left:127.656000px;}
.x4_c02063{left:218.550000px;}
.x2_c02063{left:820.950000px;}
@media print{
.v0_c02063{vertical-align:0.000000pt;}
.ls0_c02063{letter-spacing:0.000000pt;}
.ws0_c02063{word-spacing:0.000000pt;}
._e_c02063{margin-left:-2.144000pt;}
._3_c02063{margin-left:-0.960000pt;}
._2_c02063{width:0.896000pt;}
._8_c02063{width:2.122667pt;}
._4_c02063{width:3.840000pt;}
._5_c02063{width:5.120000pt;}
._d_c02063{width:6.400000pt;}
._6_c02063{width:7.616000pt;}
._7_c02063{width:8.896000pt;}
._11_c02063{width:10.752000pt;}
._12_c02063{width:11.680000pt;}
._b_c02063{width:12.608000pt;}
._c_c02063{width:14.912000pt;}
._10_c02063{width:17.088000pt;}
._f_c02063{width:22.848000pt;}
._1_c02063{width:24.192000pt;}
._a_c02063{width:28.608000pt;}
._9_c02063{width:29.568000pt;}
._0_c02063{width:1334.165333pt;}
.fs0_c02063{font-size:53.120000pt;}
.fs1_c02063{font-size:58.880000pt;}
.fs2_c02063{font-size:64.000000pt;}
.y0_c02063{bottom:0.000000pt;}
.y4_c02063{bottom:4.160000pt;}
.y3_c02063{bottom:37.152000pt;}
.y2_c02063{bottom:67.072000pt;}
.y23_c02063{bottom:119.072000pt;}
.y22_c02063{bottom:146.586667pt;}
.y21_c02063{bottom:174.106667pt;}
.y20_c02063{bottom:201.626667pt;}
.y1f_c02063{bottom:229.306667pt;}
.y1e_c02063{bottom:256.866667pt;}
.y1d_c02063{bottom:284.546667pt;}
.y1c_c02063{bottom:312.066667pt;}
.y1b_c02063{bottom:339.746667pt;}
.y1a_c02063{bottom:367.266667pt;}
.y19_c02063{bottom:394.946667pt;}
.y18_c02063{bottom:422.466667pt;}
.y17_c02063{bottom:450.146667pt;}
.y16_c02063{bottom:477.693333pt;}
.y15_c02063{bottom:505.373333pt;}
.y14_c02063{bottom:532.893333pt;}
.y13_c02063{bottom:560.573333pt;}
.y12_c02063{bottom:588.093333pt;}
.y11_c02063{bottom:615.773333pt;}
.y10_c02063{bottom:643.293333pt;}
.yf_c02063{bottom:670.973333pt;}
.ye_c02063{bottom:698.493333pt;}
.yd_c02063{bottom:726.213333pt;}
.yc_c02063{bottom:753.733333pt;}
.yb_c02063{bottom:781.413333pt;}
.ya_c02063{bottom:808.933333pt;}
.y9_c02063{bottom:836.613333pt;}
.y8_c02063{bottom:864.133333pt;}
.y7_c02063{bottom:891.813333pt;}
.y6_c02063{bottom:919.333333pt;}
.y5_c02063{bottom:946.720000pt;}
.y1_c02063{bottom:996.800000pt;}
.h3_c02063{height:20.000000pt;}
.h2_c02063{height:43.441250pt;}
.h1_c02063{height:52.134375pt;}
.h5_c02063{height:62.812500pt;}
.h4_c02063{height:64.500000pt;}
.h0_c02063{height:1056.000000pt;}
.w1_c02063{width:59.232000pt;}
.w0_c02063{width:816.000000pt;}
.x0_c02063{left:0.000000pt;}
.x3_c02063{left:14.720000pt;}
.x1_c02063{left:113.472000pt;}
.x4_c02063{left:194.266667pt;}
.x2_c02063{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02064 {
    display:none;
  }
  .loading-indicator_c02064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02064 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02064 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02064" -> "#page-container .classname_c02064")
 */
.pf_c02064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02064 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02064 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02064 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02064 {overflow:visible;}
  }
}
.c_c02064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02064 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02064:after { /* webkit #35443 */
  content: '';
}
.t_c02064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02064 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02064 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02064 { /* info for Javascript */
  display:none;
}
.l_c02064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02064:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02064 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02064.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02064;src:url('chunks/assets/font_d4bb8f8cb104cc021af1ed53.woff2')format("woff");}.ff1_c02064{font-family:ff1_c02064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02064;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02064{font-family:ff2_c02064;line-height:0.863770;font-style:normal;font-weight: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_c02064;src:url('chunks/assets/font_856b5ece22c8640c76761c8f.woff2')format("woff");}.ff3_c02064{font-family:ff3_c02064;line-height:1.402354;font-style:normal;font-weight: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_c02064;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02064{font-family:ff4_c02064;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02064{vertical-align:0.000000px;}
.ls1_c02064{letter-spacing:0.000000px;}
.ls0_c02064{letter-spacing:64.224000px;}
.sc__c02064{text-shadow:none;}
.sc0_c02064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02064{-webkit-text-stroke:0px transparent;}
.sc0_c02064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02064{word-spacing:-18.000000px;}
.ws1_c02064{word-spacing:0.000000px;}
._15_c02064{margin-left:-2.520000px;}
._1_c02064{margin-left:-1.008000px;}
._6_c02064{width:1.440000px;}
._1b_c02064{width:2.592000px;}
._b_c02064{width:3.600000px;}
._7_c02064{width:4.608000px;}
._13_c02064{width:5.760000px;}
._12_c02064{width:6.840000px;}
._11_c02064{width:7.848000px;}
._9_c02064{width:9.072000px;}
._a_c02064{width:11.088000px;}
._10_c02064{width:12.816000px;}
._4_c02064{width:13.896000px;}
._5_c02064{width:15.264000px;}
._8_c02064{width:16.344000px;}
._16_c02064{width:19.296000px;}
._18_c02064{width:20.952000px;}
._19_c02064{width:22.032000px;}
._14_c02064{width:23.400000px;}
._c_c02064{width:24.840000px;}
._17_c02064{width:26.784000px;}
._2_c02064{width:27.864000px;}
._3_c02064{width:29.088000px;}
._1a_c02064{width:31.032000px;}
._d_c02064{width:38.808000px;}
._e_c02064{width:39.960000px;}
._f_c02064{width:44.496000px;}
._0_c02064{width:1500.936000px;}
.fc1_c02064{color:rgb(192,80,77);}
.fc0_c02064{color:rgb(0,0,0);}
.fs0_c02064{font-size:59.760000px;}
.fs1_c02064{font-size:66.240000px;}
.fs2_c02064{font-size:72.000000px;}
.y0_c02064{bottom:0.000000px;}
.y4_c02064{bottom:4.680000px;}
.y3_c02064{bottom:41.796000px;}
.y2_c02064{bottom:75.456000px;}
.y23_c02064{bottom:133.776000px;}
.y22_c02064{bottom:164.910000px;}
.y21_c02064{bottom:195.870000px;}
.y20_c02064{bottom:226.830000px;}
.y1f_c02064{bottom:257.970000px;}
.y1e_c02064{bottom:288.975000px;}
.y1d_c02064{bottom:320.115000px;}
.y1c_c02064{bottom:351.075000px;}
.y1b_c02064{bottom:382.215000px;}
.y1a_c02064{bottom:413.175000px;}
.y19_c02064{bottom:444.315000px;}
.y18_c02064{bottom:475.275000px;}
.y17_c02064{bottom:506.415000px;}
.y16_c02064{bottom:537.405000px;}
.y15_c02064{bottom:568.545000px;}
.y14_c02064{bottom:599.505000px;}
.y13_c02064{bottom:630.645000px;}
.y12_c02064{bottom:661.605000px;}
.y11_c02064{bottom:692.745000px;}
.y10_c02064{bottom:723.705000px;}
.yf_c02064{bottom:754.845000px;}
.ye_c02064{bottom:785.805000px;}
.yd_c02064{bottom:816.990000px;}
.yc_c02064{bottom:847.950000px;}
.yb_c02064{bottom:879.090000px;}
.ya_c02064{bottom:910.050000px;}
.y9_c02064{bottom:941.190000px;}
.y8_c02064{bottom:972.150000px;}
.y7_c02064{bottom:1003.290000px;}
.y6_c02064{bottom:1034.250000px;}
.y5_c02064{bottom:1065.420000px;}
.y1_c02064{bottom:1121.400000px;}
.h3_c02064{height:22.500000px;}
.h2_c02064{height:48.871406px;}
.h1_c02064{height:58.651172px;}
.h5_c02064{height:70.664062px;}
.h6_c02064{height:72.562500px;}
.h4_c02064{height:74.004654px;}
.h0_c02064{height:1188.000000px;}
.w1_c02064{width:66.636000px;}
.w0_c02064{width:918.000000px;}
.x0_c02064{left:0.000000px;}
.x3_c02064{left:16.560000px;}
.x1_c02064{left:127.656000px;}
.x4_c02064{left:191.550000px;}
.x5_c02064{left:218.550000px;}
.x2_c02064{left:820.950000px;}
@media print{
.v0_c02064{vertical-align:0.000000pt;}
.ls1_c02064{letter-spacing:0.000000pt;}
.ls0_c02064{letter-spacing:57.088000pt;}
.ws0_c02064{word-spacing:-16.000000pt;}
.ws1_c02064{word-spacing:0.000000pt;}
._15_c02064{margin-left:-2.240000pt;}
._1_c02064{margin-left:-0.896000pt;}
._6_c02064{width:1.280000pt;}
._1b_c02064{width:2.304000pt;}
._b_c02064{width:3.200000pt;}
._7_c02064{width:4.096000pt;}
._13_c02064{width:5.120000pt;}
._12_c02064{width:6.080000pt;}
._11_c02064{width:6.976000pt;}
._9_c02064{width:8.064000pt;}
._a_c02064{width:9.856000pt;}
._10_c02064{width:11.392000pt;}
._4_c02064{width:12.352000pt;}
._5_c02064{width:13.568000pt;}
._8_c02064{width:14.528000pt;}
._16_c02064{width:17.152000pt;}
._18_c02064{width:18.624000pt;}
._19_c02064{width:19.584000pt;}
._14_c02064{width:20.800000pt;}
._c_c02064{width:22.080000pt;}
._17_c02064{width:23.808000pt;}
._2_c02064{width:24.768000pt;}
._3_c02064{width:25.856000pt;}
._1a_c02064{width:27.584000pt;}
._d_c02064{width:34.496000pt;}
._e_c02064{width:35.520000pt;}
._f_c02064{width:39.552000pt;}
._0_c02064{width:1334.165333pt;}
.fs0_c02064{font-size:53.120000pt;}
.fs1_c02064{font-size:58.880000pt;}
.fs2_c02064{font-size:64.000000pt;}
.y0_c02064{bottom:0.000000pt;}
.y4_c02064{bottom:4.160000pt;}
.y3_c02064{bottom:37.152000pt;}
.y2_c02064{bottom:67.072000pt;}
.y23_c02064{bottom:118.912000pt;}
.y22_c02064{bottom:146.586667pt;}
.y21_c02064{bottom:174.106667pt;}
.y20_c02064{bottom:201.626667pt;}
.y1f_c02064{bottom:229.306667pt;}
.y1e_c02064{bottom:256.866667pt;}
.y1d_c02064{bottom:284.546667pt;}
.y1c_c02064{bottom:312.066667pt;}
.y1b_c02064{bottom:339.746667pt;}
.y1a_c02064{bottom:367.266667pt;}
.y19_c02064{bottom:394.946667pt;}
.y18_c02064{bottom:422.466667pt;}
.y17_c02064{bottom:450.146667pt;}
.y16_c02064{bottom:477.693333pt;}
.y15_c02064{bottom:505.373333pt;}
.y14_c02064{bottom:532.893333pt;}
.y13_c02064{bottom:560.573333pt;}
.y12_c02064{bottom:588.093333pt;}
.y11_c02064{bottom:615.773333pt;}
.y10_c02064{bottom:643.293333pt;}
.yf_c02064{bottom:670.973333pt;}
.ye_c02064{bottom:698.493333pt;}
.yd_c02064{bottom:726.213333pt;}
.yc_c02064{bottom:753.733333pt;}
.yb_c02064{bottom:781.413333pt;}
.ya_c02064{bottom:808.933333pt;}
.y9_c02064{bottom:836.613333pt;}
.y8_c02064{bottom:864.133333pt;}
.y7_c02064{bottom:891.813333pt;}
.y6_c02064{bottom:919.333333pt;}
.y5_c02064{bottom:947.040000pt;}
.y1_c02064{bottom:996.800000pt;}
.h3_c02064{height:20.000000pt;}
.h2_c02064{height:43.441250pt;}
.h1_c02064{height:52.134375pt;}
.h5_c02064{height:62.812500pt;}
.h6_c02064{height:64.500000pt;}
.h4_c02064{height:65.781915pt;}
.h0_c02064{height:1056.000000pt;}
.w1_c02064{width:59.232000pt;}
.w0_c02064{width:816.000000pt;}
.x0_c02064{left:0.000000pt;}
.x3_c02064{left:14.720000pt;}
.x1_c02064{left:113.472000pt;}
.x4_c02064{left:170.266667pt;}
.x5_c02064{left:194.266667pt;}
.x2_c02064{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02065 {
    display:none;
  }
  .loading-indicator_c02065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02065 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02065 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02065" -> "#page-container .classname_c02065")
 */
.pf_c02065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02065 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02065 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02065 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02065 {overflow:visible;}
  }
}
.c_c02065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02065 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02065:after { /* webkit #35443 */
  content: '';
}
.t_c02065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02065 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02065 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02065 { /* info for Javascript */
  display:none;
}
.l_c02065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02065:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02065 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02065.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02065;src:url('chunks/assets/font_756af30c686b158b89ce9f54.woff2')format("woff");}.ff1_c02065{font-family:ff1_c02065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02065;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02065{font-family:ff2_c02065;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02065{vertical-align:0.000000px;}
.ls0_c02065{letter-spacing:0.000000px;}
.sc__c02065{text-shadow:none;}
.sc0_c02065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02065{-webkit-text-stroke:0px transparent;}
.sc0_c02065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02065{word-spacing:0.000000px;}
._3_c02065{margin-left:-1.440000px;}
._4_c02065{width:1.152000px;}
._12_c02065{width:2.448000px;}
._5_c02065{width:3.672000px;}
._6_c02065{width:4.680000px;}
._b_c02065{width:6.336000px;}
._a_c02065{width:7.344000px;}
._11_c02065{width:9.000000px;}
._17_c02065{width:10.656000px;}
._10_c02065{width:12.024000px;}
._f_c02065{width:13.104000px;}
._d_c02065{width:14.904000px;}
._e_c02065{width:16.236000px;}
._1_c02065{width:20.016000px;}
._2_c02065{width:21.036000px;}
._9_c02065{width:24.336000px;}
._7_c02065{width:25.632000px;}
._8_c02065{width:27.072000px;}
._13_c02065{width:31.320000px;}
._14_c02065{width:33.048000px;}
._15_c02065{width:34.128000px;}
._16_c02065{width:35.352000px;}
._c_c02065{width:37.944000px;}
._0_c02065{width:1500.936000px;}
.fc1_c02065{color:rgb(192,80,77);}
.fc0_c02065{color:rgb(0,0,0);}
.fs0_c02065{font-size:59.760000px;}
.fs1_c02065{font-size:66.240000px;}
.fs2_c02065{font-size:72.000000px;}
.y0_c02065{bottom:0.000000px;}
.y4_c02065{bottom:4.680000px;}
.y3_c02065{bottom:41.796000px;}
.y2_c02065{bottom:75.456000px;}
.y22_c02065{bottom:164.910000px;}
.y21_c02065{bottom:195.870000px;}
.y20_c02065{bottom:226.830000px;}
.y1f_c02065{bottom:257.970000px;}
.y1e_c02065{bottom:288.975000px;}
.y1d_c02065{bottom:320.115000px;}
.y1c_c02065{bottom:351.075000px;}
.y1b_c02065{bottom:382.215000px;}
.y1a_c02065{bottom:413.175000px;}
.y19_c02065{bottom:444.315000px;}
.y18_c02065{bottom:475.275000px;}
.y17_c02065{bottom:506.415000px;}
.y16_c02065{bottom:537.405000px;}
.y15_c02065{bottom:568.545000px;}
.y14_c02065{bottom:599.505000px;}
.y13_c02065{bottom:630.645000px;}
.y12_c02065{bottom:661.605000px;}
.y11_c02065{bottom:692.745000px;}
.y10_c02065{bottom:723.705000px;}
.yf_c02065{bottom:754.845000px;}
.ye_c02065{bottom:785.805000px;}
.yd_c02065{bottom:816.990000px;}
.yc_c02065{bottom:847.950000px;}
.yb_c02065{bottom:879.090000px;}
.ya_c02065{bottom:910.050000px;}
.y9_c02065{bottom:941.190000px;}
.y8_c02065{bottom:972.150000px;}
.y7_c02065{bottom:1003.290000px;}
.y6_c02065{bottom:1034.250000px;}
.y5_c02065{bottom:1065.420000px;}
.y1_c02065{bottom:1121.400000px;}
.h3_c02065{height:22.500000px;}
.h2_c02065{height:48.871406px;}
.h1_c02065{height:58.651172px;}
.h4_c02065{height:70.664062px;}
.h0_c02065{height:1188.000000px;}
.w1_c02065{width:66.636000px;}
.w0_c02065{width:918.000000px;}
.x0_c02065{left:0.000000px;}
.x3_c02065{left:16.560000px;}
.x1_c02065{left:127.656000px;}
.x4_c02065{left:218.550000px;}
.x2_c02065{left:820.950000px;}
@media print{
.v0_c02065{vertical-align:0.000000pt;}
.ls0_c02065{letter-spacing:0.000000pt;}
.ws0_c02065{word-spacing:0.000000pt;}
._3_c02065{margin-left:-1.280000pt;}
._4_c02065{width:1.024000pt;}
._12_c02065{width:2.176000pt;}
._5_c02065{width:3.264000pt;}
._6_c02065{width:4.160000pt;}
._b_c02065{width:5.632000pt;}
._a_c02065{width:6.528000pt;}
._11_c02065{width:8.000000pt;}
._17_c02065{width:9.472000pt;}
._10_c02065{width:10.688000pt;}
._f_c02065{width:11.648000pt;}
._d_c02065{width:13.248000pt;}
._e_c02065{width:14.432000pt;}
._1_c02065{width:17.792000pt;}
._2_c02065{width:18.698667pt;}
._9_c02065{width:21.632000pt;}
._7_c02065{width:22.784000pt;}
._8_c02065{width:24.064000pt;}
._13_c02065{width:27.840000pt;}
._14_c02065{width:29.376000pt;}
._15_c02065{width:30.336000pt;}
._16_c02065{width:31.424000pt;}
._c_c02065{width:33.728000pt;}
._0_c02065{width:1334.165333pt;}
.fs0_c02065{font-size:53.120000pt;}
.fs1_c02065{font-size:58.880000pt;}
.fs2_c02065{font-size:64.000000pt;}
.y0_c02065{bottom:0.000000pt;}
.y4_c02065{bottom:4.160000pt;}
.y3_c02065{bottom:37.152000pt;}
.y2_c02065{bottom:67.072000pt;}
.y22_c02065{bottom:146.586667pt;}
.y21_c02065{bottom:174.106667pt;}
.y20_c02065{bottom:201.626667pt;}
.y1f_c02065{bottom:229.306667pt;}
.y1e_c02065{bottom:256.866667pt;}
.y1d_c02065{bottom:284.546667pt;}
.y1c_c02065{bottom:312.066667pt;}
.y1b_c02065{bottom:339.746667pt;}
.y1a_c02065{bottom:367.266667pt;}
.y19_c02065{bottom:394.946667pt;}
.y18_c02065{bottom:422.466667pt;}
.y17_c02065{bottom:450.146667pt;}
.y16_c02065{bottom:477.693333pt;}
.y15_c02065{bottom:505.373333pt;}
.y14_c02065{bottom:532.893333pt;}
.y13_c02065{bottom:560.573333pt;}
.y12_c02065{bottom:588.093333pt;}
.y11_c02065{bottom:615.773333pt;}
.y10_c02065{bottom:643.293333pt;}
.yf_c02065{bottom:670.973333pt;}
.ye_c02065{bottom:698.493333pt;}
.yd_c02065{bottom:726.213333pt;}
.yc_c02065{bottom:753.733333pt;}
.yb_c02065{bottom:781.413333pt;}
.ya_c02065{bottom:808.933333pt;}
.y9_c02065{bottom:836.613333pt;}
.y8_c02065{bottom:864.133333pt;}
.y7_c02065{bottom:891.813333pt;}
.y6_c02065{bottom:919.333333pt;}
.y5_c02065{bottom:947.040000pt;}
.y1_c02065{bottom:996.800000pt;}
.h3_c02065{height:20.000000pt;}
.h2_c02065{height:43.441250pt;}
.h1_c02065{height:52.134375pt;}
.h4_c02065{height:62.812500pt;}
.h0_c02065{height:1056.000000pt;}
.w1_c02065{width:59.232000pt;}
.w0_c02065{width:816.000000pt;}
.x0_c02065{left:0.000000pt;}
.x3_c02065{left:14.720000pt;}
.x1_c02065{left:113.472000pt;}
.x4_c02065{left:194.266667pt;}
.x2_c02065{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02066 {
    display:none;
  }
  .loading-indicator_c02066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02066 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02066 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02066" -> "#page-container .classname_c02066")
 */
.pf_c02066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02066 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02066 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02066 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02066 {overflow:visible;}
  }
}
.c_c02066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02066 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02066:after { /* webkit #35443 */
  content: '';
}
.t_c02066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02066 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02066 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02066 { /* info for Javascript */
  display:none;
}
.l_c02066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02066:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02066 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02066.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02066;src:url('chunks/assets/font_0adf03a1cc24871819c545f1.woff2')format("woff");}.ff1_c02066{font-family:ff1_c02066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02066;src:url('chunks/assets/font_bb01a55bf8bdc0a089d519e3.woff2')format("woff");}.ff2_c02066{font-family:ff2_c02066;line-height:0.863770;font-style:normal;font-weight: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_c02066;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02066{font-family:ff3_c02066;line-height:0.690918;font-style:normal;font-weight: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_c02066;src:url('chunks/assets/font_0299fa3db5dbd2048212926e.woff2')format("woff");}.ff4_c02066{font-family:ff4_c02066;line-height:1.402354;font-style:normal;font-weight: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_c02066;src:url('chunks/assets/font_a7b3cd1a6238d7a332beed85.woff2')format("woff");}.ff5_c02066{font-family:ff5_c02066;line-height:1.112305;font-style:normal;font-weight: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_c02066;src:url('chunks/assets/font_982653bdc795705235c949eb.woff2')format("woff");}.ff6_c02066{font-family:ff6_c02066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02066{vertical-align:-83.520000px;}
.v0_c02066{vertical-align:0.000000px;}
.ls2_c02066{letter-spacing:0.000000px;}
.ls0_c02066{letter-spacing:54.864000px;}
.ls1_c02066{letter-spacing:345.576000px;}
.sc__c02066{text-shadow:none;}
.sc0_c02066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02066{-webkit-text-stroke:0px transparent;}
.sc0_c02066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02066{word-spacing:-72.000000px;}
.ws1_c02066{word-spacing:-18.000000px;}
.ws2_c02066{word-spacing:0.000000px;}
._c_c02066{margin-left:-2.160000px;}
._4_c02066{margin-left:-1.008000px;}
._2_c02066{width:1.152000px;}
._f_c02066{width:3.816000px;}
._5_c02066{width:5.184000px;}
._6_c02066{width:6.264000px;}
._a_c02066{width:8.712000px;}
._b_c02066{width:9.864000px;}
._1_c02066{width:11.160000px;}
._3_c02066{width:12.384000px;}
._8_c02066{width:21.600000px;}
._9_c02066{width:23.040000px;}
._10_c02066{width:25.992000px;}
._11_c02066{width:27.288000px;}
._d_c02066{width:37.224000px;}
._e_c02066{width:38.532000px;}
._7_c02066{width:47.808000px;}
._14_c02066{width:48.888000px;}
._12_c02066{width:50.040000px;}
._13_c02066{width:51.492000px;}
._0_c02066{width:1500.936000px;}
.fc1_c02066{color:rgb(192,80,77);}
.fc0_c02066{color:rgb(0,0,0);}
.fs0_c02066{font-size:59.760000px;}
.fs1_c02066{font-size:66.240000px;}
.fs2_c02066{font-size:72.000000px;}
.y0_c02066{bottom:0.000000px;}
.y4_c02066{bottom:4.680000px;}
.y3_c02066{bottom:41.796000px;}
.y2_c02066{bottom:75.456000px;}
.y22_c02066{bottom:133.776000px;}
.y21_c02066{bottom:164.910000px;}
.y20_c02066{bottom:216.750000px;}
.y1f_c02066{bottom:247.710000px;}
.y1e_c02066{bottom:279.975000px;}
.y1d_c02066{bottom:311.115000px;}
.y1c_c02066{bottom:342.075000px;}
.y1b_c02066{bottom:374.475000px;}
.y1a_c02066{bottom:405.435000px;}
.y19_c02066{bottom:436.575000px;}
.y18_c02066{bottom:468.795000px;}
.y17_c02066{bottom:499.935000px;}
.y16_c02066{bottom:531.075000px;}
.y15_c02066{bottom:563.325000px;}
.y14_c02066{bottom:594.465000px;}
.y13_c02066{bottom:626.685000px;}
.y12_c02066{bottom:657.825000px;}
.y11_c02066{bottom:688.785000px;}
.y10_c02066{bottom:721.185000px;}
.yf_c02066{bottom:752.145000px;}
.ye_c02066{bottom:783.285000px;}
.yd_c02066{bottom:815.730000px;}
.yc_c02066{bottom:846.690000px;}
.yb_c02066{bottom:879.090000px;}
.ya_c02066{bottom:910.050000px;}
.y9_c02066{bottom:941.190000px;}
.y8_c02066{bottom:972.150000px;}
.y7_c02066{bottom:1003.290000px;}
.y6_c02066{bottom:1034.250000px;}
.y5_c02066{bottom:1065.420000px;}
.y1_c02066{bottom:1121.400000px;}
.h3_c02066{height:22.500000px;}
.h2_c02066{height:48.871406px;}
.h1_c02066{height:58.651172px;}
.h4_c02066{height:70.664062px;}
.h5_c02066{height:74.004654px;}
.h0_c02066{height:1188.000000px;}
.w1_c02066{width:66.636000px;}
.w0_c02066{width:918.000000px;}
.x0_c02066{left:0.000000px;}
.x3_c02066{left:16.560000px;}
.x1_c02066{left:127.656000px;}
.x4_c02066{left:218.550000px;}
.x5_c02066{left:245.550000px;}
.x6_c02066{left:272.550000px;}
.x2_c02066{left:820.950000px;}
@media print{
.v1_c02066{vertical-align:-74.240000pt;}
.v0_c02066{vertical-align:0.000000pt;}
.ls2_c02066{letter-spacing:0.000000pt;}
.ls0_c02066{letter-spacing:48.768000pt;}
.ls1_c02066{letter-spacing:307.178667pt;}
.ws0_c02066{word-spacing:-64.000000pt;}
.ws1_c02066{word-spacing:-16.000000pt;}
.ws2_c02066{word-spacing:0.000000pt;}
._c_c02066{margin-left:-1.920000pt;}
._4_c02066{margin-left:-0.896000pt;}
._2_c02066{width:1.024000pt;}
._f_c02066{width:3.392000pt;}
._5_c02066{width:4.608000pt;}
._6_c02066{width:5.568000pt;}
._a_c02066{width:7.744000pt;}
._b_c02066{width:8.768000pt;}
._1_c02066{width:9.920000pt;}
._3_c02066{width:11.008000pt;}
._8_c02066{width:19.200000pt;}
._9_c02066{width:20.480000pt;}
._10_c02066{width:23.104000pt;}
._11_c02066{width:24.256000pt;}
._d_c02066{width:33.088000pt;}
._e_c02066{width:34.250667pt;}
._7_c02066{width:42.496000pt;}
._14_c02066{width:43.456000pt;}
._12_c02066{width:44.480000pt;}
._13_c02066{width:45.770667pt;}
._0_c02066{width:1334.165333pt;}
.fs0_c02066{font-size:53.120000pt;}
.fs1_c02066{font-size:58.880000pt;}
.fs2_c02066{font-size:64.000000pt;}
.y0_c02066{bottom:0.000000pt;}
.y4_c02066{bottom:4.160000pt;}
.y3_c02066{bottom:37.152000pt;}
.y2_c02066{bottom:67.072000pt;}
.y22_c02066{bottom:118.912000pt;}
.y21_c02066{bottom:146.586667pt;}
.y20_c02066{bottom:192.666667pt;}
.y1f_c02066{bottom:220.186667pt;}
.y1e_c02066{bottom:248.866667pt;}
.y1d_c02066{bottom:276.546667pt;}
.y1c_c02066{bottom:304.066667pt;}
.y1b_c02066{bottom:332.866667pt;}
.y1a_c02066{bottom:360.386667pt;}
.y19_c02066{bottom:388.066667pt;}
.y18_c02066{bottom:416.706667pt;}
.y17_c02066{bottom:444.386667pt;}
.y16_c02066{bottom:472.066667pt;}
.y15_c02066{bottom:500.733333pt;}
.y14_c02066{bottom:528.413333pt;}
.y13_c02066{bottom:557.053333pt;}
.y12_c02066{bottom:584.733333pt;}
.y11_c02066{bottom:612.253333pt;}
.y10_c02066{bottom:641.053333pt;}
.yf_c02066{bottom:668.573333pt;}
.ye_c02066{bottom:696.253333pt;}
.yd_c02066{bottom:725.093333pt;}
.yc_c02066{bottom:752.613333pt;}
.yb_c02066{bottom:781.413333pt;}
.ya_c02066{bottom:808.933333pt;}
.y9_c02066{bottom:836.613333pt;}
.y8_c02066{bottom:864.133333pt;}
.y7_c02066{bottom:891.813333pt;}
.y6_c02066{bottom:919.333333pt;}
.y5_c02066{bottom:947.040000pt;}
.y1_c02066{bottom:996.800000pt;}
.h3_c02066{height:20.000000pt;}
.h2_c02066{height:43.441250pt;}
.h1_c02066{height:52.134375pt;}
.h4_c02066{height:62.812500pt;}
.h5_c02066{height:65.781915pt;}
.h0_c02066{height:1056.000000pt;}
.w1_c02066{width:59.232000pt;}
.w0_c02066{width:816.000000pt;}
.x0_c02066{left:0.000000pt;}
.x3_c02066{left:14.720000pt;}
.x1_c02066{left:113.472000pt;}
.x4_c02066{left:194.266667pt;}
.x5_c02066{left:218.266667pt;}
.x6_c02066{left:242.266667pt;}
.x2_c02066{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02067 {
    display:none;
  }
  .loading-indicator_c02067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02067 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02067 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02067" -> "#page-container .classname_c02067")
 */
.pf_c02067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02067 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02067 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02067 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02067 {overflow:visible;}
  }
}
.c_c02067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02067 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02067:after { /* webkit #35443 */
  content: '';
}
.t_c02067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02067 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02067 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02067 { /* info for Javascript */
  display:none;
}
.l_c02067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02067:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02067 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02067.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02067;src:url('chunks/assets/font_d1f86e67ad1c688df4ff7296.woff2')format("woff");}.ff1_c02067{font-family:ff1_c02067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02067;src:url('chunks/assets/font_adef02499f7e6e79b96c6dc1.woff2')format("woff");}.ff2_c02067{font-family:ff2_c02067;line-height:0.863770;font-style:normal;font-weight: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_c02067;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02067{font-family:ff3_c02067;line-height:0.690918;font-style:normal;font-weight: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_c02067;src:url('chunks/assets/font_061cd95c5a5cdd91f8d80d67.woff2')format("woff");}.ff4_c02067{font-family:ff4_c02067;line-height:1.402354;font-style:normal;font-weight: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_c02067;src:url('chunks/assets/font_bcac820aeb3aeccdb2383969.woff2')format("woff");}.ff5_c02067{font-family:ff5_c02067;line-height:0.758789;font-style:normal;font-weight: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_c02067;src:url('chunks/assets/font_15ec15dee6a96a8501e584b9.woff2')format("woff");}.ff6_c02067{font-family:ff6_c02067;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02067{vertical-align:0.000000px;}
.ls3_c02067{letter-spacing:0.000000px;}
.ls1_c02067{letter-spacing:0.072000px;}
.ls2_c02067{letter-spacing:17.424000px;}
.ls0_c02067{letter-spacing:54.864000px;}
.sc__c02067{text-shadow:none;}
.sc0_c02067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02067{-webkit-text-stroke:0px transparent;}
.sc0_c02067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02067{word-spacing:-72.000000px;}
.ws1_c02067{word-spacing:-18.000000px;}
.ws2_c02067{word-spacing:0.000000px;}
._1_c02067{margin-left:-1.152000px;}
._3_c02067{width:1.560000px;}
._2_c02067{width:2.880000px;}
._4_c02067{width:4.608000px;}
._5_c02067{width:19.944000px;}
._0_c02067{width:1500.936000px;}
.fc1_c02067{color:rgb(192,80,77);}
.fc0_c02067{color:rgb(0,0,0);}
.fs0_c02067{font-size:59.760000px;}
.fs1_c02067{font-size:66.240000px;}
.fs2_c02067{font-size:72.000000px;}
.y0_c02067{bottom:0.000000px;}
.y4_c02067{bottom:4.680000px;}
.y3_c02067{bottom:41.796000px;}
.y2_c02067{bottom:75.456000px;}
.y23_c02067{bottom:123.516000px;}
.y22_c02067{bottom:154.470000px;}
.y21_c02067{bottom:185.610000px;}
.y20_c02067{bottom:216.570000px;}
.y1f_c02067{bottom:248.970000px;}
.y1e_c02067{bottom:279.975000px;}
.y1d_c02067{bottom:311.115000px;}
.y1c_c02067{bottom:342.075000px;}
.y1b_c02067{bottom:373.215000px;}
.y1a_c02067{bottom:404.175000px;}
.y19_c02067{bottom:435.315000px;}
.y18_c02067{bottom:466.275000px;}
.y17_c02067{bottom:497.415000px;}
.y16_c02067{bottom:528.375000px;}
.y15_c02067{bottom:559.545000px;}
.y14_c02067{bottom:590.505000px;}
.y13_c02067{bottom:629.385000px;}
.y12_c02067{bottom:660.345000px;}
.y11_c02067{bottom:691.485000px;}
.y10_c02067{bottom:722.445000px;}
.yf_c02067{bottom:753.585000px;}
.ye_c02067{bottom:784.545000px;}
.yd_c02067{bottom:815.730000px;}
.yc_c02067{bottom:846.690000px;}
.yb_c02067{bottom:877.650000px;}
.ya_c02067{bottom:908.790000px;}
.y9_c02067{bottom:941.190000px;}
.y8_c02067{bottom:972.150000px;}
.y7_c02067{bottom:1003.290000px;}
.y6_c02067{bottom:1034.250000px;}
.y5_c02067{bottom:1065.420000px;}
.y1_c02067{bottom:1121.400000px;}
.h3_c02067{height:22.500000px;}
.h2_c02067{height:48.871406px;}
.h1_c02067{height:58.651172px;}
.h4_c02067{height:70.664062px;}
.h5_c02067{height:74.004654px;}
.h0_c02067{height:1188.000000px;}
.w1_c02067{width:66.636000px;}
.w0_c02067{width:918.000000px;}
.x0_c02067{left:0.000000px;}
.x3_c02067{left:16.560000px;}
.x1_c02067{left:127.656000px;}
.x9_c02067{left:180.750000px;}
.x4_c02067{left:218.550000px;}
.x5_c02067{left:245.550000px;}
.x6_c02067{left:272.550000px;}
.x7_c02067{left:299.595000px;}
.x8_c02067{left:326.595000px;}
.x2_c02067{left:820.950000px;}
@media print{
.v0_c02067{vertical-align:0.000000pt;}
.ls3_c02067{letter-spacing:0.000000pt;}
.ls1_c02067{letter-spacing:0.064000pt;}
.ls2_c02067{letter-spacing:15.488000pt;}
.ls0_c02067{letter-spacing:48.768000pt;}
.ws0_c02067{word-spacing:-64.000000pt;}
.ws1_c02067{word-spacing:-16.000000pt;}
.ws2_c02067{word-spacing:0.000000pt;}
._1_c02067{margin-left:-1.024000pt;}
._3_c02067{width:1.386667pt;}
._2_c02067{width:2.560000pt;}
._4_c02067{width:4.096000pt;}
._5_c02067{width:17.728000pt;}
._0_c02067{width:1334.165333pt;}
.fs0_c02067{font-size:53.120000pt;}
.fs1_c02067{font-size:58.880000pt;}
.fs2_c02067{font-size:64.000000pt;}
.y0_c02067{bottom:0.000000pt;}
.y4_c02067{bottom:4.160000pt;}
.y3_c02067{bottom:37.152000pt;}
.y2_c02067{bottom:67.072000pt;}
.y23_c02067{bottom:109.792000pt;}
.y22_c02067{bottom:137.306667pt;}
.y21_c02067{bottom:164.986667pt;}
.y20_c02067{bottom:192.506667pt;}
.y1f_c02067{bottom:221.306667pt;}
.y1e_c02067{bottom:248.866667pt;}
.y1d_c02067{bottom:276.546667pt;}
.y1c_c02067{bottom:304.066667pt;}
.y1b_c02067{bottom:331.746667pt;}
.y1a_c02067{bottom:359.266667pt;}
.y19_c02067{bottom:386.946667pt;}
.y18_c02067{bottom:414.466667pt;}
.y17_c02067{bottom:442.146667pt;}
.y16_c02067{bottom:469.666667pt;}
.y15_c02067{bottom:497.373333pt;}
.y14_c02067{bottom:524.893333pt;}
.y13_c02067{bottom:559.453333pt;}
.y12_c02067{bottom:586.973333pt;}
.y11_c02067{bottom:614.653333pt;}
.y10_c02067{bottom:642.173333pt;}
.yf_c02067{bottom:669.853333pt;}
.ye_c02067{bottom:697.373333pt;}
.yd_c02067{bottom:725.093333pt;}
.yc_c02067{bottom:752.613333pt;}
.yb_c02067{bottom:780.133333pt;}
.ya_c02067{bottom:807.813333pt;}
.y9_c02067{bottom:836.613333pt;}
.y8_c02067{bottom:864.133333pt;}
.y7_c02067{bottom:891.813333pt;}
.y6_c02067{bottom:919.333333pt;}
.y5_c02067{bottom:947.040000pt;}
.y1_c02067{bottom:996.800000pt;}
.h3_c02067{height:20.000000pt;}
.h2_c02067{height:43.441250pt;}
.h1_c02067{height:52.134375pt;}
.h4_c02067{height:62.812500pt;}
.h5_c02067{height:65.781915pt;}
.h0_c02067{height:1056.000000pt;}
.w1_c02067{width:59.232000pt;}
.w0_c02067{width:816.000000pt;}
.x0_c02067{left:0.000000pt;}
.x3_c02067{left:14.720000pt;}
.x1_c02067{left:113.472000pt;}
.x9_c02067{left:160.666667pt;}
.x4_c02067{left:194.266667pt;}
.x5_c02067{left:218.266667pt;}
.x6_c02067{left:242.266667pt;}
.x7_c02067{left:266.306667pt;}
.x8_c02067{left:290.306667pt;}
.x2_c02067{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02068 {
    display:none;
  }
  .loading-indicator_c02068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02068 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02068 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02068" -> "#page-container .classname_c02068")
 */
.pf_c02068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02068 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02068 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02068 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02068 {overflow:visible;}
  }
}
.c_c02068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02068 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02068:after { /* webkit #35443 */
  content: '';
}
.t_c02068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02068 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02068 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02068 { /* info for Javascript */
  display:none;
}
.l_c02068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02068:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02068 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02068.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02068;src:url('chunks/assets/font_28a7c52bcc656ded8cf98946.woff2')format("woff");}.ff1_c02068{font-family:ff1_c02068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02068;src:url('chunks/assets/font_e90a743d00850c5cfaaff3e6.woff2')format("woff");}.ff2_c02068{font-family:ff2_c02068;line-height:0.863770;font-style:normal;font-weight: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_c02068;src:url('chunks/assets/font_a48e22bc364dd4e0bc0c0a01.woff2')format("woff");}.ff3_c02068{font-family:ff3_c02068;line-height:0.758789;font-style:normal;font-weight: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_c02068;src:url('chunks/assets/font_c36320388bb5121740d69361.woff2')format("woff");}.ff4_c02068{font-family:ff4_c02068;line-height:1.402354;font-style:normal;font-weight: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_c02068;src:url('chunks/assets/font_6dfa8ff927cd00b7dee01551.woff2')format("woff");}.ff5_c02068{font-family:ff5_c02068;line-height:1.112305;font-style:normal;font-weight: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_c02068;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff6_c02068{font-family:ff6_c02068;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02068{vertical-align:0.000000px;}
.ls4_c02068{letter-spacing:-0.936000px;}
.ls3_c02068{letter-spacing:0.000000px;}
.ls0_c02068{letter-spacing:0.072000px;}
.ls1_c02068{letter-spacing:17.424000px;}
.ls2_c02068{letter-spacing:54.864000px;}
.sc__c02068{text-shadow:none;}
.sc0_c02068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02068{-webkit-text-stroke:0px transparent;}
.sc0_c02068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02068{word-spacing:-72.000000px;}
.ws0_c02068{word-spacing:-17.064000px;}
.ws2_c02068{word-spacing:0.000000px;}
._4_c02068{margin-left:-1.368000px;}
._1_c02068{width:1.512000px;}
._2_c02068{width:3.600000px;}
._3_c02068{width:4.608000px;}
._7_c02068{width:10.584000px;}
._8_c02068{width:12.240000px;}
._9_c02068{width:19.368000px;}
._a_c02068{width:21.096000px;}
._b_c02068{width:26.424000px;}
._5_c02068{width:45.576000px;}
._6_c02068{width:47.016000px;}
._0_c02068{width:1500.936000px;}
.fc1_c02068{color:rgb(192,80,77);}
.fc0_c02068{color:rgb(0,0,0);}
.fs0_c02068{font-size:59.760000px;}
.fs1_c02068{font-size:66.240000px;}
.fs2_c02068{font-size:72.000000px;}
.y0_c02068{bottom:0.000000px;}
.y4_c02068{bottom:4.680000px;}
.y3_c02068{bottom:41.796000px;}
.y2_c02068{bottom:75.456000px;}
.y21_c02068{bottom:147.996000px;}
.y20_c02068{bottom:179.130000px;}
.y1f_c02068{bottom:210.090000px;}
.y1e_c02068{bottom:241.230000px;}
.y1d_c02068{bottom:279.975000px;}
.y1c_c02068{bottom:311.115000px;}
.y1b_c02068{bottom:342.075000px;}
.y1a_c02068{bottom:373.215000px;}
.y19_c02068{bottom:404.175000px;}
.y18_c02068{bottom:435.315000px;}
.y17_c02068{bottom:466.275000px;}
.y16_c02068{bottom:498.675000px;}
.y15_c02068{bottom:529.635000px;}
.y14_c02068{bottom:568.545000px;}
.y13_c02068{bottom:599.505000px;}
.y12_c02068{bottom:638.385000px;}
.y11_c02068{bottom:669.345000px;}
.y10_c02068{bottom:700.485000px;}
.yf_c02068{bottom:739.365000px;}
.ye_c02068{bottom:770.325000px;}
.yd_c02068{bottom:809.250000px;}
.yc_c02068{bottom:840.210000px;}
.yb_c02068{bottom:879.090000px;}
.ya_c02068{bottom:910.050000px;}
.y9_c02068{bottom:941.190000px;}
.y8_c02068{bottom:972.150000px;}
.y7_c02068{bottom:1003.290000px;}
.y6_c02068{bottom:1034.250000px;}
.y5_c02068{bottom:1065.420000px;}
.y1_c02068{bottom:1121.400000px;}
.h3_c02068{height:22.500000px;}
.h2_c02068{height:48.871406px;}
.h1_c02068{height:58.651172px;}
.h5_c02068{height:70.664062px;}
.h4_c02068{height:74.004654px;}
.h0_c02068{height:1188.000000px;}
.w1_c02068{width:66.636000px;}
.w0_c02068{width:918.000000px;}
.x0_c02068{left:0.000000px;}
.x3_c02068{left:16.560000px;}
.x1_c02068{left:127.656000px;}
.x6_c02068{left:180.750000px;}
.x8_c02068{left:245.550000px;}
.x7_c02068{left:272.550000px;}
.x4_c02068{left:299.595000px;}
.x5_c02068{left:326.595000px;}
.x2_c02068{left:820.950000px;}
@media print{
.v0_c02068{vertical-align:0.000000pt;}
.ls4_c02068{letter-spacing:-0.832000pt;}
.ls3_c02068{letter-spacing:0.000000pt;}
.ls0_c02068{letter-spacing:0.064000pt;}
.ls1_c02068{letter-spacing:15.488000pt;}
.ls2_c02068{letter-spacing:48.768000pt;}
.ws1_c02068{word-spacing:-64.000000pt;}
.ws0_c02068{word-spacing:-15.168000pt;}
.ws2_c02068{word-spacing:0.000000pt;}
._4_c02068{margin-left:-1.216000pt;}
._1_c02068{width:1.344000pt;}
._2_c02068{width:3.200000pt;}
._3_c02068{width:4.096000pt;}
._7_c02068{width:9.408000pt;}
._8_c02068{width:10.880000pt;}
._9_c02068{width:17.216000pt;}
._a_c02068{width:18.752000pt;}
._b_c02068{width:23.488000pt;}
._5_c02068{width:40.512000pt;}
._6_c02068{width:41.792000pt;}
._0_c02068{width:1334.165333pt;}
.fs0_c02068{font-size:53.120000pt;}
.fs1_c02068{font-size:58.880000pt;}
.fs2_c02068{font-size:64.000000pt;}
.y0_c02068{bottom:0.000000pt;}
.y4_c02068{bottom:4.160000pt;}
.y3_c02068{bottom:37.152000pt;}
.y2_c02068{bottom:67.072000pt;}
.y21_c02068{bottom:131.552000pt;}
.y20_c02068{bottom:159.226667pt;}
.y1f_c02068{bottom:186.746667pt;}
.y1e_c02068{bottom:214.426667pt;}
.y1d_c02068{bottom:248.866667pt;}
.y1c_c02068{bottom:276.546667pt;}
.y1b_c02068{bottom:304.066667pt;}
.y1a_c02068{bottom:331.746667pt;}
.y19_c02068{bottom:359.266667pt;}
.y18_c02068{bottom:386.946667pt;}
.y17_c02068{bottom:414.466667pt;}
.y16_c02068{bottom:443.266667pt;}
.y15_c02068{bottom:470.786667pt;}
.y14_c02068{bottom:505.373333pt;}
.y13_c02068{bottom:532.893333pt;}
.y12_c02068{bottom:567.453333pt;}
.y11_c02068{bottom:594.973333pt;}
.y10_c02068{bottom:622.653333pt;}
.yf_c02068{bottom:657.213333pt;}
.ye_c02068{bottom:684.733333pt;}
.yd_c02068{bottom:719.333333pt;}
.yc_c02068{bottom:746.853333pt;}
.yb_c02068{bottom:781.413333pt;}
.ya_c02068{bottom:808.933333pt;}
.y9_c02068{bottom:836.613333pt;}
.y8_c02068{bottom:864.133333pt;}
.y7_c02068{bottom:891.813333pt;}
.y6_c02068{bottom:919.333333pt;}
.y5_c02068{bottom:947.040000pt;}
.y1_c02068{bottom:996.800000pt;}
.h3_c02068{height:20.000000pt;}
.h2_c02068{height:43.441250pt;}
.h1_c02068{height:52.134375pt;}
.h5_c02068{height:62.812500pt;}
.h4_c02068{height:65.781915pt;}
.h0_c02068{height:1056.000000pt;}
.w1_c02068{width:59.232000pt;}
.w0_c02068{width:816.000000pt;}
.x0_c02068{left:0.000000pt;}
.x3_c02068{left:14.720000pt;}
.x1_c02068{left:113.472000pt;}
.x6_c02068{left:160.666667pt;}
.x8_c02068{left:218.266667pt;}
.x7_c02068{left:242.266667pt;}
.x4_c02068{left:266.306667pt;}
.x5_c02068{left:290.306667pt;}
.x2_c02068{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02069 {
    display:none;
  }
  .loading-indicator_c02069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02069 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02069 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02069" -> "#page-container .classname_c02069")
 */
.pf_c02069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02069 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02069 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02069 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02069 {overflow:visible;}
  }
}
.c_c02069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02069 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02069:after { /* webkit #35443 */
  content: '';
}
.t_c02069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02069 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02069 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02069 { /* info for Javascript */
  display:none;
}
.l_c02069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02069:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02069 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02069.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02069;src:url('chunks/assets/font_62370525a4e91caf74fa7665.woff2')format("woff");}.ff1_c02069{font-family:ff1_c02069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02069;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02069{font-family:ff2_c02069;line-height:0.863770;font-style:normal;font-weight: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_c02069;src:url('chunks/assets/font_855fb945638feed82b61bcab.woff2')format("woff");}.ff3_c02069{font-family:ff3_c02069;line-height:0.758789;font-style:normal;font-weight: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_c02069;src:url('chunks/assets/font_afd109f7ca3630ff5e68552b.woff2')format("woff");}.ff4_c02069{font-family:ff4_c02069;line-height:1.402354;font-style:normal;font-weight: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_c02069;src:url('chunks/assets/font_d3cc5a8ce7093db5f8c68be4.woff2')format("woff");}.ff5_c02069{font-family:ff5_c02069;line-height:1.112305;font-style:normal;font-weight: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_c02069;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff6_c02069{font-family:ff6_c02069;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02069{vertical-align:0.000000px;}
.ls3_c02069{letter-spacing:0.000000px;}
.ls0_c02069{letter-spacing:0.072000px;}
.ls1_c02069{letter-spacing:17.424000px;}
.ls2_c02069{letter-spacing:54.864000px;}
.sc__c02069{text-shadow:none;}
.sc0_c02069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02069{-webkit-text-stroke:0px transparent;}
.sc0_c02069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02069{word-spacing:-72.000000px;}
.ws1_c02069{word-spacing:0.000000px;}
._9_c02069{margin-left:-2.016000px;}
._3_c02069{margin-left:-1.008000px;}
._4_c02069{width:1.560000px;}
._5_c02069{width:2.880000px;}
._6_c02069{width:5.040000px;}
._7_c02069{width:6.264000px;}
._1_c02069{width:15.768000px;}
._2_c02069{width:16.776000px;}
._8_c02069{width:19.872000px;}
._a_c02069{width:21.600000px;}
._0_c02069{width:1500.936000px;}
.fc1_c02069{color:rgb(192,80,77);}
.fc0_c02069{color:rgb(0,0,0);}
.fs0_c02069{font-size:59.760000px;}
.fs1_c02069{font-size:66.240000px;}
.fs2_c02069{font-size:72.000000px;}
.y0_c02069{bottom:0.000000px;}
.y4_c02069{bottom:4.680000px;}
.y3_c02069{bottom:41.796000px;}
.y2_c02069{bottom:75.456000px;}
.y23_c02069{bottom:127.296000px;}
.y22_c02069{bottom:158.430000px;}
.y21_c02069{bottom:189.390000px;}
.y20_c02069{bottom:220.530000px;}
.y1f_c02069{bottom:251.490000px;}
.y1e_c02069{bottom:282.675000px;}
.y1d_c02069{bottom:303.555000px;}
.y1c_c02069{bottom:334.335000px;}
.y1b_c02069{bottom:365.475000px;}
.y1a_c02069{bottom:396.435000px;}
.y19_c02069{bottom:427.575000px;}
.y18_c02069{bottom:458.535000px;}
.y17_c02069{bottom:489.495000px;}
.y16_c02069{bottom:520.635000px;}
.y15_c02069{bottom:551.625000px;}
.y14_c02069{bottom:582.765000px;}
.y13_c02069{bottom:613.725000px;}
.y12_c02069{bottom:644.865000px;}
.y11_c02069{bottom:675.825000px;}
.y10_c02069{bottom:706.965000px;}
.yf_c02069{bottom:737.925000px;}
.ye_c02069{bottom:769.065000px;}
.yd_c02069{bottom:800.250000px;}
.yc_c02069{bottom:832.470000px;}
.yb_c02069{bottom:863.430000px;}
.ya_c02069{bottom:894.570000px;}
.y9_c02069{bottom:933.450000px;}
.y8_c02069{bottom:964.410000px;}
.y7_c02069{bottom:1003.290000px;}
.y6_c02069{bottom:1034.250000px;}
.y5_c02069{bottom:1065.420000px;}
.y1_c02069{bottom:1121.400000px;}
.h3_c02069{height:22.500000px;}
.h2_c02069{height:48.871406px;}
.h1_c02069{height:58.651172px;}
.h5_c02069{height:70.664062px;}
.h4_c02069{height:74.004654px;}
.h0_c02069{height:1188.000000px;}
.w1_c02069{width:66.636000px;}
.w0_c02069{width:918.000000px;}
.x0_c02069{left:0.000000px;}
.x3_c02069{left:16.560000px;}
.x1_c02069{left:127.656000px;}
.x6_c02069{left:180.750000px;}
.x9_c02069{left:218.550000px;}
.x8_c02069{left:245.550000px;}
.x7_c02069{left:272.550000px;}
.x4_c02069{left:299.595000px;}
.x5_c02069{left:326.595000px;}
.x2_c02069{left:820.950000px;}
@media print{
.v0_c02069{vertical-align:0.000000pt;}
.ls3_c02069{letter-spacing:0.000000pt;}
.ls0_c02069{letter-spacing:0.064000pt;}
.ls1_c02069{letter-spacing:15.488000pt;}
.ls2_c02069{letter-spacing:48.768000pt;}
.ws0_c02069{word-spacing:-64.000000pt;}
.ws1_c02069{word-spacing:0.000000pt;}
._9_c02069{margin-left:-1.792000pt;}
._3_c02069{margin-left:-0.896000pt;}
._4_c02069{width:1.386667pt;}
._5_c02069{width:2.560000pt;}
._6_c02069{width:4.480000pt;}
._7_c02069{width:5.568000pt;}
._1_c02069{width:14.016000pt;}
._2_c02069{width:14.912000pt;}
._8_c02069{width:17.664000pt;}
._a_c02069{width:19.200000pt;}
._0_c02069{width:1334.165333pt;}
.fs0_c02069{font-size:53.120000pt;}
.fs1_c02069{font-size:58.880000pt;}
.fs2_c02069{font-size:64.000000pt;}
.y0_c02069{bottom:0.000000pt;}
.y4_c02069{bottom:4.160000pt;}
.y3_c02069{bottom:37.152000pt;}
.y2_c02069{bottom:67.072000pt;}
.y23_c02069{bottom:113.152000pt;}
.y22_c02069{bottom:140.826667pt;}
.y21_c02069{bottom:168.346667pt;}
.y20_c02069{bottom:196.026667pt;}
.y1f_c02069{bottom:223.546667pt;}
.y1e_c02069{bottom:251.266667pt;}
.y1d_c02069{bottom:269.826667pt;}
.y1c_c02069{bottom:297.186667pt;}
.y1b_c02069{bottom:324.866667pt;}
.y1a_c02069{bottom:352.386667pt;}
.y19_c02069{bottom:380.066667pt;}
.y18_c02069{bottom:407.586667pt;}
.y17_c02069{bottom:435.106667pt;}
.y16_c02069{bottom:462.786667pt;}
.y15_c02069{bottom:490.333333pt;}
.y14_c02069{bottom:518.013333pt;}
.y13_c02069{bottom:545.533333pt;}
.y12_c02069{bottom:573.213333pt;}
.y11_c02069{bottom:600.733333pt;}
.y10_c02069{bottom:628.413333pt;}
.yf_c02069{bottom:655.933333pt;}
.ye_c02069{bottom:683.613333pt;}
.yd_c02069{bottom:711.333333pt;}
.yc_c02069{bottom:739.973333pt;}
.yb_c02069{bottom:767.493333pt;}
.ya_c02069{bottom:795.173333pt;}
.y9_c02069{bottom:829.733333pt;}
.y8_c02069{bottom:857.253333pt;}
.y7_c02069{bottom:891.813333pt;}
.y6_c02069{bottom:919.333333pt;}
.y5_c02069{bottom:947.040000pt;}
.y1_c02069{bottom:996.800000pt;}
.h3_c02069{height:20.000000pt;}
.h2_c02069{height:43.441250pt;}
.h1_c02069{height:52.134375pt;}
.h5_c02069{height:62.812500pt;}
.h4_c02069{height:65.781915pt;}
.h0_c02069{height:1056.000000pt;}
.w1_c02069{width:59.232000pt;}
.w0_c02069{width:816.000000pt;}
.x0_c02069{left:0.000000pt;}
.x3_c02069{left:14.720000pt;}
.x1_c02069{left:113.472000pt;}
.x6_c02069{left:160.666667pt;}
.x9_c02069{left:194.266667pt;}
.x8_c02069{left:218.266667pt;}
.x7_c02069{left:242.266667pt;}
.x4_c02069{left:266.306667pt;}
.x5_c02069{left:290.306667pt;}
.x2_c02069{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02070 {
    display:none;
  }
  .loading-indicator_c02070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02070 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02070 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02070" -> "#page-container .classname_c02070")
 */
.pf_c02070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02070 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02070 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02070 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02070 {overflow:visible;}
  }
}
.c_c02070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02070 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02070:after { /* webkit #35443 */
  content: '';
}
.t_c02070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02070 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02070 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02070 { /* info for Javascript */
  display:none;
}
.l_c02070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02070:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02070 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02070.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02070;src:url('chunks/assets/font_544115ca7a12bfe9da574a38.woff2')format("woff");}.ff1_c02070{font-family:ff1_c02070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02070;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02070{font-family:ff2_c02070;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02070{vertical-align:0.000000px;}
.ls0_c02070{letter-spacing:0.000000px;}
.sc__c02070{text-shadow:none;}
.sc0_c02070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02070{-webkit-text-stroke:0px transparent;}
.sc0_c02070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02070{word-spacing:0.000000px;}
._2_c02070{margin-left:-2.160000px;}
._4_c02070{margin-left:-1.008000px;}
._3_c02070{width:1.512000px;}
._1_c02070{width:2.736000px;}
._14_c02070{width:3.924000px;}
._9_c02070{width:6.480000px;}
._a_c02070{width:7.632000px;}
._11_c02070{width:8.712000px;}
._15_c02070{width:10.800000px;}
._12_c02070{width:13.032000px;}
._13_c02070{width:14.112000px;}
._6_c02070{width:15.192000px;}
._7_c02070{width:16.200000px;}
._5_c02070{width:21.024000px;}
._d_c02070{width:22.248000px;}
._e_c02070{width:23.256000px;}
._16_c02070{width:24.660000px;}
._8_c02070{width:26.712000px;}
._c_c02070{width:48.564000px;}
._b_c02070{width:49.752000px;}
._f_c02070{width:54.072000px;}
._10_c02070{width:55.368000px;}
._0_c02070{width:1500.936000px;}
.fc1_c02070{color:rgb(192,80,77);}
.fc0_c02070{color:rgb(0,0,0);}
.fs0_c02070{font-size:59.760000px;}
.fs1_c02070{font-size:66.240000px;}
.fs2_c02070{font-size:72.000000px;}
.y0_c02070{bottom:0.000000px;}
.y4_c02070{bottom:4.680000px;}
.y3_c02070{bottom:41.796000px;}
.y2_c02070{bottom:75.456000px;}
.y22_c02070{bottom:164.910000px;}
.y21_c02070{bottom:195.870000px;}
.y20_c02070{bottom:226.830000px;}
.y1f_c02070{bottom:257.970000px;}
.y1e_c02070{bottom:288.975000px;}
.y1d_c02070{bottom:320.115000px;}
.y1c_c02070{bottom:351.075000px;}
.y1b_c02070{bottom:382.215000px;}
.y1a_c02070{bottom:413.175000px;}
.y19_c02070{bottom:444.315000px;}
.y18_c02070{bottom:475.275000px;}
.y17_c02070{bottom:506.415000px;}
.y16_c02070{bottom:537.405000px;}
.y15_c02070{bottom:568.545000px;}
.y14_c02070{bottom:599.505000px;}
.y13_c02070{bottom:630.645000px;}
.y12_c02070{bottom:661.605000px;}
.y11_c02070{bottom:692.745000px;}
.y10_c02070{bottom:723.705000px;}
.yf_c02070{bottom:754.845000px;}
.ye_c02070{bottom:785.805000px;}
.yd_c02070{bottom:816.990000px;}
.yc_c02070{bottom:847.950000px;}
.yb_c02070{bottom:879.090000px;}
.ya_c02070{bottom:910.050000px;}
.y9_c02070{bottom:941.190000px;}
.y8_c02070{bottom:972.150000px;}
.y7_c02070{bottom:1003.290000px;}
.y6_c02070{bottom:1034.250000px;}
.y5_c02070{bottom:1065.420000px;}
.y1_c02070{bottom:1121.400000px;}
.h3_c02070{height:22.500000px;}
.h2_c02070{height:48.871406px;}
.h1_c02070{height:58.651172px;}
.h4_c02070{height:70.664062px;}
.h0_c02070{height:1188.000000px;}
.w1_c02070{width:66.636000px;}
.w0_c02070{width:918.000000px;}
.x0_c02070{left:0.000000px;}
.x3_c02070{left:16.560000px;}
.x1_c02070{left:127.656000px;}
.x5_c02070{left:181.650000px;}
.x4_c02070{left:218.550000px;}
.x2_c02070{left:820.950000px;}
@media print{
.v0_c02070{vertical-align:0.000000pt;}
.ls0_c02070{letter-spacing:0.000000pt;}
.ws0_c02070{word-spacing:0.000000pt;}
._2_c02070{margin-left:-1.920000pt;}
._4_c02070{margin-left:-0.896000pt;}
._3_c02070{width:1.344000pt;}
._1_c02070{width:2.432000pt;}
._14_c02070{width:3.488000pt;}
._9_c02070{width:5.760000pt;}
._a_c02070{width:6.784000pt;}
._11_c02070{width:7.744000pt;}
._15_c02070{width:9.600000pt;}
._12_c02070{width:11.584000pt;}
._13_c02070{width:12.544000pt;}
._6_c02070{width:13.504000pt;}
._7_c02070{width:14.400000pt;}
._5_c02070{width:18.688000pt;}
._d_c02070{width:19.776000pt;}
._e_c02070{width:20.672000pt;}
._16_c02070{width:21.920000pt;}
._8_c02070{width:23.744000pt;}
._c_c02070{width:43.168000pt;}
._b_c02070{width:44.224000pt;}
._f_c02070{width:48.064000pt;}
._10_c02070{width:49.216000pt;}
._0_c02070{width:1334.165333pt;}
.fs0_c02070{font-size:53.120000pt;}
.fs1_c02070{font-size:58.880000pt;}
.fs2_c02070{font-size:64.000000pt;}
.y0_c02070{bottom:0.000000pt;}
.y4_c02070{bottom:4.160000pt;}
.y3_c02070{bottom:37.152000pt;}
.y2_c02070{bottom:67.072000pt;}
.y22_c02070{bottom:146.586667pt;}
.y21_c02070{bottom:174.106667pt;}
.y20_c02070{bottom:201.626667pt;}
.y1f_c02070{bottom:229.306667pt;}
.y1e_c02070{bottom:256.866667pt;}
.y1d_c02070{bottom:284.546667pt;}
.y1c_c02070{bottom:312.066667pt;}
.y1b_c02070{bottom:339.746667pt;}
.y1a_c02070{bottom:367.266667pt;}
.y19_c02070{bottom:394.946667pt;}
.y18_c02070{bottom:422.466667pt;}
.y17_c02070{bottom:450.146667pt;}
.y16_c02070{bottom:477.693333pt;}
.y15_c02070{bottom:505.373333pt;}
.y14_c02070{bottom:532.893333pt;}
.y13_c02070{bottom:560.573333pt;}
.y12_c02070{bottom:588.093333pt;}
.y11_c02070{bottom:615.773333pt;}
.y10_c02070{bottom:643.293333pt;}
.yf_c02070{bottom:670.973333pt;}
.ye_c02070{bottom:698.493333pt;}
.yd_c02070{bottom:726.213333pt;}
.yc_c02070{bottom:753.733333pt;}
.yb_c02070{bottom:781.413333pt;}
.ya_c02070{bottom:808.933333pt;}
.y9_c02070{bottom:836.613333pt;}
.y8_c02070{bottom:864.133333pt;}
.y7_c02070{bottom:891.813333pt;}
.y6_c02070{bottom:919.333333pt;}
.y5_c02070{bottom:947.040000pt;}
.y1_c02070{bottom:996.800000pt;}
.h3_c02070{height:20.000000pt;}
.h2_c02070{height:43.441250pt;}
.h1_c02070{height:52.134375pt;}
.h4_c02070{height:62.812500pt;}
.h0_c02070{height:1056.000000pt;}
.w1_c02070{width:59.232000pt;}
.w0_c02070{width:816.000000pt;}
.x0_c02070{left:0.000000pt;}
.x3_c02070{left:14.720000pt;}
.x1_c02070{left:113.472000pt;}
.x5_c02070{left:161.466667pt;}
.x4_c02070{left:194.266667pt;}
.x2_c02070{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02071 {
    display:none;
  }
  .loading-indicator_c02071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02071 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02071 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02071" -> "#page-container .classname_c02071")
 */
.pf_c02071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02071 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02071 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02071 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02071 {overflow:visible;}
  }
}
.c_c02071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02071 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02071:after { /* webkit #35443 */
  content: '';
}
.t_c02071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02071 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02071 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02071 { /* info for Javascript */
  display:none;
}
.l_c02071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02071:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02071 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02071.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02071;src:url('chunks/assets/font_2802730bc62073424668a48a.woff2')format("woff");}.ff1_c02071{font-family:ff1_c02071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02071;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02071{font-family:ff2_c02071;line-height:0.863770;font-style:normal;font-weight: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_c02071;src:url('chunks/assets/font_82698b697727c336e71af659.woff2')format("woff");}.ff3_c02071{font-family:ff3_c02071;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02071{vertical-align:0.000000px;}
.ls1_c02071{letter-spacing:-0.288000px;}
.ls0_c02071{letter-spacing:0.000000px;}
.sc__c02071{text-shadow:none;}
.sc0_c02071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02071{-webkit-text-stroke:0px transparent;}
.sc0_c02071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02071{word-spacing:-18.000000px;}
.ws1_c02071{word-spacing:0.000000px;}
._3_c02071{margin-left:-1.440000px;}
._4_c02071{width:1.008000px;}
._5_c02071{width:2.592000px;}
._6_c02071{width:3.672000px;}
._c_c02071{width:5.616000px;}
._b_c02071{width:6.768000px;}
._11_c02071{width:7.776000px;}
._f_c02071{width:12.456000px;}
._a_c02071{width:13.536000px;}
._8_c02071{width:15.192000px;}
._9_c02071{width:16.272000px;}
._1_c02071{width:19.368000px;}
._2_c02071{width:21.096000px;}
._10_c02071{width:23.544000px;}
._7_c02071{width:25.704000px;}
._d_c02071{width:27.216000px;}
._e_c02071{width:38.016000px;}
._0_c02071{width:1500.936000px;}
.fc1_c02071{color:rgb(192,80,77);}
.fc0_c02071{color:rgb(0,0,0);}
.fs0_c02071{font-size:59.760000px;}
.fs1_c02071{font-size:66.240000px;}
.fs2_c02071{font-size:72.000000px;}
.y0_c02071{bottom:0.000000px;}
.y4_c02071{bottom:4.680000px;}
.y3_c02071{bottom:41.796000px;}
.y2_c02071{bottom:75.456000px;}
.y23_c02071{bottom:133.776000px;}
.y22_c02071{bottom:164.910000px;}
.y21_c02071{bottom:195.870000px;}
.y20_c02071{bottom:226.830000px;}
.y1f_c02071{bottom:257.970000px;}
.y1e_c02071{bottom:288.975000px;}
.y1d_c02071{bottom:320.115000px;}
.y1c_c02071{bottom:351.075000px;}
.y1b_c02071{bottom:382.215000px;}
.y1a_c02071{bottom:413.175000px;}
.y19_c02071{bottom:444.315000px;}
.y18_c02071{bottom:475.275000px;}
.y17_c02071{bottom:506.415000px;}
.y16_c02071{bottom:537.405000px;}
.y15_c02071{bottom:568.545000px;}
.y14_c02071{bottom:599.505000px;}
.y13_c02071{bottom:630.645000px;}
.y12_c02071{bottom:661.605000px;}
.y11_c02071{bottom:692.745000px;}
.y10_c02071{bottom:723.705000px;}
.yf_c02071{bottom:754.845000px;}
.ye_c02071{bottom:785.805000px;}
.yd_c02071{bottom:816.990000px;}
.yc_c02071{bottom:847.950000px;}
.yb_c02071{bottom:879.090000px;}
.ya_c02071{bottom:910.050000px;}
.y9_c02071{bottom:941.190000px;}
.y8_c02071{bottom:972.150000px;}
.y7_c02071{bottom:1003.290000px;}
.y6_c02071{bottom:1034.250000px;}
.y5_c02071{bottom:1065.420000px;}
.y1_c02071{bottom:1121.400000px;}
.h3_c02071{height:22.500000px;}
.h2_c02071{height:48.871406px;}
.h1_c02071{height:58.651172px;}
.h5_c02071{height:64.546875px;}
.h4_c02071{height:70.664062px;}
.h0_c02071{height:1188.000000px;}
.w1_c02071{width:66.636000px;}
.w0_c02071{width:918.000000px;}
.x0_c02071{left:0.000000px;}
.x3_c02071{left:16.560000px;}
.x1_c02071{left:127.656000px;}
.x4_c02071{left:181.650000px;}
.x2_c02071{left:820.950000px;}
@media print{
.v0_c02071{vertical-align:0.000000pt;}
.ls1_c02071{letter-spacing:-0.256000pt;}
.ls0_c02071{letter-spacing:0.000000pt;}
.ws0_c02071{word-spacing:-16.000000pt;}
.ws1_c02071{word-spacing:0.000000pt;}
._3_c02071{margin-left:-1.280000pt;}
._4_c02071{width:0.896000pt;}
._5_c02071{width:2.304000pt;}
._6_c02071{width:3.264000pt;}
._c_c02071{width:4.992000pt;}
._b_c02071{width:6.016000pt;}
._11_c02071{width:6.912000pt;}
._f_c02071{width:11.072000pt;}
._a_c02071{width:12.032000pt;}
._8_c02071{width:13.504000pt;}
._9_c02071{width:14.464000pt;}
._1_c02071{width:17.216000pt;}
._2_c02071{width:18.752000pt;}
._10_c02071{width:20.928000pt;}
._7_c02071{width:22.848000pt;}
._d_c02071{width:24.192000pt;}
._e_c02071{width:33.792000pt;}
._0_c02071{width:1334.165333pt;}
.fs0_c02071{font-size:53.120000pt;}
.fs1_c02071{font-size:58.880000pt;}
.fs2_c02071{font-size:64.000000pt;}
.y0_c02071{bottom:0.000000pt;}
.y4_c02071{bottom:4.160000pt;}
.y3_c02071{bottom:37.152000pt;}
.y2_c02071{bottom:67.072000pt;}
.y23_c02071{bottom:118.912000pt;}
.y22_c02071{bottom:146.586667pt;}
.y21_c02071{bottom:174.106667pt;}
.y20_c02071{bottom:201.626667pt;}
.y1f_c02071{bottom:229.306667pt;}
.y1e_c02071{bottom:256.866667pt;}
.y1d_c02071{bottom:284.546667pt;}
.y1c_c02071{bottom:312.066667pt;}
.y1b_c02071{bottom:339.746667pt;}
.y1a_c02071{bottom:367.266667pt;}
.y19_c02071{bottom:394.946667pt;}
.y18_c02071{bottom:422.466667pt;}
.y17_c02071{bottom:450.146667pt;}
.y16_c02071{bottom:477.693333pt;}
.y15_c02071{bottom:505.373333pt;}
.y14_c02071{bottom:532.893333pt;}
.y13_c02071{bottom:560.573333pt;}
.y12_c02071{bottom:588.093333pt;}
.y11_c02071{bottom:615.773333pt;}
.y10_c02071{bottom:643.293333pt;}
.yf_c02071{bottom:670.973333pt;}
.ye_c02071{bottom:698.493333pt;}
.yd_c02071{bottom:726.213333pt;}
.yc_c02071{bottom:753.733333pt;}
.yb_c02071{bottom:781.413333pt;}
.ya_c02071{bottom:808.933333pt;}
.y9_c02071{bottom:836.613333pt;}
.y8_c02071{bottom:864.133333pt;}
.y7_c02071{bottom:891.813333pt;}
.y6_c02071{bottom:919.333333pt;}
.y5_c02071{bottom:947.040000pt;}
.y1_c02071{bottom:996.800000pt;}
.h3_c02071{height:20.000000pt;}
.h2_c02071{height:43.441250pt;}
.h1_c02071{height:52.134375pt;}
.h5_c02071{height:57.375000pt;}
.h4_c02071{height:62.812500pt;}
.h0_c02071{height:1056.000000pt;}
.w1_c02071{width:59.232000pt;}
.w0_c02071{width:816.000000pt;}
.x0_c02071{left:0.000000pt;}
.x3_c02071{left:14.720000pt;}
.x1_c02071{left:113.472000pt;}
.x4_c02071{left:161.466667pt;}
.x2_c02071{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02072 {
    display:none;
  }
  .loading-indicator_c02072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02072 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02072 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02072" -> "#page-container .classname_c02072")
 */
.pf_c02072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02072 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02072 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02072 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02072 {overflow:visible;}
  }
}
.c_c02072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02072 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02072:after { /* webkit #35443 */
  content: '';
}
.t_c02072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02072 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02072 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02072 { /* info for Javascript */
  display:none;
}
.l_c02072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02072:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02072 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02072.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02072;src:url('chunks/assets/font_855c8dfaa5403d8c2d5ceeaf.woff2')format("woff");}.ff1_c02072{font-family:ff1_c02072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02072;src:url('chunks/assets/font_8935978c482cdcf1448a149d.woff2')format("woff");}.ff2_c02072{font-family:ff2_c02072;line-height:0.863770;font-style:normal;font-weight: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_c02072;src:url('chunks/assets/font_38625ad5893df66d7ce7bad6.woff2')format("woff");}.ff3_c02072{font-family:ff3_c02072;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02072{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02072{vertical-align:0.000000px;}
.ls0_c02072{letter-spacing:0.000000px;}
.sc__c02072{text-shadow:none;}
.sc0_c02072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02072{-webkit-text-stroke:0px transparent;}
.sc0_c02072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02072{word-spacing:0.000000px;}
._b_c02072{margin-left:-2.088000px;}
._1_c02072{margin-left:-1.008000px;}
._2_c02072{width:1.440000px;}
._d_c02072{width:3.096000px;}
._8_c02072{width:4.392000px;}
._3_c02072{width:5.616000px;}
._12_c02072{width:7.056000px;}
._13_c02072{width:9.000000px;}
._9_c02072{width:10.440000px;}
._a_c02072{width:11.664000px;}
._14_c02072{width:13.248000px;}
._15_c02072{width:14.400000px;}
._c_c02072{width:15.768000px;}
._6_c02072{width:19.584000px;}
._7_c02072{width:21.384000px;}
._10_c02072{width:24.552000px;}
._11_c02072{width:25.632000px;}
._e_c02072{width:36.432000px;}
._f_c02072{width:37.872000px;}
._4_c02072{width:41.760000px;}
._5_c02072{width:42.768000px;}
._0_c02072{width:1500.936000px;}
.fc1_c02072{color:rgb(192,80,77);}
.fc0_c02072{color:rgb(0,0,0);}
.fs0_c02072{font-size:59.760000px;}
.fs1_c02072{font-size:66.240000px;}
.fs2_c02072{font-size:72.000000px;}
.y0_c02072{bottom:0.000000px;}
.y4_c02072{bottom:4.680000px;}
.y3_c02072{bottom:41.796000px;}
.y2_c02072{bottom:75.456000px;}
.y23_c02072{bottom:133.776000px;}
.y22_c02072{bottom:164.910000px;}
.y21_c02072{bottom:195.870000px;}
.y20_c02072{bottom:226.830000px;}
.y1f_c02072{bottom:257.970000px;}
.y1e_c02072{bottom:288.975000px;}
.y1d_c02072{bottom:320.115000px;}
.y1c_c02072{bottom:351.075000px;}
.y1b_c02072{bottom:382.215000px;}
.y1a_c02072{bottom:413.175000px;}
.y19_c02072{bottom:444.315000px;}
.y18_c02072{bottom:475.275000px;}
.y17_c02072{bottom:506.415000px;}
.y16_c02072{bottom:537.405000px;}
.y15_c02072{bottom:568.545000px;}
.y14_c02072{bottom:599.505000px;}
.y13_c02072{bottom:630.645000px;}
.y12_c02072{bottom:661.605000px;}
.y11_c02072{bottom:692.745000px;}
.y10_c02072{bottom:723.705000px;}
.yf_c02072{bottom:754.845000px;}
.ye_c02072{bottom:785.805000px;}
.yd_c02072{bottom:816.990000px;}
.yc_c02072{bottom:847.950000px;}
.yb_c02072{bottom:879.090000px;}
.ya_c02072{bottom:910.050000px;}
.y9_c02072{bottom:941.190000px;}
.y8_c02072{bottom:972.150000px;}
.y7_c02072{bottom:1003.290000px;}
.y6_c02072{bottom:1034.250000px;}
.y5_c02072{bottom:1065.420000px;}
.y1_c02072{bottom:1121.400000px;}
.h3_c02072{height:22.500000px;}
.h2_c02072{height:48.871406px;}
.h1_c02072{height:58.651172px;}
.h5_c02072{height:64.546875px;}
.h4_c02072{height:70.664062px;}
.h0_c02072{height:1188.000000px;}
.w1_c02072{width:66.636000px;}
.w0_c02072{width:918.000000px;}
.x0_c02072{left:0.000000px;}
.x3_c02072{left:16.560000px;}
.x1_c02072{left:127.656000px;}
.x4_c02072{left:181.650000px;}
.x2_c02072{left:820.950000px;}
@media print{
.v0_c02072{vertical-align:0.000000pt;}
.ls0_c02072{letter-spacing:0.000000pt;}
.ws0_c02072{word-spacing:0.000000pt;}
._b_c02072{margin-left:-1.856000pt;}
._1_c02072{margin-left:-0.896000pt;}
._2_c02072{width:1.280000pt;}
._d_c02072{width:2.752000pt;}
._8_c02072{width:3.904000pt;}
._3_c02072{width:4.992000pt;}
._12_c02072{width:6.272000pt;}
._13_c02072{width:8.000000pt;}
._9_c02072{width:9.280000pt;}
._a_c02072{width:10.368000pt;}
._14_c02072{width:11.776000pt;}
._15_c02072{width:12.800000pt;}
._c_c02072{width:14.016000pt;}
._6_c02072{width:17.408000pt;}
._7_c02072{width:19.008000pt;}
._10_c02072{width:21.824000pt;}
._11_c02072{width:22.784000pt;}
._e_c02072{width:32.384000pt;}
._f_c02072{width:33.664000pt;}
._4_c02072{width:37.120000pt;}
._5_c02072{width:38.016000pt;}
._0_c02072{width:1334.165333pt;}
.fs0_c02072{font-size:53.120000pt;}
.fs1_c02072{font-size:58.880000pt;}
.fs2_c02072{font-size:64.000000pt;}
.y0_c02072{bottom:0.000000pt;}
.y4_c02072{bottom:4.160000pt;}
.y3_c02072{bottom:37.152000pt;}
.y2_c02072{bottom:67.072000pt;}
.y23_c02072{bottom:118.912000pt;}
.y22_c02072{bottom:146.586667pt;}
.y21_c02072{bottom:174.106667pt;}
.y20_c02072{bottom:201.626667pt;}
.y1f_c02072{bottom:229.306667pt;}
.y1e_c02072{bottom:256.866667pt;}
.y1d_c02072{bottom:284.546667pt;}
.y1c_c02072{bottom:312.066667pt;}
.y1b_c02072{bottom:339.746667pt;}
.y1a_c02072{bottom:367.266667pt;}
.y19_c02072{bottom:394.946667pt;}
.y18_c02072{bottom:422.466667pt;}
.y17_c02072{bottom:450.146667pt;}
.y16_c02072{bottom:477.693333pt;}
.y15_c02072{bottom:505.373333pt;}
.y14_c02072{bottom:532.893333pt;}
.y13_c02072{bottom:560.573333pt;}
.y12_c02072{bottom:588.093333pt;}
.y11_c02072{bottom:615.773333pt;}
.y10_c02072{bottom:643.293333pt;}
.yf_c02072{bottom:670.973333pt;}
.ye_c02072{bottom:698.493333pt;}
.yd_c02072{bottom:726.213333pt;}
.yc_c02072{bottom:753.733333pt;}
.yb_c02072{bottom:781.413333pt;}
.ya_c02072{bottom:808.933333pt;}
.y9_c02072{bottom:836.613333pt;}
.y8_c02072{bottom:864.133333pt;}
.y7_c02072{bottom:891.813333pt;}
.y6_c02072{bottom:919.333333pt;}
.y5_c02072{bottom:947.040000pt;}
.y1_c02072{bottom:996.800000pt;}
.h3_c02072{height:20.000000pt;}
.h2_c02072{height:43.441250pt;}
.h1_c02072{height:52.134375pt;}
.h5_c02072{height:57.375000pt;}
.h4_c02072{height:62.812500pt;}
.h0_c02072{height:1056.000000pt;}
.w1_c02072{width:59.232000pt;}
.w0_c02072{width:816.000000pt;}
.x0_c02072{left:0.000000pt;}
.x3_c02072{left:14.720000pt;}
.x1_c02072{left:113.472000pt;}
.x4_c02072{left:161.466667pt;}
.x2_c02072{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02073 {
    display:none;
  }
  .loading-indicator_c02073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02073 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02073 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02073" -> "#page-container .classname_c02073")
 */
.pf_c02073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02073 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02073 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02073 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02073 {overflow:visible;}
  }
}
.c_c02073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02073 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02073:after { /* webkit #35443 */
  content: '';
}
.t_c02073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02073 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02073 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02073 { /* info for Javascript */
  display:none;
}
.l_c02073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02073:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02073 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02073.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02073;src:url('chunks/assets/font_166a2bbf7753b7cb47140777.woff2')format("woff");}.ff1_c02073{font-family:ff1_c02073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02073;src:url('chunks/assets/font_7128aa88dcad003d26651e7c.woff2')format("woff");}.ff2_c02073{font-family:ff2_c02073;line-height:0.863770;font-style:normal;font-weight: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_c02073;src:url('chunks/assets/font_7970868bcadc9c2e5a3e205d.woff2')format("woff");}.ff3_c02073{font-family:ff3_c02073;line-height:1.112305;font-style:normal;font-weight: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_c02073;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02073{font-family:ff4_c02073;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02073{vertical-align:0.000000px;}
.ls4_c02073{letter-spacing:-1.440000px;}
.ls3_c02073{letter-spacing:-0.288000px;}
.ls2_c02073{letter-spacing:0.000000px;}
.ls1_c02073{letter-spacing:5.040000px;}
.ls0_c02073{letter-spacing:9.360000px;}
.sc__c02073{text-shadow:none;}
.sc0_c02073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02073{-webkit-text-stroke:0px transparent;}
.sc0_c02073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02073{word-spacing:0.000000px;}
._a_c02073{margin-left:-2.160000px;}
._2_c02073{margin-left:-1.152000px;}
._4_c02073{width:1.296000px;}
._b_c02073{width:2.556000px;}
._3_c02073{width:3.852000px;}
._1_c02073{width:4.968000px;}
._5_c02073{width:6.276000px;}
._14_c02073{width:7.908000px;}
._6_c02073{width:9.144000px;}
._7_c02073{width:10.152000px;}
._16_c02073{width:13.464000px;}
._17_c02073{width:14.760000px;}
._15_c02073{width:16.200000px;}
._c_c02073{width:23.256000px;}
._d_c02073{width:24.408000px;}
._e_c02073{width:25.560000px;}
._12_c02073{width:27.360000px;}
._11_c02073{width:28.440000px;}
._f_c02073{width:34.488000px;}
._10_c02073{width:35.640000px;}
._18_c02073{width:39.816000px;}
._19_c02073{width:41.184000px;}
._13_c02073{width:47.736000px;}
._8_c02073{width:49.176000px;}
._9_c02073{width:50.184000px;}
._0_c02073{width:1500.936000px;}
.fc1_c02073{color:rgb(192,80,77);}
.fc0_c02073{color:rgb(0,0,0);}
.fs0_c02073{font-size:59.760000px;}
.fs1_c02073{font-size:66.240000px;}
.fs2_c02073{font-size:72.000000px;}
.y0_c02073{bottom:0.000000px;}
.y4_c02073{bottom:4.680000px;}
.y3_c02073{bottom:41.796000px;}
.y2_c02073{bottom:75.456000px;}
.y23_c02073{bottom:133.776000px;}
.y22_c02073{bottom:164.910000px;}
.y21_c02073{bottom:195.870000px;}
.y20_c02073{bottom:226.830000px;}
.y1f_c02073{bottom:257.970000px;}
.y1e_c02073{bottom:288.975000px;}
.y1d_c02073{bottom:320.115000px;}
.y1c_c02073{bottom:351.075000px;}
.y1b_c02073{bottom:382.215000px;}
.y1a_c02073{bottom:413.175000px;}
.y19_c02073{bottom:444.315000px;}
.y18_c02073{bottom:475.275000px;}
.y17_c02073{bottom:506.415000px;}
.y16_c02073{bottom:537.405000px;}
.y15_c02073{bottom:568.545000px;}
.y14_c02073{bottom:599.505000px;}
.y13_c02073{bottom:630.645000px;}
.y12_c02073{bottom:661.245000px;}
.y11_c02073{bottom:692.745000px;}
.y10_c02073{bottom:723.705000px;}
.yf_c02073{bottom:754.845000px;}
.ye_c02073{bottom:785.805000px;}
.yd_c02073{bottom:816.990000px;}
.yc_c02073{bottom:847.950000px;}
.yb_c02073{bottom:879.090000px;}
.ya_c02073{bottom:910.050000px;}
.y9_c02073{bottom:941.190000px;}
.y8_c02073{bottom:972.150000px;}
.y7_c02073{bottom:1003.290000px;}
.y6_c02073{bottom:1034.250000px;}
.y5_c02073{bottom:1065.420000px;}
.y1_c02073{bottom:1121.400000px;}
.h3_c02073{height:22.500000px;}
.h2_c02073{height:48.871406px;}
.h1_c02073{height:58.651172px;}
.h6_c02073{height:64.546875px;}
.h4_c02073{height:70.664062px;}
.h5_c02073{height:72.562500px;}
.h0_c02073{height:1188.000000px;}
.w1_c02073{width:66.636000px;}
.w0_c02073{width:918.000000px;}
.x0_c02073{left:0.000000px;}
.x3_c02073{left:16.560000px;}
.x1_c02073{left:127.656000px;}
.x4_c02073{left:181.650000px;}
.x2_c02073{left:820.950000px;}
@media print{
.v0_c02073{vertical-align:0.000000pt;}
.ls4_c02073{letter-spacing:-1.280000pt;}
.ls3_c02073{letter-spacing:-0.256000pt;}
.ls2_c02073{letter-spacing:0.000000pt;}
.ls1_c02073{letter-spacing:4.480000pt;}
.ls0_c02073{letter-spacing:8.320000pt;}
.ws0_c02073{word-spacing:0.000000pt;}
._a_c02073{margin-left:-1.920000pt;}
._2_c02073{margin-left:-1.024000pt;}
._4_c02073{width:1.152000pt;}
._b_c02073{width:2.272000pt;}
._3_c02073{width:3.424000pt;}
._1_c02073{width:4.416000pt;}
._5_c02073{width:5.578667pt;}
._14_c02073{width:7.029333pt;}
._6_c02073{width:8.128000pt;}
._7_c02073{width:9.024000pt;}
._16_c02073{width:11.968000pt;}
._17_c02073{width:13.120000pt;}
._15_c02073{width:14.400000pt;}
._c_c02073{width:20.672000pt;}
._d_c02073{width:21.696000pt;}
._e_c02073{width:22.720000pt;}
._12_c02073{width:24.320000pt;}
._11_c02073{width:25.280000pt;}
._f_c02073{width:30.656000pt;}
._10_c02073{width:31.680000pt;}
._18_c02073{width:35.392000pt;}
._19_c02073{width:36.608000pt;}
._13_c02073{width:42.432000pt;}
._8_c02073{width:43.712000pt;}
._9_c02073{width:44.608000pt;}
._0_c02073{width:1334.165333pt;}
.fs0_c02073{font-size:53.120000pt;}
.fs1_c02073{font-size:58.880000pt;}
.fs2_c02073{font-size:64.000000pt;}
.y0_c02073{bottom:0.000000pt;}
.y4_c02073{bottom:4.160000pt;}
.y3_c02073{bottom:37.152000pt;}
.y2_c02073{bottom:67.072000pt;}
.y23_c02073{bottom:118.912000pt;}
.y22_c02073{bottom:146.586667pt;}
.y21_c02073{bottom:174.106667pt;}
.y20_c02073{bottom:201.626667pt;}
.y1f_c02073{bottom:229.306667pt;}
.y1e_c02073{bottom:256.866667pt;}
.y1d_c02073{bottom:284.546667pt;}
.y1c_c02073{bottom:312.066667pt;}
.y1b_c02073{bottom:339.746667pt;}
.y1a_c02073{bottom:367.266667pt;}
.y19_c02073{bottom:394.946667pt;}
.y18_c02073{bottom:422.466667pt;}
.y17_c02073{bottom:450.146667pt;}
.y16_c02073{bottom:477.693333pt;}
.y15_c02073{bottom:505.373333pt;}
.y14_c02073{bottom:532.893333pt;}
.y13_c02073{bottom:560.573333pt;}
.y12_c02073{bottom:587.773333pt;}
.y11_c02073{bottom:615.773333pt;}
.y10_c02073{bottom:643.293333pt;}
.yf_c02073{bottom:670.973333pt;}
.ye_c02073{bottom:698.493333pt;}
.yd_c02073{bottom:726.213333pt;}
.yc_c02073{bottom:753.733333pt;}
.yb_c02073{bottom:781.413333pt;}
.ya_c02073{bottom:808.933333pt;}
.y9_c02073{bottom:836.613333pt;}
.y8_c02073{bottom:864.133333pt;}
.y7_c02073{bottom:891.813333pt;}
.y6_c02073{bottom:919.333333pt;}
.y5_c02073{bottom:947.040000pt;}
.y1_c02073{bottom:996.800000pt;}
.h3_c02073{height:20.000000pt;}
.h2_c02073{height:43.441250pt;}
.h1_c02073{height:52.134375pt;}
.h6_c02073{height:57.375000pt;}
.h4_c02073{height:62.812500pt;}
.h5_c02073{height:64.500000pt;}
.h0_c02073{height:1056.000000pt;}
.w1_c02073{width:59.232000pt;}
.w0_c02073{width:816.000000pt;}
.x0_c02073{left:0.000000pt;}
.x3_c02073{left:14.720000pt;}
.x1_c02073{left:113.472000pt;}
.x4_c02073{left:161.466667pt;}
.x2_c02073{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02074 {
    display:none;
  }
  .loading-indicator_c02074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02074 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02074 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02074" -> "#page-container .classname_c02074")
 */
.pf_c02074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02074 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02074 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02074 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02074 {overflow:visible;}
  }
}
.c_c02074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02074 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02074:after { /* webkit #35443 */
  content: '';
}
.t_c02074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02074 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02074 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02074 { /* info for Javascript */
  display:none;
}
.l_c02074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02074:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02074 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02074.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02074;src:url('chunks/assets/font_7fb6c00141155f3379740a87.woff2')format("woff");}.ff1_c02074{font-family:ff1_c02074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02074;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02074{font-family:ff2_c02074;line-height:0.863770;font-style:normal;font-weight: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_c02074;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02074{font-family:ff3_c02074;line-height:1.311035;font-style:normal;font-weight: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_c02074;src:url('chunks/assets/font_032c1a9927b719d57fc72c7a.woff2')format("woff");}.ff4_c02074{font-family:ff4_c02074;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02074{vertical-align:0.000000px;}
.ls0_c02074{letter-spacing:0.000000px;}
.sc__c02074{text-shadow:none;}
.sc0_c02074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02074{-webkit-text-stroke:0px transparent;}
.sc0_c02074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02074{word-spacing:0.000000px;}
._9_c02074{margin-left:-1.080000px;}
._5_c02074{width:1.152000px;}
._3_c02074{width:3.384000px;}
._4_c02074{width:4.536000px;}
._d_c02074{width:5.976000px;}
._e_c02074{width:7.200000px;}
._6_c02074{width:8.640000px;}
._7_c02074{width:9.648000px;}
._a_c02074{width:11.304000px;}
._c_c02074{width:12.960000px;}
._b_c02074{width:14.400000px;}
._1_c02074{width:15.480000px;}
._2_c02074{width:16.716000px;}
._8_c02074{width:24.552000px;}
._f_c02074{width:29.160000px;}
._10_c02074{width:30.168000px;}
._0_c02074{width:1500.936000px;}
.fc1_c02074{color:rgb(192,80,77);}
.fc0_c02074{color:rgb(0,0,0);}
.fs0_c02074{font-size:59.760000px;}
.fs1_c02074{font-size:66.240000px;}
.fs2_c02074{font-size:72.000000px;}
.y0_c02074{bottom:0.000000px;}
.y4_c02074{bottom:4.680000px;}
.y3_c02074{bottom:41.796000px;}
.y2_c02074{bottom:75.456000px;}
.y22_c02074{bottom:164.910000px;}
.y21_c02074{bottom:195.870000px;}
.y20_c02074{bottom:226.830000px;}
.y1f_c02074{bottom:257.970000px;}
.y1e_c02074{bottom:288.975000px;}
.y1d_c02074{bottom:320.115000px;}
.y1c_c02074{bottom:351.075000px;}
.y1b_c02074{bottom:382.215000px;}
.y1a_c02074{bottom:413.175000px;}
.y19_c02074{bottom:444.315000px;}
.y18_c02074{bottom:475.275000px;}
.y17_c02074{bottom:506.415000px;}
.y16_c02074{bottom:537.405000px;}
.y15_c02074{bottom:568.545000px;}
.y14_c02074{bottom:599.505000px;}
.y13_c02074{bottom:630.645000px;}
.y12_c02074{bottom:661.605000px;}
.y11_c02074{bottom:692.745000px;}
.y10_c02074{bottom:723.705000px;}
.yf_c02074{bottom:754.845000px;}
.ye_c02074{bottom:785.805000px;}
.yd_c02074{bottom:816.990000px;}
.yc_c02074{bottom:847.950000px;}
.yb_c02074{bottom:879.090000px;}
.ya_c02074{bottom:910.050000px;}
.y9_c02074{bottom:941.190000px;}
.y8_c02074{bottom:972.150000px;}
.y7_c02074{bottom:1003.290000px;}
.y6_c02074{bottom:1034.250000px;}
.y5_c02074{bottom:1065.420000px;}
.y1_c02074{bottom:1121.400000px;}
.h3_c02074{height:22.500000px;}
.h2_c02074{height:48.871406px;}
.h1_c02074{height:58.651172px;}
.h6_c02074{height:64.546875px;}
.h4_c02074{height:70.664062px;}
.h5_c02074{height:72.562500px;}
.h0_c02074{height:1188.000000px;}
.w1_c02074{width:66.636000px;}
.w0_c02074{width:918.000000px;}
.x0_c02074{left:0.000000px;}
.x3_c02074{left:16.560000px;}
.x1_c02074{left:127.656000px;}
.x4_c02074{left:181.650000px;}
.x2_c02074{left:820.950000px;}
@media print{
.v0_c02074{vertical-align:0.000000pt;}
.ls0_c02074{letter-spacing:0.000000pt;}
.ws0_c02074{word-spacing:0.000000pt;}
._9_c02074{margin-left:-0.960000pt;}
._5_c02074{width:1.024000pt;}
._3_c02074{width:3.008000pt;}
._4_c02074{width:4.032000pt;}
._d_c02074{width:5.312000pt;}
._e_c02074{width:6.400000pt;}
._6_c02074{width:7.680000pt;}
._7_c02074{width:8.576000pt;}
._a_c02074{width:10.048000pt;}
._c_c02074{width:11.520000pt;}
._b_c02074{width:12.800000pt;}
._1_c02074{width:13.760000pt;}
._2_c02074{width:14.858667pt;}
._8_c02074{width:21.824000pt;}
._f_c02074{width:25.920000pt;}
._10_c02074{width:26.816000pt;}
._0_c02074{width:1334.165333pt;}
.fs0_c02074{font-size:53.120000pt;}
.fs1_c02074{font-size:58.880000pt;}
.fs2_c02074{font-size:64.000000pt;}
.y0_c02074{bottom:0.000000pt;}
.y4_c02074{bottom:4.160000pt;}
.y3_c02074{bottom:37.152000pt;}
.y2_c02074{bottom:67.072000pt;}
.y22_c02074{bottom:146.586667pt;}
.y21_c02074{bottom:174.106667pt;}
.y20_c02074{bottom:201.626667pt;}
.y1f_c02074{bottom:229.306667pt;}
.y1e_c02074{bottom:256.866667pt;}
.y1d_c02074{bottom:284.546667pt;}
.y1c_c02074{bottom:312.066667pt;}
.y1b_c02074{bottom:339.746667pt;}
.y1a_c02074{bottom:367.266667pt;}
.y19_c02074{bottom:394.946667pt;}
.y18_c02074{bottom:422.466667pt;}
.y17_c02074{bottom:450.146667pt;}
.y16_c02074{bottom:477.693333pt;}
.y15_c02074{bottom:505.373333pt;}
.y14_c02074{bottom:532.893333pt;}
.y13_c02074{bottom:560.573333pt;}
.y12_c02074{bottom:588.093333pt;}
.y11_c02074{bottom:615.773333pt;}
.y10_c02074{bottom:643.293333pt;}
.yf_c02074{bottom:670.973333pt;}
.ye_c02074{bottom:698.493333pt;}
.yd_c02074{bottom:726.213333pt;}
.yc_c02074{bottom:753.733333pt;}
.yb_c02074{bottom:781.413333pt;}
.ya_c02074{bottom:808.933333pt;}
.y9_c02074{bottom:836.613333pt;}
.y8_c02074{bottom:864.133333pt;}
.y7_c02074{bottom:891.813333pt;}
.y6_c02074{bottom:919.333333pt;}
.y5_c02074{bottom:947.040000pt;}
.y1_c02074{bottom:996.800000pt;}
.h3_c02074{height:20.000000pt;}
.h2_c02074{height:43.441250pt;}
.h1_c02074{height:52.134375pt;}
.h6_c02074{height:57.375000pt;}
.h4_c02074{height:62.812500pt;}
.h5_c02074{height:64.500000pt;}
.h0_c02074{height:1056.000000pt;}
.w1_c02074{width:59.232000pt;}
.w0_c02074{width:816.000000pt;}
.x0_c02074{left:0.000000pt;}
.x3_c02074{left:14.720000pt;}
.x1_c02074{left:113.472000pt;}
.x4_c02074{left:161.466667pt;}
.x2_c02074{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02075 {
    display:none;
  }
  .loading-indicator_c02075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02075 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02075 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02075" -> "#page-container .classname_c02075")
 */
.pf_c02075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02075 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02075 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02075 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02075 {overflow:visible;}
  }
}
.c_c02075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02075 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02075:after { /* webkit #35443 */
  content: '';
}
.t_c02075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02075 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02075 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02075 { /* info for Javascript */
  display:none;
}
.l_c02075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02075:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02075 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02075.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02075;src:url('chunks/assets/font_1470b69a670a241a5645189b.woff2')format("woff");}.ff1_c02075{font-family:ff1_c02075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02075;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02075{font-family:ff2_c02075;line-height:0.863770;font-style:normal;font-weight: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_c02075;src:url('chunks/assets/font_a5e1b5586564dd9617c958a7.woff2')format("woff");}.ff3_c02075{font-family:ff3_c02075;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02075{vertical-align:0.000000px;}
.ls1_c02075{letter-spacing:-0.288000px;}
.ls0_c02075{letter-spacing:0.000000px;}
.sc__c02075{text-shadow:none;}
.sc0_c02075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02075{-webkit-text-stroke:0px transparent;}
.sc0_c02075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02075{word-spacing:-17.712000px;}
.ws1_c02075{word-spacing:0.000000px;}
._7_c02075{margin-left:-2.088000px;}
._1_c02075{margin-left:-1.008000px;}
._2_c02075{width:1.152000px;}
._d_c02075{width:2.736000px;}
._10_c02075{width:3.828000px;}
._13_c02075{width:5.088000px;}
._16_c02075{width:6.180000px;}
._9_c02075{width:7.272000px;}
._a_c02075{width:8.280000px;}
._3_c02075{width:9.720000px;}
._4_c02075{width:10.872000px;}
._15_c02075{width:12.456000px;}
._14_c02075{width:13.464000px;}
._5_c02075{width:14.616000px;}
._6_c02075{width:15.624000px;}
._8_c02075{width:16.704000px;}
._12_c02075{width:19.440000px;}
._11_c02075{width:20.664000px;}
._b_c02075{width:38.736000px;}
._c_c02075{width:39.816000px;}
._e_c02075{width:65.664000px;}
._f_c02075{width:67.032000px;}
._0_c02075{width:1500.936000px;}
.fc1_c02075{color:rgb(192,80,77);}
.fc0_c02075{color:rgb(0,0,0);}
.fs0_c02075{font-size:59.760000px;}
.fs1_c02075{font-size:66.240000px;}
.fs2_c02075{font-size:72.000000px;}
.y0_c02075{bottom:0.000000px;}
.y4_c02075{bottom:4.680000px;}
.y3_c02075{bottom:41.796000px;}
.y2_c02075{bottom:75.456000px;}
.y23_c02075{bottom:133.776000px;}
.y22_c02075{bottom:164.910000px;}
.y21_c02075{bottom:195.870000px;}
.y20_c02075{bottom:226.830000px;}
.y1f_c02075{bottom:257.970000px;}
.y1e_c02075{bottom:288.975000px;}
.y1d_c02075{bottom:320.115000px;}
.y1c_c02075{bottom:351.075000px;}
.y1b_c02075{bottom:382.215000px;}
.y1a_c02075{bottom:413.175000px;}
.y19_c02075{bottom:444.315000px;}
.y18_c02075{bottom:475.275000px;}
.y17_c02075{bottom:506.415000px;}
.y16_c02075{bottom:537.405000px;}
.y15_c02075{bottom:568.545000px;}
.y14_c02075{bottom:599.505000px;}
.y13_c02075{bottom:630.645000px;}
.y12_c02075{bottom:661.605000px;}
.y11_c02075{bottom:692.745000px;}
.y10_c02075{bottom:723.705000px;}
.yf_c02075{bottom:754.845000px;}
.ye_c02075{bottom:785.805000px;}
.yd_c02075{bottom:816.990000px;}
.yc_c02075{bottom:847.950000px;}
.yb_c02075{bottom:879.090000px;}
.ya_c02075{bottom:910.050000px;}
.y9_c02075{bottom:941.190000px;}
.y8_c02075{bottom:972.150000px;}
.y7_c02075{bottom:1003.290000px;}
.y6_c02075{bottom:1034.250000px;}
.y5_c02075{bottom:1065.420000px;}
.y1_c02075{bottom:1121.400000px;}
.h3_c02075{height:22.500000px;}
.h2_c02075{height:48.871406px;}
.h1_c02075{height:58.651172px;}
.h5_c02075{height:64.546875px;}
.h4_c02075{height:70.664062px;}
.h0_c02075{height:1188.000000px;}
.w1_c02075{width:66.636000px;}
.w0_c02075{width:918.000000px;}
.x0_c02075{left:0.000000px;}
.x3_c02075{left:16.560000px;}
.x1_c02075{left:127.656000px;}
.x4_c02075{left:181.650000px;}
.x2_c02075{left:820.950000px;}
@media print{
.v0_c02075{vertical-align:0.000000pt;}
.ls1_c02075{letter-spacing:-0.256000pt;}
.ls0_c02075{letter-spacing:0.000000pt;}
.ws0_c02075{word-spacing:-15.744000pt;}
.ws1_c02075{word-spacing:0.000000pt;}
._7_c02075{margin-left:-1.856000pt;}
._1_c02075{margin-left:-0.896000pt;}
._2_c02075{width:1.024000pt;}
._d_c02075{width:2.432000pt;}
._10_c02075{width:3.402667pt;}
._13_c02075{width:4.522667pt;}
._16_c02075{width:5.493333pt;}
._9_c02075{width:6.464000pt;}
._a_c02075{width:7.360000pt;}
._3_c02075{width:8.640000pt;}
._4_c02075{width:9.664000pt;}
._15_c02075{width:11.072000pt;}
._14_c02075{width:11.968000pt;}
._5_c02075{width:12.992000pt;}
._6_c02075{width:13.888000pt;}
._8_c02075{width:14.848000pt;}
._12_c02075{width:17.280000pt;}
._11_c02075{width:18.368000pt;}
._b_c02075{width:34.432000pt;}
._c_c02075{width:35.392000pt;}
._e_c02075{width:58.368000pt;}
._f_c02075{width:59.584000pt;}
._0_c02075{width:1334.165333pt;}
.fs0_c02075{font-size:53.120000pt;}
.fs1_c02075{font-size:58.880000pt;}
.fs2_c02075{font-size:64.000000pt;}
.y0_c02075{bottom:0.000000pt;}
.y4_c02075{bottom:4.160000pt;}
.y3_c02075{bottom:37.152000pt;}
.y2_c02075{bottom:67.072000pt;}
.y23_c02075{bottom:118.912000pt;}
.y22_c02075{bottom:146.586667pt;}
.y21_c02075{bottom:174.106667pt;}
.y20_c02075{bottom:201.626667pt;}
.y1f_c02075{bottom:229.306667pt;}
.y1e_c02075{bottom:256.866667pt;}
.y1d_c02075{bottom:284.546667pt;}
.y1c_c02075{bottom:312.066667pt;}
.y1b_c02075{bottom:339.746667pt;}
.y1a_c02075{bottom:367.266667pt;}
.y19_c02075{bottom:394.946667pt;}
.y18_c02075{bottom:422.466667pt;}
.y17_c02075{bottom:450.146667pt;}
.y16_c02075{bottom:477.693333pt;}
.y15_c02075{bottom:505.373333pt;}
.y14_c02075{bottom:532.893333pt;}
.y13_c02075{bottom:560.573333pt;}
.y12_c02075{bottom:588.093333pt;}
.y11_c02075{bottom:615.773333pt;}
.y10_c02075{bottom:643.293333pt;}
.yf_c02075{bottom:670.973333pt;}
.ye_c02075{bottom:698.493333pt;}
.yd_c02075{bottom:726.213333pt;}
.yc_c02075{bottom:753.733333pt;}
.yb_c02075{bottom:781.413333pt;}
.ya_c02075{bottom:808.933333pt;}
.y9_c02075{bottom:836.613333pt;}
.y8_c02075{bottom:864.133333pt;}
.y7_c02075{bottom:891.813333pt;}
.y6_c02075{bottom:919.333333pt;}
.y5_c02075{bottom:947.040000pt;}
.y1_c02075{bottom:996.800000pt;}
.h3_c02075{height:20.000000pt;}
.h2_c02075{height:43.441250pt;}
.h1_c02075{height:52.134375pt;}
.h5_c02075{height:57.375000pt;}
.h4_c02075{height:62.812500pt;}
.h0_c02075{height:1056.000000pt;}
.w1_c02075{width:59.232000pt;}
.w0_c02075{width:816.000000pt;}
.x0_c02075{left:0.000000pt;}
.x3_c02075{left:14.720000pt;}
.x1_c02075{left:113.472000pt;}
.x4_c02075{left:161.466667pt;}
.x2_c02075{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02076 {
    display:none;
  }
  .loading-indicator_c02076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02076 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02076 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02076" -> "#page-container .classname_c02076")
 */
.pf_c02076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02076 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02076 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02076 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02076 {overflow:visible;}
  }
}
.c_c02076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02076 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02076:after { /* webkit #35443 */
  content: '';
}
.t_c02076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02076 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02076 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02076 { /* info for Javascript */
  display:none;
}
.l_c02076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02076:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02076 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02076.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02076;src:url('chunks/assets/font_abc33820bcd86ff4e8047fd0.woff2')format("woff");}.ff1_c02076{font-family:ff1_c02076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02076;src:url('chunks/assets/font_4b8f9dfaa719d92e24f86f91.woff2')format("woff");}.ff2_c02076{font-family:ff2_c02076;line-height:0.863770;font-style:normal;font-weight: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_c02076;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02076{font-family:ff3_c02076;line-height:1.311035;font-style:normal;font-weight: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_c02076;src:url('chunks/assets/font_45d917c9d82cccc13fbf156b.woff2')format("woff");}.ff4_c02076{font-family:ff4_c02076;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02076{vertical-align:0.000000px;}
.ls1_c02076{letter-spacing:-0.648000px;}
.ls0_c02076{letter-spacing:0.000000px;}
.sc__c02076{text-shadow:none;}
.sc0_c02076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02076{-webkit-text-stroke:0px transparent;}
.sc0_c02076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02076{word-spacing:0.000000px;}
._5_c02076{margin-left:-1.008000px;}
._9_c02076{width:1.224000px;}
._e_c02076{width:2.736000px;}
._b_c02076{width:4.896000px;}
._c_c02076{width:6.048000px;}
._7_c02076{width:7.848000px;}
._8_c02076{width:8.928000px;}
._a_c02076{width:10.728000px;}
._1_c02076{width:12.024000px;}
._f_c02076{width:13.104000px;}
._2_c02076{width:14.184000px;}
._3_c02076{width:15.264000px;}
._10_c02076{width:19.080000px;}
._11_c02076{width:20.232000px;}
._13_c02076{width:21.240000px;}
._14_c02076{width:22.608000px;}
._6_c02076{width:24.336000px;}
._4_c02076{width:25.776000px;}
._d_c02076{width:27.216000px;}
._12_c02076{width:43.488000px;}
._0_c02076{width:1500.936000px;}
.fc1_c02076{color:rgb(192,80,77);}
.fc0_c02076{color:rgb(0,0,0);}
.fs0_c02076{font-size:59.760000px;}
.fs1_c02076{font-size:66.240000px;}
.fs2_c02076{font-size:72.000000px;}
.y0_c02076{bottom:0.000000px;}
.y4_c02076{bottom:4.680000px;}
.y3_c02076{bottom:41.796000px;}
.y2_c02076{bottom:75.456000px;}
.y23_c02076{bottom:133.776000px;}
.y22_c02076{bottom:164.910000px;}
.y21_c02076{bottom:195.870000px;}
.y20_c02076{bottom:226.830000px;}
.y1f_c02076{bottom:257.970000px;}
.y1e_c02076{bottom:288.975000px;}
.y1d_c02076{bottom:320.115000px;}
.y1c_c02076{bottom:351.075000px;}
.y1b_c02076{bottom:382.215000px;}
.y1a_c02076{bottom:413.175000px;}
.y19_c02076{bottom:444.315000px;}
.y18_c02076{bottom:475.275000px;}
.y17_c02076{bottom:506.415000px;}
.y16_c02076{bottom:537.405000px;}
.y15_c02076{bottom:568.545000px;}
.y14_c02076{bottom:599.505000px;}
.y13_c02076{bottom:630.645000px;}
.y12_c02076{bottom:661.605000px;}
.y11_c02076{bottom:692.745000px;}
.y10_c02076{bottom:723.705000px;}
.yf_c02076{bottom:754.845000px;}
.ye_c02076{bottom:785.805000px;}
.yd_c02076{bottom:816.990000px;}
.yc_c02076{bottom:847.950000px;}
.yb_c02076{bottom:879.090000px;}
.ya_c02076{bottom:910.050000px;}
.y9_c02076{bottom:941.190000px;}
.y8_c02076{bottom:972.150000px;}
.y7_c02076{bottom:1003.290000px;}
.y6_c02076{bottom:1034.250000px;}
.y5_c02076{bottom:1065.060000px;}
.y1_c02076{bottom:1121.400000px;}
.h3_c02076{height:22.500000px;}
.h2_c02076{height:48.871406px;}
.h1_c02076{height:58.651172px;}
.h6_c02076{height:64.546875px;}
.h5_c02076{height:70.664062px;}
.h4_c02076{height:72.562500px;}
.h0_c02076{height:1188.000000px;}
.w1_c02076{width:66.636000px;}
.w0_c02076{width:918.000000px;}
.x0_c02076{left:0.000000px;}
.x3_c02076{left:16.560000px;}
.x1_c02076{left:127.656000px;}
.x4_c02076{left:181.650000px;}
.x2_c02076{left:820.950000px;}
@media print{
.v0_c02076{vertical-align:0.000000pt;}
.ls1_c02076{letter-spacing:-0.576000pt;}
.ls0_c02076{letter-spacing:0.000000pt;}
.ws0_c02076{word-spacing:0.000000pt;}
._5_c02076{margin-left:-0.896000pt;}
._9_c02076{width:1.088000pt;}
._e_c02076{width:2.432000pt;}
._b_c02076{width:4.352000pt;}
._c_c02076{width:5.376000pt;}
._7_c02076{width:6.976000pt;}
._8_c02076{width:7.936000pt;}
._a_c02076{width:9.536000pt;}
._1_c02076{width:10.688000pt;}
._f_c02076{width:11.648000pt;}
._2_c02076{width:12.608000pt;}
._3_c02076{width:13.568000pt;}
._10_c02076{width:16.960000pt;}
._11_c02076{width:17.984000pt;}
._13_c02076{width:18.880000pt;}
._14_c02076{width:20.096000pt;}
._6_c02076{width:21.632000pt;}
._4_c02076{width:22.912000pt;}
._d_c02076{width:24.192000pt;}
._12_c02076{width:38.656000pt;}
._0_c02076{width:1334.165333pt;}
.fs0_c02076{font-size:53.120000pt;}
.fs1_c02076{font-size:58.880000pt;}
.fs2_c02076{font-size:64.000000pt;}
.y0_c02076{bottom:0.000000pt;}
.y4_c02076{bottom:4.160000pt;}
.y3_c02076{bottom:37.152000pt;}
.y2_c02076{bottom:67.072000pt;}
.y23_c02076{bottom:118.912000pt;}
.y22_c02076{bottom:146.586667pt;}
.y21_c02076{bottom:174.106667pt;}
.y20_c02076{bottom:201.626667pt;}
.y1f_c02076{bottom:229.306667pt;}
.y1e_c02076{bottom:256.866667pt;}
.y1d_c02076{bottom:284.546667pt;}
.y1c_c02076{bottom:312.066667pt;}
.y1b_c02076{bottom:339.746667pt;}
.y1a_c02076{bottom:367.266667pt;}
.y19_c02076{bottom:394.946667pt;}
.y18_c02076{bottom:422.466667pt;}
.y17_c02076{bottom:450.146667pt;}
.y16_c02076{bottom:477.693333pt;}
.y15_c02076{bottom:505.373333pt;}
.y14_c02076{bottom:532.893333pt;}
.y13_c02076{bottom:560.573333pt;}
.y12_c02076{bottom:588.093333pt;}
.y11_c02076{bottom:615.773333pt;}
.y10_c02076{bottom:643.293333pt;}
.yf_c02076{bottom:670.973333pt;}
.ye_c02076{bottom:698.493333pt;}
.yd_c02076{bottom:726.213333pt;}
.yc_c02076{bottom:753.733333pt;}
.yb_c02076{bottom:781.413333pt;}
.ya_c02076{bottom:808.933333pt;}
.y9_c02076{bottom:836.613333pt;}
.y8_c02076{bottom:864.133333pt;}
.y7_c02076{bottom:891.813333pt;}
.y6_c02076{bottom:919.333333pt;}
.y5_c02076{bottom:946.720000pt;}
.y1_c02076{bottom:996.800000pt;}
.h3_c02076{height:20.000000pt;}
.h2_c02076{height:43.441250pt;}
.h1_c02076{height:52.134375pt;}
.h6_c02076{height:57.375000pt;}
.h5_c02076{height:62.812500pt;}
.h4_c02076{height:64.500000pt;}
.h0_c02076{height:1056.000000pt;}
.w1_c02076{width:59.232000pt;}
.w0_c02076{width:816.000000pt;}
.x0_c02076{left:0.000000pt;}
.x3_c02076{left:14.720000pt;}
.x1_c02076{left:113.472000pt;}
.x4_c02076{left:161.466667pt;}
.x2_c02076{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02077 {
    display:none;
  }
  .loading-indicator_c02077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02077 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02077 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02077" -> "#page-container .classname_c02077")
 */
.pf_c02077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02077 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02077 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02077 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02077 {overflow:visible;}
  }
}
.c_c02077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02077 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02077:after { /* webkit #35443 */
  content: '';
}
.t_c02077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02077 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02077 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02077 { /* info for Javascript */
  display:none;
}
.l_c02077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02077:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02077 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02077.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02077;src:url('chunks/assets/font_bf39f7f41bb8682fa9cae991.woff2')format("woff");}.ff1_c02077{font-family:ff1_c02077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02077;src:url('chunks/assets/font_44af4564633968b4ac3e67a3.woff2')format("woff");}.ff2_c02077{font-family:ff2_c02077;line-height:0.863770;font-style:normal;font-weight: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_c02077;src:url('chunks/assets/font_99c19ba0ca4fd22d3872fffa.woff2')format("woff");}.ff3_c02077{font-family:ff3_c02077;line-height:1.112305;font-style:normal;font-weight: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_c02077;src:url('chunks/assets/font_7a41d684f960c89302c18b54.woff2')format("woff");}.ff4_c02077{font-family:ff4_c02077;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02077{vertical-align:0.000000px;}
.ls1_c02077{letter-spacing:0.000000px;}
.ls0_c02077{letter-spacing:64.224000px;}
.sc__c02077{text-shadow:none;}
.sc0_c02077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02077{-webkit-text-stroke:0px transparent;}
.sc0_c02077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02077{word-spacing:-18.000000px;}
.ws1_c02077{word-spacing:0.000000px;}
._10_c02077{margin-left:-2.520000px;}
._8_c02077{margin-left:-1.152000px;}
._2_c02077{width:1.008000px;}
._5_c02077{width:2.088000px;}
._6_c02077{width:3.960000px;}
._7_c02077{width:5.688000px;}
._d_c02077{width:7.056000px;}
._e_c02077{width:8.280000px;}
._c_c02077{width:11.232000px;}
._b_c02077{width:13.248000px;}
._1_c02077{width:14.256000px;}
._f_c02077{width:15.912000px;}
._11_c02077{width:19.080000px;}
._12_c02077{width:20.568000px;}
._13_c02077{width:27.504000px;}
._14_c02077{width:28.512000px;}
._15_c02077{width:29.808000px;}
._a_c02077{width:42.408000px;}
._9_c02077{width:43.560000px;}
._3_c02077{width:45.360000px;}
._4_c02077{width:46.692000px;}
._0_c02077{width:1500.936000px;}
.fc1_c02077{color:rgb(192,80,77);}
.fc0_c02077{color:rgb(0,0,0);}
.fs0_c02077{font-size:59.760000px;}
.fs1_c02077{font-size:66.240000px;}
.fs2_c02077{font-size:72.000000px;}
.y0_c02077{bottom:0.000000px;}
.y4_c02077{bottom:4.680000px;}
.y3_c02077{bottom:41.796000px;}
.y2_c02077{bottom:75.456000px;}
.y23_c02077{bottom:133.776000px;}
.y22_c02077{bottom:164.910000px;}
.y21_c02077{bottom:195.870000px;}
.y20_c02077{bottom:226.830000px;}
.y1f_c02077{bottom:257.970000px;}
.y1e_c02077{bottom:288.975000px;}
.y1d_c02077{bottom:320.115000px;}
.y1c_c02077{bottom:351.075000px;}
.y1b_c02077{bottom:382.215000px;}
.y1a_c02077{bottom:413.175000px;}
.y19_c02077{bottom:444.315000px;}
.y18_c02077{bottom:475.275000px;}
.y17_c02077{bottom:506.415000px;}
.y16_c02077{bottom:537.405000px;}
.y15_c02077{bottom:568.545000px;}
.y14_c02077{bottom:599.505000px;}
.y13_c02077{bottom:630.645000px;}
.y12_c02077{bottom:661.605000px;}
.y11_c02077{bottom:692.745000px;}
.y10_c02077{bottom:723.705000px;}
.yf_c02077{bottom:754.845000px;}
.ye_c02077{bottom:785.805000px;}
.yd_c02077{bottom:816.990000px;}
.yc_c02077{bottom:847.950000px;}
.yb_c02077{bottom:879.090000px;}
.ya_c02077{bottom:910.050000px;}
.y9_c02077{bottom:941.190000px;}
.y8_c02077{bottom:972.150000px;}
.y7_c02077{bottom:1003.290000px;}
.y6_c02077{bottom:1034.250000px;}
.y5_c02077{bottom:1065.420000px;}
.y1_c02077{bottom:1121.400000px;}
.h3_c02077{height:22.500000px;}
.h2_c02077{height:48.871406px;}
.h1_c02077{height:58.651172px;}
.h5_c02077{height:64.546875px;}
.h4_c02077{height:70.664062px;}
.h6_c02077{height:74.004654px;}
.h0_c02077{height:1188.000000px;}
.w1_c02077{width:66.636000px;}
.w0_c02077{width:918.000000px;}
.x0_c02077{left:0.000000px;}
.x3_c02077{left:16.560000px;}
.x1_c02077{left:127.656000px;}
.x4_c02077{left:181.650000px;}
.x5_c02077{left:191.550000px;}
.x6_c02077{left:218.550000px;}
.x2_c02077{left:820.950000px;}
@media print{
.v0_c02077{vertical-align:0.000000pt;}
.ls1_c02077{letter-spacing:0.000000pt;}
.ls0_c02077{letter-spacing:57.088000pt;}
.ws0_c02077{word-spacing:-16.000000pt;}
.ws1_c02077{word-spacing:0.000000pt;}
._10_c02077{margin-left:-2.240000pt;}
._8_c02077{margin-left:-1.024000pt;}
._2_c02077{width:0.896000pt;}
._5_c02077{width:1.856000pt;}
._6_c02077{width:3.520000pt;}
._7_c02077{width:5.056000pt;}
._d_c02077{width:6.272000pt;}
._e_c02077{width:7.360000pt;}
._c_c02077{width:9.984000pt;}
._b_c02077{width:11.776000pt;}
._1_c02077{width:12.672000pt;}
._f_c02077{width:14.144000pt;}
._11_c02077{width:16.960000pt;}
._12_c02077{width:18.282667pt;}
._13_c02077{width:24.448000pt;}
._14_c02077{width:25.344000pt;}
._15_c02077{width:26.496000pt;}
._a_c02077{width:37.696000pt;}
._9_c02077{width:38.720000pt;}
._3_c02077{width:40.320000pt;}
._4_c02077{width:41.504000pt;}
._0_c02077{width:1334.165333pt;}
.fs0_c02077{font-size:53.120000pt;}
.fs1_c02077{font-size:58.880000pt;}
.fs2_c02077{font-size:64.000000pt;}
.y0_c02077{bottom:0.000000pt;}
.y4_c02077{bottom:4.160000pt;}
.y3_c02077{bottom:37.152000pt;}
.y2_c02077{bottom:67.072000pt;}
.y23_c02077{bottom:118.912000pt;}
.y22_c02077{bottom:146.586667pt;}
.y21_c02077{bottom:174.106667pt;}
.y20_c02077{bottom:201.626667pt;}
.y1f_c02077{bottom:229.306667pt;}
.y1e_c02077{bottom:256.866667pt;}
.y1d_c02077{bottom:284.546667pt;}
.y1c_c02077{bottom:312.066667pt;}
.y1b_c02077{bottom:339.746667pt;}
.y1a_c02077{bottom:367.266667pt;}
.y19_c02077{bottom:394.946667pt;}
.y18_c02077{bottom:422.466667pt;}
.y17_c02077{bottom:450.146667pt;}
.y16_c02077{bottom:477.693333pt;}
.y15_c02077{bottom:505.373333pt;}
.y14_c02077{bottom:532.893333pt;}
.y13_c02077{bottom:560.573333pt;}
.y12_c02077{bottom:588.093333pt;}
.y11_c02077{bottom:615.773333pt;}
.y10_c02077{bottom:643.293333pt;}
.yf_c02077{bottom:670.973333pt;}
.ye_c02077{bottom:698.493333pt;}
.yd_c02077{bottom:726.213333pt;}
.yc_c02077{bottom:753.733333pt;}
.yb_c02077{bottom:781.413333pt;}
.ya_c02077{bottom:808.933333pt;}
.y9_c02077{bottom:836.613333pt;}
.y8_c02077{bottom:864.133333pt;}
.y7_c02077{bottom:891.813333pt;}
.y6_c02077{bottom:919.333333pt;}
.y5_c02077{bottom:947.040000pt;}
.y1_c02077{bottom:996.800000pt;}
.h3_c02077{height:20.000000pt;}
.h2_c02077{height:43.441250pt;}
.h1_c02077{height:52.134375pt;}
.h5_c02077{height:57.375000pt;}
.h4_c02077{height:62.812500pt;}
.h6_c02077{height:65.781915pt;}
.h0_c02077{height:1056.000000pt;}
.w1_c02077{width:59.232000pt;}
.w0_c02077{width:816.000000pt;}
.x0_c02077{left:0.000000pt;}
.x3_c02077{left:14.720000pt;}
.x1_c02077{left:113.472000pt;}
.x4_c02077{left:161.466667pt;}
.x5_c02077{left:170.266667pt;}
.x6_c02077{left:194.266667pt;}
.x2_c02077{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02078 {
    display:none;
  }
  .loading-indicator_c02078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02078 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02078 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02078" -> "#page-container .classname_c02078")
 */
.pf_c02078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02078 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02078 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02078 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02078 {overflow:visible;}
  }
}
.c_c02078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02078 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02078:after { /* webkit #35443 */
  content: '';
}
.t_c02078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02078 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02078 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02078 { /* info for Javascript */
  display:none;
}
.l_c02078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02078:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02078 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02078.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02078;src:url('chunks/assets/font_ac0e3dcc9bc81c76a6a05135.woff2')format("woff");}.ff1_c02078{font-family:ff1_c02078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02078;src:url('chunks/assets/font_c3d86259765a43afca692c25.woff2')format("woff");}.ff2_c02078{font-family:ff2_c02078;line-height:0.863770;font-style:normal;font-weight: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_c02078;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02078{font-family:ff3_c02078;line-height:1.311035;font-style:normal;font-weight: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_c02078;src:url('chunks/assets/font_377554d43c1c349dc4b627b0.woff2')format("woff");}.ff4_c02078{font-family:ff4_c02078;line-height:1.402354;font-style:normal;font-weight: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_c02078;src:url('chunks/assets/font_3a366161da28247d4f1ec8c8.woff2')format("woff");}.ff5_c02078{font-family:ff5_c02078;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02078{vertical-align:0.000000px;}
.ls1_c02078{letter-spacing:0.000000px;}
.ls0_c02078{letter-spacing:64.224000px;}
.sc__c02078{text-shadow:none;}
.sc0_c02078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02078{-webkit-text-stroke:0px transparent;}
.sc0_c02078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02078{word-spacing:-18.000000px;}
.ws1_c02078{word-spacing:0.000000px;}
._d_c02078{margin-left:-2.088000px;}
._4_c02078{margin-left:-1.008000px;}
._3_c02078{width:1.728000px;}
._13_c02078{width:2.952000px;}
._11_c02078{width:4.032000px;}
._10_c02078{width:5.112000px;}
._1_c02078{width:9.288000px;}
._2_c02078{width:10.368000px;}
._15_c02078{width:11.808000px;}
._f_c02078{width:13.824000px;}
._e_c02078{width:15.048000px;}
._7_c02078{width:16.488000px;}
._12_c02078{width:19.944000px;}
._14_c02078{width:23.616000px;}
._c_c02078{width:25.632000px;}
._b_c02078{width:27.216000px;}
._9_c02078{width:29.736000px;}
._8_c02078{width:30.816000px;}
._a_c02078{width:31.908000px;}
._5_c02078{width:35.712000px;}
._6_c02078{width:36.936000px;}
._0_c02078{width:1500.936000px;}
.fc1_c02078{color:rgb(192,80,77);}
.fc0_c02078{color:rgb(0,0,0);}
.fs0_c02078{font-size:59.760000px;}
.fs1_c02078{font-size:66.240000px;}
.fs2_c02078{font-size:72.000000px;}
.y0_c02078{bottom:0.000000px;}
.y4_c02078{bottom:4.680000px;}
.y3_c02078{bottom:41.796000px;}
.y2_c02078{bottom:75.456000px;}
.y22_c02078{bottom:164.910000px;}
.y21_c02078{bottom:195.870000px;}
.y20_c02078{bottom:226.830000px;}
.y1f_c02078{bottom:257.970000px;}
.y1e_c02078{bottom:288.975000px;}
.y1d_c02078{bottom:320.115000px;}
.y1c_c02078{bottom:351.075000px;}
.y1b_c02078{bottom:381.855000px;}
.y1a_c02078{bottom:413.175000px;}
.y19_c02078{bottom:444.315000px;}
.y18_c02078{bottom:475.275000px;}
.y17_c02078{bottom:506.415000px;}
.y16_c02078{bottom:537.405000px;}
.y15_c02078{bottom:568.545000px;}
.y14_c02078{bottom:599.505000px;}
.y13_c02078{bottom:630.645000px;}
.y12_c02078{bottom:661.245000px;}
.y11_c02078{bottom:692.745000px;}
.y10_c02078{bottom:723.705000px;}
.yf_c02078{bottom:754.845000px;}
.ye_c02078{bottom:785.805000px;}
.yd_c02078{bottom:816.990000px;}
.yc_c02078{bottom:847.950000px;}
.yb_c02078{bottom:879.090000px;}
.ya_c02078{bottom:910.050000px;}
.y9_c02078{bottom:941.190000px;}
.y8_c02078{bottom:971.790000px;}
.y7_c02078{bottom:1003.290000px;}
.y6_c02078{bottom:1034.250000px;}
.y5_c02078{bottom:1065.420000px;}
.y1_c02078{bottom:1121.400000px;}
.h3_c02078{height:22.500000px;}
.h2_c02078{height:48.871406px;}
.h1_c02078{height:58.651172px;}
.h7_c02078{height:64.546875px;}
.h4_c02078{height:70.664062px;}
.h5_c02078{height:72.562500px;}
.h6_c02078{height:74.004654px;}
.h0_c02078{height:1188.000000px;}
.w1_c02078{width:66.636000px;}
.w0_c02078{width:918.000000px;}
.x0_c02078{left:0.000000px;}
.x3_c02078{left:16.560000px;}
.x1_c02078{left:127.656000px;}
.x5_c02078{left:191.550000px;}
.x4_c02078{left:218.550000px;}
.x2_c02078{left:820.950000px;}
@media print{
.v0_c02078{vertical-align:0.000000pt;}
.ls1_c02078{letter-spacing:0.000000pt;}
.ls0_c02078{letter-spacing:57.088000pt;}
.ws0_c02078{word-spacing:-16.000000pt;}
.ws1_c02078{word-spacing:0.000000pt;}
._d_c02078{margin-left:-1.856000pt;}
._4_c02078{margin-left:-0.896000pt;}
._3_c02078{width:1.536000pt;}
._13_c02078{width:2.624000pt;}
._11_c02078{width:3.584000pt;}
._10_c02078{width:4.544000pt;}
._1_c02078{width:8.256000pt;}
._2_c02078{width:9.216000pt;}
._15_c02078{width:10.496000pt;}
._f_c02078{width:12.288000pt;}
._e_c02078{width:13.376000pt;}
._7_c02078{width:14.656000pt;}
._12_c02078{width:17.728000pt;}
._14_c02078{width:20.992000pt;}
._c_c02078{width:22.784000pt;}
._b_c02078{width:24.192000pt;}
._9_c02078{width:26.432000pt;}
._8_c02078{width:27.392000pt;}
._a_c02078{width:28.362667pt;}
._5_c02078{width:31.744000pt;}
._6_c02078{width:32.832000pt;}
._0_c02078{width:1334.165333pt;}
.fs0_c02078{font-size:53.120000pt;}
.fs1_c02078{font-size:58.880000pt;}
.fs2_c02078{font-size:64.000000pt;}
.y0_c02078{bottom:0.000000pt;}
.y4_c02078{bottom:4.160000pt;}
.y3_c02078{bottom:37.152000pt;}
.y2_c02078{bottom:67.072000pt;}
.y22_c02078{bottom:146.586667pt;}
.y21_c02078{bottom:174.106667pt;}
.y20_c02078{bottom:201.626667pt;}
.y1f_c02078{bottom:229.306667pt;}
.y1e_c02078{bottom:256.866667pt;}
.y1d_c02078{bottom:284.546667pt;}
.y1c_c02078{bottom:312.066667pt;}
.y1b_c02078{bottom:339.426667pt;}
.y1a_c02078{bottom:367.266667pt;}
.y19_c02078{bottom:394.946667pt;}
.y18_c02078{bottom:422.466667pt;}
.y17_c02078{bottom:450.146667pt;}
.y16_c02078{bottom:477.693333pt;}
.y15_c02078{bottom:505.373333pt;}
.y14_c02078{bottom:532.893333pt;}
.y13_c02078{bottom:560.573333pt;}
.y12_c02078{bottom:587.773333pt;}
.y11_c02078{bottom:615.773333pt;}
.y10_c02078{bottom:643.293333pt;}
.yf_c02078{bottom:670.973333pt;}
.ye_c02078{bottom:698.493333pt;}
.yd_c02078{bottom:726.213333pt;}
.yc_c02078{bottom:753.733333pt;}
.yb_c02078{bottom:781.413333pt;}
.ya_c02078{bottom:808.933333pt;}
.y9_c02078{bottom:836.613333pt;}
.y8_c02078{bottom:863.813333pt;}
.y7_c02078{bottom:891.813333pt;}
.y6_c02078{bottom:919.333333pt;}
.y5_c02078{bottom:947.040000pt;}
.y1_c02078{bottom:996.800000pt;}
.h3_c02078{height:20.000000pt;}
.h2_c02078{height:43.441250pt;}
.h1_c02078{height:52.134375pt;}
.h7_c02078{height:57.375000pt;}
.h4_c02078{height:62.812500pt;}
.h5_c02078{height:64.500000pt;}
.h6_c02078{height:65.781915pt;}
.h0_c02078{height:1056.000000pt;}
.w1_c02078{width:59.232000pt;}
.w0_c02078{width:816.000000pt;}
.x0_c02078{left:0.000000pt;}
.x3_c02078{left:14.720000pt;}
.x1_c02078{left:113.472000pt;}
.x5_c02078{left:170.266667pt;}
.x4_c02078{left:194.266667pt;}
.x2_c02078{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02079 {
    display:none;
  }
  .loading-indicator_c02079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02079 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02079 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02079" -> "#page-container .classname_c02079")
 */
.pf_c02079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02079 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02079 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02079 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02079 {overflow:visible;}
  }
}
.c_c02079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02079 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02079:after { /* webkit #35443 */
  content: '';
}
.t_c02079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02079 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02079 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02079 { /* info for Javascript */
  display:none;
}
.l_c02079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02079:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02079 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02079.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02079;src:url('chunks/assets/font_52fe978dc3212a46ed712ab1.woff2')format("woff");}.ff1_c02079{font-family:ff1_c02079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02079;src:url('chunks/assets/font_2a12c45a395e819e257bdcc1.woff2')format("woff");}.ff2_c02079{font-family:ff2_c02079;line-height:0.863770;font-style:normal;font-weight: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_c02079;src:url('chunks/assets/font_28125169ed288fc5f4e9b5b9.woff2')format("woff");}.ff3_c02079{font-family:ff3_c02079;line-height:1.311035;font-style:normal;font-weight: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_c02079;src:url('chunks/assets/font_6f4d517306085be486b34f85.woff2')format("woff");}.ff4_c02079{font-family:ff4_c02079;line-height:1.402354;font-style:normal;font-weight: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_c02079;src:url('chunks/assets/font_2f720e97e4a32650f88d7aed.woff2')format("woff");}.ff5_c02079{font-family:ff5_c02079;line-height:1.284180;font-style:normal;font-weight: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_c02079;src:url('chunks/assets/font_aef4b4582b1a21ce9e0a49e8.woff2')format("woff");}.ff6_c02079{font-family:ff6_c02079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02079{vertical-align:0.000000px;}
.ls1_c02079{letter-spacing:0.000000px;}
.ls0_c02079{letter-spacing:64.224000px;}
.sc__c02079{text-shadow:none;}
.sc0_c02079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02079{-webkit-text-stroke:0px transparent;}
.sc0_c02079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02079{word-spacing:-18.000000px;}
.ws1_c02079{word-spacing:0.000000px;}
._4_c02079{margin-left:-1.728000px;}
._2_c02079{width:1.008000px;}
._f_c02079{width:2.100000px;}
._5_c02079{width:3.240000px;}
._6_c02079{width:4.608000px;}
._b_c02079{width:5.904000px;}
._c_c02079{width:7.068000px;}
._13_c02079{width:8.076000px;}
._12_c02079{width:9.696000px;}
._8_c02079{width:11.016000px;}
._e_c02079{width:12.096000px;}
._a_c02079{width:13.176000px;}
._9_c02079{width:14.400000px;}
._11_c02079{width:21.888000px;}
._10_c02079{width:22.896000px;}
._d_c02079{width:24.912000px;}
._1_c02079{width:26.064000px;}
._3_c02079{width:27.864000px;}
._7_c02079{width:31.320000px;}
._0_c02079{width:1500.936000px;}
.fc1_c02079{color:rgb(192,80,77);}
.fc0_c02079{color:rgb(0,0,0);}
.fs0_c02079{font-size:59.760000px;}
.fs1_c02079{font-size:66.240000px;}
.fs2_c02079{font-size:72.000000px;}
.y0_c02079{bottom:0.000000px;}
.y4_c02079{bottom:4.680000px;}
.y3_c02079{bottom:41.796000px;}
.y2_c02079{bottom:75.456000px;}
.y23_c02079{bottom:133.776000px;}
.y22_c02079{bottom:164.910000px;}
.y21_c02079{bottom:195.870000px;}
.y20_c02079{bottom:226.830000px;}
.y1f_c02079{bottom:257.970000px;}
.y1e_c02079{bottom:288.975000px;}
.y1d_c02079{bottom:320.115000px;}
.y1c_c02079{bottom:351.075000px;}
.y1b_c02079{bottom:382.215000px;}
.y1a_c02079{bottom:413.175000px;}
.y19_c02079{bottom:444.315000px;}
.y18_c02079{bottom:475.275000px;}
.y17_c02079{bottom:506.415000px;}
.y16_c02079{bottom:537.045000px;}
.y15_c02079{bottom:568.185000px;}
.y14_c02079{bottom:599.145000px;}
.y13_c02079{bottom:630.645000px;}
.y12_c02079{bottom:661.605000px;}
.y11_c02079{bottom:692.745000px;}
.y10_c02079{bottom:723.705000px;}
.yf_c02079{bottom:754.845000px;}
.ye_c02079{bottom:785.805000px;}
.yd_c02079{bottom:816.990000px;}
.yc_c02079{bottom:847.950000px;}
.yb_c02079{bottom:879.090000px;}
.ya_c02079{bottom:910.050000px;}
.y9_c02079{bottom:941.190000px;}
.y8_c02079{bottom:972.150000px;}
.y7_c02079{bottom:1002.930000px;}
.y6_c02079{bottom:1034.250000px;}
.y5_c02079{bottom:1065.420000px;}
.y1_c02079{bottom:1121.400000px;}
.h3_c02079{height:22.500000px;}
.h2_c02079{height:48.871406px;}
.h1_c02079{height:58.651172px;}
.h4_c02079{height:70.664062px;}
.h5_c02079{height:72.562500px;}
.h6_c02079{height:74.004654px;}
.h0_c02079{height:1188.000000px;}
.w1_c02079{width:66.636000px;}
.w0_c02079{width:918.000000px;}
.x0_c02079{left:0.000000px;}
.x3_c02079{left:16.560000px;}
.x1_c02079{left:127.656000px;}
.x6_c02079{left:180.750000px;}
.x5_c02079{left:191.550000px;}
.x4_c02079{left:218.550000px;}
.x2_c02079{left:820.950000px;}
@media print{
.v0_c02079{vertical-align:0.000000pt;}
.ls1_c02079{letter-spacing:0.000000pt;}
.ls0_c02079{letter-spacing:57.088000pt;}
.ws0_c02079{word-spacing:-16.000000pt;}
.ws1_c02079{word-spacing:0.000000pt;}
._4_c02079{margin-left:-1.536000pt;}
._2_c02079{width:0.896000pt;}
._f_c02079{width:1.866667pt;}
._5_c02079{width:2.880000pt;}
._6_c02079{width:4.096000pt;}
._b_c02079{width:5.248000pt;}
._c_c02079{width:6.282667pt;}
._13_c02079{width:7.178667pt;}
._12_c02079{width:8.618667pt;}
._8_c02079{width:9.792000pt;}
._e_c02079{width:10.752000pt;}
._a_c02079{width:11.712000pt;}
._9_c02079{width:12.800000pt;}
._11_c02079{width:19.456000pt;}
._10_c02079{width:20.352000pt;}
._d_c02079{width:22.144000pt;}
._1_c02079{width:23.168000pt;}
._3_c02079{width:24.768000pt;}
._7_c02079{width:27.840000pt;}
._0_c02079{width:1334.165333pt;}
.fs0_c02079{font-size:53.120000pt;}
.fs1_c02079{font-size:58.880000pt;}
.fs2_c02079{font-size:64.000000pt;}
.y0_c02079{bottom:0.000000pt;}
.y4_c02079{bottom:4.160000pt;}
.y3_c02079{bottom:37.152000pt;}
.y2_c02079{bottom:67.072000pt;}
.y23_c02079{bottom:118.912000pt;}
.y22_c02079{bottom:146.586667pt;}
.y21_c02079{bottom:174.106667pt;}
.y20_c02079{bottom:201.626667pt;}
.y1f_c02079{bottom:229.306667pt;}
.y1e_c02079{bottom:256.866667pt;}
.y1d_c02079{bottom:284.546667pt;}
.y1c_c02079{bottom:312.066667pt;}
.y1b_c02079{bottom:339.746667pt;}
.y1a_c02079{bottom:367.266667pt;}
.y19_c02079{bottom:394.946667pt;}
.y18_c02079{bottom:422.466667pt;}
.y17_c02079{bottom:450.146667pt;}
.y16_c02079{bottom:477.373333pt;}
.y15_c02079{bottom:505.053333pt;}
.y14_c02079{bottom:532.573333pt;}
.y13_c02079{bottom:560.573333pt;}
.y12_c02079{bottom:588.093333pt;}
.y11_c02079{bottom:615.773333pt;}
.y10_c02079{bottom:643.293333pt;}
.yf_c02079{bottom:670.973333pt;}
.ye_c02079{bottom:698.493333pt;}
.yd_c02079{bottom:726.213333pt;}
.yc_c02079{bottom:753.733333pt;}
.yb_c02079{bottom:781.413333pt;}
.ya_c02079{bottom:808.933333pt;}
.y9_c02079{bottom:836.613333pt;}
.y8_c02079{bottom:864.133333pt;}
.y7_c02079{bottom:891.493333pt;}
.y6_c02079{bottom:919.333333pt;}
.y5_c02079{bottom:947.040000pt;}
.y1_c02079{bottom:996.800000pt;}
.h3_c02079{height:20.000000pt;}
.h2_c02079{height:43.441250pt;}
.h1_c02079{height:52.134375pt;}
.h4_c02079{height:62.812500pt;}
.h5_c02079{height:64.500000pt;}
.h6_c02079{height:65.781915pt;}
.h0_c02079{height:1056.000000pt;}
.w1_c02079{width:59.232000pt;}
.w0_c02079{width:816.000000pt;}
.x0_c02079{left:0.000000pt;}
.x3_c02079{left:14.720000pt;}
.x1_c02079{left:113.472000pt;}
.x6_c02079{left:160.666667pt;}
.x5_c02079{left:170.266667pt;}
.x4_c02079{left:194.266667pt;}
.x2_c02079{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02080 {
    display:none;
  }
  .loading-indicator_c02080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02080" -> "#page-container .classname_c02080")
 */
.pf_c02080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02080 {overflow:visible;}
  }
}
.c_c02080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02080:after { /* webkit #35443 */
  content: '';
}
.t_c02080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02080 { /* info for Javascript */
  display:none;
}
.l_c02080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02080:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02080 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02080.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02080;src:url('chunks/assets/font_79571c4802ee6e02df9153b2.woff2')format("woff");}.ff1_c02080{font-family:ff1_c02080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02080;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02080{font-family:ff2_c02080;line-height:0.863770;font-style:normal;font-weight: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_c02080;src:url('chunks/assets/font_f47ca42c04dc1d9e1fdf1eee.woff2')format("woff");}.ff3_c02080{font-family:ff3_c02080;line-height:1.284180;font-style:normal;font-weight: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_c02080;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02080{font-family:ff4_c02080;line-height:1.311035;font-style:normal;font-weight: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_c02080;src:url('chunks/assets/font_a3a8ba87019fa4929faeac9b.woff2')format("woff");}.ff5_c02080{font-family:ff5_c02080;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02080{vertical-align:0.000000px;}
.ls1_c02080{letter-spacing:0.000000px;}
.ls0_c02080{letter-spacing:22.320000px;}
.sc__c02080{text-shadow:none;}
.sc0_c02080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02080{-webkit-text-stroke:0px transparent;}
.sc0_c02080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02080{word-spacing:-18.000000px;}
.ws1_c02080{word-spacing:0.000000px;}
._1_c02080{margin-left:-1.440000px;}
._4_c02080{width:1.440000px;}
._3_c02080{width:2.808000px;}
._2_c02080{width:4.248000px;}
._c_c02080{width:5.328000px;}
._9_c02080{width:6.384000px;}
._a_c02080{width:7.632000px;}
._b_c02080{width:8.640000px;}
._13_c02080{width:9.648000px;}
._10_c02080{width:11.376000px;}
._11_c02080{width:12.888000px;}
._12_c02080{width:13.932000px;}
._e_c02080{width:15.564000px;}
._d_c02080{width:16.632000px;}
._6_c02080{width:21.504000px;}
._5_c02080{width:22.752000px;}
._7_c02080{width:25.992000px;}
._8_c02080{width:27.648000px;}
._f_c02080{width:30.744000px;}
._14_c02080{width:44.712000px;}
._15_c02080{width:45.936000px;}
._0_c02080{width:1500.936000px;}
.fc1_c02080{color:rgb(192,80,77);}
.fc0_c02080{color:rgb(0,0,0);}
.fs0_c02080{font-size:59.760000px;}
.fs1_c02080{font-size:66.240000px;}
.fs2_c02080{font-size:72.000000px;}
.y0_c02080{bottom:0.000000px;}
.y4_c02080{bottom:4.680000px;}
.y3_c02080{bottom:41.796000px;}
.y2_c02080{bottom:75.456000px;}
.y23_c02080{bottom:133.776000px;}
.y22_c02080{bottom:164.910000px;}
.y21_c02080{bottom:195.870000px;}
.y20_c02080{bottom:226.830000px;}
.y1f_c02080{bottom:257.970000px;}
.y1e_c02080{bottom:288.975000px;}
.y1d_c02080{bottom:320.115000px;}
.y1c_c02080{bottom:351.075000px;}
.y1b_c02080{bottom:382.215000px;}
.y1a_c02080{bottom:413.175000px;}
.y19_c02080{bottom:444.315000px;}
.y18_c02080{bottom:475.275000px;}
.y17_c02080{bottom:506.415000px;}
.y16_c02080{bottom:537.405000px;}
.y15_c02080{bottom:568.545000px;}
.y14_c02080{bottom:599.505000px;}
.y13_c02080{bottom:630.645000px;}
.y12_c02080{bottom:661.605000px;}
.y11_c02080{bottom:692.745000px;}
.y10_c02080{bottom:723.705000px;}
.yf_c02080{bottom:754.845000px;}
.ye_c02080{bottom:785.805000px;}
.yd_c02080{bottom:816.990000px;}
.yc_c02080{bottom:847.950000px;}
.yb_c02080{bottom:879.090000px;}
.ya_c02080{bottom:910.050000px;}
.y9_c02080{bottom:941.190000px;}
.y8_c02080{bottom:972.150000px;}
.y7_c02080{bottom:1003.290000px;}
.y6_c02080{bottom:1034.250000px;}
.y5_c02080{bottom:1065.420000px;}
.y1_c02080{bottom:1121.400000px;}
.h3_c02080{height:22.500000px;}
.h2_c02080{height:48.871406px;}
.h1_c02080{height:58.651172px;}
.h6_c02080{height:64.546875px;}
.h4_c02080{height:70.664062px;}
.h5_c02080{height:72.562500px;}
.h0_c02080{height:1188.000000px;}
.w1_c02080{width:66.636000px;}
.w0_c02080{width:918.000000px;}
.x0_c02080{left:0.000000px;}
.x3_c02080{left:16.560000px;}
.x1_c02080{left:127.656000px;}
.x4_c02080{left:180.750000px;}
.x2_c02080{left:820.950000px;}
@media print{
.v0_c02080{vertical-align:0.000000pt;}
.ls1_c02080{letter-spacing:0.000000pt;}
.ls0_c02080{letter-spacing:19.840000pt;}
.ws0_c02080{word-spacing:-16.000000pt;}
.ws1_c02080{word-spacing:0.000000pt;}
._1_c02080{margin-left:-1.280000pt;}
._4_c02080{width:1.280000pt;}
._3_c02080{width:2.496000pt;}
._2_c02080{width:3.776000pt;}
._c_c02080{width:4.736000pt;}
._9_c02080{width:5.674667pt;}
._a_c02080{width:6.784000pt;}
._b_c02080{width:7.680000pt;}
._13_c02080{width:8.576000pt;}
._10_c02080{width:10.112000pt;}
._11_c02080{width:11.456000pt;}
._12_c02080{width:12.384000pt;}
._e_c02080{width:13.834667pt;}
._d_c02080{width:14.784000pt;}
._6_c02080{width:19.114667pt;}
._5_c02080{width:20.224000pt;}
._7_c02080{width:23.104000pt;}
._8_c02080{width:24.576000pt;}
._f_c02080{width:27.328000pt;}
._14_c02080{width:39.744000pt;}
._15_c02080{width:40.832000pt;}
._0_c02080{width:1334.165333pt;}
.fs0_c02080{font-size:53.120000pt;}
.fs1_c02080{font-size:58.880000pt;}
.fs2_c02080{font-size:64.000000pt;}
.y0_c02080{bottom:0.000000pt;}
.y4_c02080{bottom:4.160000pt;}
.y3_c02080{bottom:37.152000pt;}
.y2_c02080{bottom:67.072000pt;}
.y23_c02080{bottom:118.912000pt;}
.y22_c02080{bottom:146.586667pt;}
.y21_c02080{bottom:174.106667pt;}
.y20_c02080{bottom:201.626667pt;}
.y1f_c02080{bottom:229.306667pt;}
.y1e_c02080{bottom:256.866667pt;}
.y1d_c02080{bottom:284.546667pt;}
.y1c_c02080{bottom:312.066667pt;}
.y1b_c02080{bottom:339.746667pt;}
.y1a_c02080{bottom:367.266667pt;}
.y19_c02080{bottom:394.946667pt;}
.y18_c02080{bottom:422.466667pt;}
.y17_c02080{bottom:450.146667pt;}
.y16_c02080{bottom:477.693333pt;}
.y15_c02080{bottom:505.373333pt;}
.y14_c02080{bottom:532.893333pt;}
.y13_c02080{bottom:560.573333pt;}
.y12_c02080{bottom:588.093333pt;}
.y11_c02080{bottom:615.773333pt;}
.y10_c02080{bottom:643.293333pt;}
.yf_c02080{bottom:670.973333pt;}
.ye_c02080{bottom:698.493333pt;}
.yd_c02080{bottom:726.213333pt;}
.yc_c02080{bottom:753.733333pt;}
.yb_c02080{bottom:781.413333pt;}
.ya_c02080{bottom:808.933333pt;}
.y9_c02080{bottom:836.613333pt;}
.y8_c02080{bottom:864.133333pt;}
.y7_c02080{bottom:891.813333pt;}
.y6_c02080{bottom:919.333333pt;}
.y5_c02080{bottom:947.040000pt;}
.y1_c02080{bottom:996.800000pt;}
.h3_c02080{height:20.000000pt;}
.h2_c02080{height:43.441250pt;}
.h1_c02080{height:52.134375pt;}
.h6_c02080{height:57.375000pt;}
.h4_c02080{height:62.812500pt;}
.h5_c02080{height:64.500000pt;}
.h0_c02080{height:1056.000000pt;}
.w1_c02080{width:59.232000pt;}
.w0_c02080{width:816.000000pt;}
.x0_c02080{left:0.000000pt;}
.x3_c02080{left:14.720000pt;}
.x1_c02080{left:113.472000pt;}
.x4_c02080{left:160.666667pt;}
.x2_c02080{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02081 {
    display:none;
  }
  .loading-indicator_c02081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02081 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02081 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02081" -> "#page-container .classname_c02081")
 */
.pf_c02081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02081 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02081 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02081 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02081 {overflow:visible;}
  }
}
.c_c02081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02081 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02081:after { /* webkit #35443 */
  content: '';
}
.t_c02081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02081 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02081 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02081 { /* info for Javascript */
  display:none;
}
.l_c02081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02081:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02081 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02081.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02081;src:url('chunks/assets/font_df89a4104c7c42a0b4630b68.woff2')format("woff");}.ff1_c02081{font-family:ff1_c02081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02081;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02081{font-family:ff2_c02081;line-height:0.863770;font-style:normal;font-weight: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_c02081;src:url('chunks/assets/font_c9ba496fe2dec837e80e6aae.woff2')format("woff");}.ff3_c02081{font-family:ff3_c02081;line-height:1.284180;font-style:normal;font-weight: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_c02081;src:url('chunks/assets/font_55577d792bb607dc1ca72e30.woff2')format("woff");}.ff4_c02081{font-family:ff4_c02081;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02081{vertical-align:0.000000px;}
.ls0_c02081{letter-spacing:0.000000px;}
.sc__c02081{text-shadow:none;}
.sc0_c02081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02081{-webkit-text-stroke:0px transparent;}
.sc0_c02081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02081{word-spacing:0.000000px;}
._8_c02081{margin-left:-1.080000px;}
._3_c02081{width:1.308000px;}
._c_c02081{width:2.544000px;}
._d_c02081{width:3.960000px;}
._11_c02081{width:4.968000px;}
._13_c02081{width:6.048000px;}
._4_c02081{width:8.064000px;}
._5_c02081{width:9.216000px;}
._9_c02081{width:10.716000px;}
._6_c02081{width:12.312000px;}
._7_c02081{width:13.392000px;}
._12_c02081{width:14.688000px;}
._b_c02081{width:15.912000px;}
._e_c02081{width:19.944000px;}
._f_c02081{width:22.104000px;}
._10_c02081{width:23.544000px;}
._1_c02081{width:25.992000px;}
._2_c02081{width:27.288000px;}
._14_c02081{width:30.024000px;}
._15_c02081{width:31.104000px;}
._a_c02081{width:49.320000px;}
._0_c02081{width:1500.936000px;}
.fc1_c02081{color:rgb(192,80,77);}
.fc0_c02081{color:rgb(0,0,0);}
.fs0_c02081{font-size:59.760000px;}
.fs1_c02081{font-size:66.240000px;}
.fs2_c02081{font-size:72.000000px;}
.y0_c02081{bottom:0.000000px;}
.y4_c02081{bottom:4.680000px;}
.y3_c02081{bottom:41.796000px;}
.y2_c02081{bottom:75.456000px;}
.y23_c02081{bottom:133.776000px;}
.y22_c02081{bottom:164.910000px;}
.y21_c02081{bottom:195.870000px;}
.y20_c02081{bottom:226.830000px;}
.y1f_c02081{bottom:257.970000px;}
.y1e_c02081{bottom:288.975000px;}
.y1d_c02081{bottom:320.115000px;}
.y1c_c02081{bottom:351.075000px;}
.y1b_c02081{bottom:382.215000px;}
.y1a_c02081{bottom:413.175000px;}
.y19_c02081{bottom:444.315000px;}
.y18_c02081{bottom:475.275000px;}
.y17_c02081{bottom:506.415000px;}
.y16_c02081{bottom:537.405000px;}
.y15_c02081{bottom:568.545000px;}
.y14_c02081{bottom:599.505000px;}
.y13_c02081{bottom:630.645000px;}
.y12_c02081{bottom:661.605000px;}
.y11_c02081{bottom:692.745000px;}
.y10_c02081{bottom:723.705000px;}
.yf_c02081{bottom:754.845000px;}
.ye_c02081{bottom:785.805000px;}
.yd_c02081{bottom:816.990000px;}
.yc_c02081{bottom:847.950000px;}
.yb_c02081{bottom:879.090000px;}
.ya_c02081{bottom:910.050000px;}
.y9_c02081{bottom:941.190000px;}
.y8_c02081{bottom:972.150000px;}
.y7_c02081{bottom:1003.290000px;}
.y6_c02081{bottom:1034.250000px;}
.y5_c02081{bottom:1065.420000px;}
.y1_c02081{bottom:1121.400000px;}
.h3_c02081{height:22.500000px;}
.h2_c02081{height:48.871406px;}
.h1_c02081{height:58.651172px;}
.h5_c02081{height:64.546875px;}
.h4_c02081{height:70.664062px;}
.h0_c02081{height:1188.000000px;}
.w1_c02081{width:66.636000px;}
.w0_c02081{width:918.000000px;}
.x0_c02081{left:0.000000px;}
.x3_c02081{left:16.560000px;}
.x1_c02081{left:127.656000px;}
.x4_c02081{left:180.750000px;}
.x2_c02081{left:820.950000px;}
@media print{
.v0_c02081{vertical-align:0.000000pt;}
.ls0_c02081{letter-spacing:0.000000pt;}
.ws0_c02081{word-spacing:0.000000pt;}
._8_c02081{margin-left:-0.960000pt;}
._3_c02081{width:1.162667pt;}
._c_c02081{width:2.261333pt;}
._d_c02081{width:3.520000pt;}
._11_c02081{width:4.416000pt;}
._13_c02081{width:5.376000pt;}
._4_c02081{width:7.168000pt;}
._5_c02081{width:8.192000pt;}
._9_c02081{width:9.525333pt;}
._6_c02081{width:10.944000pt;}
._7_c02081{width:11.904000pt;}
._12_c02081{width:13.056000pt;}
._b_c02081{width:14.144000pt;}
._e_c02081{width:17.728000pt;}
._f_c02081{width:19.648000pt;}
._10_c02081{width:20.928000pt;}
._1_c02081{width:23.104000pt;}
._2_c02081{width:24.256000pt;}
._14_c02081{width:26.688000pt;}
._15_c02081{width:27.648000pt;}
._a_c02081{width:43.840000pt;}
._0_c02081{width:1334.165333pt;}
.fs0_c02081{font-size:53.120000pt;}
.fs1_c02081{font-size:58.880000pt;}
.fs2_c02081{font-size:64.000000pt;}
.y0_c02081{bottom:0.000000pt;}
.y4_c02081{bottom:4.160000pt;}
.y3_c02081{bottom:37.152000pt;}
.y2_c02081{bottom:67.072000pt;}
.y23_c02081{bottom:118.912000pt;}
.y22_c02081{bottom:146.586667pt;}
.y21_c02081{bottom:174.106667pt;}
.y20_c02081{bottom:201.626667pt;}
.y1f_c02081{bottom:229.306667pt;}
.y1e_c02081{bottom:256.866667pt;}
.y1d_c02081{bottom:284.546667pt;}
.y1c_c02081{bottom:312.066667pt;}
.y1b_c02081{bottom:339.746667pt;}
.y1a_c02081{bottom:367.266667pt;}
.y19_c02081{bottom:394.946667pt;}
.y18_c02081{bottom:422.466667pt;}
.y17_c02081{bottom:450.146667pt;}
.y16_c02081{bottom:477.693333pt;}
.y15_c02081{bottom:505.373333pt;}
.y14_c02081{bottom:532.893333pt;}
.y13_c02081{bottom:560.573333pt;}
.y12_c02081{bottom:588.093333pt;}
.y11_c02081{bottom:615.773333pt;}
.y10_c02081{bottom:643.293333pt;}
.yf_c02081{bottom:670.973333pt;}
.ye_c02081{bottom:698.493333pt;}
.yd_c02081{bottom:726.213333pt;}
.yc_c02081{bottom:753.733333pt;}
.yb_c02081{bottom:781.413333pt;}
.ya_c02081{bottom:808.933333pt;}
.y9_c02081{bottom:836.613333pt;}
.y8_c02081{bottom:864.133333pt;}
.y7_c02081{bottom:891.813333pt;}
.y6_c02081{bottom:919.333333pt;}
.y5_c02081{bottom:947.040000pt;}
.y1_c02081{bottom:996.800000pt;}
.h3_c02081{height:20.000000pt;}
.h2_c02081{height:43.441250pt;}
.h1_c02081{height:52.134375pt;}
.h5_c02081{height:57.375000pt;}
.h4_c02081{height:62.812500pt;}
.h0_c02081{height:1056.000000pt;}
.w1_c02081{width:59.232000pt;}
.w0_c02081{width:816.000000pt;}
.x0_c02081{left:0.000000pt;}
.x3_c02081{left:14.720000pt;}
.x1_c02081{left:113.472000pt;}
.x4_c02081{left:160.666667pt;}
.x2_c02081{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02082 {
    display:none;
  }
  .loading-indicator_c02082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02082 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02082 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02082" -> "#page-container .classname_c02082")
 */
.pf_c02082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02082 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02082 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02082 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02082 {overflow:visible;}
  }
}
.c_c02082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02082 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02082:after { /* webkit #35443 */
  content: '';
}
.t_c02082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02082 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02082 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02082 { /* info for Javascript */
  display:none;
}
.l_c02082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02082:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02082 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02082.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02082;src:url('chunks/assets/font_0de0cafe5d6e95808561c2e3.woff2')format("woff");}.ff1_c02082{font-family:ff1_c02082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02082;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02082{font-family:ff2_c02082;line-height:0.863770;font-style:normal;font-weight: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_c02082;src:url('chunks/assets/font_62fdd3dc3a7bf5f6019e8da8.woff2')format("woff");}.ff3_c02082{font-family:ff3_c02082;line-height:1.112305;font-style:normal;font-weight: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_c02082;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02082{font-family:ff4_c02082;line-height:1.311035;font-style:normal;font-weight: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_c02082;src:url('chunks/assets/font_b1933e27c919ac5d208e26dd.woff2')format("woff");}.ff5_c02082{font-family:ff5_c02082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02082{vertical-align:0.000000px;}
.ls2_c02082{letter-spacing:-1.440000px;}
.ls1_c02082{letter-spacing:0.000000px;}
.ls0_c02082{letter-spacing:22.320000px;}
.sc__c02082{text-shadow:none;}
.sc0_c02082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02082{-webkit-text-stroke:0px transparent;}
.sc0_c02082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02082{word-spacing:-18.000000px;}
.ws1_c02082{word-spacing:0.000000px;}
._15_c02082{margin-left:-2.232000px;}
._2_c02082{margin-left:-1.080000px;}
._9_c02082{width:1.080000px;}
._a_c02082{width:2.184000px;}
._5_c02082{width:4.080000px;}
._4_c02082{width:5.376000px;}
._6_c02082{width:6.504000px;}
._14_c02082{width:7.968000px;}
._16_c02082{width:9.600000px;}
._7_c02082{width:11.304000px;}
._8_c02082{width:12.312000px;}
._1_c02082{width:13.608000px;}
._3_c02082{width:14.868000px;}
._17_c02082{width:16.992000px;}
._13_c02082{width:19.080000px;}
._12_c02082{width:20.172000px;}
._11_c02082{width:21.816000px;}
._10_c02082{width:23.088000px;}
._b_c02082{width:27.720000px;}
._c_c02082{width:28.800000px;}
._d_c02082{width:37.224000px;}
._e_c02082{width:38.448000px;}
._f_c02082{width:39.672000px;}
._0_c02082{width:1500.936000px;}
.fc1_c02082{color:rgb(192,80,77);}
.fc0_c02082{color:rgb(0,0,0);}
.fs0_c02082{font-size:59.760000px;}
.fs1_c02082{font-size:66.240000px;}
.fs2_c02082{font-size:72.000000px;}
.y0_c02082{bottom:0.000000px;}
.y4_c02082{bottom:4.680000px;}
.y3_c02082{bottom:41.796000px;}
.y2_c02082{bottom:75.456000px;}
.y22_c02082{bottom:164.910000px;}
.y21_c02082{bottom:195.870000px;}
.y20_c02082{bottom:226.830000px;}
.y1f_c02082{bottom:257.970000px;}
.y1e_c02082{bottom:288.975000px;}
.y1d_c02082{bottom:320.115000px;}
.y1c_c02082{bottom:351.075000px;}
.y1b_c02082{bottom:382.215000px;}
.y1a_c02082{bottom:413.175000px;}
.y19_c02082{bottom:444.315000px;}
.y18_c02082{bottom:475.275000px;}
.y17_c02082{bottom:506.415000px;}
.y16_c02082{bottom:537.405000px;}
.y15_c02082{bottom:568.545000px;}
.y14_c02082{bottom:599.505000px;}
.y13_c02082{bottom:630.645000px;}
.y12_c02082{bottom:661.605000px;}
.y11_c02082{bottom:692.745000px;}
.y10_c02082{bottom:723.705000px;}
.yf_c02082{bottom:754.845000px;}
.ye_c02082{bottom:785.805000px;}
.yd_c02082{bottom:816.990000px;}
.yc_c02082{bottom:847.950000px;}
.yb_c02082{bottom:879.090000px;}
.ya_c02082{bottom:910.050000px;}
.y9_c02082{bottom:941.190000px;}
.y8_c02082{bottom:972.150000px;}
.y7_c02082{bottom:1003.290000px;}
.y6_c02082{bottom:1034.250000px;}
.y5_c02082{bottom:1065.420000px;}
.y1_c02082{bottom:1121.400000px;}
.h3_c02082{height:22.500000px;}
.h2_c02082{height:48.871406px;}
.h1_c02082{height:58.651172px;}
.h5_c02082{height:64.546875px;}
.h4_c02082{height:70.664062px;}
.h6_c02082{height:72.562500px;}
.h0_c02082{height:1188.000000px;}
.w1_c02082{width:66.636000px;}
.w0_c02082{width:918.000000px;}
.x0_c02082{left:0.000000px;}
.x3_c02082{left:16.560000px;}
.x1_c02082{left:127.656000px;}
.x4_c02082{left:180.750000px;}
.x2_c02082{left:820.950000px;}
@media print{
.v0_c02082{vertical-align:0.000000pt;}
.ls2_c02082{letter-spacing:-1.280000pt;}
.ls1_c02082{letter-spacing:0.000000pt;}
.ls0_c02082{letter-spacing:19.840000pt;}
.ws0_c02082{word-spacing:-16.000000pt;}
.ws1_c02082{word-spacing:0.000000pt;}
._15_c02082{margin-left:-1.984000pt;}
._2_c02082{margin-left:-0.960000pt;}
._9_c02082{width:0.960000pt;}
._a_c02082{width:1.941333pt;}
._5_c02082{width:3.626667pt;}
._4_c02082{width:4.778667pt;}
._6_c02082{width:5.781333pt;}
._14_c02082{width:7.082667pt;}
._16_c02082{width:8.533333pt;}
._7_c02082{width:10.048000pt;}
._8_c02082{width:10.944000pt;}
._1_c02082{width:12.096000pt;}
._3_c02082{width:13.216000pt;}
._17_c02082{width:15.104000pt;}
._13_c02082{width:16.960000pt;}
._12_c02082{width:17.930667pt;}
._11_c02082{width:19.392000pt;}
._10_c02082{width:20.522667pt;}
._b_c02082{width:24.640000pt;}
._c_c02082{width:25.600000pt;}
._d_c02082{width:33.088000pt;}
._e_c02082{width:34.176000pt;}
._f_c02082{width:35.264000pt;}
._0_c02082{width:1334.165333pt;}
.fs0_c02082{font-size:53.120000pt;}
.fs1_c02082{font-size:58.880000pt;}
.fs2_c02082{font-size:64.000000pt;}
.y0_c02082{bottom:0.000000pt;}
.y4_c02082{bottom:4.160000pt;}
.y3_c02082{bottom:37.152000pt;}
.y2_c02082{bottom:67.072000pt;}
.y22_c02082{bottom:146.586667pt;}
.y21_c02082{bottom:174.106667pt;}
.y20_c02082{bottom:201.626667pt;}
.y1f_c02082{bottom:229.306667pt;}
.y1e_c02082{bottom:256.866667pt;}
.y1d_c02082{bottom:284.546667pt;}
.y1c_c02082{bottom:312.066667pt;}
.y1b_c02082{bottom:339.746667pt;}
.y1a_c02082{bottom:367.266667pt;}
.y19_c02082{bottom:394.946667pt;}
.y18_c02082{bottom:422.466667pt;}
.y17_c02082{bottom:450.146667pt;}
.y16_c02082{bottom:477.693333pt;}
.y15_c02082{bottom:505.373333pt;}
.y14_c02082{bottom:532.893333pt;}
.y13_c02082{bottom:560.573333pt;}
.y12_c02082{bottom:588.093333pt;}
.y11_c02082{bottom:615.773333pt;}
.y10_c02082{bottom:643.293333pt;}
.yf_c02082{bottom:670.973333pt;}
.ye_c02082{bottom:698.493333pt;}
.yd_c02082{bottom:726.213333pt;}
.yc_c02082{bottom:753.733333pt;}
.yb_c02082{bottom:781.413333pt;}
.ya_c02082{bottom:808.933333pt;}
.y9_c02082{bottom:836.613333pt;}
.y8_c02082{bottom:864.133333pt;}
.y7_c02082{bottom:891.813333pt;}
.y6_c02082{bottom:919.333333pt;}
.y5_c02082{bottom:947.040000pt;}
.y1_c02082{bottom:996.800000pt;}
.h3_c02082{height:20.000000pt;}
.h2_c02082{height:43.441250pt;}
.h1_c02082{height:52.134375pt;}
.h5_c02082{height:57.375000pt;}
.h4_c02082{height:62.812500pt;}
.h6_c02082{height:64.500000pt;}
.h0_c02082{height:1056.000000pt;}
.w1_c02082{width:59.232000pt;}
.w0_c02082{width:816.000000pt;}
.x0_c02082{left:0.000000pt;}
.x3_c02082{left:14.720000pt;}
.x1_c02082{left:113.472000pt;}
.x4_c02082{left:160.666667pt;}
.x2_c02082{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02083 {
    display:none;
  }
  .loading-indicator_c02083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02083 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02083 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02083" -> "#page-container .classname_c02083")
 */
.pf_c02083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02083 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02083 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02083 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02083 {overflow:visible;}
  }
}
.c_c02083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02083 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02083:after { /* webkit #35443 */
  content: '';
}
.t_c02083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02083 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02083 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02083 { /* info for Javascript */
  display:none;
}
.l_c02083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02083:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02083 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02083.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02083;src:url('chunks/assets/font_02eb10ea126b33d4d81bd85e.woff2')format("woff");}.ff1_c02083{font-family:ff1_c02083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02083;src:url('chunks/assets/font_ff3d06efa6ad1a27038cea50.woff2')format("woff");}.ff2_c02083{font-family:ff2_c02083;line-height:0.863770;font-style:normal;font-weight: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_c02083;src:url('chunks/assets/font_b2374bd2494d98d88ae1b5d1.woff2')format("woff");}.ff3_c02083{font-family:ff3_c02083;line-height:1.284180;font-style:normal;font-weight: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_c02083;src:url('chunks/assets/font_e86c7efed94ec54ea31b9b0e.woff2')format("woff");}.ff4_c02083{font-family:ff4_c02083;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02083{vertical-align:0.000000px;}
.ls0_c02083{letter-spacing:0.000000px;}
.sc__c02083{text-shadow:none;}
.sc0_c02083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02083{-webkit-text-stroke:0px transparent;}
.sc0_c02083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02083{word-spacing:-18.000000px;}
.ws1_c02083{word-spacing:0.000000px;}
._d_c02083{margin-left:-2.094025px;}
._4_c02083{margin-left:-1.080000px;}
._1_c02083{width:1.512000px;}
._f_c02083{width:3.312066px;}
._10_c02083{width:4.504055px;}
._5_c02083{width:5.688000px;}
._6_c02083{width:7.104000px;}
._15_c02083{width:8.211575px;}
._e_c02083{width:9.406212px;}
._9_c02083{width:10.728000px;}
._a_c02083{width:12.384000px;}
._16_c02083{width:14.214075px;}
._14_c02083{width:15.552000px;}
._13_c02083{width:16.704000px;}
._c_c02083{width:17.818825px;}
._11_c02083{width:19.296000px;}
._12_c02083{width:21.036000px;}
._2_c02083{width:23.832000px;}
._3_c02083{width:24.912000px;}
._b_c02083{width:26.208000px;}
._7_c02083{width:28.440000px;}
._8_c02083{width:30.384000px;}
._0_c02083{width:1500.936000px;}
.fc1_c02083{color:rgb(192,80,77);}
.fc0_c02083{color:rgb(0,0,0);}
.fs0_c02083{font-size:59.760000px;}
.fs1_c02083{font-size:66.240000px;}
.fs2_c02083{font-size:72.000000px;}
.y0_c02083{bottom:0.000000px;}
.y4_c02083{bottom:4.680000px;}
.y3_c02083{bottom:41.796000px;}
.y2_c02083{bottom:75.456000px;}
.y25_c02083{bottom:144.216000px;}
.y24_c02083{bottom:175.170000px;}
.y23_c02083{bottom:206.130000px;}
.y22_c02083{bottom:237.270000px;}
.y21_c02083{bottom:268.230000px;}
.y20_c02083{bottom:299.415000px;}
.y1f_c02083{bottom:330.375000px;}
.y1e_c02083{bottom:361.515000px;}
.y1d_c02083{bottom:392.475000px;}
.y1c_c02083{bottom:423.615000px;}
.y1b_c02083{bottom:454.575000px;}
.y1a_c02083{bottom:485.715000px;}
.y19_c02083{bottom:516.675000px;}
.y18_c02083{bottom:547.845000px;}
.y17_c02083{bottom:578.805000px;}
.y16_c02083{bottom:599.325000px;}
.y15_c02083{bottom:618.225000px;}
.y14_c02083{bottom:637.305000px;}
.y13_c02083{bottom:656.205000px;}
.y12_c02083{bottom:675.105000px;}
.y11_c02083{bottom:694.185000px;}
.y10_c02083{bottom:723.705000px;}
.yf_c02083{bottom:754.845000px;}
.ye_c02083{bottom:785.805000px;}
.yd_c02083{bottom:816.990000px;}
.yc_c02083{bottom:847.950000px;}
.yb_c02083{bottom:879.090000px;}
.ya_c02083{bottom:910.050000px;}
.y9_c02083{bottom:941.190000px;}
.y8_c02083{bottom:972.150000px;}
.y7_c02083{bottom:1003.290000px;}
.y6_c02083{bottom:1034.250000px;}
.y5_c02083{bottom:1065.420000px;}
.y1_c02083{bottom:1121.400000px;}
.h3_c02083{height:22.500000px;}
.h2_c02083{height:48.871406px;}
.h1_c02083{height:58.651172px;}
.h5_c02083{height:64.546875px;}
.h6_c02083{height:65.010937px;}
.h4_c02083{height:70.664062px;}
.h0_c02083{height:1188.000000px;}
.w1_c02083{width:66.636000px;}
.w0_c02083{width:918.000000px;}
.x0_c02083{left:0.000000px;}
.x3_c02083{left:16.560000px;}
.x1_c02083{left:127.656000px;}
.x4_c02083{left:180.750000px;}
.x5_c02083{left:191.550000px;}
.x2_c02083{left:820.950000px;}
@media print{
.v0_c02083{vertical-align:0.000000pt;}
.ls0_c02083{letter-spacing:0.000000pt;}
.ws0_c02083{word-spacing:-16.000000pt;}
.ws1_c02083{word-spacing:0.000000pt;}
._d_c02083{margin-left:-1.861356pt;}
._4_c02083{margin-left:-0.960000pt;}
._1_c02083{width:1.344000pt;}
._f_c02083{width:2.944059pt;}
._10_c02083{width:4.003604pt;}
._5_c02083{width:5.056000pt;}
._6_c02083{width:6.314667pt;}
._15_c02083{width:7.299178pt;}
._e_c02083{width:8.361078pt;}
._9_c02083{width:9.536000pt;}
._a_c02083{width:11.008000pt;}
._16_c02083{width:12.634733pt;}
._14_c02083{width:13.824000pt;}
._13_c02083{width:14.848000pt;}
._c_c02083{width:15.838956pt;}
._11_c02083{width:17.152000pt;}
._12_c02083{width:18.698667pt;}
._2_c02083{width:21.184000pt;}
._3_c02083{width:22.144000pt;}
._b_c02083{width:23.296000pt;}
._7_c02083{width:25.280000pt;}
._8_c02083{width:27.008000pt;}
._0_c02083{width:1334.165333pt;}
.fs0_c02083{font-size:53.120000pt;}
.fs1_c02083{font-size:58.880000pt;}
.fs2_c02083{font-size:64.000000pt;}
.y0_c02083{bottom:0.000000pt;}
.y4_c02083{bottom:4.160000pt;}
.y3_c02083{bottom:37.152000pt;}
.y2_c02083{bottom:67.072000pt;}
.y25_c02083{bottom:128.192000pt;}
.y24_c02083{bottom:155.706667pt;}
.y23_c02083{bottom:183.226667pt;}
.y22_c02083{bottom:210.906667pt;}
.y21_c02083{bottom:238.426667pt;}
.y20_c02083{bottom:266.146667pt;}
.y1f_c02083{bottom:293.666667pt;}
.y1e_c02083{bottom:321.346667pt;}
.y1d_c02083{bottom:348.866667pt;}
.y1c_c02083{bottom:376.546667pt;}
.y1b_c02083{bottom:404.066667pt;}
.y1a_c02083{bottom:431.746667pt;}
.y19_c02083{bottom:459.266667pt;}
.y18_c02083{bottom:486.973333pt;}
.y17_c02083{bottom:514.493333pt;}
.y16_c02083{bottom:532.733333pt;}
.y15_c02083{bottom:549.533333pt;}
.y14_c02083{bottom:566.493333pt;}
.y13_c02083{bottom:583.293333pt;}
.y12_c02083{bottom:600.093333pt;}
.y11_c02083{bottom:617.053333pt;}
.y10_c02083{bottom:643.293333pt;}
.yf_c02083{bottom:670.973333pt;}
.ye_c02083{bottom:698.493333pt;}
.yd_c02083{bottom:726.213333pt;}
.yc_c02083{bottom:753.733333pt;}
.yb_c02083{bottom:781.413333pt;}
.ya_c02083{bottom:808.933333pt;}
.y9_c02083{bottom:836.613333pt;}
.y8_c02083{bottom:864.133333pt;}
.y7_c02083{bottom:891.813333pt;}
.y6_c02083{bottom:919.333333pt;}
.y5_c02083{bottom:947.040000pt;}
.y1_c02083{bottom:996.800000pt;}
.h3_c02083{height:20.000000pt;}
.h2_c02083{height:43.441250pt;}
.h1_c02083{height:52.134375pt;}
.h5_c02083{height:57.375000pt;}
.h6_c02083{height:57.787500pt;}
.h4_c02083{height:62.812500pt;}
.h0_c02083{height:1056.000000pt;}
.w1_c02083{width:59.232000pt;}
.w0_c02083{width:816.000000pt;}
.x0_c02083{left:0.000000pt;}
.x3_c02083{left:14.720000pt;}
.x1_c02083{left:113.472000pt;}
.x4_c02083{left:160.666667pt;}
.x5_c02083{left:170.266667pt;}
.x2_c02083{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02084 {
    display:none;
  }
  .loading-indicator_c02084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02084 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02084 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02084" -> "#page-container .classname_c02084")
 */
.pf_c02084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02084 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02084 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02084 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02084 {overflow:visible;}
  }
}
.c_c02084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02084 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02084:after { /* webkit #35443 */
  content: '';
}
.t_c02084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02084 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02084 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02084 { /* info for Javascript */
  display:none;
}
.l_c02084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02084:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02084 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02084.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02084;src:url('chunks/assets/font_fb7850ab39a01b38bca2d4bc.woff2')format("woff");}.ff1_c02084{font-family:ff1_c02084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02084;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02084{font-family:ff2_c02084;line-height:0.863770;font-style:normal;font-weight: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_c02084;src:url('chunks/assets/font_308f649722b877e0ed064677.woff2')format("woff");}.ff3_c02084{font-family:ff3_c02084;line-height:1.402354;font-style:normal;font-weight: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_c02084;src:url('chunks/assets/font_cf249d66df4d3989cc464ad6.woff2')format("woff");}.ff4_c02084{font-family:ff4_c02084;line-height:1.112305;font-style:normal;font-weight: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_c02084;src:url('chunks/assets/font_b0be5406eacdcd9e9733bee8.woff2')format("woff");}.ff5_c02084{font-family:ff5_c02084;line-height:1.284180;font-style:normal;font-weight: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_c02084;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c02084{font-family:ff6_c02084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02084{vertical-align:0.000000px;}
.ls4_c02084{letter-spacing:-0.288000px;}
.ls2_c02084{letter-spacing:0.000000px;}
.ls3_c02084{letter-spacing:0.262200px;}
.ls1_c02084{letter-spacing:15.120000px;}
.ls0_c02084{letter-spacing:33.984000px;}
.sc__c02084{text-shadow:none;}
.sc0_c02084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02084{-webkit-text-stroke:0px transparent;}
.sc0_c02084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02084{word-spacing:-18.000000px;}
.ws2_c02084{word-spacing:-16.822200px;}
.ws1_c02084{word-spacing:-16.560000px;}
.ws3_c02084{word-spacing:0.000000px;}
._3_c02084{margin-left:-1.394169px;}
._6_c02084{width:1.167875px;}
._c_c02084{width:3.908425px;}
._b_c02084{width:5.365241px;}
._1_c02084{width:6.822654px;}
._2_c02084{width:7.882825px;}
._12_c02084{width:9.037175px;}
._d_c02084{width:10.800000px;}
._e_c02084{width:11.808000px;}
._4_c02084{width:12.916800px;}
._5_c02084{width:14.109054px;}
._f_c02084{width:15.480875px;}
._9_c02084{width:18.547200px;}
._a_c02084{width:19.941369px;}
._11_c02084{width:20.985745px;}
._10_c02084{width:22.202169px;}
._8_c02084{width:24.985524px;}
._7_c02084{width:26.363388px;}
._0_c02084{width:1500.936000px;}
.fc1_c02084{color:rgb(192,80,77);}
.fc0_c02084{color:rgb(0,0,0);}
.fs0_c02084{font-size:59.760000px;}
.fs1_c02084{font-size:66.240000px;}
.fs2_c02084{font-size:72.000000px;}
.y0_c02084{bottom:0.000000px;}
.y4_c02084{bottom:4.680000px;}
.y3_c02084{bottom:41.796000px;}
.y2_c02084{bottom:75.456000px;}
.y2f_c02084{bottom:133.596000px;}
.y2e_c02084{bottom:164.550000px;}
.y2d_c02084{bottom:195.690000px;}
.y2c_c02084{bottom:226.650000px;}
.y2b_c02084{bottom:257.790000px;}
.y2a_c02084{bottom:288.795000px;}
.y29_c02084{bottom:319.935000px;}
.y28_c02084{bottom:350.895000px;}
.y27_c02084{bottom:382.035000px;}
.y26_c02084{bottom:412.995000px;}
.y25_c02084{bottom:443.775000px;}
.y24_c02084{bottom:464.475000px;}
.y23_c02084{bottom:484.815000px;}
.y22_c02084{bottom:503.895000px;}
.y21_c02084{bottom:524.235000px;}
.y20_c02084{bottom:543.165000px;}
.y1f_c02084{bottom:563.685000px;}
.y1e_c02084{bottom:582.585000px;}
.y1d_c02084{bottom:601.485000px;}
.y1c_c02084{bottom:620.565000px;}
.y1b_c02084{bottom:640.905000px;}
.y1a_c02084{bottom:659.805000px;}
.y19_c02084{bottom:678.885000px;}
.y18_c02084{bottom:699.225000px;}
.y17_c02084{bottom:718.125000px;}
.y16_c02084{bottom:737.205000px;}
.y15_c02084{bottom:757.545000px;}
.y14_c02084{bottom:776.445000px;}
.y13_c02084{bottom:795.570000px;}
.y12_c02084{bottom:815.910000px;}
.y11_c02084{bottom:834.810000px;}
.y10_c02084{bottom:853.890000px;}
.yf_c02084{bottom:872.790000px;}
.ye_c02084{bottom:891.870000px;}
.yd_c02084{bottom:910.770000px;}
.yc_c02084{bottom:931.110000px;}
.yb_c02084{bottom:950.190000px;}
.ya_c02084{bottom:969.090000px;}
.y9_c02084{bottom:987.990000px;}
.y8_c02084{bottom:1008.510000px;}
.y7_c02084{bottom:1027.410000px;}
.y6_c02084{bottom:1046.310000px;}
.y5_c02084{bottom:1065.420000px;}
.y1_c02084{bottom:1121.400000px;}
.h3_c02084{height:22.500000px;}
.h2_c02084{height:48.871406px;}
.h1_c02084{height:58.651172px;}
.h6_c02084{height:59.383125px;}
.h5_c02084{height:65.010937px;}
.h8_c02084{height:70.664062px;}
.h7_c02084{height:72.562500px;}
.h4_c02084{height:74.004654px;}
.h0_c02084{height:1188.000000px;}
.w1_c02084{width:66.636000px;}
.w0_c02084{width:918.000000px;}
.x0_c02084{left:0.000000px;}
.x3_c02084{left:16.560000px;}
.x1_c02084{left:127.656000px;}
.x6_c02084{left:180.750000px;}
.x4_c02084{left:244.650000px;}
.x5_c02084{left:271.650000px;}
.x2_c02084{left:820.950000px;}
@media print{
.v0_c02084{vertical-align:0.000000pt;}
.ls4_c02084{letter-spacing:-0.256000pt;}
.ls2_c02084{letter-spacing:0.000000pt;}
.ls3_c02084{letter-spacing:0.233067pt;}
.ls1_c02084{letter-spacing:13.440000pt;}
.ls0_c02084{letter-spacing:30.208000pt;}
.ws0_c02084{word-spacing:-16.000000pt;}
.ws2_c02084{word-spacing:-14.953067pt;}
.ws1_c02084{word-spacing:-14.720000pt;}
.ws3_c02084{word-spacing:0.000000pt;}
._3_c02084{margin-left:-1.239261pt;}
._6_c02084{width:1.038111pt;}
._c_c02084{width:3.474156pt;}
._b_c02084{width:4.769103pt;}
._1_c02084{width:6.064581pt;}
._2_c02084{width:7.006956pt;}
._12_c02084{width:8.033044pt;}
._d_c02084{width:9.600000pt;}
._e_c02084{width:10.496000pt;}
._4_c02084{width:11.481600pt;}
._5_c02084{width:12.541381pt;}
._f_c02084{width:13.760777pt;}
._9_c02084{width:16.486400pt;}
._a_c02084{width:17.725661pt;}
._11_c02084{width:18.653996pt;}
._10_c02084{width:19.735261pt;}
._8_c02084{width:22.209355pt;}
._7_c02084{width:23.434122pt;}
._0_c02084{width:1334.165333pt;}
.fs0_c02084{font-size:53.120000pt;}
.fs1_c02084{font-size:58.880000pt;}
.fs2_c02084{font-size:64.000000pt;}
.y0_c02084{bottom:0.000000pt;}
.y4_c02084{bottom:4.160000pt;}
.y3_c02084{bottom:37.152000pt;}
.y2_c02084{bottom:67.072000pt;}
.y2f_c02084{bottom:118.752000pt;}
.y2e_c02084{bottom:146.266667pt;}
.y2d_c02084{bottom:173.946667pt;}
.y2c_c02084{bottom:201.466667pt;}
.y2b_c02084{bottom:229.146667pt;}
.y2a_c02084{bottom:256.706667pt;}
.y29_c02084{bottom:284.386667pt;}
.y28_c02084{bottom:311.906667pt;}
.y27_c02084{bottom:339.586667pt;}
.y26_c02084{bottom:367.106667pt;}
.y25_c02084{bottom:394.466667pt;}
.y24_c02084{bottom:412.866667pt;}
.y23_c02084{bottom:430.946667pt;}
.y22_c02084{bottom:447.906667pt;}
.y21_c02084{bottom:465.986667pt;}
.y20_c02084{bottom:482.813333pt;}
.y1f_c02084{bottom:501.053333pt;}
.y1e_c02084{bottom:517.853333pt;}
.y1d_c02084{bottom:534.653333pt;}
.y1c_c02084{bottom:551.613333pt;}
.y1b_c02084{bottom:569.693333pt;}
.y1a_c02084{bottom:586.493333pt;}
.y19_c02084{bottom:603.453333pt;}
.y18_c02084{bottom:621.533333pt;}
.y17_c02084{bottom:638.333333pt;}
.y16_c02084{bottom:655.293333pt;}
.y15_c02084{bottom:673.373333pt;}
.y14_c02084{bottom:690.173333pt;}
.y13_c02084{bottom:707.173333pt;}
.y12_c02084{bottom:725.253333pt;}
.y11_c02084{bottom:742.053333pt;}
.y10_c02084{bottom:759.013333pt;}
.yf_c02084{bottom:775.813333pt;}
.ye_c02084{bottom:792.773333pt;}
.yd_c02084{bottom:809.573333pt;}
.yc_c02084{bottom:827.653333pt;}
.yb_c02084{bottom:844.613333pt;}
.ya_c02084{bottom:861.413333pt;}
.y9_c02084{bottom:878.213333pt;}
.y8_c02084{bottom:896.453333pt;}
.y7_c02084{bottom:913.253333pt;}
.y6_c02084{bottom:930.053333pt;}
.y5_c02084{bottom:947.040000pt;}
.y1_c02084{bottom:996.800000pt;}
.h3_c02084{height:20.000000pt;}
.h2_c02084{height:43.441250pt;}
.h1_c02084{height:52.134375pt;}
.h6_c02084{height:52.785000pt;}
.h5_c02084{height:57.787500pt;}
.h8_c02084{height:62.812500pt;}
.h7_c02084{height:64.500000pt;}
.h4_c02084{height:65.781915pt;}
.h0_c02084{height:1056.000000pt;}
.w1_c02084{width:59.232000pt;}
.w0_c02084{width:816.000000pt;}
.x0_c02084{left:0.000000pt;}
.x3_c02084{left:14.720000pt;}
.x1_c02084{left:113.472000pt;}
.x6_c02084{left:160.666667pt;}
.x4_c02084{left:217.466667pt;}
.x5_c02084{left:241.466667pt;}
.x2_c02084{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02085 {
    display:none;
  }
  .loading-indicator_c02085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02085 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02085 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02085" -> "#page-container .classname_c02085")
 */
.pf_c02085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02085 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02085 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02085 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02085 {overflow:visible;}
  }
}
.c_c02085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02085 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02085:after { /* webkit #35443 */
  content: '';
}
.t_c02085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02085 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02085 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02085 { /* info for Javascript */
  display:none;
}
.l_c02085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02085:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02085 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02085.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02085;src:url('chunks/assets/font_39c769d7bb577fbbf0bba609.woff2')format("woff");}.ff1_c02085{font-family:ff1_c02085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02085;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02085{font-family:ff2_c02085;line-height:0.863770;font-style:normal;font-weight: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_c02085;src:url('chunks/assets/font_7276af0e6e1572eaf45795ef.woff2')format("woff");}.ff3_c02085{font-family:ff3_c02085;line-height:1.112305;font-style:normal;font-weight: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_c02085;src:url('chunks/assets/font_574e19d2a5e3c7651af11967.woff2')format("woff");}.ff4_c02085{font-family:ff4_c02085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02085{vertical-align:-27.360000px;}
.v0_c02085{vertical-align:0.000000px;}
.v1_c02085{vertical-align:33.120000px;}
.lsb_c02085{letter-spacing:-1.080000px;}
.ls9_c02085{letter-spacing:-0.288000px;}
.ls8_c02085{letter-spacing:0.000000px;}
.ls4_c02085{letter-spacing:0.106560px;}
.ls7_c02085{letter-spacing:0.106800px;}
.ls1_c02085{letter-spacing:0.150000px;}
.ls2_c02085{letter-spacing:0.180000px;}
.ls0_c02085{letter-spacing:0.360000px;}
.lsa_c02085{letter-spacing:0.513600px;}
.ls5_c02085{letter-spacing:0.826560px;}
.ls3_c02085{letter-spacing:1.620000px;}
.ls6_c02085{letter-spacing:5.220000px;}
.sc__c02085{text-shadow:none;}
.sc0_c02085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02085{-webkit-text-stroke:0px transparent;}
.sc0_c02085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02085{word-spacing:-18.000000px;}
.ws0_c02085{word-spacing:-17.712000px;}
.ws3_c02085{word-spacing:-14.940000px;}
.ws2_c02085{word-spacing:-9.720000px;}
.ws4_c02085{word-spacing:0.000000px;}
._13_c02085{margin-left:-12.817920px;}
._5_c02085{margin-left:-1.440000px;}
._2_c02085{width:1.596000px;}
._6_c02085{width:3.204000px;}
._11_c02085{width:4.392000px;}
._12_c02085{width:5.616000px;}
._10_c02085{width:6.840000px;}
._9_c02085{width:8.568000px;}
._1_c02085{width:9.936000px;}
._3_c02085{width:11.016000px;}
._4_c02085{width:12.204000px;}
._d_c02085{width:13.428000px;}
._7_c02085{width:14.472000px;}
._8_c02085{width:15.912000px;}
._c_c02085{width:16.920000px;}
._14_c02085{width:18.310679px;}
._a_c02085{width:21.240000px;}
._b_c02085{width:22.332000px;}
._e_c02085{width:27.360000px;}
._f_c02085{width:28.872000px;}
._0_c02085{width:1500.936000px;}
.fc1_c02085{color:rgb(192,80,77);}
.fc0_c02085{color:rgb(0,0,0);}
.fs4_c02085{font-size:38.880000px;}
.fs3_c02085{font-size:48.240000px;}
.fs0_c02085{font-size:59.760000px;}
.fs1_c02085{font-size:66.240000px;}
.fs2_c02085{font-size:72.000000px;}
.y0_c02085{bottom:0.000000px;}
.y4_c02085{bottom:4.680000px;}
.y3_c02085{bottom:41.796000px;}
.y2_c02085{bottom:75.456000px;}
.y26_c02085{bottom:206.130000px;}
.y25_c02085{bottom:223.410000px;}
.y24_c02085{bottom:240.690000px;}
.y23_c02085{bottom:257.970000px;}
.y22_c02085{bottom:275.295000px;}
.y21_c02085{bottom:292.575000px;}
.y20_c02085{bottom:309.675000px;}
.y1f_c02085{bottom:326.955000px;}
.y1e_c02085{bottom:344.235000px;}
.y1d_c02085{bottom:361.515000px;}
.y1c_c02085{bottom:378.795000px;}
.y1b_c02085{bottom:402.735000px;}
.y1a_c02085{bottom:414.075000px;}
.y19_c02085{bottom:444.315000px;}
.y18_c02085{bottom:475.275000px;}
.y17_c02085{bottom:506.415000px;}
.y16_c02085{bottom:537.405000px;}
.y15_c02085{bottom:568.545000px;}
.y14_c02085{bottom:599.505000px;}
.y13_c02085{bottom:630.645000px;}
.y12_c02085{bottom:661.605000px;}
.y11_c02085{bottom:692.745000px;}
.y10_c02085{bottom:723.705000px;}
.yf_c02085{bottom:754.845000px;}
.ye_c02085{bottom:785.805000px;}
.yd_c02085{bottom:816.990000px;}
.yc_c02085{bottom:847.950000px;}
.yb_c02085{bottom:879.090000px;}
.ya_c02085{bottom:910.050000px;}
.y9_c02085{bottom:941.190000px;}
.y8_c02085{bottom:972.150000px;}
.y7_c02085{bottom:1003.290000px;}
.y6_c02085{bottom:1034.250000px;}
.y5_c02085{bottom:1065.420000px;}
.y1_c02085{bottom:1121.400000px;}
.h3_c02085{height:22.500000px;}
.h6_c02085{height:38.158594px;}
.h2_c02085{height:48.871406px;}
.h1_c02085{height:58.651172px;}
.h4_c02085{height:70.664062px;}
.h5_c02085{height:80.464922px;}
.h0_c02085{height:1188.000000px;}
.w1_c02085{width:66.636000px;}
.w0_c02085{width:918.000000px;}
.x0_c02085{left:0.000000px;}
.x3_c02085{left:16.560000px;}
.x1_c02085{left:127.656000px;}
.x4_c02085{left:180.750000px;}
.x2_c02085{left:820.950000px;}
@media print{
.v2_c02085{vertical-align:-24.320000pt;}
.v0_c02085{vertical-align:0.000000pt;}
.v1_c02085{vertical-align:29.440000pt;}
.lsb_c02085{letter-spacing:-0.960000pt;}
.ls9_c02085{letter-spacing:-0.256000pt;}
.ls8_c02085{letter-spacing:0.000000pt;}
.ls4_c02085{letter-spacing:0.094720pt;}
.ls7_c02085{letter-spacing:0.094933pt;}
.ls1_c02085{letter-spacing:0.133333pt;}
.ls2_c02085{letter-spacing:0.160000pt;}
.ls0_c02085{letter-spacing:0.320000pt;}
.lsa_c02085{letter-spacing:0.456533pt;}
.ls5_c02085{letter-spacing:0.734720pt;}
.ls3_c02085{letter-spacing:1.440000pt;}
.ls6_c02085{letter-spacing:4.640000pt;}
.ws1_c02085{word-spacing:-16.000000pt;}
.ws0_c02085{word-spacing:-15.744000pt;}
.ws3_c02085{word-spacing:-13.280000pt;}
.ws2_c02085{word-spacing:-8.640000pt;}
.ws4_c02085{word-spacing:0.000000pt;}
._13_c02085{margin-left:-11.393707pt;}
._5_c02085{margin-left:-1.280000pt;}
._2_c02085{width:1.418667pt;}
._6_c02085{width:2.848000pt;}
._11_c02085{width:3.904000pt;}
._12_c02085{width:4.992000pt;}
._10_c02085{width:6.080000pt;}
._9_c02085{width:7.616000pt;}
._1_c02085{width:8.832000pt;}
._3_c02085{width:9.792000pt;}
._4_c02085{width:10.848000pt;}
._d_c02085{width:11.936000pt;}
._7_c02085{width:12.864000pt;}
._8_c02085{width:14.144000pt;}
._c_c02085{width:15.040000pt;}
._14_c02085{width:16.276159pt;}
._a_c02085{width:18.880000pt;}
._b_c02085{width:19.850667pt;}
._e_c02085{width:24.320000pt;}
._f_c02085{width:25.664000pt;}
._0_c02085{width:1334.165333pt;}
.fs4_c02085{font-size:34.560000pt;}
.fs3_c02085{font-size:42.880000pt;}
.fs0_c02085{font-size:53.120000pt;}
.fs1_c02085{font-size:58.880000pt;}
.fs2_c02085{font-size:64.000000pt;}
.y0_c02085{bottom:0.000000pt;}
.y4_c02085{bottom:4.160000pt;}
.y3_c02085{bottom:37.152000pt;}
.y2_c02085{bottom:67.072000pt;}
.y26_c02085{bottom:183.226667pt;}
.y25_c02085{bottom:198.586667pt;}
.y24_c02085{bottom:213.946667pt;}
.y23_c02085{bottom:229.306667pt;}
.y22_c02085{bottom:244.706667pt;}
.y21_c02085{bottom:260.066667pt;}
.y20_c02085{bottom:275.266667pt;}
.y1f_c02085{bottom:290.626667pt;}
.y1e_c02085{bottom:305.986667pt;}
.y1d_c02085{bottom:321.346667pt;}
.y1c_c02085{bottom:336.706667pt;}
.y1b_c02085{bottom:357.986667pt;}
.y1a_c02085{bottom:368.066667pt;}
.y19_c02085{bottom:394.946667pt;}
.y18_c02085{bottom:422.466667pt;}
.y17_c02085{bottom:450.146667pt;}
.y16_c02085{bottom:477.693333pt;}
.y15_c02085{bottom:505.373333pt;}
.y14_c02085{bottom:532.893333pt;}
.y13_c02085{bottom:560.573333pt;}
.y12_c02085{bottom:588.093333pt;}
.y11_c02085{bottom:615.773333pt;}
.y10_c02085{bottom:643.293333pt;}
.yf_c02085{bottom:670.973333pt;}
.ye_c02085{bottom:698.493333pt;}
.yd_c02085{bottom:726.213333pt;}
.yc_c02085{bottom:753.733333pt;}
.yb_c02085{bottom:781.413333pt;}
.ya_c02085{bottom:808.933333pt;}
.y9_c02085{bottom:836.613333pt;}
.y8_c02085{bottom:864.133333pt;}
.y7_c02085{bottom:891.813333pt;}
.y6_c02085{bottom:919.333333pt;}
.y5_c02085{bottom:947.040000pt;}
.y1_c02085{bottom:996.800000pt;}
.h3_c02085{height:20.000000pt;}
.h6_c02085{height:33.918750pt;}
.h2_c02085{height:43.441250pt;}
.h1_c02085{height:52.134375pt;}
.h4_c02085{height:62.812500pt;}
.h5_c02085{height:71.524375pt;}
.h0_c02085{height:1056.000000pt;}
.w1_c02085{width:59.232000pt;}
.w0_c02085{width:816.000000pt;}
.x0_c02085{left:0.000000pt;}
.x3_c02085{left:14.720000pt;}
.x1_c02085{left:113.472000pt;}
.x4_c02085{left:160.666667pt;}
.x2_c02085{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02086 {
    display:none;
  }
  .loading-indicator_c02086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02086 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02086 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02086" -> "#page-container .classname_c02086")
 */
.pf_c02086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02086 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02086 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02086 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02086 {overflow:visible;}
  }
}
.c_c02086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02086 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02086:after { /* webkit #35443 */
  content: '';
}
.t_c02086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02086 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02086 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02086 { /* info for Javascript */
  display:none;
}
.l_c02086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02086:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02086 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02086.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02086;src:url('chunks/assets/font_f5d34fc9e5bed3023d04feb9.woff2')format("woff");}.ff1_c02086{font-family:ff1_c02086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02086;src:url('chunks/assets/font_643595a65141043e8757fef3.woff2')format("woff");}.ff2_c02086{font-family:ff2_c02086;line-height:0.863770;font-style:normal;font-weight: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_c02086;src:url('chunks/assets/font_21ce6e0294af25e7828c9ef4.woff2')format("woff");}.ff3_c02086{font-family:ff3_c02086;line-height:1.284180;font-style:normal;font-weight: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_c02086;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02086{font-family:ff4_c02086;line-height:1.311035;font-style:normal;font-weight: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_c02086;src:url('chunks/assets/font_d3952f5c7c6c0c88337cd853.woff2')format("woff");}.ff5_c02086{font-family:ff5_c02086;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02086{vertical-align:-27.360000px;}
.v0_c02086{vertical-align:0.000000px;}
.v1_c02086{vertical-align:33.120000px;}
.ls4_c02086{letter-spacing:0.000000px;}
.ls3_c02086{letter-spacing:0.104641px;}
.ls2_c02086{letter-spacing:0.150000px;}
.ls0_c02086{letter-spacing:0.360000px;}
.ls1_c02086{letter-spacing:3.600000px;}
.sc__c02086{text-shadow:none;}
.sc0_c02086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02086{-webkit-text-stroke:0px transparent;}
.sc0_c02086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02086{word-spacing:-18.000000px;}
.ws2_c02086{word-spacing:-14.940000px;}
.ws1_c02086{word-spacing:-9.720000px;}
.ws3_c02086{word-spacing:0.000000px;}
._11_c02086{margin-left:-12.817920px;}
._f_c02086{margin-left:-2.160000px;}
._1_c02086{margin-left:-1.080000px;}
._2_c02086{width:1.152000px;}
._3_c02086{width:3.024000px;}
._6_c02086{width:4.896000px;}
._8_c02086{width:6.408000px;}
._7_c02086{width:7.416000px;}
._9_c02086{width:8.436000px;}
._a_c02086{width:10.092000px;}
._4_c02086{width:12.720000px;}
._5_c02086{width:14.124000px;}
._b_c02086{width:16.488000px;}
._12_c02086{width:17.559840px;}
._c_c02086{width:19.656000px;}
._d_c02086{width:20.736000px;}
._e_c02086{width:21.816000px;}
._10_c02086{width:24.336000px;}
._0_c02086{width:1500.936000px;}
.fc1_c02086{color:rgb(192,80,77);}
.fc2_c02086{color:rgb(255,255,255);}
.fc0_c02086{color:rgb(0,0,0);}
.fs5_c02086{font-size:38.880000px;}
.fs4_c02086{font-size:48.240000px;}
.fs0_c02086{font-size:59.760000px;}
.fs3_c02086{font-size:63.360000px;}
.fs1_c02086{font-size:66.240000px;}
.fs2_c02086{font-size:72.000000px;}
.y0_c02086{bottom:0.000000px;}
.y9_c02086{bottom:3.780000px;}
.yb_c02086{bottom:3.960000px;}
.y4_c02086{bottom:4.680000px;}
.ye_c02086{bottom:21.960000px;}
.yd_c02086{bottom:40.140000px;}
.y3_c02086{bottom:41.796000px;}
.y2_c02086{bottom:75.456000px;}
.y2b_c02086{bottom:113.976000px;}
.y2a_c02086{bottom:131.256000px;}
.y29_c02086{bottom:148.536000px;}
.y28_c02086{bottom:165.630000px;}
.y27_c02086{bottom:189.750000px;}
.y26_c02086{bottom:201.090000px;}
.y25_c02086{bottom:231.330000px;}
.y24_c02086{bottom:262.290000px;}
.y23_c02086{bottom:293.475000px;}
.y22_c02086{bottom:324.435000px;}
.y21_c02086{bottom:355.575000px;}
.y20_c02086{bottom:386.535000px;}
.y1f_c02086{bottom:417.675000px;}
.y1e_c02086{bottom:448.635000px;}
.y1d_c02086{bottom:479.775000px;}
.y1c_c02086{bottom:510.735000px;}
.y1b_c02086{bottom:541.725000px;}
.y1a_c02086{bottom:572.865000px;}
.y19_c02086{bottom:603.825000px;}
.y18_c02086{bottom:634.965000px;}
.y17_c02086{bottom:665.925000px;}
.y16_c02086{bottom:697.065000px;}
.y15_c02086{bottom:728.025000px;}
.y14_c02086{bottom:759.165000px;}
.y13_c02086{bottom:780.045000px;}
.y12_c02086{bottom:797.010000px;}
.y11_c02086{bottom:833.910000px;}
.y10_c02086{bottom:852.810000px;}
.yf_c02086{bottom:889.890000px;}
.yc_c02086{bottom:926.790000px;}
.ya_c02086{bottom:981.870000px;}
.y8_c02086{bottom:1000.770000px;}
.y7_c02086{bottom:1024.170000px;}
.y6_c02086{bottom:1044.870000px;}
.y5_c02086{bottom:1065.600000px;}
.y1_c02086{bottom:1121.400000px;}
.h5_c02086{height:18.000000px;}
.h7_c02086{height:18.180000px;}
.h3_c02086{height:22.500000px;}
.h9_c02086{height:36.180000px;}
.hc_c02086{height:38.158594px;}
.h2_c02086{height:48.871406px;}
.h8_c02086{height:54.360000px;}
.h1_c02086{height:58.651172px;}
.h6_c02086{height:62.184375px;}
.h4_c02086{height:70.664062px;}
.ha_c02086{height:72.562500px;}
.hb_c02086{height:80.441367px;}
.h0_c02086{height:1188.000000px;}
.w1_c02086{width:66.636000px;}
.w5_c02086{width:90.540000px;}
.w4_c02086{width:105.516000px;}
.w2_c02086{width:126.720000px;}
.w3_c02086{width:339.375000px;}
.w0_c02086{width:918.000000px;}
.x0_c02086{left:0.000000px;}
.xd_c02086{left:9.000000px;}
.x10_c02086{left:11.520000px;}
.x14_c02086{left:15.120000px;}
.x3_c02086{left:16.560000px;}
.x19_c02086{left:18.540000px;}
.xb_c02086{left:22.680000px;}
.x7_c02086{left:24.474000px;}
.x1a_c02086{left:26.460000px;}
.xf_c02086{left:30.960000px;}
.x17_c02086{left:37.074000px;}
.x11_c02086{left:38.340000px;}
.x16_c02086{left:51.525000px;}
.x12_c02086{left:69.885000px;}
.x15_c02086{left:91.305000px;}
.x13_c02086{left:99.945000px;}
.xe_c02086{left:108.585000px;}
.x1_c02086{left:127.656000px;}
.x9_c02086{left:150.525000px;}
.x18_c02086{left:167.085000px;}
.x5_c02086{left:172.110000px;}
.x1b_c02086{left:180.750000px;}
.x8_c02086{left:255.630000px;}
.x4_c02086{left:415.695000px;}
.x6_c02086{left:459.075000px;}
.xa_c02086{left:595.905000px;}
.xc_c02086{left:702.150000px;}
.x2_c02086{left:820.950000px;}
@media print{
.v2_c02086{vertical-align:-24.320000pt;}
.v0_c02086{vertical-align:0.000000pt;}
.v1_c02086{vertical-align:29.440000pt;}
.ls4_c02086{letter-spacing:0.000000pt;}
.ls3_c02086{letter-spacing:0.093014pt;}
.ls2_c02086{letter-spacing:0.133333pt;}
.ls0_c02086{letter-spacing:0.320000pt;}
.ls1_c02086{letter-spacing:3.200000pt;}
.ws0_c02086{word-spacing:-16.000000pt;}
.ws2_c02086{word-spacing:-13.280000pt;}
.ws1_c02086{word-spacing:-8.640000pt;}
.ws3_c02086{word-spacing:0.000000pt;}
._11_c02086{margin-left:-11.393707pt;}
._f_c02086{margin-left:-1.920000pt;}
._1_c02086{margin-left:-0.960000pt;}
._2_c02086{width:1.024000pt;}
._3_c02086{width:2.688000pt;}
._6_c02086{width:4.352000pt;}
._8_c02086{width:5.696000pt;}
._7_c02086{width:6.592000pt;}
._9_c02086{width:7.498667pt;}
._a_c02086{width:8.970667pt;}
._4_c02086{width:11.306667pt;}
._5_c02086{width:12.554667pt;}
._b_c02086{width:14.656000pt;}
._12_c02086{width:15.608747pt;}
._c_c02086{width:17.472000pt;}
._d_c02086{width:18.432000pt;}
._e_c02086{width:19.392000pt;}
._10_c02086{width:21.632000pt;}
._0_c02086{width:1334.165333pt;}
.fs5_c02086{font-size:34.560000pt;}
.fs4_c02086{font-size:42.880000pt;}
.fs0_c02086{font-size:53.120000pt;}
.fs3_c02086{font-size:56.320000pt;}
.fs1_c02086{font-size:58.880000pt;}
.fs2_c02086{font-size:64.000000pt;}
.y0_c02086{bottom:0.000000pt;}
.y9_c02086{bottom:3.360000pt;}
.yb_c02086{bottom:3.520000pt;}
.y4_c02086{bottom:4.160000pt;}
.ye_c02086{bottom:19.520000pt;}
.yd_c02086{bottom:35.680000pt;}
.y3_c02086{bottom:37.152000pt;}
.y2_c02086{bottom:67.072000pt;}
.y2b_c02086{bottom:101.312000pt;}
.y2a_c02086{bottom:116.672000pt;}
.y29_c02086{bottom:132.032000pt;}
.y28_c02086{bottom:147.226667pt;}
.y27_c02086{bottom:168.666667pt;}
.y26_c02086{bottom:178.746667pt;}
.y25_c02086{bottom:205.626667pt;}
.y24_c02086{bottom:233.146667pt;}
.y23_c02086{bottom:260.866667pt;}
.y22_c02086{bottom:288.386667pt;}
.y21_c02086{bottom:316.066667pt;}
.y20_c02086{bottom:343.586667pt;}
.y1f_c02086{bottom:371.266667pt;}
.y1e_c02086{bottom:398.786667pt;}
.y1d_c02086{bottom:426.466667pt;}
.y1c_c02086{bottom:453.986667pt;}
.y1b_c02086{bottom:481.533333pt;}
.y1a_c02086{bottom:509.213333pt;}
.y19_c02086{bottom:536.733333pt;}
.y18_c02086{bottom:564.413333pt;}
.y17_c02086{bottom:591.933333pt;}
.y16_c02086{bottom:619.613333pt;}
.y15_c02086{bottom:647.133333pt;}
.y14_c02086{bottom:674.813333pt;}
.y13_c02086{bottom:693.373333pt;}
.y12_c02086{bottom:708.453333pt;}
.y11_c02086{bottom:741.253333pt;}
.y10_c02086{bottom:758.053333pt;}
.yf_c02086{bottom:791.013333pt;}
.yc_c02086{bottom:823.813333pt;}
.ya_c02086{bottom:872.773333pt;}
.y8_c02086{bottom:889.573333pt;}
.y7_c02086{bottom:910.373333pt;}
.y6_c02086{bottom:928.773333pt;}
.y5_c02086{bottom:947.200000pt;}
.y1_c02086{bottom:996.800000pt;}
.h5_c02086{height:16.000000pt;}
.h7_c02086{height:16.160000pt;}
.h3_c02086{height:20.000000pt;}
.h9_c02086{height:32.160000pt;}
.hc_c02086{height:33.918750pt;}
.h2_c02086{height:43.441250pt;}
.h8_c02086{height:48.320000pt;}
.h1_c02086{height:52.134375pt;}
.h6_c02086{height:55.275000pt;}
.h4_c02086{height:62.812500pt;}
.ha_c02086{height:64.500000pt;}
.hb_c02086{height:71.503438pt;}
.h0_c02086{height:1056.000000pt;}
.w1_c02086{width:59.232000pt;}
.w5_c02086{width:80.480000pt;}
.w4_c02086{width:93.792000pt;}
.w2_c02086{width:112.640000pt;}
.w3_c02086{width:301.666667pt;}
.w0_c02086{width:816.000000pt;}
.x0_c02086{left:0.000000pt;}
.xd_c02086{left:8.000000pt;}
.x10_c02086{left:10.240000pt;}
.x14_c02086{left:13.440000pt;}
.x3_c02086{left:14.720000pt;}
.x19_c02086{left:16.480000pt;}
.xb_c02086{left:20.160000pt;}
.x7_c02086{left:21.754667pt;}
.x1a_c02086{left:23.520000pt;}
.xf_c02086{left:27.520000pt;}
.x17_c02086{left:32.954667pt;}
.x11_c02086{left:34.080000pt;}
.x16_c02086{left:45.800000pt;}
.x12_c02086{left:62.120000pt;}
.x15_c02086{left:81.160000pt;}
.x13_c02086{left:88.840000pt;}
.xe_c02086{left:96.520000pt;}
.x1_c02086{left:113.472000pt;}
.x9_c02086{left:133.800000pt;}
.x18_c02086{left:148.520000pt;}
.x5_c02086{left:152.986667pt;}
.x1b_c02086{left:160.666667pt;}
.x8_c02086{left:227.226667pt;}
.x4_c02086{left:369.506667pt;}
.x6_c02086{left:408.066667pt;}
.xa_c02086{left:529.693333pt;}
.xc_c02086{left:624.133333pt;}
.x2_c02086{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02087 {
    display:none;
  }
  .loading-indicator_c02087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02087 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02087 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02087" -> "#page-container .classname_c02087")
 */
.pf_c02087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02087 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02087 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02087 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02087 {overflow:visible;}
  }
}
.c_c02087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02087 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02087:after { /* webkit #35443 */
  content: '';
}
.t_c02087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02087 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02087 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02087 { /* info for Javascript */
  display:none;
}
.l_c02087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02087:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02087 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02087.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02087;src:url('chunks/assets/font_c7fab3de0d5f0cb713f9736b.woff2')format("woff");}.ff1_c02087{font-family:ff1_c02087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02087;src:url('chunks/assets/font_b6959c56e21bce763fd1084e.woff2')format("woff");}.ff2_c02087{font-family:ff2_c02087;line-height:0.863770;font-style:normal;font-weight: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_c02087;src:url('chunks/assets/font_591bdcb3815804d65918715c.woff2')format("woff");}.ff3_c02087{font-family:ff3_c02087;line-height:1.112305;font-style:normal;font-weight: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_c02087;src:url('chunks/assets/font_1c7ecb2479909b71143d1fef.woff2')format("woff");}.ff4_c02087{font-family:ff4_c02087;line-height:1.284180;font-style:normal;font-weight: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_c02087;src:url('chunks/assets/font_f83aebb1b5f8c799514415a0.woff2')format("woff");}.ff5_c02087{font-family:ff5_c02087;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02087{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02087{vertical-align:0.000000px;}
.ls1_c02087{letter-spacing:0.000000px;}
.ls2_c02087{letter-spacing:0.072000px;}
.ls0_c02087{letter-spacing:30.384000px;}
.sc__c02087{text-shadow:none;}
.sc0_c02087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02087{-webkit-text-stroke:0px transparent;}
.sc0_c02087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02087{word-spacing:-18.072000px;}
.ws1_c02087{word-spacing:-18.000000px;}
.ws2_c02087{word-spacing:0.000000px;}
._14_c02087{margin-left:-2.160000px;}
._4_c02087{margin-left:-1.068000px;}
._2_c02087{width:1.296000px;}
._a_c02087{width:2.520000px;}
._5_c02087{width:3.600000px;}
._6_c02087{width:4.764000px;}
._d_c02087{width:5.868000px;}
._10_c02087{width:7.032000px;}
._f_c02087{width:8.148000px;}
._e_c02087{width:9.276000px;}
._11_c02087{width:10.440000px;}
._12_c02087{width:11.688000px;}
._13_c02087{width:12.936000px;}
._8_c02087{width:14.832000px;}
._9_c02087{width:16.416000px;}
._b_c02087{width:19.080000px;}
._c_c02087{width:20.172000px;}
._7_c02087{width:32.952000px;}
._1_c02087{width:35.352000px;}
._3_c02087{width:36.648000px;}
._0_c02087{width:1500.936000px;}
.fc2_c02087{color:rgb(0,0,255);}
.fc1_c02087{color:rgb(192,80,77);}
.fc0_c02087{color:rgb(0,0,0);}
.fs0_c02087{font-size:59.760000px;}
.fs1_c02087{font-size:66.240000px;}
.fs2_c02087{font-size:72.000000px;}
.y0_c02087{bottom:0.000000px;}
.y4_c02087{bottom:4.680000px;}
.y3_c02087{bottom:41.796000px;}
.y2_c02087{bottom:75.456000px;}
.y23_c02087{bottom:133.776000px;}
.y22_c02087{bottom:164.910000px;}
.y21_c02087{bottom:195.870000px;}
.y20_c02087{bottom:226.830000px;}
.y1f_c02087{bottom:257.970000px;}
.y1e_c02087{bottom:288.975000px;}
.y1d_c02087{bottom:320.115000px;}
.y1c_c02087{bottom:351.075000px;}
.y1b_c02087{bottom:382.215000px;}
.y1a_c02087{bottom:413.175000px;}
.y19_c02087{bottom:444.315000px;}
.y18_c02087{bottom:475.275000px;}
.y17_c02087{bottom:506.415000px;}
.y16_c02087{bottom:537.405000px;}
.y15_c02087{bottom:568.545000px;}
.y14_c02087{bottom:599.505000px;}
.y13_c02087{bottom:630.645000px;}
.y12_c02087{bottom:661.605000px;}
.y11_c02087{bottom:692.745000px;}
.y10_c02087{bottom:723.705000px;}
.yf_c02087{bottom:754.845000px;}
.ye_c02087{bottom:785.805000px;}
.yd_c02087{bottom:816.990000px;}
.yc_c02087{bottom:847.950000px;}
.yb_c02087{bottom:879.090000px;}
.ya_c02087{bottom:910.050000px;}
.y9_c02087{bottom:941.190000px;}
.y8_c02087{bottom:972.150000px;}
.y7_c02087{bottom:1003.290000px;}
.y6_c02087{bottom:1034.250000px;}
.y5_c02087{bottom:1065.420000px;}
.y1_c02087{bottom:1121.400000px;}
.h3_c02087{height:22.500000px;}
.h2_c02087{height:48.871406px;}
.h1_c02087{height:58.651172px;}
.h4_c02087{height:70.664062px;}
.h5_c02087{height:74.004654px;}
.h0_c02087{height:1188.000000px;}
.w1_c02087{width:66.636000px;}
.w0_c02087{width:918.000000px;}
.x0_c02087{left:0.000000px;}
.x3_c02087{left:16.560000px;}
.x1_c02087{left:127.656000px;}
.x5_c02087{left:154.650000px;}
.x4_c02087{left:180.750000px;}
.x6_c02087{left:207.750000px;}
.x2_c02087{left:820.950000px;}
@media print{
.v0_c02087{vertical-align:0.000000pt;}
.ls1_c02087{letter-spacing:0.000000pt;}
.ls2_c02087{letter-spacing:0.064000pt;}
.ls0_c02087{letter-spacing:27.008000pt;}
.ws0_c02087{word-spacing:-16.064000pt;}
.ws1_c02087{word-spacing:-16.000000pt;}
.ws2_c02087{word-spacing:0.000000pt;}
._14_c02087{margin-left:-1.920000pt;}
._4_c02087{margin-left:-0.949333pt;}
._2_c02087{width:1.152000pt;}
._a_c02087{width:2.240000pt;}
._5_c02087{width:3.200000pt;}
._6_c02087{width:4.234667pt;}
._d_c02087{width:5.216000pt;}
._10_c02087{width:6.250667pt;}
._f_c02087{width:7.242667pt;}
._e_c02087{width:8.245333pt;}
._11_c02087{width:9.280000pt;}
._12_c02087{width:10.389333pt;}
._13_c02087{width:11.498667pt;}
._8_c02087{width:13.184000pt;}
._9_c02087{width:14.592000pt;}
._b_c02087{width:16.960000pt;}
._c_c02087{width:17.930667pt;}
._7_c02087{width:29.290667pt;}
._1_c02087{width:31.424000pt;}
._3_c02087{width:32.576000pt;}
._0_c02087{width:1334.165333pt;}
.fs0_c02087{font-size:53.120000pt;}
.fs1_c02087{font-size:58.880000pt;}
.fs2_c02087{font-size:64.000000pt;}
.y0_c02087{bottom:0.000000pt;}
.y4_c02087{bottom:4.160000pt;}
.y3_c02087{bottom:37.152000pt;}
.y2_c02087{bottom:67.072000pt;}
.y23_c02087{bottom:118.912000pt;}
.y22_c02087{bottom:146.586667pt;}
.y21_c02087{bottom:174.106667pt;}
.y20_c02087{bottom:201.626667pt;}
.y1f_c02087{bottom:229.306667pt;}
.y1e_c02087{bottom:256.866667pt;}
.y1d_c02087{bottom:284.546667pt;}
.y1c_c02087{bottom:312.066667pt;}
.y1b_c02087{bottom:339.746667pt;}
.y1a_c02087{bottom:367.266667pt;}
.y19_c02087{bottom:394.946667pt;}
.y18_c02087{bottom:422.466667pt;}
.y17_c02087{bottom:450.146667pt;}
.y16_c02087{bottom:477.693333pt;}
.y15_c02087{bottom:505.373333pt;}
.y14_c02087{bottom:532.893333pt;}
.y13_c02087{bottom:560.573333pt;}
.y12_c02087{bottom:588.093333pt;}
.y11_c02087{bottom:615.773333pt;}
.y10_c02087{bottom:643.293333pt;}
.yf_c02087{bottom:670.973333pt;}
.ye_c02087{bottom:698.493333pt;}
.yd_c02087{bottom:726.213333pt;}
.yc_c02087{bottom:753.733333pt;}
.yb_c02087{bottom:781.413333pt;}
.ya_c02087{bottom:808.933333pt;}
.y9_c02087{bottom:836.613333pt;}
.y8_c02087{bottom:864.133333pt;}
.y7_c02087{bottom:891.813333pt;}
.y6_c02087{bottom:919.333333pt;}
.y5_c02087{bottom:947.040000pt;}
.y1_c02087{bottom:996.800000pt;}
.h3_c02087{height:20.000000pt;}
.h2_c02087{height:43.441250pt;}
.h1_c02087{height:52.134375pt;}
.h4_c02087{height:62.812500pt;}
.h5_c02087{height:65.781915pt;}
.h0_c02087{height:1056.000000pt;}
.w1_c02087{width:59.232000pt;}
.w0_c02087{width:816.000000pt;}
.x0_c02087{left:0.000000pt;}
.x3_c02087{left:14.720000pt;}
.x1_c02087{left:113.472000pt;}
.x5_c02087{left:137.466667pt;}
.x4_c02087{left:160.666667pt;}
.x6_c02087{left:184.666667pt;}
.x2_c02087{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02088 {
    display:none;
  }
  .loading-indicator_c02088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02088 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02088 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02088" -> "#page-container .classname_c02088")
 */
.pf_c02088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02088 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02088 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02088 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02088 {overflow:visible;}
  }
}
.c_c02088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02088 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02088:after { /* webkit #35443 */
  content: '';
}
.t_c02088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02088 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02088 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02088 { /* info for Javascript */
  display:none;
}
.l_c02088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02088:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02088 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02088.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02088;src:url('chunks/assets/font_e5afe9cba69fd663e2d2eb22.woff2')format("woff");}.ff1_c02088{font-family:ff1_c02088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02088;src:url('chunks/assets/font_48dc4d9840460d103ea74434.woff2')format("woff");}.ff2_c02088{font-family:ff2_c02088;line-height:0.863770;font-style:normal;font-weight: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_c02088;src:url('chunks/assets/font_8fa1a9a43655c0c81bc07d49.woff2')format("woff");}.ff3_c02088{font-family:ff3_c02088;line-height:1.112305;font-style:normal;font-weight: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_c02088;src:url('chunks/assets/font_f1d4a0940abbad2fc5ecabae.woff2')format("woff");}.ff4_c02088{font-family:ff4_c02088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02088{vertical-align:0.000000px;}
.ls3_c02088{letter-spacing:-1.440000px;}
.ls2_c02088{letter-spacing:0.000000px;}
.ls0_c02088{letter-spacing:0.262080px;}
.ls1_c02088{letter-spacing:1.440000px;}
.sc__c02088{text-shadow:none;}
.sc0_c02088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02088{-webkit-text-stroke:0px transparent;}
.sc0_c02088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02088{word-spacing:-18.000000px;}
.ws1_c02088{word-spacing:0.000000px;}
._10_c02088{margin-left:-2.075240px;}
._5_c02088{margin-left:-1.059575px;}
._2_c02088{width:1.368000px;}
._9_c02088{width:2.583625px;}
._8_c02088{width:4.437550px;}
._7_c02088{width:5.564425px;}
._f_c02088{width:6.624000px;}
._4_c02088{width:8.478654px;}
._6_c02088{width:9.539024px;}
._14_c02088{width:11.363203px;}
._12_c02088{width:12.381917px;}
._a_c02088{width:13.446588px;}
._b_c02088{width:14.573595px;}
._1_c02088{width:15.696000px;}
._3_c02088{width:16.980000px;}
._e_c02088{width:19.673412px;}
._13_c02088{width:23.053294px;}
._c_c02088{width:24.177600px;}
._d_c02088{width:25.922300px;}
._11_c02088{width:27.213700px;}
._0_c02088{width:1500.936000px;}
.fc1_c02088{color:rgb(192,80,77);}
.fc0_c02088{color:rgb(0,0,0);}
.fs0_c02088{font-size:59.760000px;}
.fs1_c02088{font-size:66.240000px;}
.fs2_c02088{font-size:72.000000px;}
.y0_c02088{bottom:0.000000px;}
.y4_c02088{bottom:4.680000px;}
.y3_c02088{bottom:41.796000px;}
.y2_c02088{bottom:75.456000px;}
.y29_c02088{bottom:140.616000px;}
.y28_c02088{bottom:171.750000px;}
.y27_c02088{bottom:202.710000px;}
.y26_c02088{bottom:233.850000px;}
.y25_c02088{bottom:264.810000px;}
.y24_c02088{bottom:295.995000px;}
.y23_c02088{bottom:326.955000px;}
.y22_c02088{bottom:358.095000px;}
.y21_c02088{bottom:389.055000px;}
.y20_c02088{bottom:420.195000px;}
.y1f_c02088{bottom:451.155000px;}
.y1e_c02088{bottom:482.295000px;}
.y1d_c02088{bottom:513.255000px;}
.y1c_c02088{bottom:544.425000px;}
.y1b_c02088{bottom:575.385000px;}
.y1a_c02088{bottom:606.525000px;}
.y19_c02088{bottom:637.485000px;}
.y18_c02088{bottom:668.625000px;}
.y17_c02088{bottom:688.965000px;}
.y16_c02088{bottom:707.865000px;}
.y15_c02088{bottom:726.945000px;}
.y14_c02088{bottom:745.845000px;}
.y13_c02088{bottom:764.925000px;}
.y12_c02088{bottom:783.825000px;}
.y11_c02088{bottom:802.770000px;}
.y10_c02088{bottom:821.850000px;}
.yf_c02088{bottom:840.750000px;}
.ye_c02088{bottom:859.830000px;}
.yd_c02088{bottom:878.730000px;}
.yc_c02088{bottom:897.630000px;}
.yb_c02088{bottom:916.710000px;}
.ya_c02088{bottom:935.610000px;}
.y9_c02088{bottom:954.690000px;}
.y8_c02088{bottom:973.590000px;}
.y7_c02088{bottom:1003.290000px;}
.y6_c02088{bottom:1034.250000px;}
.y5_c02088{bottom:1065.420000px;}
.y1_c02088{bottom:1121.400000px;}
.h3_c02088{height:22.500000px;}
.h2_c02088{height:48.871406px;}
.h1_c02088{height:58.651172px;}
.h6_c02088{height:64.546875px;}
.h5_c02088{height:65.010937px;}
.h4_c02088{height:70.664062px;}
.h0_c02088{height:1188.000000px;}
.w1_c02088{width:66.636000px;}
.w0_c02088{width:918.000000px;}
.x0_c02088{left:0.000000px;}
.x3_c02088{left:16.560000px;}
.x1_c02088{left:127.656000px;}
.x5_c02088{left:181.650000px;}
.x4_c02088{left:191.550000px;}
.x2_c02088{left:820.950000px;}
@media print{
.v0_c02088{vertical-align:0.000000pt;}
.ls3_c02088{letter-spacing:-1.280000pt;}
.ls2_c02088{letter-spacing:0.000000pt;}
.ls0_c02088{letter-spacing:0.232960pt;}
.ls1_c02088{letter-spacing:1.280000pt;}
.ws0_c02088{word-spacing:-16.000000pt;}
.ws1_c02088{word-spacing:0.000000pt;}
._10_c02088{margin-left:-1.844657pt;}
._5_c02088{margin-left:-0.941844pt;}
._2_c02088{width:1.216000pt;}
._9_c02088{width:2.296556pt;}
._8_c02088{width:3.944489pt;}
._7_c02088{width:4.946156pt;}
._f_c02088{width:5.888000pt;}
._4_c02088{width:7.536581pt;}
._6_c02088{width:8.479132pt;}
._14_c02088{width:10.100625pt;}
._12_c02088{width:11.006148pt;}
._a_c02088{width:11.952522pt;}
._b_c02088{width:12.954307pt;}
._1_c02088{width:13.952000pt;}
._3_c02088{width:15.093333pt;}
._e_c02088{width:17.487478pt;}
._13_c02088{width:20.491817pt;}
._c_c02088{width:21.491200pt;}
._d_c02088{width:23.042045pt;}
._11_c02088{width:24.189955pt;}
._0_c02088{width:1334.165333pt;}
.fs0_c02088{font-size:53.120000pt;}
.fs1_c02088{font-size:58.880000pt;}
.fs2_c02088{font-size:64.000000pt;}
.y0_c02088{bottom:0.000000pt;}
.y4_c02088{bottom:4.160000pt;}
.y3_c02088{bottom:37.152000pt;}
.y2_c02088{bottom:67.072000pt;}
.y29_c02088{bottom:124.992000pt;}
.y28_c02088{bottom:152.666667pt;}
.y27_c02088{bottom:180.186667pt;}
.y26_c02088{bottom:207.866667pt;}
.y25_c02088{bottom:235.386667pt;}
.y24_c02088{bottom:263.106667pt;}
.y23_c02088{bottom:290.626667pt;}
.y22_c02088{bottom:318.306667pt;}
.y21_c02088{bottom:345.826667pt;}
.y20_c02088{bottom:373.506667pt;}
.y1f_c02088{bottom:401.026667pt;}
.y1e_c02088{bottom:428.706667pt;}
.y1d_c02088{bottom:456.226667pt;}
.y1c_c02088{bottom:483.933333pt;}
.y1b_c02088{bottom:511.453333pt;}
.y1a_c02088{bottom:539.133333pt;}
.y19_c02088{bottom:566.653333pt;}
.y18_c02088{bottom:594.333333pt;}
.y17_c02088{bottom:612.413333pt;}
.y16_c02088{bottom:629.213333pt;}
.y15_c02088{bottom:646.173333pt;}
.y14_c02088{bottom:662.973333pt;}
.y13_c02088{bottom:679.933333pt;}
.y12_c02088{bottom:696.733333pt;}
.y11_c02088{bottom:713.573333pt;}
.y10_c02088{bottom:730.533333pt;}
.yf_c02088{bottom:747.333333pt;}
.ye_c02088{bottom:764.293333pt;}
.yd_c02088{bottom:781.093333pt;}
.yc_c02088{bottom:797.893333pt;}
.yb_c02088{bottom:814.853333pt;}
.ya_c02088{bottom:831.653333pt;}
.y9_c02088{bottom:848.613333pt;}
.y8_c02088{bottom:865.413333pt;}
.y7_c02088{bottom:891.813333pt;}
.y6_c02088{bottom:919.333333pt;}
.y5_c02088{bottom:947.040000pt;}
.y1_c02088{bottom:996.800000pt;}
.h3_c02088{height:20.000000pt;}
.h2_c02088{height:43.441250pt;}
.h1_c02088{height:52.134375pt;}
.h6_c02088{height:57.375000pt;}
.h5_c02088{height:57.787500pt;}
.h4_c02088{height:62.812500pt;}
.h0_c02088{height:1056.000000pt;}
.w1_c02088{width:59.232000pt;}
.w0_c02088{width:816.000000pt;}
.x0_c02088{left:0.000000pt;}
.x3_c02088{left:14.720000pt;}
.x1_c02088{left:113.472000pt;}
.x5_c02088{left:161.466667pt;}
.x4_c02088{left:170.266667pt;}
.x2_c02088{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02089 {
    display:none;
  }
  .loading-indicator_c02089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02089 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02089 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02089" -> "#page-container .classname_c02089")
 */
.pf_c02089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02089 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02089 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02089 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02089 {overflow:visible;}
  }
}
.c_c02089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02089 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02089:after { /* webkit #35443 */
  content: '';
}
.t_c02089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02089 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02089 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02089 { /* info for Javascript */
  display:none;
}
.l_c02089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02089:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02089 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02089.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02089;src:url('chunks/assets/font_f2f80502b29700b079db1000.woff2')format("woff");}.ff1_c02089{font-family:ff1_c02089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02089;src:url('chunks/assets/font_f727060d10a4c2f513ddaeff.woff2')format("woff");}.ff2_c02089{font-family:ff2_c02089;line-height:0.863770;font-style:normal;font-weight: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_c02089;src:url('chunks/assets/font_797f30c986275922e88775e0.woff2')format("woff");}.ff3_c02089{font-family:ff3_c02089;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02089{vertical-align:0.000000px;}
.ls1_c02089{letter-spacing:-0.288000px;}
.ls0_c02089{letter-spacing:0.000000px;}
.sc__c02089{text-shadow:none;}
.sc0_c02089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02089{-webkit-text-stroke:0px transparent;}
.sc0_c02089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02089{word-spacing:-18.000000px;}
.ws0_c02089{word-spacing:-17.712000px;}
.ws2_c02089{word-spacing:0.000000px;}
._2_c02089{margin-left:-1.008000px;}
._5_c02089{width:1.200000px;}
._3_c02089{width:2.736000px;}
._4_c02089{width:3.780000px;}
._8_c02089{width:5.940000px;}
._a_c02089{width:7.848000px;}
._b_c02089{width:9.204000px;}
._7_c02089{width:15.480000px;}
._6_c02089{width:16.560000px;}
._9_c02089{width:19.776000px;}
._1_c02089{width:1207.740000px;}
._0_c02089{width:1500.936000px;}
.fc1_c02089{color:rgb(192,80,77);}
.fc0_c02089{color:rgb(0,0,0);}
.fs0_c02089{font-size:59.760000px;}
.fs1_c02089{font-size:66.240000px;}
.fs2_c02089{font-size:72.000000px;}
.y0_c02089{bottom:0.000000px;}
.y4_c02089{bottom:4.680000px;}
.y3_c02089{bottom:41.796000px;}
.y2_c02089{bottom:75.456000px;}
.y11_c02089{bottom:306.255000px;}
.y10_c02089{bottom:337.215000px;}
.yf_c02089{bottom:368.355000px;}
.ye_c02089{bottom:399.315000px;}
.yd_c02089{bottom:430.455000px;}
.yc_c02089{bottom:461.415000px;}
.yb_c02089{bottom:492.555000px;}
.ya_c02089{bottom:523.515000px;}
.y9_c02089{bottom:554.685000px;}
.y8_c02089{bottom:585.645000px;}
.y7_c02089{bottom:616.785000px;}
.y6_c02089{bottom:643.425000px;}
.y5_c02089{bottom:1065.420000px;}
.y1_c02089{bottom:1121.400000px;}
.h3_c02089{height:22.500000px;}
.h2_c02089{height:48.871406px;}
.h1_c02089{height:58.651172px;}
.h4_c02089{height:70.664062px;}
.h0_c02089{height:1188.000000px;}
.w1_c02089{width:66.636000px;}
.w0_c02089{width:918.000000px;}
.x0_c02089{left:0.000000px;}
.x3_c02089{left:16.560000px;}
.x1_c02089{left:127.656000px;}
.x4_c02089{left:180.750000px;}
.x5_c02089{left:316.695000px;}
.x2_c02089{left:820.950000px;}
@media print{
.v0_c02089{vertical-align:0.000000pt;}
.ls1_c02089{letter-spacing:-0.256000pt;}
.ls0_c02089{letter-spacing:0.000000pt;}
.ws1_c02089{word-spacing:-16.000000pt;}
.ws0_c02089{word-spacing:-15.744000pt;}
.ws2_c02089{word-spacing:0.000000pt;}
._2_c02089{margin-left:-0.896000pt;}
._5_c02089{width:1.066667pt;}
._3_c02089{width:2.432000pt;}
._4_c02089{width:3.360000pt;}
._8_c02089{width:5.280000pt;}
._a_c02089{width:6.976000pt;}
._b_c02089{width:8.181333pt;}
._7_c02089{width:13.760000pt;}
._6_c02089{width:14.720000pt;}
._9_c02089{width:17.578667pt;}
._1_c02089{width:1073.546667pt;}
._0_c02089{width:1334.165333pt;}
.fs0_c02089{font-size:53.120000pt;}
.fs1_c02089{font-size:58.880000pt;}
.fs2_c02089{font-size:64.000000pt;}
.y0_c02089{bottom:0.000000pt;}
.y4_c02089{bottom:4.160000pt;}
.y3_c02089{bottom:37.152000pt;}
.y2_c02089{bottom:67.072000pt;}
.y11_c02089{bottom:272.226667pt;}
.y10_c02089{bottom:299.746667pt;}
.yf_c02089{bottom:327.426667pt;}
.ye_c02089{bottom:354.946667pt;}
.yd_c02089{bottom:382.626667pt;}
.yc_c02089{bottom:410.146667pt;}
.yb_c02089{bottom:437.826667pt;}
.ya_c02089{bottom:465.346667pt;}
.y9_c02089{bottom:493.053333pt;}
.y8_c02089{bottom:520.573333pt;}
.y7_c02089{bottom:548.253333pt;}
.y6_c02089{bottom:571.933333pt;}
.y5_c02089{bottom:947.040000pt;}
.y1_c02089{bottom:996.800000pt;}
.h3_c02089{height:20.000000pt;}
.h2_c02089{height:43.441250pt;}
.h1_c02089{height:52.134375pt;}
.h4_c02089{height:62.812500pt;}
.h0_c02089{height:1056.000000pt;}
.w1_c02089{width:59.232000pt;}
.w0_c02089{width:816.000000pt;}
.x0_c02089{left:0.000000pt;}
.x3_c02089{left:14.720000pt;}
.x1_c02089{left:113.472000pt;}
.x4_c02089{left:160.666667pt;}
.x5_c02089{left:281.506667pt;}
.x2_c02089{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02090 {
    display:none;
  }
  .loading-indicator_c02090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02090 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02090 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02090" -> "#page-container .classname_c02090")
 */
.pf_c02090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02090 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02090 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02090 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02090 {overflow:visible;}
  }
}
.c_c02090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02090 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02090:after { /* webkit #35443 */
  content: '';
}
.t_c02090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02090 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02090 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02090 { /* info for Javascript */
  display:none;
}
.l_c02090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02090:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02090 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02090.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02090;src:url('chunks/assets/font_a534a9297857b203bff66e27.woff2')format("woff");}.ff1_c02090{font-family:ff1_c02090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02090;src:url('chunks/assets/font_8935978c482cdcf1448a149d.woff2')format("woff");}.ff2_c02090{font-family:ff2_c02090;line-height:0.863770;font-style:normal;font-weight: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_c02090;src:url('chunks/assets/font_93dacb6c203430761c693d75.woff2')format("woff");}.ff3_c02090{font-family:ff3_c02090;line-height:1.112305;font-style:normal;font-weight: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_c02090;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02090{font-family:ff4_c02090;line-height:1.311035;font-style:normal;font-weight: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_c02090;src:url('chunks/assets/font_87318f529d89ee12346a4f66.woff2')format("woff");}.ff5_c02090{font-family:ff5_c02090;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02090{vertical-align:-71.280000px;}
.v0_c02090{vertical-align:0.000000px;}
.ls4_c02090{letter-spacing:0.000000px;}
.ls0_c02090{letter-spacing:1.440000px;}
.ls2_c02090{letter-spacing:52.020000px;}
.ls1_c02090{letter-spacing:68.065920px;}
.ls3_c02090{letter-spacing:100.800000px;}
.sc__c02090{text-shadow:none;}
.sc0_c02090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02090{-webkit-text-stroke:0px transparent;}
.sc0_c02090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02090{word-spacing:-15.840000px;}
.ws1_c02090{word-spacing:0.000000px;}
._2_c02090{margin-left:-2.027267px;}
._1_c02090{margin-left:-1.008000px;}
._3_c02090{width:1.013126px;}
._0_c02090{width:1500.960000px;}
.fc1_c02090{color:rgb(192,80,77);}
.fc2_c02090{color:rgb(255,255,255);}
.fc0_c02090{color:rgb(0,0,0);}
.fs0_c02090{font-size:59.760000px;}
.fs3_c02090{font-size:63.360000px;}
.fs1_c02090{font-size:66.240000px;}
.fs2_c02090{font-size:72.000000px;}
.y0_c02090{bottom:0.000000px;}
.ya_c02090{bottom:3.780000px;}
.y4_c02090{bottom:4.860000px;}
.y2a_c02090{bottom:21.954000px;}
.y9_c02090{bottom:21.960000px;}
.y29_c02090{bottom:39.954000px;}
.y3_c02090{bottom:52.416000px;}
.y28_c02090{bottom:58.134000px;}
.y2_c02090{bottom:75.456000px;}
.y27_c02090{bottom:76.314000px;}
.y26_c02090{bottom:94.314000px;}
.y25_c02090{bottom:112.539000px;}
.yb_c02090{bottom:129.096000px;}
.y24_c02090{bottom:130.719000px;}
.y23_c02090{bottom:148.719000px;}
.y22_c02090{bottom:166.899000px;}
.y21_c02090{bottom:184.899000px;}
.y20_c02090{bottom:203.079000px;}
.y1f_c02090{bottom:221.259000px;}
.y1e_c02090{bottom:239.259000px;}
.y1d_c02090{bottom:257.439000px;}
.y1c_c02090{bottom:275.439000px;}
.y1b_c02090{bottom:293.619000px;}
.y1a_c02090{bottom:311.829000px;}
.y19_c02090{bottom:329.829000px;}
.y18_c02090{bottom:348.009000px;}
.y17_c02090{bottom:366.189000px;}
.y16_c02090{bottom:384.189000px;}
.y15_c02090{bottom:402.369000px;}
.y14_c02090{bottom:420.369000px;}
.y13_c02090{bottom:438.549000px;}
.y12_c02090{bottom:456.729000px;}
.y11_c02090{bottom:474.729000px;}
.yf_c02090{bottom:492.909000px;}
.ye_c02090{bottom:510.954000px;}
.yd_c02090{bottom:529.134000px;}
.y10_c02090{bottom:546.954000px;}
.yc_c02090{bottom:547.314000px;}
.y8_c02090{bottom:691.350000px;}
.y7_c02090{bottom:732.390000px;}
.y6_c02090{bottom:753.450000px;}
.y5_c02090{bottom:774.150000px;}
.y1_c02090{bottom:851.400000px;}
.h3_c02090{height:22.680000px;}
.h6_c02090{height:36.180000px;}
.h2_c02090{height:48.871406px;}
.h1_c02090{height:58.651172px;}
.h7_c02090{height:62.184375px;}
.h9_c02090{height:63.855000px;}
.ha_c02090{height:65.124096px;}
.h4_c02090{height:70.664062px;}
.h5_c02090{height:72.562500px;}
.h8_c02090{height:561.525000px;}
.h0_c02090{height:918.000000px;}
.w2_c02090{width:48.096000px;}
.w1_c02090{width:66.780000px;}
.w3_c02090{width:74.880000px;}
.w7_c02090{width:89.820000px;}
.w6_c02090{width:105.696000px;}
.w4_c02090{width:187.050000px;}
.w5_c02090{width:481.710000px;}
.w0_c02090{width:1188.000000px;}
.x0_c02090{left:0.000000px;}
.x18_c02090{left:7.740000px;}
.x8_c02090{left:10.260000px;}
.xb_c02090{left:11.514000px;}
.x14_c02090{left:15.480000px;}
.x3_c02090{left:16.560000px;}
.x16_c02090{left:19.080000px;}
.x7_c02090{left:23.760000px;}
.x13_c02090{left:29.745000px;}
.x17_c02090{left:33.474000px;}
.xa_c02090{left:37.434000px;}
.x19_c02090{left:38.520000px;}
.xe_c02090{left:74.340000px;}
.xd_c02090{left:93.600000px;}
.x6_c02090{left:98.640000px;}
.x1_c02090{left:106.200000px;}
.x9_c02090{left:147.456000px;}
.x11_c02090{left:219.780000px;}
.xc_c02090{left:223.050000px;}
.x10_c02090{left:240.660000px;}
.xf_c02090{left:411.015000px;}
.x5_c02090{left:442.335000px;}
.x4_c02090{left:550.695000px;}
.x12_c02090{left:893.445000px;}
.x15_c02090{left:999.870000px;}
.x2_c02090{left:1101.570000px;}
@media print{
.v1_c02090{vertical-align:-63.360000pt;}
.v0_c02090{vertical-align:0.000000pt;}
.ls4_c02090{letter-spacing:0.000000pt;}
.ls0_c02090{letter-spacing:1.280000pt;}
.ls2_c02090{letter-spacing:46.240000pt;}
.ls1_c02090{letter-spacing:60.503040pt;}
.ls3_c02090{letter-spacing:89.600000pt;}
.ws0_c02090{word-spacing:-14.080000pt;}
.ws1_c02090{word-spacing:0.000000pt;}
._2_c02090{margin-left:-1.802015pt;}
._1_c02090{margin-left:-0.896000pt;}
._3_c02090{width:0.900557pt;}
._0_c02090{width:1334.186667pt;}
.fs0_c02090{font-size:53.120000pt;}
.fs3_c02090{font-size:56.320000pt;}
.fs1_c02090{font-size:58.880000pt;}
.fs2_c02090{font-size:64.000000pt;}
.y0_c02090{bottom:0.000000pt;}
.ya_c02090{bottom:3.360000pt;}
.y4_c02090{bottom:4.320000pt;}
.y2a_c02090{bottom:19.514667pt;}
.y9_c02090{bottom:19.520000pt;}
.y29_c02090{bottom:35.514667pt;}
.y3_c02090{bottom:46.592000pt;}
.y28_c02090{bottom:51.674667pt;}
.y2_c02090{bottom:67.072000pt;}
.y27_c02090{bottom:67.834667pt;}
.y26_c02090{bottom:83.834667pt;}
.y25_c02090{bottom:100.034667pt;}
.yb_c02090{bottom:114.752000pt;}
.y24_c02090{bottom:116.194667pt;}
.y23_c02090{bottom:132.194667pt;}
.y22_c02090{bottom:148.354667pt;}
.y21_c02090{bottom:164.354667pt;}
.y20_c02090{bottom:180.514667pt;}
.y1f_c02090{bottom:196.674667pt;}
.y1e_c02090{bottom:212.674667pt;}
.y1d_c02090{bottom:228.834667pt;}
.y1c_c02090{bottom:244.834667pt;}
.y1b_c02090{bottom:260.994667pt;}
.y1a_c02090{bottom:277.181333pt;}
.y19_c02090{bottom:293.181333pt;}
.y18_c02090{bottom:309.341333pt;}
.y17_c02090{bottom:325.501333pt;}
.y16_c02090{bottom:341.501333pt;}
.y15_c02090{bottom:357.661333pt;}
.y14_c02090{bottom:373.661333pt;}
.y13_c02090{bottom:389.821333pt;}
.y12_c02090{bottom:405.981333pt;}
.y11_c02090{bottom:421.981333pt;}
.yf_c02090{bottom:438.141333pt;}
.ye_c02090{bottom:454.181333pt;}
.yd_c02090{bottom:470.341333pt;}
.y10_c02090{bottom:486.181333pt;}
.yc_c02090{bottom:486.501333pt;}
.y8_c02090{bottom:614.533333pt;}
.y7_c02090{bottom:651.013333pt;}
.y6_c02090{bottom:669.733333pt;}
.y5_c02090{bottom:688.133333pt;}
.y1_c02090{bottom:756.800000pt;}
.h3_c02090{height:20.160000pt;}
.h6_c02090{height:32.160000pt;}
.h2_c02090{height:43.441250pt;}
.h1_c02090{height:52.134375pt;}
.h7_c02090{height:55.275000pt;}
.h9_c02090{height:56.760000pt;}
.ha_c02090{height:57.888085pt;}
.h4_c02090{height:62.812500pt;}
.h5_c02090{height:64.500000pt;}
.h8_c02090{height:499.133333pt;}
.h0_c02090{height:816.000000pt;}
.w2_c02090{width:42.752000pt;}
.w1_c02090{width:59.360000pt;}
.w3_c02090{width:66.560000pt;}
.w7_c02090{width:79.840000pt;}
.w6_c02090{width:93.952000pt;}
.w4_c02090{width:166.266667pt;}
.w5_c02090{width:428.186667pt;}
.w0_c02090{width:1056.000000pt;}
.x0_c02090{left:0.000000pt;}
.x18_c02090{left:6.880000pt;}
.x8_c02090{left:9.120000pt;}
.xb_c02090{left:10.234667pt;}
.x14_c02090{left:13.760000pt;}
.x3_c02090{left:14.720000pt;}
.x16_c02090{left:16.960000pt;}
.x7_c02090{left:21.120000pt;}
.x13_c02090{left:26.440000pt;}
.x17_c02090{left:29.754667pt;}
.xa_c02090{left:33.274667pt;}
.x19_c02090{left:34.240000pt;}
.xe_c02090{left:66.080000pt;}
.xd_c02090{left:83.200000pt;}
.x6_c02090{left:87.680000pt;}
.x1_c02090{left:94.400000pt;}
.x9_c02090{left:131.072000pt;}
.x11_c02090{left:195.360000pt;}
.xc_c02090{left:198.266667pt;}
.x10_c02090{left:213.920000pt;}
.xf_c02090{left:365.346667pt;}
.x5_c02090{left:393.186667pt;}
.x4_c02090{left:489.506667pt;}
.x12_c02090{left:794.173333pt;}
.x15_c02090{left:888.773333pt;}
.x2_c02090{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02091 {
    display:none;
  }
  .loading-indicator_c02091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02091 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02091 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02091" -> "#page-container .classname_c02091")
 */
.pf_c02091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02091 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02091 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02091 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02091 {overflow:visible;}
  }
}
.c_c02091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02091 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02091:after { /* webkit #35443 */
  content: '';
}
.t_c02091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02091 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02091 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02091 { /* info for Javascript */
  display:none;
}
.l_c02091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02091:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02091 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02091.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02091;src:url('chunks/assets/font_07c813fb80dc4bb991328000.woff2')format("woff");}.ff1_c02091{font-family:ff1_c02091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02091;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02091{font-family:ff2_c02091;line-height:0.863770;font-style:normal;font-weight: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_c02091;src:url('chunks/assets/font_39290c7fe6bc86f608e54c6f.woff2')format("woff");}.ff3_c02091{font-family:ff3_c02091;line-height:1.402354;font-style:normal;font-weight: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_c02091;src:url('chunks/assets/font_5f23823fbae674c3017c50e6.woff2')format("woff");}.ff4_c02091{font-family:ff4_c02091;line-height:1.112305;font-style:normal;font-weight: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_c02091;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02091{font-family:ff5_c02091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02091{vertical-align:-71.280000px;}
.v0_c02091{vertical-align:0.000000px;}
.ls4_c02091{letter-spacing:-0.051600px;}
.ls3_c02091{letter-spacing:0.000000px;}
.ls1_c02091{letter-spacing:1.440000px;}
.ls0_c02091{letter-spacing:68.065920px;}
.ls2_c02091{letter-spacing:85.680000px;}
.sc__c02091{text-shadow:none;}
.sc0_c02091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02091{-webkit-text-stroke:0px transparent;}
.sc0_c02091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02091{word-spacing:-15.840000px;}
.ws1_c02091{word-spacing:0.000000px;}
._2_c02091{margin-left:-4.320000px;}
._1_c02091{margin-left:-1.232893px;}
._0_c02091{width:1500.960000px;}
.fc1_c02091{color:rgb(192,80,77);}
.fc0_c02091{color:rgb(0,0,0);}
.fs0_c02091{font-size:59.760000px;}
.fs2_c02091{font-size:63.360000px;}
.fs1_c02091{font-size:66.240000px;}
.y0_c02091{bottom:0.000000px;}
.y26_c02091{bottom:3.780000px;}
.y4_c02091{bottom:4.860000px;}
.y29_c02091{bottom:21.954000px;}
.y25_c02091{bottom:21.960000px;}
.y2a_c02091{bottom:39.774000px;}
.y28_c02091{bottom:40.134000px;}
.y24_c02091{bottom:40.185000px;}
.y3_c02091{bottom:52.416000px;}
.y23_c02091{bottom:58.185000px;}
.y2_c02091{bottom:75.456000px;}
.y22_c02091{bottom:76.365000px;}
.y21_c02091{bottom:94.365000px;}
.y20_c02091{bottom:112.545000px;}
.y1f_c02091{bottom:130.725000px;}
.y27_c02091{bottom:136.836000px;}
.y1e_c02091{bottom:148.725000px;}
.y1d_c02091{bottom:166.905000px;}
.y1c_c02091{bottom:185.085000px;}
.y5_c02091{bottom:191.910000px;}
.y1b_c02091{bottom:203.085000px;}
.y1a_c02091{bottom:221.265000px;}
.y19_c02091{bottom:239.295000px;}
.y18_c02091{bottom:257.475000px;}
.y17_c02091{bottom:275.655000px;}
.y16_c02091{bottom:293.655000px;}
.y15_c02091{bottom:311.835000px;}
.y14_c02091{bottom:329.835000px;}
.y13_c02091{bottom:348.015000px;}
.y12_c02091{bottom:366.195000px;}
.y11_c02091{bottom:384.195000px;}
.y10_c02091{bottom:402.375000px;}
.yf_c02091{bottom:420.555000px;}
.ye_c02091{bottom:438.600000px;}
.yd_c02091{bottom:456.780000px;}
.yc_c02091{bottom:474.780000px;}
.yb_c02091{bottom:492.960000px;}
.ya_c02091{bottom:511.140000px;}
.y9_c02091{bottom:529.140000px;}
.y8_c02091{bottom:547.320000px;}
.y7_c02091{bottom:565.320000px;}
.y6_c02091{bottom:583.500000px;}
.y1_c02091{bottom:851.400000px;}
.h3_c02091{height:22.680000px;}
.h2_c02091{height:48.871406px;}
.h7_c02091{height:54.360000px;}
.h1_c02091{height:58.651172px;}
.h6_c02091{height:62.184375px;}
.h8_c02091{height:63.855000px;}
.h5_c02091{height:65.124096px;}
.h4_c02091{height:597.705000px;}
.h0_c02091{height:918.000000px;}
.w3_c02091{width:48.096000px;}
.w1_c02091{width:66.780000px;}
.w4_c02091{width:74.880000px;}
.w7_c02091{width:89.820000px;}
.w6_c02091{width:105.696000px;}
.w5_c02091{width:187.050000px;}
.w2_c02091{width:481.710000px;}
.w0_c02091{width:1188.000000px;}
.x0_c02091{left:0.000000px;}
.xe_c02091{left:7.740000px;}
.x5_c02091{left:11.880000px;}
.x3_c02091{left:16.560000px;}
.x9_c02091{left:19.800000px;}
.x8_c02091{left:23.760000px;}
.xc_c02091{left:33.474000px;}
.xb_c02091{left:37.434000px;}
.x6_c02091{left:38.520000px;}
.x7_c02091{left:98.640000px;}
.x1_c02091{left:106.200000px;}
.xa_c02091{left:147.456000px;}
.xd_c02091{left:223.050000px;}
.x4_c02091{left:411.015000px;}
.xf_c02091{left:893.445000px;}
.x10_c02091{left:999.870000px;}
.x2_c02091{left:1101.570000px;}
@media print{
.v1_c02091{vertical-align:-63.360000pt;}
.v0_c02091{vertical-align:0.000000pt;}
.ls4_c02091{letter-spacing:-0.045867pt;}
.ls3_c02091{letter-spacing:0.000000pt;}
.ls1_c02091{letter-spacing:1.280000pt;}
.ls0_c02091{letter-spacing:60.503040pt;}
.ls2_c02091{letter-spacing:76.160000pt;}
.ws0_c02091{word-spacing:-14.080000pt;}
.ws1_c02091{word-spacing:0.000000pt;}
._2_c02091{margin-left:-3.840000pt;}
._1_c02091{margin-left:-1.095905pt;}
._0_c02091{width:1334.186667pt;}
.fs0_c02091{font-size:53.120000pt;}
.fs2_c02091{font-size:56.320000pt;}
.fs1_c02091{font-size:58.880000pt;}
.y0_c02091{bottom:0.000000pt;}
.y26_c02091{bottom:3.360000pt;}
.y4_c02091{bottom:4.320000pt;}
.y29_c02091{bottom:19.514667pt;}
.y25_c02091{bottom:19.520000pt;}
.y2a_c02091{bottom:35.354667pt;}
.y28_c02091{bottom:35.674667pt;}
.y24_c02091{bottom:35.720000pt;}
.y3_c02091{bottom:46.592000pt;}
.y23_c02091{bottom:51.720000pt;}
.y2_c02091{bottom:67.072000pt;}
.y22_c02091{bottom:67.880000pt;}
.y21_c02091{bottom:83.880000pt;}
.y20_c02091{bottom:100.040000pt;}
.y1f_c02091{bottom:116.200000pt;}
.y27_c02091{bottom:121.632000pt;}
.y1e_c02091{bottom:132.200000pt;}
.y1d_c02091{bottom:148.360000pt;}
.y1c_c02091{bottom:164.520000pt;}
.y5_c02091{bottom:170.586667pt;}
.y1b_c02091{bottom:180.520000pt;}
.y1a_c02091{bottom:196.680000pt;}
.y19_c02091{bottom:212.706667pt;}
.y18_c02091{bottom:228.866667pt;}
.y17_c02091{bottom:245.026667pt;}
.y16_c02091{bottom:261.026667pt;}
.y15_c02091{bottom:277.186667pt;}
.y14_c02091{bottom:293.186667pt;}
.y13_c02091{bottom:309.346667pt;}
.y12_c02091{bottom:325.506667pt;}
.y11_c02091{bottom:341.506667pt;}
.y10_c02091{bottom:357.666667pt;}
.yf_c02091{bottom:373.826667pt;}
.ye_c02091{bottom:389.866667pt;}
.yd_c02091{bottom:406.026667pt;}
.yc_c02091{bottom:422.026667pt;}
.yb_c02091{bottom:438.186667pt;}
.ya_c02091{bottom:454.346667pt;}
.y9_c02091{bottom:470.346667pt;}
.y8_c02091{bottom:486.506667pt;}
.y7_c02091{bottom:502.506667pt;}
.y6_c02091{bottom:518.666667pt;}
.y1_c02091{bottom:756.800000pt;}
.h3_c02091{height:20.160000pt;}
.h2_c02091{height:43.441250pt;}
.h7_c02091{height:48.320000pt;}
.h1_c02091{height:52.134375pt;}
.h6_c02091{height:55.275000pt;}
.h8_c02091{height:56.760000pt;}
.h5_c02091{height:57.888085pt;}
.h4_c02091{height:531.293333pt;}
.h0_c02091{height:816.000000pt;}
.w3_c02091{width:42.752000pt;}
.w1_c02091{width:59.360000pt;}
.w4_c02091{width:66.560000pt;}
.w7_c02091{width:79.840000pt;}
.w6_c02091{width:93.952000pt;}
.w5_c02091{width:166.266667pt;}
.w2_c02091{width:428.186667pt;}
.w0_c02091{width:1056.000000pt;}
.x0_c02091{left:0.000000pt;}
.xe_c02091{left:6.880000pt;}
.x5_c02091{left:10.560000pt;}
.x3_c02091{left:14.720000pt;}
.x9_c02091{left:17.600000pt;}
.x8_c02091{left:21.120000pt;}
.xc_c02091{left:29.754667pt;}
.xb_c02091{left:33.274667pt;}
.x6_c02091{left:34.240000pt;}
.x7_c02091{left:87.680000pt;}
.x1_c02091{left:94.400000pt;}
.xa_c02091{left:131.072000pt;}
.xd_c02091{left:198.266667pt;}
.x4_c02091{left:365.346667pt;}
.xf_c02091{left:794.173333pt;}
.x10_c02091{left:888.773333pt;}
.x2_c02091{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02092 {
    display:none;
  }
  .loading-indicator_c02092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02092 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02092 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02092" -> "#page-container .classname_c02092")
 */
.pf_c02092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02092 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02092 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02092 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02092 {overflow:visible;}
  }
}
.c_c02092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02092 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02092:after { /* webkit #35443 */
  content: '';
}
.t_c02092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02092 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02092 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02092 { /* info for Javascript */
  display:none;
}
.l_c02092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02092:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02092 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02092.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02092;src:url('chunks/assets/font_470cf3a0d8a8fbbbda66771f.woff2')format("woff");}.ff1_c02092{font-family:ff1_c02092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02092;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02092{font-family:ff2_c02092;line-height:0.863770;font-style:normal;font-weight: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_c02092;src:url('chunks/assets/font_26337db3ee4bedfc0da16700.woff2')format("woff");}.ff3_c02092{font-family:ff3_c02092;line-height:1.402354;font-style:normal;font-weight: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_c02092;src:url('chunks/assets/font_21be679c48b81a9f08e5dc1d.woff2')format("woff");}.ff4_c02092{font-family:ff4_c02092;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02092{vertical-align:0.000000px;}
.ls1_c02092{letter-spacing:0.000000px;}
.ls0_c02092{letter-spacing:68.065920px;}
.sc__c02092{text-shadow:none;}
.sc0_c02092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02092{-webkit-text-stroke:0px transparent;}
.sc0_c02092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02092{word-spacing:-15.840000px;}
.ws1_c02092{word-spacing:0.000000px;}
._2_c02092{margin-left:-2.021760px;}
._1_c02092{margin-left:-1.014013px;}
._3_c02092{width:1.486080px;}
._0_c02092{width:1500.960000px;}
.fc1_c02092{color:rgb(192,80,77);}
.fc0_c02092{color:rgb(0,0,0);}
.fs0_c02092{font-size:59.760000px;}
.fs2_c02092{font-size:63.360000px;}
.fs1_c02092{font-size:66.240000px;}
.y0_c02092{bottom:0.000000px;}
.y29_c02092{bottom:3.960000px;}
.y4_c02092{bottom:4.860000px;}
.y28_c02092{bottom:21.954000px;}
.y27_c02092{bottom:40.134000px;}
.y3_c02092{bottom:52.416000px;}
.y26_c02092{bottom:58.134000px;}
.y2_c02092{bottom:75.456000px;}
.y25_c02092{bottom:76.314000px;}
.y24_c02092{bottom:94.539000px;}
.y23_c02092{bottom:112.539000px;}
.y22_c02092{bottom:130.719000px;}
.y5_c02092{bottom:137.556000px;}
.y21_c02092{bottom:148.719000px;}
.y20_c02092{bottom:166.899000px;}
.y1f_c02092{bottom:185.079000px;}
.y1e_c02092{bottom:203.079000px;}
.y1d_c02092{bottom:221.259000px;}
.y1c_c02092{bottom:239.439000px;}
.y1b_c02092{bottom:257.439000px;}
.y1a_c02092{bottom:275.619000px;}
.y19_c02092{bottom:293.649000px;}
.y18_c02092{bottom:311.829000px;}
.y17_c02092{bottom:330.009000px;}
.y16_c02092{bottom:348.009000px;}
.y15_c02092{bottom:366.189000px;}
.y14_c02092{bottom:384.189000px;}
.y13_c02092{bottom:402.369000px;}
.y12_c02092{bottom:420.549000px;}
.y11_c02092{bottom:438.549000px;}
.y10_c02092{bottom:456.729000px;}
.yf_c02092{bottom:474.909000px;}
.ye_c02092{bottom:492.954000px;}
.yd_c02092{bottom:511.134000px;}
.yc_c02092{bottom:529.134000px;}
.yb_c02092{bottom:547.314000px;}
.ya_c02092{bottom:565.494000px;}
.y9_c02092{bottom:583.494000px;}
.y8_c02092{bottom:601.674000px;}
.y7_c02092{bottom:619.674000px;}
.y6_c02092{bottom:637.854000px;}
.y1_c02092{bottom:851.400000px;}
.h3_c02092{height:22.680000px;}
.h2_c02092{height:48.871406px;}
.h1_c02092{height:58.651172px;}
.h5_c02092{height:62.184375px;}
.h6_c02092{height:65.124096px;}
.h4_c02092{height:652.065000px;}
.h0_c02092{height:918.000000px;}
.w1_c02092{width:66.780000px;}
.w2_c02092{width:187.050000px;}
.w3_c02092{width:481.710000px;}
.w0_c02092{width:1188.000000px;}
.x0_c02092{left:0.000000px;}
.x5_c02092{left:7.740000px;}
.x7_c02092{left:11.880000px;}
.x3_c02092{left:16.560000px;}
.x8_c02092{left:38.520000px;}
.x1_c02092{left:106.200000px;}
.x4_c02092{left:223.050000px;}
.x6_c02092{left:411.015000px;}
.x2_c02092{left:1101.570000px;}
@media print{
.v0_c02092{vertical-align:0.000000pt;}
.ls1_c02092{letter-spacing:0.000000pt;}
.ls0_c02092{letter-spacing:60.503040pt;}
.ws0_c02092{word-spacing:-14.080000pt;}
.ws1_c02092{word-spacing:0.000000pt;}
._2_c02092{margin-left:-1.797120pt;}
._1_c02092{margin-left:-0.901345pt;}
._3_c02092{width:1.320960pt;}
._0_c02092{width:1334.186667pt;}
.fs0_c02092{font-size:53.120000pt;}
.fs2_c02092{font-size:56.320000pt;}
.fs1_c02092{font-size:58.880000pt;}
.y0_c02092{bottom:0.000000pt;}
.y29_c02092{bottom:3.520000pt;}
.y4_c02092{bottom:4.320000pt;}
.y28_c02092{bottom:19.514667pt;}
.y27_c02092{bottom:35.674667pt;}
.y3_c02092{bottom:46.592000pt;}
.y26_c02092{bottom:51.674667pt;}
.y2_c02092{bottom:67.072000pt;}
.y25_c02092{bottom:67.834667pt;}
.y24_c02092{bottom:84.034667pt;}
.y23_c02092{bottom:100.034667pt;}
.y22_c02092{bottom:116.194667pt;}
.y5_c02092{bottom:122.272000pt;}
.y21_c02092{bottom:132.194667pt;}
.y20_c02092{bottom:148.354667pt;}
.y1f_c02092{bottom:164.514667pt;}
.y1e_c02092{bottom:180.514667pt;}
.y1d_c02092{bottom:196.674667pt;}
.y1c_c02092{bottom:212.834667pt;}
.y1b_c02092{bottom:228.834667pt;}
.y1a_c02092{bottom:244.994667pt;}
.y19_c02092{bottom:261.021333pt;}
.y18_c02092{bottom:277.181333pt;}
.y17_c02092{bottom:293.341333pt;}
.y16_c02092{bottom:309.341333pt;}
.y15_c02092{bottom:325.501333pt;}
.y14_c02092{bottom:341.501333pt;}
.y13_c02092{bottom:357.661333pt;}
.y12_c02092{bottom:373.821333pt;}
.y11_c02092{bottom:389.821333pt;}
.y10_c02092{bottom:405.981333pt;}
.yf_c02092{bottom:422.141333pt;}
.ye_c02092{bottom:438.181333pt;}
.yd_c02092{bottom:454.341333pt;}
.yc_c02092{bottom:470.341333pt;}
.yb_c02092{bottom:486.501333pt;}
.ya_c02092{bottom:502.661333pt;}
.y9_c02092{bottom:518.661333pt;}
.y8_c02092{bottom:534.821333pt;}
.y7_c02092{bottom:550.821333pt;}
.y6_c02092{bottom:566.981333pt;}
.y1_c02092{bottom:756.800000pt;}
.h3_c02092{height:20.160000pt;}
.h2_c02092{height:43.441250pt;}
.h1_c02092{height:52.134375pt;}
.h5_c02092{height:55.275000pt;}
.h6_c02092{height:57.888085pt;}
.h4_c02092{height:579.613333pt;}
.h0_c02092{height:816.000000pt;}
.w1_c02092{width:59.360000pt;}
.w2_c02092{width:166.266667pt;}
.w3_c02092{width:428.186667pt;}
.w0_c02092{width:1056.000000pt;}
.x0_c02092{left:0.000000pt;}
.x5_c02092{left:6.880000pt;}
.x7_c02092{left:10.560000pt;}
.x3_c02092{left:14.720000pt;}
.x8_c02092{left:34.240000pt;}
.x1_c02092{left:94.400000pt;}
.x4_c02092{left:198.266667pt;}
.x6_c02092{left:365.346667pt;}
.x2_c02092{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02093 {
    display:none;
  }
  .loading-indicator_c02093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02093 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02093 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02093" -> "#page-container .classname_c02093")
 */
.pf_c02093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02093 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02093 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02093 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02093 {overflow:visible;}
  }
}
.c_c02093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02093 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02093:after { /* webkit #35443 */
  content: '';
}
.t_c02093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02093 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02093 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02093 { /* info for Javascript */
  display:none;
}
.l_c02093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02093:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02093 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02093.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02093;src:url('chunks/assets/font_f82e84074d181d1e60ec4969.woff2')format("woff");}.ff1_c02093{font-family:ff1_c02093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02093;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02093{font-family:ff2_c02093;line-height:0.863770;font-style:normal;font-weight: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_c02093;src:url('chunks/assets/font_fbdf0313852195ba859d9ae3.woff2')format("woff");}.ff3_c02093{font-family:ff3_c02093;line-height:1.402354;font-style:normal;font-weight: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_c02093;src:url('chunks/assets/font_4abe4f61f5c1479ab3e37751.woff2')format("woff");}.ff4_c02093{font-family:ff4_c02093;line-height:1.112305;font-style:normal;font-weight: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_c02093;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02093{font-family:ff5_c02093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02093{vertical-align:-71.280000px;}
.v0_c02093{vertical-align:0.000000px;}
.ls4_c02093{letter-spacing:0.000000px;}
.ls1_c02093{letter-spacing:1.440000px;}
.ls2_c02093{letter-spacing:18.720000px;}
.ls0_c02093{letter-spacing:68.065920px;}
.ls3_c02093{letter-spacing:85.680000px;}
.sc__c02093{text-shadow:none;}
.sc0_c02093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02093{-webkit-text-stroke:0px transparent;}
.sc0_c02093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02093{word-spacing:-15.840000px;}
.ws1_c02093{word-spacing:0.000000px;}
._2_c02093{margin-left:-2.090880px;}
._1_c02093{margin-left:-1.014013px;}
._3_c02093{width:1.111933px;}
._0_c02093{width:1500.960000px;}
.fc1_c02093{color:rgb(192,80,77);}
.fc0_c02093{color:rgb(0,0,0);}
.fs0_c02093{font-size:59.760000px;}
.fs2_c02093{font-size:63.360000px;}
.fs1_c02093{font-size:66.240000px;}
.y0_c02093{bottom:0.000000px;}
.y26_c02093{bottom:3.780000px;}
.y4_c02093{bottom:4.860000px;}
.y29_c02093{bottom:21.954000px;}
.y25_c02093{bottom:21.960000px;}
.y2a_c02093{bottom:39.774000px;}
.y28_c02093{bottom:40.134000px;}
.y24_c02093{bottom:40.185000px;}
.y3_c02093{bottom:52.416000px;}
.y23_c02093{bottom:58.185000px;}
.y2_c02093{bottom:75.456000px;}
.y22_c02093{bottom:76.365000px;}
.y21_c02093{bottom:94.365000px;}
.y20_c02093{bottom:112.545000px;}
.y1f_c02093{bottom:130.725000px;}
.y27_c02093{bottom:136.836000px;}
.y1e_c02093{bottom:148.725000px;}
.y1d_c02093{bottom:166.905000px;}
.y1c_c02093{bottom:185.085000px;}
.y5_c02093{bottom:191.910000px;}
.y1b_c02093{bottom:203.085000px;}
.y1a_c02093{bottom:221.265000px;}
.y19_c02093{bottom:239.295000px;}
.y18_c02093{bottom:257.475000px;}
.y17_c02093{bottom:275.655000px;}
.y16_c02093{bottom:293.655000px;}
.y15_c02093{bottom:311.835000px;}
.y14_c02093{bottom:329.835000px;}
.y13_c02093{bottom:348.015000px;}
.y12_c02093{bottom:366.195000px;}
.y11_c02093{bottom:384.195000px;}
.y10_c02093{bottom:402.375000px;}
.yf_c02093{bottom:420.555000px;}
.ye_c02093{bottom:438.600000px;}
.yd_c02093{bottom:456.780000px;}
.yc_c02093{bottom:474.780000px;}
.yb_c02093{bottom:492.960000px;}
.ya_c02093{bottom:511.140000px;}
.y9_c02093{bottom:529.140000px;}
.y8_c02093{bottom:547.320000px;}
.y7_c02093{bottom:565.320000px;}
.y6_c02093{bottom:583.500000px;}
.y1_c02093{bottom:851.400000px;}
.h3_c02093{height:22.680000px;}
.h2_c02093{height:48.871406px;}
.h7_c02093{height:54.360000px;}
.h8_c02093{height:56.801250px;}
.h1_c02093{height:58.651172px;}
.h5_c02093{height:62.184375px;}
.h9_c02093{height:63.855000px;}
.h6_c02093{height:65.124096px;}
.h4_c02093{height:597.705000px;}
.h0_c02093{height:918.000000px;}
.w3_c02093{width:48.096000px;}
.w1_c02093{width:66.780000px;}
.w4_c02093{width:74.880000px;}
.w7_c02093{width:89.820000px;}
.w6_c02093{width:105.696000px;}
.w5_c02093{width:187.050000px;}
.w2_c02093{width:481.710000px;}
.w0_c02093{width:1188.000000px;}
.x0_c02093{left:0.000000px;}
.xe_c02093{left:7.740000px;}
.x6_c02093{left:11.880000px;}
.x3_c02093{left:16.560000px;}
.x9_c02093{left:19.800000px;}
.x8_c02093{left:23.760000px;}
.xc_c02093{left:33.474000px;}
.xb_c02093{left:37.434000px;}
.x5_c02093{left:38.520000px;}
.x7_c02093{left:98.640000px;}
.x1_c02093{left:106.200000px;}
.xa_c02093{left:147.456000px;}
.xd_c02093{left:223.050000px;}
.x4_c02093{left:411.015000px;}
.xf_c02093{left:893.445000px;}
.x10_c02093{left:999.870000px;}
.x2_c02093{left:1101.570000px;}
@media print{
.v1_c02093{vertical-align:-63.360000pt;}
.v0_c02093{vertical-align:0.000000pt;}
.ls4_c02093{letter-spacing:0.000000pt;}
.ls1_c02093{letter-spacing:1.280000pt;}
.ls2_c02093{letter-spacing:16.640000pt;}
.ls0_c02093{letter-spacing:60.503040pt;}
.ls3_c02093{letter-spacing:76.160000pt;}
.ws0_c02093{word-spacing:-14.080000pt;}
.ws1_c02093{word-spacing:0.000000pt;}
._2_c02093{margin-left:-1.858560pt;}
._1_c02093{margin-left:-0.901345pt;}
._3_c02093{width:0.988385pt;}
._0_c02093{width:1334.186667pt;}
.fs0_c02093{font-size:53.120000pt;}
.fs2_c02093{font-size:56.320000pt;}
.fs1_c02093{font-size:58.880000pt;}
.y0_c02093{bottom:0.000000pt;}
.y26_c02093{bottom:3.360000pt;}
.y4_c02093{bottom:4.320000pt;}
.y29_c02093{bottom:19.514667pt;}
.y25_c02093{bottom:19.520000pt;}
.y2a_c02093{bottom:35.354667pt;}
.y28_c02093{bottom:35.674667pt;}
.y24_c02093{bottom:35.720000pt;}
.y3_c02093{bottom:46.592000pt;}
.y23_c02093{bottom:51.720000pt;}
.y2_c02093{bottom:67.072000pt;}
.y22_c02093{bottom:67.880000pt;}
.y21_c02093{bottom:83.880000pt;}
.y20_c02093{bottom:100.040000pt;}
.y1f_c02093{bottom:116.200000pt;}
.y27_c02093{bottom:121.632000pt;}
.y1e_c02093{bottom:132.200000pt;}
.y1d_c02093{bottom:148.360000pt;}
.y1c_c02093{bottom:164.520000pt;}
.y5_c02093{bottom:170.586667pt;}
.y1b_c02093{bottom:180.520000pt;}
.y1a_c02093{bottom:196.680000pt;}
.y19_c02093{bottom:212.706667pt;}
.y18_c02093{bottom:228.866667pt;}
.y17_c02093{bottom:245.026667pt;}
.y16_c02093{bottom:261.026667pt;}
.y15_c02093{bottom:277.186667pt;}
.y14_c02093{bottom:293.186667pt;}
.y13_c02093{bottom:309.346667pt;}
.y12_c02093{bottom:325.506667pt;}
.y11_c02093{bottom:341.506667pt;}
.y10_c02093{bottom:357.666667pt;}
.yf_c02093{bottom:373.826667pt;}
.ye_c02093{bottom:389.866667pt;}
.yd_c02093{bottom:406.026667pt;}
.yc_c02093{bottom:422.026667pt;}
.yb_c02093{bottom:438.186667pt;}
.ya_c02093{bottom:454.346667pt;}
.y9_c02093{bottom:470.346667pt;}
.y8_c02093{bottom:486.506667pt;}
.y7_c02093{bottom:502.506667pt;}
.y6_c02093{bottom:518.666667pt;}
.y1_c02093{bottom:756.800000pt;}
.h3_c02093{height:20.160000pt;}
.h2_c02093{height:43.441250pt;}
.h7_c02093{height:48.320000pt;}
.h8_c02093{height:50.490000pt;}
.h1_c02093{height:52.134375pt;}
.h5_c02093{height:55.275000pt;}
.h9_c02093{height:56.760000pt;}
.h6_c02093{height:57.888085pt;}
.h4_c02093{height:531.293333pt;}
.h0_c02093{height:816.000000pt;}
.w3_c02093{width:42.752000pt;}
.w1_c02093{width:59.360000pt;}
.w4_c02093{width:66.560000pt;}
.w7_c02093{width:79.840000pt;}
.w6_c02093{width:93.952000pt;}
.w5_c02093{width:166.266667pt;}
.w2_c02093{width:428.186667pt;}
.w0_c02093{width:1056.000000pt;}
.x0_c02093{left:0.000000pt;}
.xe_c02093{left:6.880000pt;}
.x6_c02093{left:10.560000pt;}
.x3_c02093{left:14.720000pt;}
.x9_c02093{left:17.600000pt;}
.x8_c02093{left:21.120000pt;}
.xc_c02093{left:29.754667pt;}
.xb_c02093{left:33.274667pt;}
.x5_c02093{left:34.240000pt;}
.x7_c02093{left:87.680000pt;}
.x1_c02093{left:94.400000pt;}
.xa_c02093{left:131.072000pt;}
.xd_c02093{left:198.266667pt;}
.x4_c02093{left:365.346667pt;}
.xf_c02093{left:794.173333pt;}
.x10_c02093{left:888.773333pt;}
.x2_c02093{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02094 {
    display:none;
  }
  .loading-indicator_c02094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02094" -> "#page-container .classname_c02094")
 */
.pf_c02094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02094 {overflow:visible;}
  }
}
.c_c02094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02094:after { /* webkit #35443 */
  content: '';
}
.t_c02094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02094 { /* info for Javascript */
  display:none;
}
.l_c02094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02094:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02094 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02094.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02094;src:url('chunks/assets/font_714dcb8efebbba1b10abe322.woff2')format("woff");}.ff1_c02094{font-family:ff1_c02094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02094;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02094{font-family:ff2_c02094;line-height:0.863770;font-style:normal;font-weight: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_c02094;src:url('chunks/assets/font_0b51060975be30aa6c2aa7f8.woff2')format("woff");}.ff3_c02094{font-family:ff3_c02094;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02094{vertical-align:0.000000px;}
.ls1_c02094{letter-spacing:0.000000px;}
.ls0_c02094{letter-spacing:68.065920px;}
.sc__c02094{text-shadow:none;}
.sc0_c02094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02094{-webkit-text-stroke:0px transparent;}
.sc0_c02094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02094{word-spacing:-15.840000px;}
.ws1_c02094{word-spacing:0.000000px;}
._2_c02094{margin-left:-2.309887px;}
._1_c02094{margin-left:-1.267200px;}
._3_c02094{width:1.520513px;}
._0_c02094{width:1500.960000px;}
.fc1_c02094{color:rgb(192,80,77);}
.fc0_c02094{color:rgb(0,0,0);}
.fs0_c02094{font-size:59.760000px;}
.fs2_c02094{font-size:63.360000px;}
.fs1_c02094{font-size:66.240000px;}
.y0_c02094{bottom:0.000000px;}
.y29_c02094{bottom:3.960000px;}
.y4_c02094{bottom:4.860000px;}
.y28_c02094{bottom:21.954000px;}
.y27_c02094{bottom:40.134000px;}
.y3_c02094{bottom:52.416000px;}
.y26_c02094{bottom:58.134000px;}
.y2_c02094{bottom:75.456000px;}
.y25_c02094{bottom:76.314000px;}
.y24_c02094{bottom:94.539000px;}
.y23_c02094{bottom:112.539000px;}
.y22_c02094{bottom:130.719000px;}
.y5_c02094{bottom:137.556000px;}
.y21_c02094{bottom:148.719000px;}
.y20_c02094{bottom:166.899000px;}
.y1f_c02094{bottom:185.079000px;}
.y1e_c02094{bottom:203.079000px;}
.y1d_c02094{bottom:221.259000px;}
.y1c_c02094{bottom:239.439000px;}
.y1b_c02094{bottom:257.439000px;}
.y1a_c02094{bottom:275.619000px;}
.y19_c02094{bottom:293.649000px;}
.y18_c02094{bottom:311.829000px;}
.y17_c02094{bottom:330.009000px;}
.y16_c02094{bottom:348.009000px;}
.y15_c02094{bottom:366.189000px;}
.y14_c02094{bottom:384.189000px;}
.y13_c02094{bottom:402.369000px;}
.y12_c02094{bottom:420.549000px;}
.y11_c02094{bottom:438.549000px;}
.y10_c02094{bottom:456.729000px;}
.yf_c02094{bottom:474.909000px;}
.ye_c02094{bottom:492.954000px;}
.yd_c02094{bottom:511.134000px;}
.yc_c02094{bottom:529.134000px;}
.yb_c02094{bottom:547.314000px;}
.ya_c02094{bottom:565.494000px;}
.y9_c02094{bottom:583.494000px;}
.y8_c02094{bottom:601.674000px;}
.y7_c02094{bottom:619.674000px;}
.y6_c02094{bottom:637.854000px;}
.y1_c02094{bottom:851.400000px;}
.h3_c02094{height:22.680000px;}
.h2_c02094{height:48.871406px;}
.h1_c02094{height:58.651172px;}
.h5_c02094{height:62.184375px;}
.h6_c02094{height:65.124096px;}
.h4_c02094{height:652.065000px;}
.h0_c02094{height:918.000000px;}
.w1_c02094{width:66.780000px;}
.w2_c02094{width:187.050000px;}
.w3_c02094{width:481.710000px;}
.w0_c02094{width:1188.000000px;}
.x0_c02094{left:0.000000px;}
.x5_c02094{left:7.740000px;}
.x7_c02094{left:11.880000px;}
.x3_c02094{left:16.560000px;}
.x8_c02094{left:38.520000px;}
.x1_c02094{left:106.200000px;}
.x4_c02094{left:223.050000px;}
.x6_c02094{left:411.015000px;}
.x2_c02094{left:1101.570000px;}
@media print{
.v0_c02094{vertical-align:0.000000pt;}
.ls1_c02094{letter-spacing:0.000000pt;}
.ls0_c02094{letter-spacing:60.503040pt;}
.ws0_c02094{word-spacing:-14.080000pt;}
.ws1_c02094{word-spacing:0.000000pt;}
._2_c02094{margin-left:-2.053233pt;}
._1_c02094{margin-left:-1.126400pt;}
._3_c02094{width:1.351567pt;}
._0_c02094{width:1334.186667pt;}
.fs0_c02094{font-size:53.120000pt;}
.fs2_c02094{font-size:56.320000pt;}
.fs1_c02094{font-size:58.880000pt;}
.y0_c02094{bottom:0.000000pt;}
.y29_c02094{bottom:3.520000pt;}
.y4_c02094{bottom:4.320000pt;}
.y28_c02094{bottom:19.514667pt;}
.y27_c02094{bottom:35.674667pt;}
.y3_c02094{bottom:46.592000pt;}
.y26_c02094{bottom:51.674667pt;}
.y2_c02094{bottom:67.072000pt;}
.y25_c02094{bottom:67.834667pt;}
.y24_c02094{bottom:84.034667pt;}
.y23_c02094{bottom:100.034667pt;}
.y22_c02094{bottom:116.194667pt;}
.y5_c02094{bottom:122.272000pt;}
.y21_c02094{bottom:132.194667pt;}
.y20_c02094{bottom:148.354667pt;}
.y1f_c02094{bottom:164.514667pt;}
.y1e_c02094{bottom:180.514667pt;}
.y1d_c02094{bottom:196.674667pt;}
.y1c_c02094{bottom:212.834667pt;}
.y1b_c02094{bottom:228.834667pt;}
.y1a_c02094{bottom:244.994667pt;}
.y19_c02094{bottom:261.021333pt;}
.y18_c02094{bottom:277.181333pt;}
.y17_c02094{bottom:293.341333pt;}
.y16_c02094{bottom:309.341333pt;}
.y15_c02094{bottom:325.501333pt;}
.y14_c02094{bottom:341.501333pt;}
.y13_c02094{bottom:357.661333pt;}
.y12_c02094{bottom:373.821333pt;}
.y11_c02094{bottom:389.821333pt;}
.y10_c02094{bottom:405.981333pt;}
.yf_c02094{bottom:422.141333pt;}
.ye_c02094{bottom:438.181333pt;}
.yd_c02094{bottom:454.341333pt;}
.yc_c02094{bottom:470.341333pt;}
.yb_c02094{bottom:486.501333pt;}
.ya_c02094{bottom:502.661333pt;}
.y9_c02094{bottom:518.661333pt;}
.y8_c02094{bottom:534.821333pt;}
.y7_c02094{bottom:550.821333pt;}
.y6_c02094{bottom:566.981333pt;}
.y1_c02094{bottom:756.800000pt;}
.h3_c02094{height:20.160000pt;}
.h2_c02094{height:43.441250pt;}
.h1_c02094{height:52.134375pt;}
.h5_c02094{height:55.275000pt;}
.h6_c02094{height:57.888085pt;}
.h4_c02094{height:579.613333pt;}
.h0_c02094{height:816.000000pt;}
.w1_c02094{width:59.360000pt;}
.w2_c02094{width:166.266667pt;}
.w3_c02094{width:428.186667pt;}
.w0_c02094{width:1056.000000pt;}
.x0_c02094{left:0.000000pt;}
.x5_c02094{left:6.880000pt;}
.x7_c02094{left:10.560000pt;}
.x3_c02094{left:14.720000pt;}
.x8_c02094{left:34.240000pt;}
.x1_c02094{left:94.400000pt;}
.x4_c02094{left:198.266667pt;}
.x6_c02094{left:365.346667pt;}
.x2_c02094{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02095 {
    display:none;
  }
  .loading-indicator_c02095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02095 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02095 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02095" -> "#page-container .classname_c02095")
 */
.pf_c02095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02095 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02095 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02095 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02095 {overflow:visible;}
  }
}
.c_c02095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02095 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02095:after { /* webkit #35443 */
  content: '';
}
.t_c02095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02095 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02095 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02095 { /* info for Javascript */
  display:none;
}
.l_c02095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02095:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02095 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02095.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02095;src:url('chunks/assets/font_3e6840d37756f2f7a7c94089.woff2')format("woff");}.ff1_c02095{font-family:ff1_c02095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02095;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02095{font-family:ff2_c02095;line-height:0.863770;font-style:normal;font-weight: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_c02095;src:url('chunks/assets/font_b96ecfc845a69ec4541c3dee.woff2')format("woff");}.ff3_c02095{font-family:ff3_c02095;line-height:1.402354;font-style:normal;font-weight: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_c02095;src:url('chunks/assets/font_1c72b9ad5a0b78a36d3bd3c2.woff2')format("woff");}.ff4_c02095{font-family:ff4_c02095;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02095{vertical-align:0.000000px;}
.ls1_c02095{letter-spacing:0.000000px;}
.ls0_c02095{letter-spacing:68.065920px;}
.sc__c02095{text-shadow:none;}
.sc0_c02095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02095{-webkit-text-stroke:0px transparent;}
.sc0_c02095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02095{word-spacing:-15.840000px;}
.ws1_c02095{word-spacing:0.000000px;}
._2_c02095{margin-left:-2.073347px;}
._1_c02095{margin-left:-1.042687px;}
._3_c02095{width:1.629953px;}
._0_c02095{width:1500.960000px;}
.fc1_c02095{color:rgb(192,80,77);}
.fc0_c02095{color:rgb(0,0,0);}
.fs0_c02095{font-size:59.760000px;}
.fs2_c02095{font-size:63.360000px;}
.fs1_c02095{font-size:66.240000px;}
.y0_c02095{bottom:0.000000px;}
.y29_c02095{bottom:3.960000px;}
.y4_c02095{bottom:4.860000px;}
.y28_c02095{bottom:21.954000px;}
.y27_c02095{bottom:40.134000px;}
.y3_c02095{bottom:52.416000px;}
.y26_c02095{bottom:58.134000px;}
.y2_c02095{bottom:75.456000px;}
.y25_c02095{bottom:76.314000px;}
.y24_c02095{bottom:94.539000px;}
.y23_c02095{bottom:112.539000px;}
.y22_c02095{bottom:130.719000px;}
.y5_c02095{bottom:137.556000px;}
.y21_c02095{bottom:148.719000px;}
.y20_c02095{bottom:166.899000px;}
.y1f_c02095{bottom:185.079000px;}
.y1e_c02095{bottom:203.079000px;}
.y1d_c02095{bottom:221.259000px;}
.y1c_c02095{bottom:239.439000px;}
.y1b_c02095{bottom:257.439000px;}
.y1a_c02095{bottom:275.619000px;}
.y19_c02095{bottom:293.649000px;}
.y18_c02095{bottom:311.829000px;}
.y17_c02095{bottom:330.009000px;}
.y16_c02095{bottom:348.009000px;}
.y15_c02095{bottom:366.189000px;}
.y14_c02095{bottom:384.189000px;}
.y13_c02095{bottom:402.369000px;}
.y12_c02095{bottom:420.549000px;}
.y11_c02095{bottom:438.549000px;}
.y10_c02095{bottom:456.729000px;}
.yf_c02095{bottom:474.909000px;}
.ye_c02095{bottom:492.954000px;}
.yd_c02095{bottom:511.134000px;}
.yc_c02095{bottom:529.134000px;}
.yb_c02095{bottom:547.314000px;}
.ya_c02095{bottom:565.494000px;}
.y9_c02095{bottom:583.494000px;}
.y8_c02095{bottom:601.674000px;}
.y7_c02095{bottom:619.674000px;}
.y6_c02095{bottom:637.854000px;}
.y1_c02095{bottom:851.400000px;}
.h3_c02095{height:22.680000px;}
.h2_c02095{height:48.871406px;}
.h1_c02095{height:58.651172px;}
.h6_c02095{height:62.184375px;}
.h5_c02095{height:65.124096px;}
.h4_c02095{height:652.065000px;}
.h0_c02095{height:918.000000px;}
.w1_c02095{width:66.780000px;}
.w2_c02095{width:481.710000px;}
.w0_c02095{width:1188.000000px;}
.x0_c02095{left:0.000000px;}
.x5_c02095{left:11.880000px;}
.x3_c02095{left:16.560000px;}
.x6_c02095{left:38.520000px;}
.x1_c02095{left:106.200000px;}
.x4_c02095{left:411.015000px;}
.x2_c02095{left:1101.570000px;}
@media print{
.v0_c02095{vertical-align:0.000000pt;}
.ls1_c02095{letter-spacing:0.000000pt;}
.ls0_c02095{letter-spacing:60.503040pt;}
.ws0_c02095{word-spacing:-14.080000pt;}
.ws1_c02095{word-spacing:0.000000pt;}
._2_c02095{margin-left:-1.842975pt;}
._1_c02095{margin-left:-0.926833pt;}
._3_c02095{width:1.448847pt;}
._0_c02095{width:1334.186667pt;}
.fs0_c02095{font-size:53.120000pt;}
.fs2_c02095{font-size:56.320000pt;}
.fs1_c02095{font-size:58.880000pt;}
.y0_c02095{bottom:0.000000pt;}
.y29_c02095{bottom:3.520000pt;}
.y4_c02095{bottom:4.320000pt;}
.y28_c02095{bottom:19.514667pt;}
.y27_c02095{bottom:35.674667pt;}
.y3_c02095{bottom:46.592000pt;}
.y26_c02095{bottom:51.674667pt;}
.y2_c02095{bottom:67.072000pt;}
.y25_c02095{bottom:67.834667pt;}
.y24_c02095{bottom:84.034667pt;}
.y23_c02095{bottom:100.034667pt;}
.y22_c02095{bottom:116.194667pt;}
.y5_c02095{bottom:122.272000pt;}
.y21_c02095{bottom:132.194667pt;}
.y20_c02095{bottom:148.354667pt;}
.y1f_c02095{bottom:164.514667pt;}
.y1e_c02095{bottom:180.514667pt;}
.y1d_c02095{bottom:196.674667pt;}
.y1c_c02095{bottom:212.834667pt;}
.y1b_c02095{bottom:228.834667pt;}
.y1a_c02095{bottom:244.994667pt;}
.y19_c02095{bottom:261.021333pt;}
.y18_c02095{bottom:277.181333pt;}
.y17_c02095{bottom:293.341333pt;}
.y16_c02095{bottom:309.341333pt;}
.y15_c02095{bottom:325.501333pt;}
.y14_c02095{bottom:341.501333pt;}
.y13_c02095{bottom:357.661333pt;}
.y12_c02095{bottom:373.821333pt;}
.y11_c02095{bottom:389.821333pt;}
.y10_c02095{bottom:405.981333pt;}
.yf_c02095{bottom:422.141333pt;}
.ye_c02095{bottom:438.181333pt;}
.yd_c02095{bottom:454.341333pt;}
.yc_c02095{bottom:470.341333pt;}
.yb_c02095{bottom:486.501333pt;}
.ya_c02095{bottom:502.661333pt;}
.y9_c02095{bottom:518.661333pt;}
.y8_c02095{bottom:534.821333pt;}
.y7_c02095{bottom:550.821333pt;}
.y6_c02095{bottom:566.981333pt;}
.y1_c02095{bottom:756.800000pt;}
.h3_c02095{height:20.160000pt;}
.h2_c02095{height:43.441250pt;}
.h1_c02095{height:52.134375pt;}
.h6_c02095{height:55.275000pt;}
.h5_c02095{height:57.888085pt;}
.h4_c02095{height:579.613333pt;}
.h0_c02095{height:816.000000pt;}
.w1_c02095{width:59.360000pt;}
.w2_c02095{width:428.186667pt;}
.w0_c02095{width:1056.000000pt;}
.x0_c02095{left:0.000000pt;}
.x5_c02095{left:10.560000pt;}
.x3_c02095{left:14.720000pt;}
.x6_c02095{left:34.240000pt;}
.x1_c02095{left:94.400000pt;}
.x4_c02095{left:365.346667pt;}
.x2_c02095{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02096 {
    display:none;
  }
  .loading-indicator_c02096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02096 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02096 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02096" -> "#page-container .classname_c02096")
 */
.pf_c02096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02096 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02096 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02096 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02096 {overflow:visible;}
  }
}
.c_c02096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02096 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02096:after { /* webkit #35443 */
  content: '';
}
.t_c02096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02096 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02096 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02096 { /* info for Javascript */
  display:none;
}
.l_c02096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02096:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02096 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02096.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02096;src:url('chunks/assets/font_49b13facd89e7a1b2ba7e397.woff2')format("woff");}.ff1_c02096{font-family:ff1_c02096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02096;src:url('chunks/assets/font_a1727b33c91d190d3bad7f0c.woff2')format("woff");}.ff2_c02096{font-family:ff2_c02096;line-height:0.863770;font-style:normal;font-weight: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_c02096;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02096{font-family:ff3_c02096;line-height:1.311035;font-style:normal;font-weight: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_c02096;src:url('chunks/assets/font_2ccb2108518f61fc43c22813.woff2')format("woff");}.ff4_c02096{font-family:ff4_c02096;line-height:1.402354;font-style:normal;font-weight: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_c02096;src:url('chunks/assets/font_de4dccc489ca50fd2b6440d8.woff2')format("woff");}.ff5_c02096{font-family:ff5_c02096;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02096{vertical-align:-70.560000px;}
.v0_c02096{vertical-align:0.000000px;}
.ls4_c02096{letter-spacing:0.000000px;}
.ls0_c02096{letter-spacing:1.440000px;}
.ls1_c02096{letter-spacing:68.065920px;}
.ls3_c02096{letter-spacing:85.680000px;}
.ls2_c02096{letter-spacing:92.340000px;}
.sc__c02096{text-shadow:none;}
.sc0_c02096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02096{-webkit-text-stroke:0px transparent;}
.sc0_c02096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02096{word-spacing:-15.840000px;}
.ws1_c02096{word-spacing:0.000000px;}
._2_c02096{margin-left:-2.407807px;}
._1_c02096{margin-left:-1.267200px;}
._3_c02096{width:1.647613px;}
._0_c02096{width:1500.960000px;}
.fc1_c02096{color:rgb(192,80,77);}
.fc0_c02096{color:rgb(0,0,0);}
.fs0_c02096{font-size:59.760000px;}
.fs2_c02096{font-size:63.360000px;}
.fs1_c02096{font-size:66.240000px;}
.y0_c02096{bottom:0.000000px;}
.y2b_c02096{bottom:3.780000px;}
.y6_c02096{bottom:3.960000px;}
.y4_c02096{bottom:4.860000px;}
.y2a_c02096{bottom:21.954000px;}
.y29_c02096{bottom:40.134000px;}
.y3_c02096{bottom:52.416000px;}
.y28_c02096{bottom:58.134000px;}
.y2_c02096{bottom:75.456000px;}
.y27_c02096{bottom:76.314000px;}
.y26_c02096{bottom:94.359000px;}
.y25_c02096{bottom:112.539000px;}
.y24_c02096{bottom:130.719000px;}
.y7_c02096{bottom:136.836000px;}
.y23_c02096{bottom:148.719000px;}
.y22_c02096{bottom:166.899000px;}
.y21_c02096{bottom:185.079000px;}
.y20_c02096{bottom:203.079000px;}
.y1f_c02096{bottom:221.259000px;}
.y1e_c02096{bottom:239.259000px;}
.y1d_c02096{bottom:257.439000px;}
.y1c_c02096{bottom:275.619000px;}
.y1b_c02096{bottom:293.649000px;}
.y1a_c02096{bottom:311.829000px;}
.y19_c02096{bottom:329.829000px;}
.y18_c02096{bottom:348.009000px;}
.y17_c02096{bottom:366.189000px;}
.y16_c02096{bottom:384.189000px;}
.y14_c02096{bottom:402.369000px;}
.y13_c02096{bottom:420.549000px;}
.y12_c02096{bottom:438.549000px;}
.y11_c02096{bottom:456.729000px;}
.y10_c02096{bottom:474.729000px;}
.yf_c02096{bottom:492.954000px;}
.ye_c02096{bottom:511.134000px;}
.yd_c02096{bottom:529.134000px;}
.yc_c02096{bottom:547.314000px;}
.yb_c02096{bottom:565.314000px;}
.ya_c02096{bottom:583.494000px;}
.y9_c02096{bottom:601.674000px;}
.y15_c02096{bottom:619.314000px;}
.y8_c02096{bottom:619.674000px;}
.y5_c02096{bottom:771.450000px;}
.y1_c02096{bottom:851.400000px;}
.h4_c02096{height:18.180000px;}
.h3_c02096{height:22.680000px;}
.h2_c02096{height:48.871406px;}
.h1_c02096{height:58.651172px;}
.h5_c02096{height:62.184375px;}
.h7_c02096{height:63.855000px;}
.h8_c02096{height:65.124096px;}
.h6_c02096{height:633.885000px;}
.h0_c02096{height:918.000000px;}
.w3_c02096{width:48.096000px;}
.w1_c02096{width:66.780000px;}
.w4_c02096{width:74.880000px;}
.w7_c02096{width:89.820000px;}
.w6_c02096{width:105.696000px;}
.w5_c02096{width:187.050000px;}
.w2_c02096{width:481.710000px;}
.w0_c02096{width:1188.000000px;}
.x0_c02096{left:0.000000px;}
.xd_c02096{left:7.740000px;}
.xe_c02096{left:11.880000px;}
.x3_c02096{left:16.560000px;}
.x8_c02096{left:19.800000px;}
.x7_c02096{left:23.760000px;}
.xb_c02096{left:33.474000px;}
.xa_c02096{left:37.434000px;}
.x5_c02096{left:38.520000px;}
.x6_c02096{left:98.640000px;}
.x1_c02096{left:106.200000px;}
.x9_c02096{left:147.456000px;}
.xc_c02096{left:223.050000px;}
.x4_c02096{left:411.015000px;}
.xf_c02096{left:893.445000px;}
.x10_c02096{left:999.870000px;}
.x2_c02096{left:1101.570000px;}
@media print{
.v1_c02096{vertical-align:-62.720000pt;}
.v0_c02096{vertical-align:0.000000pt;}
.ls4_c02096{letter-spacing:0.000000pt;}
.ls0_c02096{letter-spacing:1.280000pt;}
.ls1_c02096{letter-spacing:60.503040pt;}
.ls3_c02096{letter-spacing:76.160000pt;}
.ls2_c02096{letter-spacing:82.080000pt;}
.ws0_c02096{word-spacing:-14.080000pt;}
.ws1_c02096{word-spacing:0.000000pt;}
._2_c02096{margin-left:-2.140273pt;}
._1_c02096{margin-left:-1.126400pt;}
._3_c02096{width:1.464545pt;}
._0_c02096{width:1334.186667pt;}
.fs0_c02096{font-size:53.120000pt;}
.fs2_c02096{font-size:56.320000pt;}
.fs1_c02096{font-size:58.880000pt;}
.y0_c02096{bottom:0.000000pt;}
.y2b_c02096{bottom:3.360000pt;}
.y6_c02096{bottom:3.520000pt;}
.y4_c02096{bottom:4.320000pt;}
.y2a_c02096{bottom:19.514667pt;}
.y29_c02096{bottom:35.674667pt;}
.y3_c02096{bottom:46.592000pt;}
.y28_c02096{bottom:51.674667pt;}
.y2_c02096{bottom:67.072000pt;}
.y27_c02096{bottom:67.834667pt;}
.y26_c02096{bottom:83.874667pt;}
.y25_c02096{bottom:100.034667pt;}
.y24_c02096{bottom:116.194667pt;}
.y7_c02096{bottom:121.632000pt;}
.y23_c02096{bottom:132.194667pt;}
.y22_c02096{bottom:148.354667pt;}
.y21_c02096{bottom:164.514667pt;}
.y20_c02096{bottom:180.514667pt;}
.y1f_c02096{bottom:196.674667pt;}
.y1e_c02096{bottom:212.674667pt;}
.y1d_c02096{bottom:228.834667pt;}
.y1c_c02096{bottom:244.994667pt;}
.y1b_c02096{bottom:261.021333pt;}
.y1a_c02096{bottom:277.181333pt;}
.y19_c02096{bottom:293.181333pt;}
.y18_c02096{bottom:309.341333pt;}
.y17_c02096{bottom:325.501333pt;}
.y16_c02096{bottom:341.501333pt;}
.y14_c02096{bottom:357.661333pt;}
.y13_c02096{bottom:373.821333pt;}
.y12_c02096{bottom:389.821333pt;}
.y11_c02096{bottom:405.981333pt;}
.y10_c02096{bottom:421.981333pt;}
.yf_c02096{bottom:438.181333pt;}
.ye_c02096{bottom:454.341333pt;}
.yd_c02096{bottom:470.341333pt;}
.yc_c02096{bottom:486.501333pt;}
.yb_c02096{bottom:502.501333pt;}
.ya_c02096{bottom:518.661333pt;}
.y9_c02096{bottom:534.821333pt;}
.y15_c02096{bottom:550.501333pt;}
.y8_c02096{bottom:550.821333pt;}
.y5_c02096{bottom:685.733333pt;}
.y1_c02096{bottom:756.800000pt;}
.h4_c02096{height:16.160000pt;}
.h3_c02096{height:20.160000pt;}
.h2_c02096{height:43.441250pt;}
.h1_c02096{height:52.134375pt;}
.h5_c02096{height:55.275000pt;}
.h7_c02096{height:56.760000pt;}
.h8_c02096{height:57.888085pt;}
.h6_c02096{height:563.453333pt;}
.h0_c02096{height:816.000000pt;}
.w3_c02096{width:42.752000pt;}
.w1_c02096{width:59.360000pt;}
.w4_c02096{width:66.560000pt;}
.w7_c02096{width:79.840000pt;}
.w6_c02096{width:93.952000pt;}
.w5_c02096{width:166.266667pt;}
.w2_c02096{width:428.186667pt;}
.w0_c02096{width:1056.000000pt;}
.x0_c02096{left:0.000000pt;}
.xd_c02096{left:6.880000pt;}
.xe_c02096{left:10.560000pt;}
.x3_c02096{left:14.720000pt;}
.x8_c02096{left:17.600000pt;}
.x7_c02096{left:21.120000pt;}
.xb_c02096{left:29.754667pt;}
.xa_c02096{left:33.274667pt;}
.x5_c02096{left:34.240000pt;}
.x6_c02096{left:87.680000pt;}
.x1_c02096{left:94.400000pt;}
.x9_c02096{left:131.072000pt;}
.xc_c02096{left:198.266667pt;}
.x4_c02096{left:365.346667pt;}
.xf_c02096{left:794.173333pt;}
.x10_c02096{left:888.773333pt;}
.x2_c02096{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02097 {
    display:none;
  }
  .loading-indicator_c02097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02097 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02097 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02097" -> "#page-container .classname_c02097")
 */
.pf_c02097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02097 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02097 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02097 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02097 {overflow:visible;}
  }
}
.c_c02097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02097 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02097:after { /* webkit #35443 */
  content: '';
}
.t_c02097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02097 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02097 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02097 { /* info for Javascript */
  display:none;
}
.l_c02097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02097:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02097 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02097.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02097;src:url('chunks/assets/font_ff438416aaa66419488987e5.woff2')format("woff");}.ff1_c02097{font-family:ff1_c02097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02097;src:url('chunks/assets/font_d4ded2c29fdc2bdf6f365143.woff2')format("woff");}.ff2_c02097{font-family:ff2_c02097;line-height:0.863770;font-style:normal;font-weight: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_c02097;src:url('chunks/assets/font_c1c190a39ce75871fcefeec8.woff2')format("woff");}.ff3_c02097{font-family:ff3_c02097;line-height:1.402354;font-style:normal;font-weight: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_c02097;src:url('chunks/assets/font_bb4cb030c140f485909c3dba.woff2')format("woff");}.ff4_c02097{font-family:ff4_c02097;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02097{vertical-align:0.000000px;}
.ls1_c02097{letter-spacing:0.000000px;}
.ls0_c02097{letter-spacing:68.065920px;}
.sc__c02097{text-shadow:none;}
.sc0_c02097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02097{-webkit-text-stroke:0px transparent;}
.sc0_c02097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02097{word-spacing:-15.840000px;}
.ws1_c02097{word-spacing:0.000000px;}
._3_c02097{margin-left:-2.466547px;}
._1_c02097{margin-left:-1.422467px;}
._2_c02097{width:1.041673px;}
._0_c02097{width:1500.960000px;}
.fc1_c02097{color:rgb(192,80,77);}
.fc0_c02097{color:rgb(0,0,0);}
.fs0_c02097{font-size:59.760000px;}
.fs2_c02097{font-size:63.360000px;}
.fs1_c02097{font-size:66.240000px;}
.y0_c02097{bottom:0.000000px;}
.y29_c02097{bottom:3.960000px;}
.y4_c02097{bottom:4.860000px;}
.y28_c02097{bottom:21.954000px;}
.y27_c02097{bottom:40.134000px;}
.y3_c02097{bottom:52.416000px;}
.y26_c02097{bottom:58.134000px;}
.y2_c02097{bottom:75.456000px;}
.y25_c02097{bottom:76.314000px;}
.y24_c02097{bottom:94.539000px;}
.y23_c02097{bottom:112.539000px;}
.y22_c02097{bottom:130.719000px;}
.y5_c02097{bottom:137.556000px;}
.y21_c02097{bottom:148.719000px;}
.y20_c02097{bottom:166.899000px;}
.y1f_c02097{bottom:185.079000px;}
.y1e_c02097{bottom:203.079000px;}
.y1d_c02097{bottom:221.259000px;}
.y1c_c02097{bottom:239.439000px;}
.y1b_c02097{bottom:257.439000px;}
.y1a_c02097{bottom:275.619000px;}
.y19_c02097{bottom:293.649000px;}
.y18_c02097{bottom:311.829000px;}
.y17_c02097{bottom:330.009000px;}
.y16_c02097{bottom:348.009000px;}
.y15_c02097{bottom:366.189000px;}
.y14_c02097{bottom:384.189000px;}
.y13_c02097{bottom:402.369000px;}
.y12_c02097{bottom:420.549000px;}
.y11_c02097{bottom:438.549000px;}
.y10_c02097{bottom:456.729000px;}
.yf_c02097{bottom:474.909000px;}
.ye_c02097{bottom:492.954000px;}
.yd_c02097{bottom:511.134000px;}
.yc_c02097{bottom:529.134000px;}
.yb_c02097{bottom:547.314000px;}
.ya_c02097{bottom:565.494000px;}
.y9_c02097{bottom:583.494000px;}
.y8_c02097{bottom:601.674000px;}
.y7_c02097{bottom:619.674000px;}
.y6_c02097{bottom:637.854000px;}
.y1_c02097{bottom:851.400000px;}
.h3_c02097{height:22.680000px;}
.h2_c02097{height:48.871406px;}
.h7_c02097{height:56.801250px;}
.h1_c02097{height:58.651172px;}
.h6_c02097{height:62.184375px;}
.h5_c02097{height:65.124096px;}
.h4_c02097{height:652.065000px;}
.h0_c02097{height:918.000000px;}
.w1_c02097{width:66.780000px;}
.w2_c02097{width:481.710000px;}
.w0_c02097{width:1188.000000px;}
.x0_c02097{left:0.000000px;}
.x5_c02097{left:11.880000px;}
.x3_c02097{left:16.560000px;}
.x6_c02097{left:38.520000px;}
.x1_c02097{left:106.200000px;}
.x4_c02097{left:411.015000px;}
.x2_c02097{left:1101.570000px;}
@media print{
.v0_c02097{vertical-align:0.000000pt;}
.ls1_c02097{letter-spacing:0.000000pt;}
.ls0_c02097{letter-spacing:60.503040pt;}
.ws0_c02097{word-spacing:-14.080000pt;}
.ws1_c02097{word-spacing:0.000000pt;}
._3_c02097{margin-left:-2.192486pt;}
._1_c02097{margin-left:-1.264415pt;}
._2_c02097{width:0.925932pt;}
._0_c02097{width:1334.186667pt;}
.fs0_c02097{font-size:53.120000pt;}
.fs2_c02097{font-size:56.320000pt;}
.fs1_c02097{font-size:58.880000pt;}
.y0_c02097{bottom:0.000000pt;}
.y29_c02097{bottom:3.520000pt;}
.y4_c02097{bottom:4.320000pt;}
.y28_c02097{bottom:19.514667pt;}
.y27_c02097{bottom:35.674667pt;}
.y3_c02097{bottom:46.592000pt;}
.y26_c02097{bottom:51.674667pt;}
.y2_c02097{bottom:67.072000pt;}
.y25_c02097{bottom:67.834667pt;}
.y24_c02097{bottom:84.034667pt;}
.y23_c02097{bottom:100.034667pt;}
.y22_c02097{bottom:116.194667pt;}
.y5_c02097{bottom:122.272000pt;}
.y21_c02097{bottom:132.194667pt;}
.y20_c02097{bottom:148.354667pt;}
.y1f_c02097{bottom:164.514667pt;}
.y1e_c02097{bottom:180.514667pt;}
.y1d_c02097{bottom:196.674667pt;}
.y1c_c02097{bottom:212.834667pt;}
.y1b_c02097{bottom:228.834667pt;}
.y1a_c02097{bottom:244.994667pt;}
.y19_c02097{bottom:261.021333pt;}
.y18_c02097{bottom:277.181333pt;}
.y17_c02097{bottom:293.341333pt;}
.y16_c02097{bottom:309.341333pt;}
.y15_c02097{bottom:325.501333pt;}
.y14_c02097{bottom:341.501333pt;}
.y13_c02097{bottom:357.661333pt;}
.y12_c02097{bottom:373.821333pt;}
.y11_c02097{bottom:389.821333pt;}
.y10_c02097{bottom:405.981333pt;}
.yf_c02097{bottom:422.141333pt;}
.ye_c02097{bottom:438.181333pt;}
.yd_c02097{bottom:454.341333pt;}
.yc_c02097{bottom:470.341333pt;}
.yb_c02097{bottom:486.501333pt;}
.ya_c02097{bottom:502.661333pt;}
.y9_c02097{bottom:518.661333pt;}
.y8_c02097{bottom:534.821333pt;}
.y7_c02097{bottom:550.821333pt;}
.y6_c02097{bottom:566.981333pt;}
.y1_c02097{bottom:756.800000pt;}
.h3_c02097{height:20.160000pt;}
.h2_c02097{height:43.441250pt;}
.h7_c02097{height:50.490000pt;}
.h1_c02097{height:52.134375pt;}
.h6_c02097{height:55.275000pt;}
.h5_c02097{height:57.888085pt;}
.h4_c02097{height:579.613333pt;}
.h0_c02097{height:816.000000pt;}
.w1_c02097{width:59.360000pt;}
.w2_c02097{width:428.186667pt;}
.w0_c02097{width:1056.000000pt;}
.x0_c02097{left:0.000000pt;}
.x5_c02097{left:10.560000pt;}
.x3_c02097{left:14.720000pt;}
.x6_c02097{left:34.240000pt;}
.x1_c02097{left:94.400000pt;}
.x4_c02097{left:365.346667pt;}
.x2_c02097{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02098 {
    display:none;
  }
  .loading-indicator_c02098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02098 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02098 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02098" -> "#page-container .classname_c02098")
 */
.pf_c02098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02098 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02098 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02098 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02098 {overflow:visible;}
  }
}
.c_c02098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02098 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02098:after { /* webkit #35443 */
  content: '';
}
.t_c02098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02098 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02098 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02098 { /* info for Javascript */
  display:none;
}
.l_c02098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02098:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02098 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02098.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02098;src:url('chunks/assets/font_45b7b6ca265e733a0aab8f10.woff2')format("woff");}.ff1_c02098{font-family:ff1_c02098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02098;src:url('chunks/assets/font_4d93ce469372740a9bf543cf.woff2')format("woff");}.ff2_c02098{font-family:ff2_c02098;line-height:0.863770;font-style:normal;font-weight: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_c02098;src:url('chunks/assets/font_bdddf9e045b8eae065bf5052.woff2')format("woff");}.ff3_c02098{font-family:ff3_c02098;line-height:1.402354;font-style:normal;font-weight: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_c02098;src:url('chunks/assets/font_5d7fa6eeec873d2dc7d61f24.woff2')format("woff");}.ff4_c02098{font-family:ff4_c02098;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02098{vertical-align:0.000000px;}
.ls1_c02098{letter-spacing:0.000000px;}
.ls0_c02098{letter-spacing:68.065920px;}
.sc__c02098{text-shadow:none;}
.sc0_c02098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02098{-webkit-text-stroke:0px transparent;}
.sc0_c02098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02098{word-spacing:-15.840000px;}
.ws1_c02098{word-spacing:0.000000px;}
._2_c02098{margin-left:-2.223867px;}
._1_c02098{margin-left:-1.105667px;}
._3_c02098{width:1.033667px;}
._0_c02098{width:1500.960000px;}
.fc1_c02098{color:rgb(192,80,77);}
.fc0_c02098{color:rgb(0,0,0);}
.fs0_c02098{font-size:59.760000px;}
.fs2_c02098{font-size:63.360000px;}
.fs1_c02098{font-size:66.240000px;}
.fs3_c02098{font-size:72.000000px;}
.y0_c02098{bottom:0.000000px;}
.yc_c02098{bottom:3.780000px;}
.y4_c02098{bottom:4.860000px;}
.yb_c02098{bottom:21.960000px;}
.ya_c02098{bottom:40.140000px;}
.y3_c02098{bottom:52.416000px;}
.y9_c02098{bottom:58.140000px;}
.y2_c02098{bottom:75.456000px;}
.y8_c02098{bottom:76.320000px;}
.y7_c02098{bottom:94.320000px;}
.y6_c02098{bottom:112.500000px;}
.ye_c02098{bottom:625.290000px;}
.yd_c02098{bottom:645.990000px;}
.y5_c02098{bottom:662.910000px;}
.y1_c02098{bottom:851.400000px;}
.h3_c02098{height:22.680000px;}
.h2_c02098{height:48.871406px;}
.h1_c02098{height:58.651172px;}
.h5_c02098{height:62.184375px;}
.h6_c02098{height:65.124096px;}
.h7_c02098{height:70.664062px;}
.h4_c02098{height:126.720000px;}
.h0_c02098{height:918.000000px;}
.w1_c02098{width:66.780000px;}
.w2_c02098{width:481.710000px;}
.w0_c02098{width:1188.000000px;}
.x0_c02098{left:0.000000px;}
.x6_c02098{left:11.880000px;}
.x3_c02098{left:16.560000px;}
.x5_c02098{left:38.520000px;}
.x1_c02098{left:106.200000px;}
.x4_c02098{left:411.015000px;}
.x2_c02098{left:1101.570000px;}
@media print{
.v0_c02098{vertical-align:0.000000pt;}
.ls1_c02098{letter-spacing:0.000000pt;}
.ls0_c02098{letter-spacing:60.503040pt;}
.ws0_c02098{word-spacing:-14.080000pt;}
.ws1_c02098{word-spacing:0.000000pt;}
._2_c02098{margin-left:-1.976771pt;}
._1_c02098{margin-left:-0.982815pt;}
._3_c02098{width:0.918815pt;}
._0_c02098{width:1334.186667pt;}
.fs0_c02098{font-size:53.120000pt;}
.fs2_c02098{font-size:56.320000pt;}
.fs1_c02098{font-size:58.880000pt;}
.fs3_c02098{font-size:64.000000pt;}
.y0_c02098{bottom:0.000000pt;}
.yc_c02098{bottom:3.360000pt;}
.y4_c02098{bottom:4.320000pt;}
.yb_c02098{bottom:19.520000pt;}
.ya_c02098{bottom:35.680000pt;}
.y3_c02098{bottom:46.592000pt;}
.y9_c02098{bottom:51.680000pt;}
.y2_c02098{bottom:67.072000pt;}
.y8_c02098{bottom:67.840000pt;}
.y7_c02098{bottom:83.840000pt;}
.y6_c02098{bottom:100.000000pt;}
.ye_c02098{bottom:555.813333pt;}
.yd_c02098{bottom:574.213333pt;}
.y5_c02098{bottom:589.253333pt;}
.y1_c02098{bottom:756.800000pt;}
.h3_c02098{height:20.160000pt;}
.h2_c02098{height:43.441250pt;}
.h1_c02098{height:52.134375pt;}
.h5_c02098{height:55.275000pt;}
.h6_c02098{height:57.888085pt;}
.h7_c02098{height:62.812500pt;}
.h4_c02098{height:112.640000pt;}
.h0_c02098{height:816.000000pt;}
.w1_c02098{width:59.360000pt;}
.w2_c02098{width:428.186667pt;}
.w0_c02098{width:1056.000000pt;}
.x0_c02098{left:0.000000pt;}
.x6_c02098{left:10.560000pt;}
.x3_c02098{left:14.720000pt;}
.x5_c02098{left:34.240000pt;}
.x1_c02098{left:94.400000pt;}
.x4_c02098{left:365.346667pt;}
.x2_c02098{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02099 {
    display:none;
  }
  .loading-indicator_c02099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02099 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02099 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02099" -> "#page-container .classname_c02099")
 */
.pf_c02099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02099 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02099 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02099 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02099 {overflow:visible;}
  }
}
.c_c02099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02099 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02099:after { /* webkit #35443 */
  content: '';
}
.t_c02099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02099 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02099 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02099 { /* info for Javascript */
  display:none;
}
.l_c02099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02099:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02099 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02099.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02099;src:url('chunks/assets/font_6e9c68defb3429e4464aff55.woff2')format("woff");}.ff1_c02099{font-family:ff1_c02099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02099;src:url('chunks/assets/font_5271ad50cb82760ad8e941c4.woff2')format("woff");}.ff2_c02099{font-family:ff2_c02099;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02099{vertical-align:0.000000px;}
.ls0_c02099{letter-spacing:0.000000px;}
.sc__c02099{text-shadow:none;}
.sc0_c02099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02099{-webkit-text-stroke:0px transparent;}
.sc0_c02099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02099{word-spacing:0.000000px;}
._1_c02099{margin-left:-1.080000px;}
._0_c02099{width:1500.960000px;}
.fc1_c02099{color:rgb(192,80,77);}
.fc2_c02099{color:rgb(255,255,255);}
.fc0_c02099{color:rgb(0,0,0);}
.fs0_c02099{font-size:59.760000px;}
.fs3_c02099{font-size:63.360000px;}
.fs1_c02099{font-size:66.240000px;}
.fs2_c02099{font-size:72.000000px;}
.y0_c02099{bottom:0.000000px;}
.y1f_c02099{bottom:3.780000px;}
.y23_c02099{bottom:3.825000px;}
.ye_c02099{bottom:3.960000px;}
.yb_c02099{bottom:4.680000px;}
.y4_c02099{bottom:4.860000px;}
.yd_c02099{bottom:21.960000px;}
.y1b_c02099{bottom:21.990000px;}
.y22_c02099{bottom:22.005000px;}
.y28_c02099{bottom:22.134000px;}
.y16_c02099{bottom:22.140000px;}
.ya_c02099{bottom:22.860000px;}
.y21_c02099{bottom:40.005000px;}
.y27_c02099{bottom:40.134000px;}
.y13_c02099{bottom:40.140000px;}
.y1a_c02099{bottom:40.170000px;}
.y9_c02099{bottom:40.860000px;}
.y3_c02099{bottom:52.416000px;}
.y12_c02099{bottom:58.005000px;}
.y1e_c02099{bottom:58.140000px;}
.y11_c02099{bottom:58.185000px;}
.y26_c02099{bottom:58.314000px;}
.y15_c02099{bottom:58.320000px;}
.y19_c02099{bottom:58.350000px;}
.y2_c02099{bottom:75.456000px;}
.y25_c02099{bottom:76.314000px;}
.y1d_c02099{bottom:76.320000px;}
.y18_c02099{bottom:76.350000px;}
.y10_c02099{bottom:76.365000px;}
.y24_c02099{bottom:133.956000px;}
.y20_c02099{bottom:225.390000px;}
.y1c_c02099{bottom:316.695000px;}
.y17_c02099{bottom:407.955000px;}
.y14_c02099{bottom:499.245000px;}
.yf_c02099{bottom:572.505000px;}
.y8_c02099{bottom:663.810000px;}
.yc_c02099{bottom:682.710000px;}
.y7_c02099{bottom:723.750000px;}
.y6_c02099{bottom:743.190000px;}
.y5_c02099{bottom:773.970000px;}
.y1_c02099{bottom:851.400000px;}
.h9_c02099{height:18.180000px;}
.h3_c02099{height:22.680000px;}
.h8_c02099{height:36.180000px;}
.h2_c02099{height:48.871406px;}
.h6_c02099{height:55.080000px;}
.h1_c02099{height:58.651172px;}
.h7_c02099{height:62.184375px;}
.h5_c02099{height:65.010937px;}
.h4_c02099{height:70.664062px;}
.hb_c02099{height:72.540000px;}
.hc_c02099{height:90.540000px;}
.ha_c02099{height:90.576000px;}
.h0_c02099{height:918.000000px;}
.w2_c02099{width:60.516000px;}
.w1_c02099{width:66.780000px;}
.w5_c02099{width:99.216000px;}
.w9_c02099{width:114.120000px;}
.w8_c02099{width:114.156000px;}
.w6_c02099{width:190.620000px;}
.w7_c02099{width:201.090000px;}
.w3_c02099{width:201.240000px;}
.w4_c02099{width:228.990000px;}
.w0_c02099{width:1188.000000px;}
.x0_c02099{left:0.000000px;}
.x1d_c02099{left:7.740000px;}
.x9_c02099{left:11.160000px;}
.x14_c02099{left:12.780000px;}
.x3_c02099{left:16.560000px;}
.x1c_c02099{left:18.000000px;}
.x13_c02099{left:22.860000px;}
.x8_c02099{left:30.060000px;}
.x10_c02099{left:40.725000px;}
.x1f_c02099{left:46.980000px;}
.x12_c02099{left:49.500000px;}
.x19_c02099{left:52.245000px;}
.x1e_c02099{left:54.405000px;}
.xd_c02099{left:59.940000px;}
.x1a_c02099{left:62.325000px;}
.x17_c02099{left:65.520000px;}
.xf_c02099{left:70.605000px;}
.xc_c02099{left:75.240000px;}
.x16_c02099{left:95.220000px;}
.x7_c02099{left:98.640000px;}
.xb_c02099{left:100.620000px;}
.x1_c02099{left:106.200000px;}
.xa_c02099{left:159.870000px;}
.x5_c02099{left:313.050000px;}
.xe_c02099{left:361.830000px;}
.x1b_c02099{left:476.715000px;}
.x4_c02099{left:577.695000px;}
.x11_c02099{left:591.555000px;}
.x6_c02099{left:593.895000px;}
.x15_c02099{left:691.485000px;}
.x18_c02099{left:882.825000px;}
.x2_c02099{left:1101.570000px;}
@media print{
.v0_c02099{vertical-align:0.000000pt;}
.ls0_c02099{letter-spacing:0.000000pt;}
.ws0_c02099{word-spacing:0.000000pt;}
._1_c02099{margin-left:-0.960000pt;}
._0_c02099{width:1334.186667pt;}
.fs0_c02099{font-size:53.120000pt;}
.fs3_c02099{font-size:56.320000pt;}
.fs1_c02099{font-size:58.880000pt;}
.fs2_c02099{font-size:64.000000pt;}
.y0_c02099{bottom:0.000000pt;}
.y1f_c02099{bottom:3.360000pt;}
.y23_c02099{bottom:3.400000pt;}
.ye_c02099{bottom:3.520000pt;}
.yb_c02099{bottom:4.160000pt;}
.y4_c02099{bottom:4.320000pt;}
.yd_c02099{bottom:19.520000pt;}
.y1b_c02099{bottom:19.546667pt;}
.y22_c02099{bottom:19.560000pt;}
.y28_c02099{bottom:19.674667pt;}
.y16_c02099{bottom:19.680000pt;}
.ya_c02099{bottom:20.320000pt;}
.y21_c02099{bottom:35.560000pt;}
.y27_c02099{bottom:35.674667pt;}
.y13_c02099{bottom:35.680000pt;}
.y1a_c02099{bottom:35.706667pt;}
.y9_c02099{bottom:36.320000pt;}
.y3_c02099{bottom:46.592000pt;}
.y12_c02099{bottom:51.560000pt;}
.y1e_c02099{bottom:51.680000pt;}
.y11_c02099{bottom:51.720000pt;}
.y26_c02099{bottom:51.834667pt;}
.y15_c02099{bottom:51.840000pt;}
.y19_c02099{bottom:51.866667pt;}
.y2_c02099{bottom:67.072000pt;}
.y25_c02099{bottom:67.834667pt;}
.y1d_c02099{bottom:67.840000pt;}
.y18_c02099{bottom:67.866667pt;}
.y10_c02099{bottom:67.880000pt;}
.y24_c02099{bottom:119.072000pt;}
.y20_c02099{bottom:200.346667pt;}
.y1c_c02099{bottom:281.506667pt;}
.y17_c02099{bottom:362.626667pt;}
.y14_c02099{bottom:443.773333pt;}
.yf_c02099{bottom:508.893333pt;}
.y8_c02099{bottom:590.053333pt;}
.yc_c02099{bottom:606.853333pt;}
.y7_c02099{bottom:643.333333pt;}
.y6_c02099{bottom:660.613333pt;}
.y5_c02099{bottom:687.973333pt;}
.y1_c02099{bottom:756.800000pt;}
.h9_c02099{height:16.160000pt;}
.h3_c02099{height:20.160000pt;}
.h8_c02099{height:32.160000pt;}
.h2_c02099{height:43.441250pt;}
.h6_c02099{height:48.960000pt;}
.h1_c02099{height:52.134375pt;}
.h7_c02099{height:55.275000pt;}
.h5_c02099{height:57.787500pt;}
.h4_c02099{height:62.812500pt;}
.hb_c02099{height:64.480000pt;}
.hc_c02099{height:80.480000pt;}
.ha_c02099{height:80.512000pt;}
.h0_c02099{height:816.000000pt;}
.w2_c02099{width:53.792000pt;}
.w1_c02099{width:59.360000pt;}
.w5_c02099{width:88.192000pt;}
.w9_c02099{width:101.440000pt;}
.w8_c02099{width:101.472000pt;}
.w6_c02099{width:169.440000pt;}
.w7_c02099{width:178.746667pt;}
.w3_c02099{width:178.880000pt;}
.w4_c02099{width:203.546667pt;}
.w0_c02099{width:1056.000000pt;}
.x0_c02099{left:0.000000pt;}
.x1d_c02099{left:6.880000pt;}
.x9_c02099{left:9.920000pt;}
.x14_c02099{left:11.360000pt;}
.x3_c02099{left:14.720000pt;}
.x1c_c02099{left:16.000000pt;}
.x13_c02099{left:20.320000pt;}
.x8_c02099{left:26.720000pt;}
.x10_c02099{left:36.200000pt;}
.x1f_c02099{left:41.760000pt;}
.x12_c02099{left:44.000000pt;}
.x19_c02099{left:46.440000pt;}
.x1e_c02099{left:48.360000pt;}
.xd_c02099{left:53.280000pt;}
.x1a_c02099{left:55.400000pt;}
.x17_c02099{left:58.240000pt;}
.xf_c02099{left:62.760000pt;}
.xc_c02099{left:66.880000pt;}
.x16_c02099{left:84.640000pt;}
.x7_c02099{left:87.680000pt;}
.xb_c02099{left:89.440000pt;}
.x1_c02099{left:94.400000pt;}
.xa_c02099{left:142.106667pt;}
.x5_c02099{left:278.266667pt;}
.xe_c02099{left:321.626667pt;}
.x1b_c02099{left:423.746667pt;}
.x4_c02099{left:513.506667pt;}
.x11_c02099{left:525.826667pt;}
.x6_c02099{left:527.906667pt;}
.x15_c02099{left:614.653333pt;}
.x18_c02099{left:784.733333pt;}
.x2_c02099{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02100 {
    display:none;
  }
  .loading-indicator_c02100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02100 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02100 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02100" -> "#page-container .classname_c02100")
 */
.pf_c02100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02100 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02100 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02100 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02100 {overflow:visible;}
  }
}
.c_c02100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02100 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02100:after { /* webkit #35443 */
  content: '';
}
.t_c02100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02100 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02100 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02100 { /* info for Javascript */
  display:none;
}
.l_c02100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02100:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02100 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02100.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02100;src:url('chunks/assets/font_ec6e3cfff9d729aa32cb1acc.woff2')format("woff");}.ff1_c02100{font-family:ff1_c02100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02100;src:url('chunks/assets/font_7128aa88dcad003d26651e7c.woff2')format("woff");}.ff2_c02100{font-family:ff2_c02100;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02100{vertical-align:0.000000px;}
.ls0_c02100{letter-spacing:0.000000px;}
.ls1_c02100{letter-spacing:0.219000px;}
.sc__c02100{text-shadow:none;}
.sc0_c02100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02100{-webkit-text-stroke:0px transparent;}
.sc0_c02100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02100{word-spacing:-16.059000px;}
.ws1_c02100{word-spacing:0.000000px;}
._1_c02100{margin-left:-1.267200px;}
._0_c02100{width:1500.960000px;}
.fc1_c02100{color:rgb(192,80,77);}
.fc0_c02100{color:rgb(0,0,0);}
.fs0_c02100{font-size:59.760000px;}
.fs2_c02100{font-size:63.360000px;}
.fs1_c02100{font-size:66.240000px;}
.y0_c02100{bottom:0.000000px;}
.yf_c02100{bottom:3.780000px;}
.ya_c02100{bottom:3.960000px;}
.y4_c02100{bottom:4.860000px;}
.y1f_c02100{bottom:21.954000px;}
.y9_c02100{bottom:21.960000px;}
.y1a_c02100{bottom:22.005000px;}
.yd_c02100{bottom:22.140000px;}
.y14_c02100{bottom:22.170000px;}
.y1e_c02100{bottom:40.134000px;}
.y8_c02100{bottom:40.140000px;}
.y13_c02100{bottom:40.170000px;}
.y19_c02100{bottom:40.185000px;}
.y3_c02100{bottom:52.416000px;}
.y1d_c02100{bottom:58.134000px;}
.y7_c02100{bottom:58.140000px;}
.y18_c02100{bottom:58.185000px;}
.yc_c02100{bottom:58.320000px;}
.y12_c02100{bottom:58.350000px;}
.y2_c02100{bottom:75.456000px;}
.y1c_c02100{bottom:76.314000px;}
.y6_c02100{bottom:76.320000px;}
.y17_c02100{bottom:76.365000px;}
.y1b_c02100{bottom:132.336000px;}
.y16_c02100{bottom:223.590000px;}
.y15_c02100{bottom:314.895000px;}
.y11_c02100{bottom:406.155000px;}
.y10_c02100{bottom:479.445000px;}
.ye_c02100{bottom:552.705000px;}
.yb_c02100{bottom:625.830000px;}
.y5_c02100{bottom:699.090000px;}
.y1_c02100{bottom:851.400000px;}
.h3_c02100{height:22.680000px;}
.h2_c02100{height:48.871406px;}
.h1_c02100{height:58.651172px;}
.h5_c02100{height:62.184375px;}
.h7_c02100{height:72.396000px;}
.h6_c02100{height:72.540000px;}
.h8_c02100{height:72.576000px;}
.h4_c02100{height:90.540000px;}
.h9_c02100{height:90.576000px;}
.h0_c02100{height:918.000000px;}
.w2_c02100{width:60.516000px;}
.w1_c02100{width:66.780000px;}
.w6_c02100{width:99.216000px;}
.w5_c02100{width:114.120000px;}
.w4_c02100{width:114.156000px;}
.w7_c02100{width:190.620000px;}
.w8_c02100{width:201.090000px;}
.w3_c02100{width:201.240000px;}
.w0_c02100{width:1188.000000px;}
.x0_c02100{left:0.000000px;}
.x7_c02100{left:7.740000px;}
.x5_c02100{left:12.060000px;}
.x3_c02100{left:16.560000px;}
.xc_c02100{left:46.980000px;}
.x9_c02100{left:54.405000px;}
.x4_c02100{left:98.640000px;}
.x1_c02100{left:106.200000px;}
.x6_c02100{left:159.870000px;}
.x8_c02100{left:361.830000px;}
.xa_c02100{left:476.715000px;}
.xb_c02100{left:591.555000px;}
.xd_c02100{left:691.485000px;}
.xe_c02100{left:882.825000px;}
.x2_c02100{left:1101.570000px;}
@media print{
.v0_c02100{vertical-align:0.000000pt;}
.ls0_c02100{letter-spacing:0.000000pt;}
.ls1_c02100{letter-spacing:0.194667pt;}
.ws0_c02100{word-spacing:-14.274667pt;}
.ws1_c02100{word-spacing:0.000000pt;}
._1_c02100{margin-left:-1.126400pt;}
._0_c02100{width:1334.186667pt;}
.fs0_c02100{font-size:53.120000pt;}
.fs2_c02100{font-size:56.320000pt;}
.fs1_c02100{font-size:58.880000pt;}
.y0_c02100{bottom:0.000000pt;}
.yf_c02100{bottom:3.360000pt;}
.ya_c02100{bottom:3.520000pt;}
.y4_c02100{bottom:4.320000pt;}
.y1f_c02100{bottom:19.514667pt;}
.y9_c02100{bottom:19.520000pt;}
.y1a_c02100{bottom:19.560000pt;}
.yd_c02100{bottom:19.680000pt;}
.y14_c02100{bottom:19.706667pt;}
.y1e_c02100{bottom:35.674667pt;}
.y8_c02100{bottom:35.680000pt;}
.y13_c02100{bottom:35.706667pt;}
.y19_c02100{bottom:35.720000pt;}
.y3_c02100{bottom:46.592000pt;}
.y1d_c02100{bottom:51.674667pt;}
.y7_c02100{bottom:51.680000pt;}
.y18_c02100{bottom:51.720000pt;}
.yc_c02100{bottom:51.840000pt;}
.y12_c02100{bottom:51.866667pt;}
.y2_c02100{bottom:67.072000pt;}
.y1c_c02100{bottom:67.834667pt;}
.y6_c02100{bottom:67.840000pt;}
.y17_c02100{bottom:67.880000pt;}
.y1b_c02100{bottom:117.632000pt;}
.y16_c02100{bottom:198.746667pt;}
.y15_c02100{bottom:279.906667pt;}
.y11_c02100{bottom:361.026667pt;}
.y10_c02100{bottom:426.173333pt;}
.ye_c02100{bottom:491.293333pt;}
.yb_c02100{bottom:556.293333pt;}
.y5_c02100{bottom:621.413333pt;}
.y1_c02100{bottom:756.800000pt;}
.h3_c02100{height:20.160000pt;}
.h2_c02100{height:43.441250pt;}
.h1_c02100{height:52.134375pt;}
.h5_c02100{height:55.275000pt;}
.h7_c02100{height:64.352000pt;}
.h6_c02100{height:64.480000pt;}
.h8_c02100{height:64.512000pt;}
.h4_c02100{height:80.480000pt;}
.h9_c02100{height:80.512000pt;}
.h0_c02100{height:816.000000pt;}
.w2_c02100{width:53.792000pt;}
.w1_c02100{width:59.360000pt;}
.w6_c02100{width:88.192000pt;}
.w5_c02100{width:101.440000pt;}
.w4_c02100{width:101.472000pt;}
.w7_c02100{width:169.440000pt;}
.w8_c02100{width:178.746667pt;}
.w3_c02100{width:178.880000pt;}
.w0_c02100{width:1056.000000pt;}
.x0_c02100{left:0.000000pt;}
.x7_c02100{left:6.880000pt;}
.x5_c02100{left:10.720000pt;}
.x3_c02100{left:14.720000pt;}
.xc_c02100{left:41.760000pt;}
.x9_c02100{left:48.360000pt;}
.x4_c02100{left:87.680000pt;}
.x1_c02100{left:94.400000pt;}
.x6_c02100{left:142.106667pt;}
.x8_c02100{left:321.626667pt;}
.xa_c02100{left:423.746667pt;}
.xb_c02100{left:525.826667pt;}
.xd_c02100{left:614.653333pt;}
.xe_c02100{left:784.733333pt;}
.x2_c02100{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02101 {
    display:none;
  }
  .loading-indicator_c02101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02101 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02101 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02101" -> "#page-container .classname_c02101")
 */
.pf_c02101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02101 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02101 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02101 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02101 {overflow:visible;}
  }
}
.c_c02101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02101 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02101:after { /* webkit #35443 */
  content: '';
}
.t_c02101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02101 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02101 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02101 { /* info for Javascript */
  display:none;
}
.l_c02101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02101:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02101 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02101.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02101;src:url('chunks/assets/font_18520e2f837dd88e3be7618b.woff2')format("woff");}.ff1_c02101{font-family:ff1_c02101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02101;src:url('chunks/assets/font_ff3d06efa6ad1a27038cea50.woff2')format("woff");}.ff2_c02101{font-family:ff2_c02101;line-height:0.863770;font-style:normal;font-weight: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_c02101;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02101{font-family:ff3_c02101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02101{vertical-align:0.000000px;}
.ls0_c02101{letter-spacing:0.000000px;}
.sc__c02101{text-shadow:none;}
.sc0_c02101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02101{-webkit-text-stroke:0px transparent;}
.sc0_c02101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02101{word-spacing:0.000000px;}
._2_c02101{margin-left:-2.344193px;}
._1_c02101{margin-left:-1.140607px;}
._3_c02101{width:1.203587px;}
._0_c02101{width:1500.960000px;}
.fc1_c02101{color:rgb(192,80,77);}
.fc0_c02101{color:rgb(0,0,0);}
.fs0_c02101{font-size:59.760000px;}
.fs2_c02101{font-size:63.360000px;}
.fs1_c02101{font-size:66.240000px;}
.fs3_c02101{font-size:72.000000px;}
.y0_c02101{bottom:0.000000px;}
.y7_c02101{bottom:3.780000px;}
.yd_c02101{bottom:3.960000px;}
.y4_c02101{bottom:4.860000px;}
.y6_c02101{bottom:21.960000px;}
.y1d_c02101{bottom:22.005000px;}
.y15_c02101{bottom:22.170000px;}
.y10_c02101{bottom:39.960000px;}
.y9_c02101{bottom:40.140000px;}
.y14_c02101{bottom:40.170000px;}
.y1c_c02101{bottom:40.185000px;}
.y3_c02101{bottom:52.416000px;}
.yf_c02101{bottom:58.140000px;}
.y1b_c02101{bottom:58.185000px;}
.y18_c02101{bottom:58.320000px;}
.y13_c02101{bottom:58.350000px;}
.yc_c02101{bottom:58.365000px;}
.y2_c02101{bottom:75.456000px;}
.y17_c02101{bottom:76.320000px;}
.y12_c02101{bottom:76.350000px;}
.y1a_c02101{bottom:76.365000px;}
.y1e_c02101{bottom:205.770000px;}
.y19_c02101{bottom:222.870000px;}
.y16_c02101{bottom:314.175000px;}
.y11_c02101{bottom:405.435000px;}
.ye_c02101{bottom:496.905000px;}
.yb_c02101{bottom:569.985000px;}
.ya_c02101{bottom:643.290000px;}
.y8_c02101{bottom:698.370000px;}
.y5_c02101{bottom:753.450000px;}
.y1_c02101{bottom:851.400000px;}
.h3_c02101{height:22.680000px;}
.h4_c02101{height:36.180000px;}
.h2_c02101{height:48.871406px;}
.h6_c02101{height:54.360000px;}
.h1_c02101{height:58.651172px;}
.h5_c02101{height:62.184375px;}
.hb_c02101{height:70.664062px;}
.h8_c02101{height:72.360000px;}
.h7_c02101{height:72.576000px;}
.ha_c02101{height:90.540000px;}
.h9_c02101{height:90.576000px;}
.h0_c02101{height:918.000000px;}
.w4_c02101{width:60.516000px;}
.w1_c02101{width:66.780000px;}
.w8_c02101{width:99.216000px;}
.w7_c02101{width:114.120000px;}
.w6_c02101{width:114.156000px;}
.w2_c02101{width:190.620000px;}
.w3_c02101{width:201.090000px;}
.w5_c02101{width:201.240000px;}
.w0_c02101{width:1188.000000px;}
.x0_c02101{left:0.000000px;}
.x5_c02101{left:7.740000px;}
.x8_c02101{left:12.060000px;}
.x3_c02101{left:16.560000px;}
.xe_c02101{left:46.980000px;}
.xb_c02101{left:54.405000px;}
.x7_c02101{left:98.640000px;}
.x1_c02101{left:106.200000px;}
.x9_c02101{left:159.870000px;}
.xa_c02101{left:361.830000px;}
.xc_c02101{left:476.715000px;}
.xd_c02101{left:591.555000px;}
.x4_c02101{left:691.485000px;}
.x6_c02101{left:882.825000px;}
.x2_c02101{left:1101.570000px;}
@media print{
.v0_c02101{vertical-align:0.000000pt;}
.ls0_c02101{letter-spacing:0.000000pt;}
.ws0_c02101{word-spacing:0.000000pt;}
._2_c02101{margin-left:-2.083727pt;}
._1_c02101{margin-left:-1.013873pt;}
._3_c02101{width:1.069855pt;}
._0_c02101{width:1334.186667pt;}
.fs0_c02101{font-size:53.120000pt;}
.fs2_c02101{font-size:56.320000pt;}
.fs1_c02101{font-size:58.880000pt;}
.fs3_c02101{font-size:64.000000pt;}
.y0_c02101{bottom:0.000000pt;}
.y7_c02101{bottom:3.360000pt;}
.yd_c02101{bottom:3.520000pt;}
.y4_c02101{bottom:4.320000pt;}
.y6_c02101{bottom:19.520000pt;}
.y1d_c02101{bottom:19.560000pt;}
.y15_c02101{bottom:19.706667pt;}
.y10_c02101{bottom:35.520000pt;}
.y9_c02101{bottom:35.680000pt;}
.y14_c02101{bottom:35.706667pt;}
.y1c_c02101{bottom:35.720000pt;}
.y3_c02101{bottom:46.592000pt;}
.yf_c02101{bottom:51.680000pt;}
.y1b_c02101{bottom:51.720000pt;}
.y18_c02101{bottom:51.840000pt;}
.y13_c02101{bottom:51.866667pt;}
.yc_c02101{bottom:51.880000pt;}
.y2_c02101{bottom:67.072000pt;}
.y17_c02101{bottom:67.840000pt;}
.y12_c02101{bottom:67.866667pt;}
.y1a_c02101{bottom:67.880000pt;}
.y1e_c02101{bottom:182.906667pt;}
.y19_c02101{bottom:198.106667pt;}
.y16_c02101{bottom:279.266667pt;}
.y11_c02101{bottom:360.386667pt;}
.ye_c02101{bottom:441.693333pt;}
.yb_c02101{bottom:506.653333pt;}
.ya_c02101{bottom:571.813333pt;}
.y8_c02101{bottom:620.773333pt;}
.y5_c02101{bottom:669.733333pt;}
.y1_c02101{bottom:756.800000pt;}
.h3_c02101{height:20.160000pt;}
.h4_c02101{height:32.160000pt;}
.h2_c02101{height:43.441250pt;}
.h6_c02101{height:48.320000pt;}
.h1_c02101{height:52.134375pt;}
.h5_c02101{height:55.275000pt;}
.hb_c02101{height:62.812500pt;}
.h8_c02101{height:64.320000pt;}
.h7_c02101{height:64.512000pt;}
.ha_c02101{height:80.480000pt;}
.h9_c02101{height:80.512000pt;}
.h0_c02101{height:816.000000pt;}
.w4_c02101{width:53.792000pt;}
.w1_c02101{width:59.360000pt;}
.w8_c02101{width:88.192000pt;}
.w7_c02101{width:101.440000pt;}
.w6_c02101{width:101.472000pt;}
.w2_c02101{width:169.440000pt;}
.w3_c02101{width:178.746667pt;}
.w5_c02101{width:178.880000pt;}
.w0_c02101{width:1056.000000pt;}
.x0_c02101{left:0.000000pt;}
.x5_c02101{left:6.880000pt;}
.x8_c02101{left:10.720000pt;}
.x3_c02101{left:14.720000pt;}
.xe_c02101{left:41.760000pt;}
.xb_c02101{left:48.360000pt;}
.x7_c02101{left:87.680000pt;}
.x1_c02101{left:94.400000pt;}
.x9_c02101{left:142.106667pt;}
.xa_c02101{left:321.626667pt;}
.xc_c02101{left:423.746667pt;}
.xd_c02101{left:525.826667pt;}
.x4_c02101{left:614.653333pt;}
.x6_c02101{left:784.733333pt;}
.x2_c02101{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02102 {
    display:none;
  }
  .loading-indicator_c02102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02102 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02102 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02102" -> "#page-container .classname_c02102")
 */
.pf_c02102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02102 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02102 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02102 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02102 {overflow:visible;}
  }
}
.c_c02102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02102 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02102:after { /* webkit #35443 */
  content: '';
}
.t_c02102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02102 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02102 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02102 { /* info for Javascript */
  display:none;
}
.l_c02102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02102:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02102 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02102.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02102;src:url('chunks/assets/font_d488cdaafd3ee4965fcbf1cd.woff2')format("woff");}.ff1_c02102{font-family:ff1_c02102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02102;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02102{font-family:ff2_c02102;line-height:0.863770;font-style:normal;font-weight: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_c02102;src:url('chunks/assets/font_ca72a56ba257934ba0ed605b.woff2')format("woff");}.ff3_c02102{font-family:ff3_c02102;line-height:1.311035;font-style:normal;font-weight: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_c02102;src:url('chunks/assets/font_9cb530e376183a8d91236de6.woff2')format("woff");}.ff4_c02102{font-family:ff4_c02102;line-height:1.284180;font-style:normal;font-weight: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_c02102;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5_c02102{font-family:ff5_c02102;line-height:1.284180;font-style:normal;font-weight: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_c02102;src:url('chunks/assets/font_53961f2cd981a1afa8708535.woff2')format("woff");}.ff6_c02102{font-family:ff6_c02102;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02102{vertical-align:-27.360000px;}
.v0_c02102{vertical-align:0.000000px;}
.v1_c02102{vertical-align:33.120000px;}
.ls5_c02102{letter-spacing:-1.440000px;}
.ls4_c02102{letter-spacing:0.000000px;}
.ls3_c02102{letter-spacing:0.106560px;}
.ls2_c02102{letter-spacing:0.150000px;}
.ls0_c02102{letter-spacing:0.360000px;}
.ls1_c02102{letter-spacing:10.800000px;}
.sc__c02102{text-shadow:none;}
.sc0_c02102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02102{-webkit-text-stroke:0px transparent;}
.sc0_c02102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02102{word-spacing:-23.940000px;}
.ws1_c02102{word-spacing:-18.000000px;}
.ws2_c02102{word-spacing:-9.720000px;}
.ws3_c02102{word-spacing:0.000000px;}
._11_c02102{margin-left:-12.817920px;}
._c_c02102{margin-left:-2.088000px;}
._3_c02102{margin-left:-1.008000px;}
._1_c02102{width:1.300708px;}
._5_c02102{width:2.736000px;}
._4_c02102{width:3.816000px;}
._6_c02102{width:4.980000px;}
._a_c02102{width:6.396000px;}
._b_c02102{width:8.407292px;}
._8_c02102{width:9.504000px;}
._2_c02102{width:10.584000px;}
._7_c02102{width:12.384000px;}
._10_c02102{width:16.488000px;}
._9_c02102{width:19.632000px;}
._e_c02102{width:34.339292px;}
._d_c02102{width:35.712000px;}
._f_c02102{width:37.046124px;}
._0_c02102{width:1500.936000px;}
.fc1_c02102{color:rgb(192,80,77);}
.fc0_c02102{color:rgb(0,0,0);}
.fs5_c02102{font-size:38.880000px;}
.fs4_c02102{font-size:48.240000px;}
.fs0_c02102{font-size:59.760000px;}
.fs1_c02102{font-size:66.240000px;}
.fs3_c02102{font-size:72.000000px;}
.fs2_c02102{font-size:95.760000px;}
.y0_c02102{bottom:0.000000px;}
.y4_c02102{bottom:4.680000px;}
.y3_c02102{bottom:41.796000px;}
.y2_c02102{bottom:75.456000px;}
.y24_c02102{bottom:109.836000px;}
.y23_c02102{bottom:133.956000px;}
.y22_c02102{bottom:145.296000px;}
.y21_c02102{bottom:185.430000px;}
.y20_c02102{bottom:216.570000px;}
.y1f_c02102{bottom:247.530000px;}
.y1e_c02102{bottom:278.715000px;}
.y1d_c02102{bottom:309.675000px;}
.y1c_c02102{bottom:340.815000px;}
.y1b_c02102{bottom:371.775000px;}
.y1a_c02102{bottom:402.915000px;}
.y19_c02102{bottom:433.875000px;}
.y18_c02102{bottom:465.015000px;}
.y17_c02102{bottom:495.975000px;}
.y16_c02102{bottom:527.115000px;}
.y15_c02102{bottom:558.105000px;}
.y14_c02102{bottom:589.245000px;}
.y13_c02102{bottom:620.205000px;}
.y12_c02102{bottom:651.345000px;}
.y11_c02102{bottom:682.305000px;}
.y10_c02102{bottom:713.445000px;}
.yf_c02102{bottom:744.405000px;}
.ye_c02102{bottom:775.545000px;}
.yd_c02102{bottom:806.550000px;}
.yc_c02102{bottom:837.690000px;}
.yb_c02102{bottom:868.650000px;}
.ya_c02102{bottom:899.790000px;}
.y9_c02102{bottom:930.750000px;}
.y8_c02102{bottom:961.890000px;}
.y7_c02102{bottom:992.850000px;}
.y6_c02102{bottom:1023.630000px;}
.y5_c02102{bottom:1059.660000px;}
.y1_c02102{bottom:1121.400000px;}
.h3_c02102{height:22.500000px;}
.h9_c02102{height:38.158594px;}
.h2_c02102{height:48.871406px;}
.h1_c02102{height:58.651172px;}
.h7_c02102{height:64.546875px;}
.h6_c02102{height:70.664062px;}
.h5_c02102{height:72.562500px;}
.h8_c02102{height:80.464922px;}
.h4_c02102{height:96.508125px;}
.h0_c02102{height:1188.000000px;}
.w1_c02102{width:66.636000px;}
.w0_c02102{width:918.000000px;}
.x0_c02102{left:0.000000px;}
.x3_c02102{left:16.560000px;}
.x1_c02102{left:127.656000px;}
.x5_c02102{left:180.750000px;}
.x4_c02102{left:262.290000px;}
.x2_c02102{left:820.950000px;}
@media print{
.v2_c02102{vertical-align:-24.320000pt;}
.v0_c02102{vertical-align:0.000000pt;}
.v1_c02102{vertical-align:29.440000pt;}
.ls5_c02102{letter-spacing:-1.280000pt;}
.ls4_c02102{letter-spacing:0.000000pt;}
.ls3_c02102{letter-spacing:0.094720pt;}
.ls2_c02102{letter-spacing:0.133333pt;}
.ls0_c02102{letter-spacing:0.320000pt;}
.ls1_c02102{letter-spacing:9.600000pt;}
.ws0_c02102{word-spacing:-21.280000pt;}
.ws1_c02102{word-spacing:-16.000000pt;}
.ws2_c02102{word-spacing:-8.640000pt;}
.ws3_c02102{word-spacing:0.000000pt;}
._11_c02102{margin-left:-11.393707pt;}
._c_c02102{margin-left:-1.856000pt;}
._3_c02102{margin-left:-0.896000pt;}
._1_c02102{width:1.156185pt;}
._5_c02102{width:2.432000pt;}
._4_c02102{width:3.392000pt;}
._6_c02102{width:4.426667pt;}
._a_c02102{width:5.685333pt;}
._b_c02102{width:7.473148pt;}
._8_c02102{width:8.448000pt;}
._2_c02102{width:9.408000pt;}
._7_c02102{width:11.008000pt;}
._10_c02102{width:14.656000pt;}
._9_c02102{width:17.450667pt;}
._e_c02102{width:30.523815pt;}
._d_c02102{width:31.744000pt;}
._f_c02102{width:32.929888pt;}
._0_c02102{width:1334.165333pt;}
.fs5_c02102{font-size:34.560000pt;}
.fs4_c02102{font-size:42.880000pt;}
.fs0_c02102{font-size:53.120000pt;}
.fs1_c02102{font-size:58.880000pt;}
.fs3_c02102{font-size:64.000000pt;}
.fs2_c02102{font-size:85.120000pt;}
.y0_c02102{bottom:0.000000pt;}
.y4_c02102{bottom:4.160000pt;}
.y3_c02102{bottom:37.152000pt;}
.y2_c02102{bottom:67.072000pt;}
.y24_c02102{bottom:97.632000pt;}
.y23_c02102{bottom:119.072000pt;}
.y22_c02102{bottom:129.152000pt;}
.y21_c02102{bottom:164.826667pt;}
.y20_c02102{bottom:192.506667pt;}
.y1f_c02102{bottom:220.026667pt;}
.y1e_c02102{bottom:247.746667pt;}
.y1d_c02102{bottom:275.266667pt;}
.y1c_c02102{bottom:302.946667pt;}
.y1b_c02102{bottom:330.466667pt;}
.y1a_c02102{bottom:358.146667pt;}
.y19_c02102{bottom:385.666667pt;}
.y18_c02102{bottom:413.346667pt;}
.y17_c02102{bottom:440.866667pt;}
.y16_c02102{bottom:468.546667pt;}
.y15_c02102{bottom:496.093333pt;}
.y14_c02102{bottom:523.773333pt;}
.y13_c02102{bottom:551.293333pt;}
.y12_c02102{bottom:578.973333pt;}
.y11_c02102{bottom:606.493333pt;}
.y10_c02102{bottom:634.173333pt;}
.yf_c02102{bottom:661.693333pt;}
.ye_c02102{bottom:689.373333pt;}
.yd_c02102{bottom:716.933333pt;}
.yc_c02102{bottom:744.613333pt;}
.yb_c02102{bottom:772.133333pt;}
.ya_c02102{bottom:799.813333pt;}
.y9_c02102{bottom:827.333333pt;}
.y8_c02102{bottom:855.013333pt;}
.y7_c02102{bottom:882.533333pt;}
.y6_c02102{bottom:909.893333pt;}
.y5_c02102{bottom:941.920000pt;}
.y1_c02102{bottom:996.800000pt;}
.h3_c02102{height:20.000000pt;}
.h9_c02102{height:33.918750pt;}
.h2_c02102{height:43.441250pt;}
.h1_c02102{height:52.134375pt;}
.h7_c02102{height:57.375000pt;}
.h6_c02102{height:62.812500pt;}
.h5_c02102{height:64.500000pt;}
.h8_c02102{height:71.524375pt;}
.h4_c02102{height:85.785000pt;}
.h0_c02102{height:1056.000000pt;}
.w1_c02102{width:59.232000pt;}
.w0_c02102{width:816.000000pt;}
.x0_c02102{left:0.000000pt;}
.x3_c02102{left:14.720000pt;}
.x1_c02102{left:113.472000pt;}
.x5_c02102{left:160.666667pt;}
.x4_c02102{left:233.146667pt;}
.x2_c02102{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02103 {
    display:none;
  }
  .loading-indicator_c02103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02103 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02103 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02103" -> "#page-container .classname_c02103")
 */
.pf_c02103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02103 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02103 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02103 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02103 {overflow:visible;}
  }
}
.c_c02103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02103 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02103:after { /* webkit #35443 */
  content: '';
}
.t_c02103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02103 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02103 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02103 { /* info for Javascript */
  display:none;
}
.l_c02103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02103:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02103 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02103.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02103;src:url('chunks/assets/font_9f57f8d0c0821ab0f449fa9a.woff2')format("woff");}.ff1_c02103{font-family:ff1_c02103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02103;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02103{font-family:ff2_c02103;line-height:0.863770;font-style:normal;font-weight: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_c02103;src:url('chunks/assets/font_567d505443c6300d5a7306ee.woff2')format("woff");}.ff3_c02103{font-family:ff3_c02103;line-height:1.112305;font-style:normal;font-weight: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_c02103;src:url('chunks/assets/font_f728e5f93ce2918c92093743.woff2')format("woff");}.ff4_c02103{font-family:ff4_c02103;line-height:1.284180;font-style:normal;font-weight: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_c02103;src:url('chunks/assets/font_498e48759a3036c10d5c6ce6.woff2')format("woff");}.ff5_c02103{font-family:ff5_c02103;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02103{vertical-align:0.000000px;}
.ls2_c02103{letter-spacing:0.000000px;}
.ls1_c02103{letter-spacing:0.150000px;}
.ls0_c02103{letter-spacing:30.384000px;}
.sc__c02103{text-shadow:none;}
.sc0_c02103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02103{-webkit-text-stroke:0px transparent;}
.sc0_c02103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02103{word-spacing:-18.000000px;}
.ws1_c02103{word-spacing:-14.940000px;}
.ws2_c02103{word-spacing:0.000000px;}
._14_c02103{margin-left:-8.946240px;}
._2_c02103{margin-left:-1.152000px;}
._9_c02103{width:1.084585px;}
._1_c02103{width:2.088000px;}
._b_c02103{width:3.168000px;}
._a_c02103{width:4.176000px;}
._5_c02103{width:5.299266px;}
._6_c02103{width:6.425479px;}
._15_c02103{width:7.586843px;}
._11_c02103{width:9.216000px;}
._12_c02103{width:10.728000px;}
._13_c02103{width:12.024000px;}
._7_c02103{width:14.134755px;}
._8_c02103{width:15.169225px;}
._c_c02103{width:16.272000px;}
._4_c02103{width:18.451166px;}
._3_c02103{width:19.673412px;}
._10_c02103{width:21.102009px;}
._e_c02103{width:24.264000px;}
._d_c02103{width:25.320024px;}
._f_c02103{width:26.566269px;}
._0_c02103{width:1500.936000px;}
.fc1_c02103{color:rgb(192,80,77);}
.fc0_c02103{color:rgb(0,0,0);}
.fs0_c02103{font-size:59.760000px;}
.fs1_c02103{font-size:66.240000px;}
.fs2_c02103{font-size:72.000000px;}
.y0_c02103{bottom:0.000000px;}
.y4_c02103{bottom:4.680000px;}
.y3_c02103{bottom:41.796000px;}
.y2_c02103{bottom:75.456000px;}
.y2b_c02103{bottom:109.836000px;}
.y2a_c02103{bottom:127.116000px;}
.y29_c02103{bottom:144.396000px;}
.y28_c02103{bottom:161.670000px;}
.y27_c02103{bottom:178.950000px;}
.y26_c02103{bottom:196.050000px;}
.y25_c02103{bottom:213.330000px;}
.y24_c02103{bottom:230.610000px;}
.y23_c02103{bottom:247.890000px;}
.y22_c02103{bottom:265.170000px;}
.y21_c02103{bottom:282.315000px;}
.y20_c02103{bottom:299.595000px;}
.y1f_c02103{bottom:316.875000px;}
.y1e_c02103{bottom:335.055000px;}
.y1d_c02103{bottom:392.475000px;}
.y1c_c02103{bottom:423.615000px;}
.y1b_c02103{bottom:454.575000px;}
.y1a_c02103{bottom:485.715000px;}
.y19_c02103{bottom:516.675000px;}
.y18_c02103{bottom:547.845000px;}
.y17_c02103{bottom:578.805000px;}
.y16_c02103{bottom:609.945000px;}
.y15_c02103{bottom:640.905000px;}
.y14_c02103{bottom:672.045000px;}
.y13_c02103{bottom:703.005000px;}
.y12_c02103{bottom:734.145000px;}
.y11_c02103{bottom:765.105000px;}
.y10_c02103{bottom:796.290000px;}
.yf_c02103{bottom:827.250000px;}
.ye_c02103{bottom:858.390000px;}
.yd_c02103{bottom:878.730000px;}
.yc_c02103{bottom:897.630000px;}
.yb_c02103{bottom:916.710000px;}
.ya_c02103{bottom:935.610000px;}
.y9_c02103{bottom:954.690000px;}
.y8_c02103{bottom:973.590000px;}
.y7_c02103{bottom:1003.290000px;}
.y6_c02103{bottom:1034.250000px;}
.y5_c02103{bottom:1065.420000px;}
.y1_c02103{bottom:1121.400000px;}
.h3_c02103{height:22.500000px;}
.h2_c02103{height:48.871406px;}
.h1_c02103{height:58.651172px;}
.h6_c02103{height:64.546875px;}
.h5_c02103{height:65.010937px;}
.h4_c02103{height:70.664062px;}
.h7_c02103{height:74.004654px;}
.h0_c02103{height:1188.000000px;}
.w1_c02103{width:66.636000px;}
.w0_c02103{width:918.000000px;}
.x0_c02103{left:0.000000px;}
.x3_c02103{left:16.560000px;}
.x1_c02103{left:127.656000px;}
.x6_c02103{left:154.650000px;}
.x4_c02103{left:180.750000px;}
.x5_c02103{left:191.550000px;}
.x2_c02103{left:820.950000px;}
@media print{
.v0_c02103{vertical-align:0.000000pt;}
.ls2_c02103{letter-spacing:0.000000pt;}
.ls1_c02103{letter-spacing:0.133333pt;}
.ls0_c02103{letter-spacing:27.008000pt;}
.ws0_c02103{word-spacing:-16.000000pt;}
.ws1_c02103{word-spacing:-13.280000pt;}
.ws2_c02103{word-spacing:0.000000pt;}
._14_c02103{margin-left:-7.952213pt;}
._2_c02103{margin-left:-1.024000pt;}
._9_c02103{width:0.964076pt;}
._1_c02103{width:1.856000pt;}
._b_c02103{width:2.816000pt;}
._a_c02103{width:3.712000pt;}
._5_c02103{width:4.710459pt;}
._6_c02103{width:5.711537pt;}
._15_c02103{width:6.743860pt;}
._11_c02103{width:8.192000pt;}
._12_c02103{width:9.536000pt;}
._13_c02103{width:10.688000pt;}
._7_c02103{width:12.564227pt;}
._8_c02103{width:13.483756pt;}
._c_c02103{width:14.464000pt;}
._4_c02103{width:16.401037pt;}
._3_c02103{width:17.487478pt;}
._10_c02103{width:18.757341pt;}
._e_c02103{width:21.568000pt;}
._d_c02103{width:22.506688pt;}
._f_c02103{width:23.614461pt;}
._0_c02103{width:1334.165333pt;}
.fs0_c02103{font-size:53.120000pt;}
.fs1_c02103{font-size:58.880000pt;}
.fs2_c02103{font-size:64.000000pt;}
.y0_c02103{bottom:0.000000pt;}
.y4_c02103{bottom:4.160000pt;}
.y3_c02103{bottom:37.152000pt;}
.y2_c02103{bottom:67.072000pt;}
.y2b_c02103{bottom:97.632000pt;}
.y2a_c02103{bottom:112.992000pt;}
.y29_c02103{bottom:128.352000pt;}
.y28_c02103{bottom:143.706667pt;}
.y27_c02103{bottom:159.066667pt;}
.y26_c02103{bottom:174.266667pt;}
.y25_c02103{bottom:189.626667pt;}
.y24_c02103{bottom:204.986667pt;}
.y23_c02103{bottom:220.346667pt;}
.y22_c02103{bottom:235.706667pt;}
.y21_c02103{bottom:250.946667pt;}
.y20_c02103{bottom:266.306667pt;}
.y1f_c02103{bottom:281.666667pt;}
.y1e_c02103{bottom:297.826667pt;}
.y1d_c02103{bottom:348.866667pt;}
.y1c_c02103{bottom:376.546667pt;}
.y1b_c02103{bottom:404.066667pt;}
.y1a_c02103{bottom:431.746667pt;}
.y19_c02103{bottom:459.266667pt;}
.y18_c02103{bottom:486.973333pt;}
.y17_c02103{bottom:514.493333pt;}
.y16_c02103{bottom:542.173333pt;}
.y15_c02103{bottom:569.693333pt;}
.y14_c02103{bottom:597.373333pt;}
.y13_c02103{bottom:624.893333pt;}
.y12_c02103{bottom:652.573333pt;}
.y11_c02103{bottom:680.093333pt;}
.y10_c02103{bottom:707.813333pt;}
.yf_c02103{bottom:735.333333pt;}
.ye_c02103{bottom:763.013333pt;}
.yd_c02103{bottom:781.093333pt;}
.yc_c02103{bottom:797.893333pt;}
.yb_c02103{bottom:814.853333pt;}
.ya_c02103{bottom:831.653333pt;}
.y9_c02103{bottom:848.613333pt;}
.y8_c02103{bottom:865.413333pt;}
.y7_c02103{bottom:891.813333pt;}
.y6_c02103{bottom:919.333333pt;}
.y5_c02103{bottom:947.040000pt;}
.y1_c02103{bottom:996.800000pt;}
.h3_c02103{height:20.000000pt;}
.h2_c02103{height:43.441250pt;}
.h1_c02103{height:52.134375pt;}
.h6_c02103{height:57.375000pt;}
.h5_c02103{height:57.787500pt;}
.h4_c02103{height:62.812500pt;}
.h7_c02103{height:65.781915pt;}
.h0_c02103{height:1056.000000pt;}
.w1_c02103{width:59.232000pt;}
.w0_c02103{width:816.000000pt;}
.x0_c02103{left:0.000000pt;}
.x3_c02103{left:14.720000pt;}
.x1_c02103{left:113.472000pt;}
.x6_c02103{left:137.466667pt;}
.x4_c02103{left:160.666667pt;}
.x5_c02103{left:170.266667pt;}
.x2_c02103{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02104 {
    display:none;
  }
  .loading-indicator_c02104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02104 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02104 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02104" -> "#page-container .classname_c02104")
 */
.pf_c02104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02104 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02104 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02104 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02104 {overflow:visible;}
  }
}
.c_c02104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02104 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02104:after { /* webkit #35443 */
  content: '';
}
.t_c02104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02104 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02104 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02104 { /* info for Javascript */
  display:none;
}
.l_c02104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02104:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02104 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02104.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02104;src:url('chunks/assets/font_65128d50f8006d4d0a243afd.woff2')format("woff");}.ff1_c02104{font-family:ff1_c02104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02104;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02104{font-family:ff2_c02104;line-height:0.863770;font-style:normal;font-weight: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_c02104;src:url('chunks/assets/font_741c99024f23d0abf35748db.woff2')format("woff");}.ff3_c02104{font-family:ff3_c02104;line-height:1.402354;font-style:normal;font-weight: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_c02104;src:url('chunks/assets/font_95d8a1776848950f15e240da.woff2')format("woff");}.ff4_c02104{font-family:ff4_c02104;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02104{vertical-align:-83.520000px;}
.v3_c02104{vertical-align:-23.760000px;}
.v0_c02104{vertical-align:0.000000px;}
.v1_c02104{vertical-align:33.120000px;}
.ls4_c02104{letter-spacing:0.000000px;}
.ls3_c02104{letter-spacing:0.150000px;}
.ls0_c02104{letter-spacing:0.360000px;}
.ls1_c02104{letter-spacing:30.384000px;}
.ls2_c02104{letter-spacing:194.376000px;}
.sc__c02104{text-shadow:none;}
.sc0_c02104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02104{-webkit-text-stroke:0px transparent;}
.sc0_c02104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02104{word-spacing:-18.000000px;}
.ws1_c02104{word-spacing:-9.000000px;}
.ws2_c02104{word-spacing:0.000000px;}
._17_c02104{margin-left:-12.817920px;}
._1_c02104{margin-left:-1.152000px;}
._4_c02104{width:1.548000px;}
._14_c02104{width:2.556000px;}
._5_c02104{width:3.600000px;}
._c_c02104{width:4.692000px;}
._9_c02104{width:6.240000px;}
._f_c02104{width:7.272000px;}
._15_c02104{width:8.652000px;}
._10_c02104{width:9.792000px;}
._11_c02104{width:10.812000px;}
._7_c02104{width:12.456000px;}
._8_c02104{width:13.536000px;}
._16_c02104{width:14.976000px;}
._12_c02104{width:19.080000px;}
._13_c02104{width:20.592000px;}
._6_c02104{width:21.672000px;}
._a_c02104{width:24.048000px;}
._b_c02104{width:25.344000px;}
._e_c02104{width:27.624000px;}
._d_c02104{width:28.872000px;}
._3_c02104{width:45.864000px;}
._2_c02104{width:46.872000px;}
._0_c02104{width:1500.936000px;}
.fc1_c02104{color:rgb(192,80,77);}
.fc0_c02104{color:rgb(0,0,0);}
.fs4_c02104{font-size:36.000000px;}
.fs3_c02104{font-size:48.240000px;}
.fs5_c02104{font-size:54.000000px;}
.fs0_c02104{font-size:59.760000px;}
.fs1_c02104{font-size:66.240000px;}
.fs2_c02104{font-size:72.000000px;}
.y0_c02104{bottom:0.000000px;}
.y4_c02104{bottom:4.680000px;}
.y3_c02104{bottom:41.796000px;}
.y2_c02104{bottom:75.456000px;}
.y25_c02104{bottom:109.476000px;}
.y24_c02104{bottom:124.956000px;}
.y23_c02104{bottom:140.436000px;}
.y22_c02104{bottom:161.850000px;}
.y21_c02104{bottom:172.830000px;}
.y20_c02104{bottom:206.130000px;}
.y1f_c02104{bottom:237.270000px;}
.y1e_c02104{bottom:268.230000px;}
.y1d_c02104{bottom:299.415000px;}
.y1c_c02104{bottom:330.375000px;}
.y1b_c02104{bottom:361.515000px;}
.y1a_c02104{bottom:392.475000px;}
.y19_c02104{bottom:423.615000px;}
.y18_c02104{bottom:454.575000px;}
.y17_c02104{bottom:485.715000px;}
.y16_c02104{bottom:516.675000px;}
.y15_c02104{bottom:547.845000px;}
.y14_c02104{bottom:578.805000px;}
.y13_c02104{bottom:609.945000px;}
.y12_c02104{bottom:640.905000px;}
.y11_c02104{bottom:672.045000px;}
.y10_c02104{bottom:723.885000px;}
.yf_c02104{bottom:754.845000px;}
.ye_c02104{bottom:785.805000px;}
.yd_c02104{bottom:816.990000px;}
.yc_c02104{bottom:847.950000px;}
.yb_c02104{bottom:879.090000px;}
.ya_c02104{bottom:910.050000px;}
.y9_c02104{bottom:941.190000px;}
.y8_c02104{bottom:972.150000px;}
.y7_c02104{bottom:1003.290000px;}
.y6_c02104{bottom:1034.250000px;}
.y5_c02104{bottom:1065.420000px;}
.y1_c02104{bottom:1121.400000px;}
.h3_c02104{height:22.500000px;}
.h8_c02104{height:35.332031px;}
.h2_c02104{height:48.871406px;}
.h9_c02104{height:52.998047px;}
.h1_c02104{height:58.651172px;}
.h7_c02104{height:64.546875px;}
.h4_c02104{height:70.664062px;}
.h6_c02104{height:74.004654px;}
.h5_c02104{height:80.464922px;}
.h0_c02104{height:1188.000000px;}
.w1_c02104{width:66.636000px;}
.w0_c02104{width:918.000000px;}
.x0_c02104{left:0.000000px;}
.x3_c02104{left:16.560000px;}
.x1_c02104{left:127.656000px;}
.x5_c02104{left:154.650000px;}
.x4_c02104{left:181.650000px;}
.x2_c02104{left:820.950000px;}
@media print{
.v2_c02104{vertical-align:-74.240000pt;}
.v3_c02104{vertical-align:-21.120000pt;}
.v0_c02104{vertical-align:0.000000pt;}
.v1_c02104{vertical-align:29.440000pt;}
.ls4_c02104{letter-spacing:0.000000pt;}
.ls3_c02104{letter-spacing:0.133333pt;}
.ls0_c02104{letter-spacing:0.320000pt;}
.ls1_c02104{letter-spacing:27.008000pt;}
.ls2_c02104{letter-spacing:172.778667pt;}
.ws0_c02104{word-spacing:-16.000000pt;}
.ws1_c02104{word-spacing:-8.000000pt;}
.ws2_c02104{word-spacing:0.000000pt;}
._17_c02104{margin-left:-11.393707pt;}
._1_c02104{margin-left:-1.024000pt;}
._4_c02104{width:1.376000pt;}
._14_c02104{width:2.272000pt;}
._5_c02104{width:3.200000pt;}
._c_c02104{width:4.170667pt;}
._9_c02104{width:5.546667pt;}
._f_c02104{width:6.464000pt;}
._15_c02104{width:7.690667pt;}
._10_c02104{width:8.704000pt;}
._11_c02104{width:9.610667pt;}
._7_c02104{width:11.072000pt;}
._8_c02104{width:12.032000pt;}
._16_c02104{width:13.312000pt;}
._12_c02104{width:16.960000pt;}
._13_c02104{width:18.304000pt;}
._6_c02104{width:19.264000pt;}
._a_c02104{width:21.376000pt;}
._b_c02104{width:22.528000pt;}
._e_c02104{width:24.554667pt;}
._d_c02104{width:25.664000pt;}
._3_c02104{width:40.768000pt;}
._2_c02104{width:41.664000pt;}
._0_c02104{width:1334.165333pt;}
.fs4_c02104{font-size:32.000000pt;}
.fs3_c02104{font-size:42.880000pt;}
.fs5_c02104{font-size:48.000000pt;}
.fs0_c02104{font-size:53.120000pt;}
.fs1_c02104{font-size:58.880000pt;}
.fs2_c02104{font-size:64.000000pt;}
.y0_c02104{bottom:0.000000pt;}
.y4_c02104{bottom:4.160000pt;}
.y3_c02104{bottom:37.152000pt;}
.y2_c02104{bottom:67.072000pt;}
.y25_c02104{bottom:97.312000pt;}
.y24_c02104{bottom:111.072000pt;}
.y23_c02104{bottom:124.832000pt;}
.y22_c02104{bottom:143.866667pt;}
.y21_c02104{bottom:153.626667pt;}
.y20_c02104{bottom:183.226667pt;}
.y1f_c02104{bottom:210.906667pt;}
.y1e_c02104{bottom:238.426667pt;}
.y1d_c02104{bottom:266.146667pt;}
.y1c_c02104{bottom:293.666667pt;}
.y1b_c02104{bottom:321.346667pt;}
.y1a_c02104{bottom:348.866667pt;}
.y19_c02104{bottom:376.546667pt;}
.y18_c02104{bottom:404.066667pt;}
.y17_c02104{bottom:431.746667pt;}
.y16_c02104{bottom:459.266667pt;}
.y15_c02104{bottom:486.973333pt;}
.y14_c02104{bottom:514.493333pt;}
.y13_c02104{bottom:542.173333pt;}
.y12_c02104{bottom:569.693333pt;}
.y11_c02104{bottom:597.373333pt;}
.y10_c02104{bottom:643.453333pt;}
.yf_c02104{bottom:670.973333pt;}
.ye_c02104{bottom:698.493333pt;}
.yd_c02104{bottom:726.213333pt;}
.yc_c02104{bottom:753.733333pt;}
.yb_c02104{bottom:781.413333pt;}
.ya_c02104{bottom:808.933333pt;}
.y9_c02104{bottom:836.613333pt;}
.y8_c02104{bottom:864.133333pt;}
.y7_c02104{bottom:891.813333pt;}
.y6_c02104{bottom:919.333333pt;}
.y5_c02104{bottom:947.040000pt;}
.y1_c02104{bottom:996.800000pt;}
.h3_c02104{height:20.000000pt;}
.h8_c02104{height:31.406250pt;}
.h2_c02104{height:43.441250pt;}
.h9_c02104{height:47.109375pt;}
.h1_c02104{height:52.134375pt;}
.h7_c02104{height:57.375000pt;}
.h4_c02104{height:62.812500pt;}
.h6_c02104{height:65.781915pt;}
.h5_c02104{height:71.524375pt;}
.h0_c02104{height:1056.000000pt;}
.w1_c02104{width:59.232000pt;}
.w0_c02104{width:816.000000pt;}
.x0_c02104{left:0.000000pt;}
.x3_c02104{left:14.720000pt;}
.x1_c02104{left:113.472000pt;}
.x5_c02104{left:137.466667pt;}
.x4_c02104{left:161.466667pt;}
.x2_c02104{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02105 {
    display:none;
  }
  .loading-indicator_c02105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02105 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02105 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02105" -> "#page-container .classname_c02105")
 */
.pf_c02105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02105 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02105 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02105 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02105 {overflow:visible;}
  }
}
.c_c02105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02105 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02105:after { /* webkit #35443 */
  content: '';
}
.t_c02105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02105 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02105 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02105 { /* info for Javascript */
  display:none;
}
.l_c02105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02105:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02105 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02105.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02105;src:url('chunks/assets/font_484d75427971908a6d8325c6.woff2')format("woff");}.ff1_c02105{font-family:ff1_c02105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02105;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02105{font-family:ff2_c02105;line-height:0.863770;font-style:normal;font-weight: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_c02105;src:url('chunks/assets/font_5be56567691053181eb98829.woff2')format("woff");}.ff3_c02105{font-family:ff3_c02105;line-height:1.112305;font-style:normal;font-weight: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_c02105;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02105{font-family:ff4_c02105;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02105{vertical-align:0.000000px;}
.ls2_c02105{letter-spacing:-0.720000px;}
.ls1_c02105{letter-spacing:0.000000px;}
.ls0_c02105{letter-spacing:17.280000px;}
.sc__c02105{text-shadow:none;}
.sc0_c02105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02105{-webkit-text-stroke:0px transparent;}
.sc0_c02105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02105{word-spacing:0.000000px;}
._6_c02105{margin-left:-2.208000px;}
._3_c02105{margin-left:-1.104000px;}
._1_c02105{width:1.440000px;}
._2_c02105{width:2.448000px;}
._7_c02105{width:3.459907px;}
._4_c02105{width:4.992000px;}
._5_c02105{width:6.024000px;}
._8_c02105{width:7.369788px;}
._c_c02105{width:8.444425px;}
._d_c02105{width:10.048850px;}
._9_c02105{width:12.600000px;}
._a_c02105{width:13.728000px;}
._b_c02105{width:16.416000px;}
._10_c02105{width:23.472000px;}
._11_c02105{width:24.480000px;}
._e_c02105{width:41.544000px;}
._f_c02105{width:42.660000px;}
._0_c02105{width:1500.936000px;}
.fc1_c02105{color:rgb(192,80,77);}
.fc0_c02105{color:rgb(0,0,0);}
.fs0_c02105{font-size:59.760000px;}
.fs1_c02105{font-size:66.240000px;}
.fs2_c02105{font-size:72.000000px;}
.y0_c02105{bottom:0.000000px;}
.y4_c02105{bottom:4.680000px;}
.y3_c02105{bottom:41.796000px;}
.y2_c02105{bottom:75.456000px;}
.y24_c02105{bottom:163.110000px;}
.y23_c02105{bottom:194.070000px;}
.y22_c02105{bottom:225.210000px;}
.y21_c02105{bottom:256.170000px;}
.y20_c02105{bottom:287.355000px;}
.y1f_c02105{bottom:318.315000px;}
.y1e_c02105{bottom:349.455000px;}
.y1d_c02105{bottom:380.415000px;}
.y1c_c02105{bottom:411.555000px;}
.y1b_c02105{bottom:442.515000px;}
.y1a_c02105{bottom:473.655000px;}
.y19_c02105{bottom:504.615000px;}
.y18_c02105{bottom:535.785000px;}
.y17_c02105{bottom:566.745000px;}
.y16_c02105{bottom:597.885000px;}
.y15_c02105{bottom:628.845000px;}
.y14_c02105{bottom:659.985000px;}
.y13_c02105{bottom:690.945000px;}
.y12_c02105{bottom:722.085000px;}
.y11_c02105{bottom:753.045000px;}
.y10_c02105{bottom:784.185000px;}
.yf_c02105{bottom:804.570000px;}
.ye_c02105{bottom:823.470000px;}
.yd_c02105{bottom:842.550000px;}
.yc_c02105{bottom:861.450000px;}
.yb_c02105{bottom:880.530000px;}
.ya_c02105{bottom:910.050000px;}
.y9_c02105{bottom:941.190000px;}
.y8_c02105{bottom:972.150000px;}
.y7_c02105{bottom:1003.290000px;}
.y6_c02105{bottom:1034.250000px;}
.y5_c02105{bottom:1065.420000px;}
.y1_c02105{bottom:1121.400000px;}
.h3_c02105{height:22.500000px;}
.h2_c02105{height:48.871406px;}
.h1_c02105{height:58.651172px;}
.h5_c02105{height:65.010937px;}
.h4_c02105{height:70.664062px;}
.h6_c02105{height:72.562500px;}
.h0_c02105{height:1188.000000px;}
.w1_c02105{width:66.636000px;}
.w0_c02105{width:918.000000px;}
.x0_c02105{left:0.000000px;}
.x3_c02105{left:16.560000px;}
.x1_c02105{left:127.656000px;}
.x5_c02105{left:180.750000px;}
.x4_c02105{left:191.550000px;}
.x2_c02105{left:820.950000px;}
@media print{
.v0_c02105{vertical-align:0.000000pt;}
.ls2_c02105{letter-spacing:-0.640000pt;}
.ls1_c02105{letter-spacing:0.000000pt;}
.ls0_c02105{letter-spacing:15.360000pt;}
.ws0_c02105{word-spacing:0.000000pt;}
._6_c02105{margin-left:-1.962667pt;}
._3_c02105{margin-left:-0.981333pt;}
._1_c02105{width:1.280000pt;}
._2_c02105{width:2.176000pt;}
._7_c02105{width:3.075473pt;}
._4_c02105{width:4.437333pt;}
._5_c02105{width:5.354667pt;}
._8_c02105{width:6.550922pt;}
._c_c02105{width:7.506156pt;}
._d_c02105{width:8.932311pt;}
._9_c02105{width:11.200000pt;}
._a_c02105{width:12.202667pt;}
._b_c02105{width:14.592000pt;}
._10_c02105{width:20.864000pt;}
._11_c02105{width:21.760000pt;}
._e_c02105{width:36.928000pt;}
._f_c02105{width:37.920000pt;}
._0_c02105{width:1334.165333pt;}
.fs0_c02105{font-size:53.120000pt;}
.fs1_c02105{font-size:58.880000pt;}
.fs2_c02105{font-size:64.000000pt;}
.y0_c02105{bottom:0.000000pt;}
.y4_c02105{bottom:4.160000pt;}
.y3_c02105{bottom:37.152000pt;}
.y2_c02105{bottom:67.072000pt;}
.y24_c02105{bottom:144.986667pt;}
.y23_c02105{bottom:172.506667pt;}
.y22_c02105{bottom:200.186667pt;}
.y21_c02105{bottom:227.706667pt;}
.y20_c02105{bottom:255.426667pt;}
.y1f_c02105{bottom:282.946667pt;}
.y1e_c02105{bottom:310.626667pt;}
.y1d_c02105{bottom:338.146667pt;}
.y1c_c02105{bottom:365.826667pt;}
.y1b_c02105{bottom:393.346667pt;}
.y1a_c02105{bottom:421.026667pt;}
.y19_c02105{bottom:448.546667pt;}
.y18_c02105{bottom:476.253333pt;}
.y17_c02105{bottom:503.773333pt;}
.y16_c02105{bottom:531.453333pt;}
.y15_c02105{bottom:558.973333pt;}
.y14_c02105{bottom:586.653333pt;}
.y13_c02105{bottom:614.173333pt;}
.y12_c02105{bottom:641.853333pt;}
.y11_c02105{bottom:669.373333pt;}
.y10_c02105{bottom:697.053333pt;}
.yf_c02105{bottom:715.173333pt;}
.ye_c02105{bottom:731.973333pt;}
.yd_c02105{bottom:748.933333pt;}
.yc_c02105{bottom:765.733333pt;}
.yb_c02105{bottom:782.693333pt;}
.ya_c02105{bottom:808.933333pt;}
.y9_c02105{bottom:836.613333pt;}
.y8_c02105{bottom:864.133333pt;}
.y7_c02105{bottom:891.813333pt;}
.y6_c02105{bottom:919.333333pt;}
.y5_c02105{bottom:947.040000pt;}
.y1_c02105{bottom:996.800000pt;}
.h3_c02105{height:20.000000pt;}
.h2_c02105{height:43.441250pt;}
.h1_c02105{height:52.134375pt;}
.h5_c02105{height:57.787500pt;}
.h4_c02105{height:62.812500pt;}
.h6_c02105{height:64.500000pt;}
.h0_c02105{height:1056.000000pt;}
.w1_c02105{width:59.232000pt;}
.w0_c02105{width:816.000000pt;}
.x0_c02105{left:0.000000pt;}
.x3_c02105{left:14.720000pt;}
.x1_c02105{left:113.472000pt;}
.x5_c02105{left:160.666667pt;}
.x4_c02105{left:170.266667pt;}
.x2_c02105{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02106 {
    display:none;
  }
  .loading-indicator_c02106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02106 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02106 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02106" -> "#page-container .classname_c02106")
 */
.pf_c02106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02106 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02106 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02106 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02106 {overflow:visible;}
  }
}
.c_c02106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02106 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02106:after { /* webkit #35443 */
  content: '';
}
.t_c02106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02106 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02106 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02106 { /* info for Javascript */
  display:none;
}
.l_c02106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02106:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02106 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02106.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02106;src:url('chunks/assets/font_48c4d7cbf20c87ed84aaca38.woff2')format("woff");}.ff1_c02106{font-family:ff1_c02106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02106;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02106{font-family:ff2_c02106;line-height:0.863770;font-style:normal;font-weight: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_c02106;src:url('chunks/assets/font_409867647e370a46685ca83e.woff2')format("woff");}.ff3_c02106{font-family:ff3_c02106;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02106{vertical-align:0.000000px;}
.ls0_c02106{letter-spacing:0.000000px;}
.sc__c02106{text-shadow:none;}
.sc0_c02106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02106{-webkit-text-stroke:0px transparent;}
.sc0_c02106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02106{word-spacing:0.000000px;}
._1_c02106{margin-left:-1.152000px;}
._4_c02106{width:1.224000px;}
._3_c02106{width:8.568000px;}
._2_c02106{width:9.936000px;}
._0_c02106{width:1500.936000px;}
.fc1_c02106{color:rgb(192,80,77);}
.fc0_c02106{color:rgb(0,0,0);}
.fs0_c02106{font-size:59.760000px;}
.fs1_c02106{font-size:66.240000px;}
.fs2_c02106{font-size:72.000000px;}
.y0_c02106{bottom:0.000000px;}
.y4_c02106{bottom:4.680000px;}
.y3_c02106{bottom:41.796000px;}
.y2_c02106{bottom:75.456000px;}
.y6_c02106{bottom:1034.250000px;}
.y5_c02106{bottom:1065.420000px;}
.y1_c02106{bottom:1121.400000px;}
.h3_c02106{height:22.500000px;}
.h2_c02106{height:48.871406px;}
.h1_c02106{height:58.651172px;}
.h4_c02106{height:64.546875px;}
.h5_c02106{height:70.664062px;}
.h0_c02106{height:1188.000000px;}
.w1_c02106{width:66.636000px;}
.w0_c02106{width:918.000000px;}
.x0_c02106{left:0.000000px;}
.x3_c02106{left:16.560000px;}
.x1_c02106{left:127.656000px;}
.x2_c02106{left:820.950000px;}
@media print{
.v0_c02106{vertical-align:0.000000pt;}
.ls0_c02106{letter-spacing:0.000000pt;}
.ws0_c02106{word-spacing:0.000000pt;}
._1_c02106{margin-left:-1.024000pt;}
._4_c02106{width:1.088000pt;}
._3_c02106{width:7.616000pt;}
._2_c02106{width:8.832000pt;}
._0_c02106{width:1334.165333pt;}
.fs0_c02106{font-size:53.120000pt;}
.fs1_c02106{font-size:58.880000pt;}
.fs2_c02106{font-size:64.000000pt;}
.y0_c02106{bottom:0.000000pt;}
.y4_c02106{bottom:4.160000pt;}
.y3_c02106{bottom:37.152000pt;}
.y2_c02106{bottom:67.072000pt;}
.y6_c02106{bottom:919.333333pt;}
.y5_c02106{bottom:947.040000pt;}
.y1_c02106{bottom:996.800000pt;}
.h3_c02106{height:20.000000pt;}
.h2_c02106{height:43.441250pt;}
.h1_c02106{height:52.134375pt;}
.h4_c02106{height:57.375000pt;}
.h5_c02106{height:62.812500pt;}
.h0_c02106{height:1056.000000pt;}
.w1_c02106{width:59.232000pt;}
.w0_c02106{width:816.000000pt;}
.x0_c02106{left:0.000000pt;}
.x3_c02106{left:14.720000pt;}
.x1_c02106{left:113.472000pt;}
.x2_c02106{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02107 {
    display:none;
  }
  .loading-indicator_c02107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02107 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02107 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02107" -> "#page-container .classname_c02107")
 */
.pf_c02107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02107 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02107 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02107 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02107 {overflow:visible;}
  }
}
.c_c02107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02107 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02107:after { /* webkit #35443 */
  content: '';
}
.t_c02107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02107 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02107 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02107 { /* info for Javascript */
  display:none;
}
.l_c02107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02107:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02107 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02107.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02107;src:url('chunks/assets/font_c21550455a96c79abf432f8f.woff2')format("woff");}.ff1_c02107{font-family:ff1_c02107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02107;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02107{font-family:ff2_c02107;line-height:0.863770;font-style:normal;font-weight: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_c02107;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02107{font-family:ff3_c02107;line-height:0.690918;font-style:normal;font-weight: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_c02107;src:url('chunks/assets/font_37f354a497a5f9049e88697b.woff2')format("woff");}.ff4_c02107{font-family:ff4_c02107;line-height:1.402354;font-style:normal;font-weight: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_c02107;src:url('chunks/assets/font_7e1b65705f7586321f5d1205.woff2')format("woff");}.ff5_c02107{font-family:ff5_c02107;line-height:1.284180;font-style:normal;font-weight: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_c02107;src:url('chunks/assets/font_d3c760c271373082c2e5f118.woff2')format("woff");}.ff6_c02107{font-family:ff6_c02107;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02107{vertical-align:0.000000px;}
.ls2_c02107{letter-spacing:-0.720000px;}
.ls3_c02107{letter-spacing:-0.166800px;}
.ls1_c02107{letter-spacing:0.000000px;}
.ls0_c02107{letter-spacing:60.145920px;}
.sc__c02107{text-shadow:none;}
.sc0_c02107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02107{-webkit-text-stroke:0px transparent;}
.sc0_c02107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02107{word-spacing:-63.360000px;}
.ws1_c02107{word-spacing:0.000000px;}
._c_c02107{margin-left:-2.186868px;}
._1_c02107{margin-left:-1.152000px;}
._2_c02107{width:1.008000px;}
._3_c02107{width:2.384387px;}
._7_c02107{width:3.445114px;}
._9_c02107{width:4.470013px;}
._4_c02107{width:6.209407px;}
._5_c02107{width:7.360773px;}
._6_c02107{width:8.682828px;}
._b_c02107{width:12.176387px;}
._a_c02107{width:13.743613px;}
._8_c02107{width:17.181953px;}
._d_c02107{width:18.252649px;}
._0_c02107{width:1500.960000px;}
.fc1_c02107{color:rgb(192,80,77);}
.fc2_c02107{color:rgb(255,255,255);}
.fc0_c02107{color:rgb(0,0,0);}
.fs0_c02107{font-size:59.760000px;}
.fs3_c02107{font-size:63.360000px;}
.fs1_c02107{font-size:66.240000px;}
.fs2_c02107{font-size:72.000000px;}
.y0_c02107{bottom:0.000000px;}
.y2a_c02107{bottom:3.780000px;}
.y1c_c02107{bottom:3.960000px;}
.y4_c02107{bottom:4.860000px;}
.y29_c02107{bottom:21.954000px;}
.y1b_c02107{bottom:21.960000px;}
.y28_c02107{bottom:39.954000px;}
.y1a_c02107{bottom:40.140000px;}
.y3_c02107{bottom:52.416000px;}
.y27_c02107{bottom:58.134000px;}
.y19_c02107{bottom:59.430000px;}
.y2_c02107{bottom:75.456000px;}
.y26_c02107{bottom:76.314000px;}
.y18_c02107{bottom:77.430000px;}
.y25_c02107{bottom:94.359000px;}
.y17_c02107{bottom:95.610000px;}
.y24_c02107{bottom:112.539000px;}
.y16_c02107{bottom:114.870000px;}
.y23_c02107{bottom:130.539000px;}
.y15_c02107{bottom:132.870000px;}
.y1d_c02107{bottom:140.436000px;}
.y22_c02107{bottom:148.719000px;}
.y14_c02107{bottom:151.050000px;}
.y21_c02107{bottom:166.899000px;}
.y13_c02107{bottom:169.230000px;}
.y20_c02107{bottom:186.159000px;}
.y12_c02107{bottom:188.490000px;}
.y1f_c02107{bottom:204.159000px;}
.y11_c02107{bottom:206.490000px;}
.y1e_c02107{bottom:222.339000px;}
.y10_c02107{bottom:224.670000px;}
.yf_c02107{bottom:243.930000px;}
.ye_c02107{bottom:261.975000px;}
.yd_c02107{bottom:280.155000px;}
.yc_c02107{bottom:298.335000px;}
.yb_c02107{bottom:316.335000px;}
.ya_c02107{bottom:334.515000px;}
.y9_c02107{bottom:335.595000px;}
.y8_c02107{bottom:377.715000px;}
.y7_c02107{bottom:732.750000px;}
.y6_c02107{bottom:753.450000px;}
.y5_c02107{bottom:774.150000px;}
.y1_c02107{bottom:851.400000px;}
.h3_c02107{height:22.680000px;}
.h2_c02107{height:48.871406px;}
.h1_c02107{height:58.651172px;}
.h6_c02107{height:62.184375px;}
.h7_c02107{height:65.124096px;}
.h4_c02107{height:70.664062px;}
.h8_c02107{height:236.550000px;}
.h5_c02107{height:349.815000px;}
.h0_c02107{height:918.000000px;}
.w1_c02107{width:66.780000px;}
.w2_c02107{width:92.376000px;}
.w3_c02107{width:905.145000px;}
.w0_c02107{width:1188.000000px;}
.x0_c02107{left:0.000000px;}
.x8_c02107{left:7.560000px;}
.xa_c02107{left:12.060000px;}
.x3_c02107{left:16.560000px;}
.xb_c02107{left:38.700000px;}
.x7_c02107{left:98.640000px;}
.x1_c02107{left:106.200000px;}
.x9_c02107{left:191.730000px;}
.x5_c02107{left:371.370000px;}
.x4_c02107{left:550.695000px;}
.x6_c02107{left:593.895000px;}
.x2_c02107{left:1101.570000px;}
@media print{
.v0_c02107{vertical-align:0.000000pt;}
.ls2_c02107{letter-spacing:-0.640000pt;}
.ls3_c02107{letter-spacing:-0.148267pt;}
.ls1_c02107{letter-spacing:0.000000pt;}
.ls0_c02107{letter-spacing:53.463040pt;}
.ws0_c02107{word-spacing:-56.320000pt;}
.ws1_c02107{word-spacing:0.000000pt;}
._c_c02107{margin-left:-1.943883pt;}
._1_c02107{margin-left:-1.024000pt;}
._2_c02107{width:0.896000pt;}
._3_c02107{width:2.119455pt;}
._7_c02107{width:3.062323pt;}
._9_c02107{width:3.973345pt;}
._4_c02107{width:5.519473pt;}
._5_c02107{width:6.542909pt;}
._6_c02107{width:7.718069pt;}
._b_c02107{width:10.823455pt;}
._a_c02107{width:12.216545pt;}
._8_c02107{width:15.272847pt;}
._d_c02107{width:16.224577pt;}
._0_c02107{width:1334.186667pt;}
.fs0_c02107{font-size:53.120000pt;}
.fs3_c02107{font-size:56.320000pt;}
.fs1_c02107{font-size:58.880000pt;}
.fs2_c02107{font-size:64.000000pt;}
.y0_c02107{bottom:0.000000pt;}
.y2a_c02107{bottom:3.360000pt;}
.y1c_c02107{bottom:3.520000pt;}
.y4_c02107{bottom:4.320000pt;}
.y29_c02107{bottom:19.514667pt;}
.y1b_c02107{bottom:19.520000pt;}
.y28_c02107{bottom:35.514667pt;}
.y1a_c02107{bottom:35.680000pt;}
.y3_c02107{bottom:46.592000pt;}
.y27_c02107{bottom:51.674667pt;}
.y19_c02107{bottom:52.826667pt;}
.y2_c02107{bottom:67.072000pt;}
.y26_c02107{bottom:67.834667pt;}
.y18_c02107{bottom:68.826667pt;}
.y25_c02107{bottom:83.874667pt;}
.y17_c02107{bottom:84.986667pt;}
.y24_c02107{bottom:100.034667pt;}
.y16_c02107{bottom:102.106667pt;}
.y23_c02107{bottom:116.034667pt;}
.y15_c02107{bottom:118.106667pt;}
.y1d_c02107{bottom:124.832000pt;}
.y22_c02107{bottom:132.194667pt;}
.y14_c02107{bottom:134.266667pt;}
.y21_c02107{bottom:148.354667pt;}
.y13_c02107{bottom:150.426667pt;}
.y20_c02107{bottom:165.474667pt;}
.y12_c02107{bottom:167.546667pt;}
.y1f_c02107{bottom:181.474667pt;}
.y11_c02107{bottom:183.546667pt;}
.y1e_c02107{bottom:197.634667pt;}
.y10_c02107{bottom:199.706667pt;}
.yf_c02107{bottom:216.826667pt;}
.ye_c02107{bottom:232.866667pt;}
.yd_c02107{bottom:249.026667pt;}
.yc_c02107{bottom:265.186667pt;}
.yb_c02107{bottom:281.186667pt;}
.ya_c02107{bottom:297.346667pt;}
.y9_c02107{bottom:298.306667pt;}
.y8_c02107{bottom:335.746667pt;}
.y7_c02107{bottom:651.333333pt;}
.y6_c02107{bottom:669.733333pt;}
.y5_c02107{bottom:688.133333pt;}
.y1_c02107{bottom:756.800000pt;}
.h3_c02107{height:20.160000pt;}
.h2_c02107{height:43.441250pt;}
.h1_c02107{height:52.134375pt;}
.h6_c02107{height:55.275000pt;}
.h7_c02107{height:57.888085pt;}
.h4_c02107{height:62.812500pt;}
.h8_c02107{height:210.266667pt;}
.h5_c02107{height:310.946667pt;}
.h0_c02107{height:816.000000pt;}
.w1_c02107{width:59.360000pt;}
.w2_c02107{width:82.112000pt;}
.w3_c02107{width:804.573333pt;}
.w0_c02107{width:1056.000000pt;}
.x0_c02107{left:0.000000pt;}
.x8_c02107{left:6.720000pt;}
.xa_c02107{left:10.720000pt;}
.x3_c02107{left:14.720000pt;}
.xb_c02107{left:34.400000pt;}
.x7_c02107{left:87.680000pt;}
.x1_c02107{left:94.400000pt;}
.x9_c02107{left:170.426667pt;}
.x5_c02107{left:330.106667pt;}
.x4_c02107{left:489.506667pt;}
.x6_c02107{left:527.906667pt;}
.x2_c02107{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02108 {
    display:none;
  }
  .loading-indicator_c02108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02108 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02108 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02108" -> "#page-container .classname_c02108")
 */
.pf_c02108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02108 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02108 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02108 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02108 {overflow:visible;}
  }
}
.c_c02108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02108 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02108:after { /* webkit #35443 */
  content: '';
}
.t_c02108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02108 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02108 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02108 { /* info for Javascript */
  display:none;
}
.l_c02108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02108:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02108 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02108.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02108;src:url('chunks/assets/font_0d5f155d954845ddd676ab78.woff2')format("woff");}.ff1_c02108{font-family:ff1_c02108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02108;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02108{font-family:ff2_c02108;line-height:0.863770;font-style:normal;font-weight: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_c02108;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02108{font-family:ff3_c02108;line-height:0.690918;font-style:normal;font-weight: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_c02108;src:url('chunks/assets/font_90163979f1e139625470cafd.woff2')format("woff");}.ff4_c02108{font-family:ff4_c02108;line-height:1.402354;font-style:normal;font-weight: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_c02108;src:url('chunks/assets/font_4fd96d8509d68ca937e21474.woff2')format("woff");}.ff5_c02108{font-family:ff5_c02108;line-height:1.112305;font-style:normal;font-weight: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_c02108;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff6_c02108{font-family:ff6_c02108;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02108{vertical-align:0.000000px;}
.ls3_c02108{letter-spacing:0.000000px;}
.ls2_c02108{letter-spacing:0.720000px;}
.ls1_c02108{letter-spacing:1.440000px;}
.ls0_c02108{letter-spacing:60.145920px;}
.sc__c02108{text-shadow:none;}
.sc0_c02108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02108{-webkit-text-stroke:0px transparent;}
.sc0_c02108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02108{word-spacing:-63.360000px;}
.ws1_c02108{word-spacing:0.000000px;}
._1_c02108{margin-left:-1.267200px;}
._4_c02108{width:1.208813px;}
._2_c02108{width:2.724607px;}
._3_c02108{width:3.801600px;}
._5_c02108{width:4.814980px;}
._9_c02108{width:5.859694px;}
._6_c02108{width:7.096193px;}
._b_c02108{width:10.073987px;}
._c_c02108{width:11.215860px;}
._7_c02108{width:12.418813px;}
._8_c02108{width:13.494540px;}
._a_c02108{width:14.699393px;}
._0_c02108{width:1500.960000px;}
.fc1_c02108{color:rgb(192,80,77);}
.fc0_c02108{color:rgb(0,0,0);}
.fs0_c02108{font-size:59.760000px;}
.fs2_c02108{font-size:63.360000px;}
.fs1_c02108{font-size:66.240000px;}
.y0_c02108{bottom:0.000000px;}
.y29_c02108{bottom:3.960000px;}
.y4_c02108{bottom:4.860000px;}
.y28_c02108{bottom:22.134000px;}
.y27_c02108{bottom:40.134000px;}
.y3_c02108{bottom:52.416000px;}
.y26_c02108{bottom:58.314000px;}
.y2_c02108{bottom:75.456000px;}
.y25_c02108{bottom:77.574000px;}
.y24_c02108{bottom:95.574000px;}
.y23_c02108{bottom:113.799000px;}
.y5_c02108{bottom:131.796000px;}
.y22_c02108{bottom:131.979000px;}
.y21_c02108{bottom:149.979000px;}
.y20_c02108{bottom:168.159000px;}
.y1f_c02108{bottom:186.339000px;}
.y1e_c02108{bottom:204.339000px;}
.y1d_c02108{bottom:222.519000px;}
.y1c_c02108{bottom:241.779000px;}
.y1b_c02108{bottom:259.779000px;}
.y1a_c02108{bottom:277.959000px;}
.y19_c02108{bottom:296.169000px;}
.y18_c02108{bottom:315.249000px;}
.y17_c02108{bottom:333.429000px;}
.y16_c02108{bottom:351.609000px;}
.y15_c02108{bottom:369.609000px;}
.y14_c02108{bottom:387.789000px;}
.y13_c02108{bottom:405.969000px;}
.y12_c02108{bottom:425.049000px;}
.y11_c02108{bottom:443.229000px;}
.y10_c02108{bottom:461.409000px;}
.yf_c02108{bottom:479.409000px;}
.ye_c02108{bottom:497.634000px;}
.yd_c02108{bottom:515.814000px;}
.yc_c02108{bottom:534.894000px;}
.yb_c02108{bottom:553.074000px;}
.ya_c02108{bottom:571.254000px;}
.y9_c02108{bottom:589.254000px;}
.y8_c02108{bottom:607.434000px;}
.y7_c02108{bottom:625.434000px;}
.y6_c02108{bottom:643.614000px;}
.y1_c02108{bottom:851.400000px;}
.h3_c02108{height:22.680000px;}
.h2_c02108{height:48.871406px;}
.h1_c02108{height:58.651172px;}
.h5_c02108{height:62.184375px;}
.h7_c02108{height:63.855000px;}
.h6_c02108{height:65.124096px;}
.h4_c02108{height:657.825000px;}
.h0_c02108{height:918.000000px;}
.w1_c02108{width:66.780000px;}
.w2_c02108{width:905.145000px;}
.w0_c02108{width:1188.000000px;}
.x0_c02108{left:0.000000px;}
.x7_c02108{left:7.740000px;}
.x6_c02108{left:12.060000px;}
.x3_c02108{left:16.560000px;}
.x5_c02108{left:38.700000px;}
.x8_c02108{left:61.740000px;}
.x1_c02108{left:106.200000px;}
.x4_c02108{left:191.730000px;}
.x2_c02108{left:1101.570000px;}
@media print{
.v0_c02108{vertical-align:0.000000pt;}
.ls3_c02108{letter-spacing:0.000000pt;}
.ls2_c02108{letter-spacing:0.640000pt;}
.ls1_c02108{letter-spacing:1.280000pt;}
.ls0_c02108{letter-spacing:53.463040pt;}
.ws0_c02108{word-spacing:-56.320000pt;}
.ws1_c02108{word-spacing:0.000000pt;}
._1_c02108{margin-left:-1.126400pt;}
._4_c02108{width:1.074500pt;}
._2_c02108{width:2.421873pt;}
._3_c02108{width:3.379200pt;}
._5_c02108{width:4.279982pt;}
._9_c02108{width:5.208617pt;}
._6_c02108{width:6.307727pt;}
._b_c02108{width:8.954655pt;}
._c_c02108{width:9.969654pt;}
._7_c02108{width:11.038945pt;}
._8_c02108{width:11.995146pt;}
._a_c02108{width:13.066127pt;}
._0_c02108{width:1334.186667pt;}
.fs0_c02108{font-size:53.120000pt;}
.fs2_c02108{font-size:56.320000pt;}
.fs1_c02108{font-size:58.880000pt;}
.y0_c02108{bottom:0.000000pt;}
.y29_c02108{bottom:3.520000pt;}
.y4_c02108{bottom:4.320000pt;}
.y28_c02108{bottom:19.674667pt;}
.y27_c02108{bottom:35.674667pt;}
.y3_c02108{bottom:46.592000pt;}
.y26_c02108{bottom:51.834667pt;}
.y2_c02108{bottom:67.072000pt;}
.y25_c02108{bottom:68.954667pt;}
.y24_c02108{bottom:84.954667pt;}
.y23_c02108{bottom:101.154667pt;}
.y5_c02108{bottom:117.152000pt;}
.y22_c02108{bottom:117.314667pt;}
.y21_c02108{bottom:133.314667pt;}
.y20_c02108{bottom:149.474667pt;}
.y1f_c02108{bottom:165.634667pt;}
.y1e_c02108{bottom:181.634667pt;}
.y1d_c02108{bottom:197.794667pt;}
.y1c_c02108{bottom:214.914667pt;}
.y1b_c02108{bottom:230.914667pt;}
.y1a_c02108{bottom:247.074667pt;}
.y19_c02108{bottom:263.261333pt;}
.y18_c02108{bottom:280.221333pt;}
.y17_c02108{bottom:296.381333pt;}
.y16_c02108{bottom:312.541333pt;}
.y15_c02108{bottom:328.541333pt;}
.y14_c02108{bottom:344.701333pt;}
.y13_c02108{bottom:360.861333pt;}
.y12_c02108{bottom:377.821333pt;}
.y11_c02108{bottom:393.981333pt;}
.y10_c02108{bottom:410.141333pt;}
.yf_c02108{bottom:426.141333pt;}
.ye_c02108{bottom:442.341333pt;}
.yd_c02108{bottom:458.501333pt;}
.yc_c02108{bottom:475.461333pt;}
.yb_c02108{bottom:491.621333pt;}
.ya_c02108{bottom:507.781333pt;}
.y9_c02108{bottom:523.781333pt;}
.y8_c02108{bottom:539.941333pt;}
.y7_c02108{bottom:555.941333pt;}
.y6_c02108{bottom:572.101333pt;}
.y1_c02108{bottom:756.800000pt;}
.h3_c02108{height:20.160000pt;}
.h2_c02108{height:43.441250pt;}
.h1_c02108{height:52.134375pt;}
.h5_c02108{height:55.275000pt;}
.h7_c02108{height:56.760000pt;}
.h6_c02108{height:57.888085pt;}
.h4_c02108{height:584.733333pt;}
.h0_c02108{height:816.000000pt;}
.w1_c02108{width:59.360000pt;}
.w2_c02108{width:804.573333pt;}
.w0_c02108{width:1056.000000pt;}
.x0_c02108{left:0.000000pt;}
.x7_c02108{left:6.880000pt;}
.x6_c02108{left:10.720000pt;}
.x3_c02108{left:14.720000pt;}
.x5_c02108{left:34.400000pt;}
.x8_c02108{left:54.880000pt;}
.x1_c02108{left:94.400000pt;}
.x4_c02108{left:170.426667pt;}
.x2_c02108{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02109 {
    display:none;
  }
  .loading-indicator_c02109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02109 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02109 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02109" -> "#page-container .classname_c02109")
 */
.pf_c02109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02109 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02109 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02109 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02109 {overflow:visible;}
  }
}
.c_c02109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02109 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02109:after { /* webkit #35443 */
  content: '';
}
.t_c02109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02109 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02109 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02109 { /* info for Javascript */
  display:none;
}
.l_c02109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02109:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02109 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02109.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02109;src:url('chunks/assets/font_75f6627d8809a555feec9813.woff2')format("woff");}.ff1_c02109{font-family:ff1_c02109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02109;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02109{font-family:ff2_c02109;line-height:0.863770;font-style:normal;font-weight: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_c02109;src:url('chunks/assets/font_fe927e26dc0f42414cb76f27.woff2')format("woff");}.ff3_c02109{font-family:ff3_c02109;line-height:1.112305;font-style:normal;font-weight: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_c02109;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff4_c02109{font-family:ff4_c02109;line-height:0.690918;font-style:normal;font-weight: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_c02109;src:url('chunks/assets/font_ca5a3b1c28b78dcf5bc266d1.woff2')format("woff");}.ff5_c02109{font-family:ff5_c02109;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02109{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02109{vertical-align:0.000000px;}
.ls2_c02109{letter-spacing:-0.219000px;}
.ls3_c02109{letter-spacing:-0.051600px;}
.ls1_c02109{letter-spacing:0.000000px;}
.ls4_c02109{letter-spacing:0.334200px;}
.ls0_c02109{letter-spacing:60.145920px;}
.sc__c02109{text-shadow:none;}
.sc0_c02109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02109{-webkit-text-stroke:0px transparent;}
.sc0_c02109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02109{word-spacing:-63.360000px;}
.ws4_c02109{word-spacing:-16.174200px;}
.ws0_c02109{word-spacing:-15.840000px;}
.ws3_c02109{word-spacing:-15.788400px;}
.ws1_c02109{word-spacing:-15.621000px;}
.ws5_c02109{word-spacing:0.000000px;}
._9_c02109{margin-left:-2.217600px;}
._1_c02109{margin-left:-1.076993px;}
._2_c02109{width:1.111807px;}
._4_c02109{width:2.234980px;}
._3_c02109{width:3.386373px;}
._5_c02109{width:5.005187px;}
._6_c02109{width:6.060660px;}
._8_c02109{width:7.242728px;}
._7_c02109{width:8.407066px;}
._a_c02109{width:9.820800px;}
._0_c02109{width:1500.960000px;}
.fc2_c02109{color:rgb(0,0,255);}
.fc1_c02109{color:rgb(192,80,77);}
.fc3_c02109{color:rgb(255,255,255);}
.fc0_c02109{color:rgb(0,0,0);}
.fs0_c02109{font-size:59.760000px;}
.fs2_c02109{font-size:63.360000px;}
.fs1_c02109{font-size:66.240000px;}
.y0_c02109{bottom:0.000000px;}
.y26_c02109{bottom:3.960000px;}
.y4_c02109{bottom:4.860000px;}
.y2a_c02109{bottom:21.954000px;}
.y25_c02109{bottom:22.140000px;}
.y29_c02109{bottom:40.134000px;}
.y24_c02109{bottom:40.140000px;}
.y28_c02109{bottom:41.214000px;}
.y3_c02109{bottom:52.416000px;}
.y23_c02109{bottom:58.365000px;}
.y2_c02109{bottom:75.456000px;}
.y22_c02109{bottom:76.365000px;}
.y21_c02109{bottom:94.545000px;}
.y20_c02109{bottom:112.725000px;}
.y27_c02109{bottom:129.996000px;}
.y1f_c02109{bottom:130.905000px;}
.y1e_c02109{bottom:149.985000px;}
.y1d_c02109{bottom:168.165000px;}
.y5_c02109{bottom:186.150000px;}
.y1c_c02109{bottom:186.165000px;}
.y1b_c02109{bottom:204.345000px;}
.y1a_c02109{bottom:222.525000px;}
.y19_c02109{bottom:240.735000px;}
.y18_c02109{bottom:259.815000px;}
.y17_c02109{bottom:277.995000px;}
.y16_c02109{bottom:295.995000px;}
.y15_c02109{bottom:314.175000px;}
.y14_c02109{bottom:332.355000px;}
.y13_c02109{bottom:350.355000px;}
.y12_c02109{bottom:368.535000px;}
.y11_c02109{bottom:387.795000px;}
.y10_c02109{bottom:405.795000px;}
.yf_c02109{bottom:423.975000px;}
.ye_c02109{bottom:442.200000px;}
.yd_c02109{bottom:460.200000px;}
.yc_c02109{bottom:479.460000px;}
.yb_c02109{bottom:497.640000px;}
.ya_c02109{bottom:515.640000px;}
.y9_c02109{bottom:533.820000px;}
.y8_c02109{bottom:552.000000px;}
.y7_c02109{bottom:571.080000px;}
.y6_c02109{bottom:589.260000px;}
.y1_c02109{bottom:851.400000px;}
.h3_c02109{height:22.680000px;}
.h2_c02109{height:48.871406px;}
.h7_c02109{height:55.440000px;}
.h1_c02109{height:58.651172px;}
.h5_c02109{height:62.184375px;}
.h6_c02109{height:65.124096px;}
.h4_c02109{height:603.465000px;}
.h0_c02109{height:918.000000px;}
.w1_c02109{width:66.780000px;}
.w3_c02109{width:92.376000px;}
.w2_c02109{width:905.145000px;}
.w0_c02109{width:1188.000000px;}
.x0_c02109{left:0.000000px;}
.x7_c02109{left:7.740000px;}
.x6_c02109{left:12.060000px;}
.x3_c02109{left:16.560000px;}
.x5_c02109{left:38.700000px;}
.x8_c02109{left:98.640000px;}
.x1_c02109{left:106.200000px;}
.x4_c02109{left:191.730000px;}
.x2_c02109{left:1101.570000px;}
@media print{
.v0_c02109{vertical-align:0.000000pt;}
.ls2_c02109{letter-spacing:-0.194667pt;}
.ls3_c02109{letter-spacing:-0.045867pt;}
.ls1_c02109{letter-spacing:0.000000pt;}
.ls4_c02109{letter-spacing:0.297067pt;}
.ls0_c02109{letter-spacing:53.463040pt;}
.ws2_c02109{word-spacing:-56.320000pt;}
.ws4_c02109{word-spacing:-14.377067pt;}
.ws0_c02109{word-spacing:-14.080000pt;}
.ws3_c02109{word-spacing:-14.034133pt;}
.ws1_c02109{word-spacing:-13.885333pt;}
.ws5_c02109{word-spacing:0.000000pt;}
._9_c02109{margin-left:-1.971200pt;}
._1_c02109{margin-left:-0.957327pt;}
._2_c02109{width:0.988273pt;}
._4_c02109{width:1.986649pt;}
._3_c02109{width:3.010109pt;}
._5_c02109{width:4.449055pt;}
._6_c02109{width:5.387254pt;}
._8_c02109{width:6.437980pt;}
._7_c02109{width:7.472947pt;}
._a_c02109{width:8.729600pt;}
._0_c02109{width:1334.186667pt;}
.fs0_c02109{font-size:53.120000pt;}
.fs2_c02109{font-size:56.320000pt;}
.fs1_c02109{font-size:58.880000pt;}
.y0_c02109{bottom:0.000000pt;}
.y26_c02109{bottom:3.520000pt;}
.y4_c02109{bottom:4.320000pt;}
.y2a_c02109{bottom:19.514667pt;}
.y25_c02109{bottom:19.680000pt;}
.y29_c02109{bottom:35.674667pt;}
.y24_c02109{bottom:35.680000pt;}
.y28_c02109{bottom:36.634667pt;}
.y3_c02109{bottom:46.592000pt;}
.y23_c02109{bottom:51.880000pt;}
.y2_c02109{bottom:67.072000pt;}
.y22_c02109{bottom:67.880000pt;}
.y21_c02109{bottom:84.040000pt;}
.y20_c02109{bottom:100.200000pt;}
.y27_c02109{bottom:115.552000pt;}
.y1f_c02109{bottom:116.360000pt;}
.y1e_c02109{bottom:133.320000pt;}
.y1d_c02109{bottom:149.480000pt;}
.y5_c02109{bottom:165.466667pt;}
.y1c_c02109{bottom:165.480000pt;}
.y1b_c02109{bottom:181.640000pt;}
.y1a_c02109{bottom:197.800000pt;}
.y19_c02109{bottom:213.986667pt;}
.y18_c02109{bottom:230.946667pt;}
.y17_c02109{bottom:247.106667pt;}
.y16_c02109{bottom:263.106667pt;}
.y15_c02109{bottom:279.266667pt;}
.y14_c02109{bottom:295.426667pt;}
.y13_c02109{bottom:311.426667pt;}
.y12_c02109{bottom:327.586667pt;}
.y11_c02109{bottom:344.706667pt;}
.y10_c02109{bottom:360.706667pt;}
.yf_c02109{bottom:376.866667pt;}
.ye_c02109{bottom:393.066667pt;}
.yd_c02109{bottom:409.066667pt;}
.yc_c02109{bottom:426.186667pt;}
.yb_c02109{bottom:442.346667pt;}
.ya_c02109{bottom:458.346667pt;}
.y9_c02109{bottom:474.506667pt;}
.y8_c02109{bottom:490.666667pt;}
.y7_c02109{bottom:507.626667pt;}
.y6_c02109{bottom:523.786667pt;}
.y1_c02109{bottom:756.800000pt;}
.h3_c02109{height:20.160000pt;}
.h2_c02109{height:43.441250pt;}
.h7_c02109{height:49.280000pt;}
.h1_c02109{height:52.134375pt;}
.h5_c02109{height:55.275000pt;}
.h6_c02109{height:57.888085pt;}
.h4_c02109{height:536.413333pt;}
.h0_c02109{height:816.000000pt;}
.w1_c02109{width:59.360000pt;}
.w3_c02109{width:82.112000pt;}
.w2_c02109{width:804.573333pt;}
.w0_c02109{width:1056.000000pt;}
.x0_c02109{left:0.000000pt;}
.x7_c02109{left:6.880000pt;}
.x6_c02109{left:10.720000pt;}
.x3_c02109{left:14.720000pt;}
.x5_c02109{left:34.400000pt;}
.x8_c02109{left:87.680000pt;}
.x1_c02109{left:94.400000pt;}
.x4_c02109{left:170.426667pt;}
.x2_c02109{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02110 {
    display:none;
  }
  .loading-indicator_c02110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02110 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02110 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02110" -> "#page-container .classname_c02110")
 */
.pf_c02110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02110 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02110 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02110 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02110 {overflow:visible;}
  }
}
.c_c02110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02110 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02110:after { /* webkit #35443 */
  content: '';
}
.t_c02110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02110 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02110 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02110 { /* info for Javascript */
  display:none;
}
.l_c02110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02110:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02110 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02110.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02110;src:url('chunks/assets/font_91091f5ffb5de8d861f48a2b.woff2')format("woff");}.ff1_c02110{font-family:ff1_c02110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02110;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff2_c02110{font-family:ff2_c02110;line-height:0.863770;font-style:normal;font-weight: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_c02110;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02110{font-family:ff3_c02110;line-height:1.311035;font-style:normal;font-weight: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_c02110;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff4_c02110{font-family:ff4_c02110;line-height:0.690918;font-style:normal;font-weight: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_c02110;src:url('chunks/assets/font_46a32d8da6c22e05991ad227.woff2')format("woff");}.ff5_c02110{font-family:ff5_c02110;line-height:1.402354;font-style:normal;font-weight: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_c02110;src:url('chunks/assets/font_82546bc0eb6628bc67f88713.woff2')format("woff");}.ff6_c02110{font-family:ff6_c02110;line-height:1.112305;font-style:normal;font-weight: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_c02110;src:url('chunks/assets/font_bf39b183f4ea44a7cc2fc39c.woff2')format("woff");}.ff7_c02110{font-family:ff7_c02110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02110{vertical-align:0.000000px;}
.ls2_c02110{letter-spacing:-0.219000px;}
.ls4_c02110{letter-spacing:-0.166800px;}
.ls3_c02110{letter-spacing:-0.051600px;}
.ls1_c02110{letter-spacing:0.000000px;}
.ls0_c02110{letter-spacing:60.145920px;}
.sc__c02110{text-shadow:none;}
.sc0_c02110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02110{-webkit-text-stroke:0px transparent;}
.sc0_c02110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02110{word-spacing:-63.360000px;}
.ws2_c02110{word-spacing:-15.840000px;}
.ws1_c02110{word-spacing:-15.621000px;}
.ws3_c02110{word-spacing:0.000000px;}
._3_c02110{margin-left:-2.442240px;}
._1_c02110{margin-left:-1.302013px;}
._4_c02110{width:1.491587px;}
._2_c02110{width:2.782333px;}
._9_c02110{width:4.210180px;}
._5_c02110{width:5.230207px;}
._6_c02110{width:6.617987px;}
._7_c02110{width:8.806787px;}
._c_c02110{width:9.848713px;}
._8_c02110{width:10.996474px;}
._a_c02110{width:12.770427px;}
._b_c02110{width:13.995533px;}
._0_c02110{width:1500.960000px;}
.fc1_c02110{color:rgb(192,80,77);}
.fc2_c02110{color:rgb(255,255,255);}
.fc0_c02110{color:rgb(0,0,0);}
.fs0_c02110{font-size:59.760000px;}
.fs2_c02110{font-size:63.360000px;}
.fs1_c02110{font-size:66.240000px;}
.fs3_c02110{font-size:72.000000px;}
.y0_c02110{bottom:0.000000px;}
.y1e_c02110{bottom:3.960000px;}
.y4_c02110{bottom:4.860000px;}
.y1d_c02110{bottom:22.140000px;}
.y1c_c02110{bottom:40.140000px;}
.y21_c02110{bottom:41.220000px;}
.y3_c02110{bottom:52.416000px;}
.y1b_c02110{bottom:58.320000px;}
.y20_c02110{bottom:59.400000px;}
.y2_c02110{bottom:75.456000px;}
.y1a_c02110{bottom:76.500000px;}
.y19_c02110{bottom:95.250000px;}
.y18_c02110{bottom:113.790000px;}
.y17_c02110{bottom:131.790000px;}
.y16_c02110{bottom:149.970000px;}
.y15_c02110{bottom:168.150000px;}
.y14_c02110{bottom:186.150000px;}
.y13_c02110{bottom:204.330000px;}
.y12_c02110{bottom:222.510000px;}
.y22_c02110{bottom:239.835000px;}
.y11_c02110{bottom:240.510000px;}
.y1f_c02110{bottom:256.755000px;}
.y10_c02110{bottom:259.410000px;}
.yf_c02110{bottom:277.950000px;}
.ye_c02110{bottom:296.175000px;}
.yd_c02110{bottom:314.895000px;}
.y5_c02110{bottom:331.095000px;}
.yc_c02110{bottom:333.435000px;}
.yb_c02110{bottom:351.615000px;}
.ya_c02110{bottom:370.335000px;}
.y9_c02110{bottom:388.875000px;}
.y8_c02110{bottom:407.055000px;}
.y7_c02110{bottom:425.775000px;}
.y6_c02110{bottom:444.315000px;}
.y1_c02110{bottom:851.400000px;}
.h3_c02110{height:22.680000px;}
.h2_c02110{height:48.871406px;}
.h1_c02110{height:58.651172px;}
.h7_c02110{height:62.184375px;}
.h5_c02110{height:63.855000px;}
.h6_c02110{height:65.124096px;}
.h9_c02110{height:70.664062px;}
.h8_c02110{height:73.620000px;}
.h4_c02110{height:458.535000px;}
.h0_c02110{height:918.000000px;}
.w1_c02110{width:66.780000px;}
.w3_c02110{width:92.376000px;}
.w2_c02110{width:905.145000px;}
.w0_c02110{width:1188.000000px;}
.x0_c02110{left:0.000000px;}
.x7_c02110{left:7.740000px;}
.x6_c02110{left:12.060000px;}
.x3_c02110{left:16.560000px;}
.x5_c02110{left:38.700000px;}
.x8_c02110{left:98.640000px;}
.x1_c02110{left:106.200000px;}
.x4_c02110{left:191.730000px;}
.x2_c02110{left:1101.570000px;}
@media print{
.v0_c02110{vertical-align:0.000000pt;}
.ls2_c02110{letter-spacing:-0.194667pt;}
.ls4_c02110{letter-spacing:-0.148267pt;}
.ls3_c02110{letter-spacing:-0.045867pt;}
.ls1_c02110{letter-spacing:0.000000pt;}
.ls0_c02110{letter-spacing:53.463040pt;}
.ws0_c02110{word-spacing:-56.320000pt;}
.ws2_c02110{word-spacing:-14.080000pt;}
.ws1_c02110{word-spacing:-13.885333pt;}
.ws3_c02110{word-spacing:0.000000pt;}
._3_c02110{margin-left:-2.170880pt;}
._1_c02110{margin-left:-1.157345pt;}
._4_c02110{width:1.325855pt;}
._2_c02110{width:2.473185pt;}
._9_c02110{width:3.742382pt;}
._5_c02110{width:4.649073pt;}
._6_c02110{width:5.882655pt;}
._7_c02110{width:7.828255pt;}
._c_c02110{width:8.754412pt;}
._8_c02110{width:9.774643pt;}
._a_c02110{width:11.351491pt;}
._b_c02110{width:12.440474pt;}
._0_c02110{width:1334.186667pt;}
.fs0_c02110{font-size:53.120000pt;}
.fs2_c02110{font-size:56.320000pt;}
.fs1_c02110{font-size:58.880000pt;}
.fs3_c02110{font-size:64.000000pt;}
.y0_c02110{bottom:0.000000pt;}
.y1e_c02110{bottom:3.520000pt;}
.y4_c02110{bottom:4.320000pt;}
.y1d_c02110{bottom:19.680000pt;}
.y1c_c02110{bottom:35.680000pt;}
.y21_c02110{bottom:36.640000pt;}
.y3_c02110{bottom:46.592000pt;}
.y1b_c02110{bottom:51.840000pt;}
.y20_c02110{bottom:52.800000pt;}
.y2_c02110{bottom:67.072000pt;}
.y1a_c02110{bottom:68.000000pt;}
.y19_c02110{bottom:84.666667pt;}
.y18_c02110{bottom:101.146667pt;}
.y17_c02110{bottom:117.146667pt;}
.y16_c02110{bottom:133.306667pt;}
.y15_c02110{bottom:149.466667pt;}
.y14_c02110{bottom:165.466667pt;}
.y13_c02110{bottom:181.626667pt;}
.y12_c02110{bottom:197.786667pt;}
.y22_c02110{bottom:213.186667pt;}
.y11_c02110{bottom:213.786667pt;}
.y1f_c02110{bottom:228.226667pt;}
.y10_c02110{bottom:230.586667pt;}
.yf_c02110{bottom:247.066667pt;}
.ye_c02110{bottom:263.266667pt;}
.yd_c02110{bottom:279.906667pt;}
.y5_c02110{bottom:294.306667pt;}
.yc_c02110{bottom:296.386667pt;}
.yb_c02110{bottom:312.546667pt;}
.ya_c02110{bottom:329.186667pt;}
.y9_c02110{bottom:345.666667pt;}
.y8_c02110{bottom:361.826667pt;}
.y7_c02110{bottom:378.466667pt;}
.y6_c02110{bottom:394.946667pt;}
.y1_c02110{bottom:756.800000pt;}
.h3_c02110{height:20.160000pt;}
.h2_c02110{height:43.441250pt;}
.h1_c02110{height:52.134375pt;}
.h7_c02110{height:55.275000pt;}
.h5_c02110{height:56.760000pt;}
.h6_c02110{height:57.888085pt;}
.h9_c02110{height:62.812500pt;}
.h8_c02110{height:65.440000pt;}
.h4_c02110{height:407.586667pt;}
.h0_c02110{height:816.000000pt;}
.w1_c02110{width:59.360000pt;}
.w3_c02110{width:82.112000pt;}
.w2_c02110{width:804.573333pt;}
.w0_c02110{width:1056.000000pt;}
.x0_c02110{left:0.000000pt;}
.x7_c02110{left:6.880000pt;}
.x6_c02110{left:10.720000pt;}
.x3_c02110{left:14.720000pt;}
.x5_c02110{left:34.400000pt;}
.x8_c02110{left:87.680000pt;}
.x1_c02110{left:94.400000pt;}
.x4_c02110{left:170.426667pt;}
.x2_c02110{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02111 {
    display:none;
  }
  .loading-indicator_c02111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02111 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02111 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02111" -> "#page-container .classname_c02111")
 */
.pf_c02111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02111 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02111 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02111 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02111 {overflow:visible;}
  }
}
.c_c02111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02111 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02111:after { /* webkit #35443 */
  content: '';
}
.t_c02111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02111 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02111 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02111 { /* info for Javascript */
  display:none;
}
.l_c02111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02111:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02111 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02111.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02111;src:url('chunks/assets/font_92691eb8ef509569ef0fc7b3.woff2')format("woff");}.ff1_c02111{font-family:ff1_c02111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02111;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff2_c02111{font-family:ff2_c02111;line-height:0.863770;font-style:normal;font-weight: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_c02111;src:url('chunks/assets/font_7db31f9a4c7524fd30971cb7.woff2')format("woff");}.ff3_c02111{font-family:ff3_c02111;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02111{vertical-align:0.000000px;}
.ls0_c02111{letter-spacing:0.000000px;}
.sc__c02111{text-shadow:none;}
.sc0_c02111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02111{-webkit-text-stroke:0px transparent;}
.sc0_c02111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02111{word-spacing:0.000000px;}
._4_c02111{margin-left:-1.440000px;}
._6_c02111{width:1.236024px;}
._5_c02111{width:2.592000px;}
._3_c02111{width:4.104000px;}
._b_c02111{width:5.520024px;}
._1_c02111{width:6.696000px;}
._2_c02111{width:7.848000px;}
._a_c02111{width:9.288000px;}
._c_c02111{width:10.440000px;}
._7_c02111{width:13.248000px;}
._8_c02111{width:14.448024px;}
._e_c02111{width:19.920024px;}
._d_c02111{width:21.456000px;}
._9_c02111{width:22.968000px;}
._0_c02111{width:1500.936000px;}
.fc1_c02111{color:rgb(192,80,77);}
.fc0_c02111{color:rgb(0,0,0);}
.fs0_c02111{font-size:59.760000px;}
.fs1_c02111{font-size:66.240000px;}
.fs2_c02111{font-size:72.000000px;}
.y0_c02111{bottom:0.000000px;}
.y4_c02111{bottom:4.680000px;}
.y3_c02111{bottom:41.796000px;}
.y2_c02111{bottom:75.456000px;}
.y22_c02111{bottom:164.910000px;}
.y21_c02111{bottom:195.870000px;}
.y20_c02111{bottom:226.830000px;}
.y1f_c02111{bottom:257.970000px;}
.y1e_c02111{bottom:288.975000px;}
.y1d_c02111{bottom:320.115000px;}
.y1c_c02111{bottom:351.075000px;}
.y1b_c02111{bottom:382.215000px;}
.y1a_c02111{bottom:413.175000px;}
.y19_c02111{bottom:444.315000px;}
.y18_c02111{bottom:475.275000px;}
.y17_c02111{bottom:506.415000px;}
.y16_c02111{bottom:537.405000px;}
.y15_c02111{bottom:568.545000px;}
.y14_c02111{bottom:599.505000px;}
.y13_c02111{bottom:630.645000px;}
.y12_c02111{bottom:661.605000px;}
.y11_c02111{bottom:692.745000px;}
.y10_c02111{bottom:723.705000px;}
.yf_c02111{bottom:754.845000px;}
.ye_c02111{bottom:785.805000px;}
.yd_c02111{bottom:816.990000px;}
.yc_c02111{bottom:847.950000px;}
.yb_c02111{bottom:879.090000px;}
.ya_c02111{bottom:910.050000px;}
.y9_c02111{bottom:941.190000px;}
.y8_c02111{bottom:972.150000px;}
.y7_c02111{bottom:1003.290000px;}
.y6_c02111{bottom:1034.250000px;}
.y5_c02111{bottom:1065.420000px;}
.y1_c02111{bottom:1121.400000px;}
.h3_c02111{height:22.500000px;}
.h2_c02111{height:48.871406px;}
.h1_c02111{height:58.651172px;}
.h5_c02111{height:64.546875px;}
.h4_c02111{height:70.664062px;}
.h0_c02111{height:1188.000000px;}
.w1_c02111{width:66.636000px;}
.w0_c02111{width:918.000000px;}
.x0_c02111{left:0.000000px;}
.x3_c02111{left:16.560000px;}
.x1_c02111{left:127.656000px;}
.x4_c02111{left:180.750000px;}
.x2_c02111{left:820.950000px;}
@media print{
.v0_c02111{vertical-align:0.000000pt;}
.ls0_c02111{letter-spacing:0.000000pt;}
.ws0_c02111{word-spacing:0.000000pt;}
._4_c02111{margin-left:-1.280000pt;}
._6_c02111{width:1.098688pt;}
._5_c02111{width:2.304000pt;}
._3_c02111{width:3.648000pt;}
._b_c02111{width:4.906688pt;}
._1_c02111{width:5.952000pt;}
._2_c02111{width:6.976000pt;}
._a_c02111{width:8.256000pt;}
._c_c02111{width:9.280000pt;}
._7_c02111{width:11.776000pt;}
._8_c02111{width:12.842688pt;}
._e_c02111{width:17.706688pt;}
._d_c02111{width:19.072000pt;}
._9_c02111{width:20.416000pt;}
._0_c02111{width:1334.165333pt;}
.fs0_c02111{font-size:53.120000pt;}
.fs1_c02111{font-size:58.880000pt;}
.fs2_c02111{font-size:64.000000pt;}
.y0_c02111{bottom:0.000000pt;}
.y4_c02111{bottom:4.160000pt;}
.y3_c02111{bottom:37.152000pt;}
.y2_c02111{bottom:67.072000pt;}
.y22_c02111{bottom:146.586667pt;}
.y21_c02111{bottom:174.106667pt;}
.y20_c02111{bottom:201.626667pt;}
.y1f_c02111{bottom:229.306667pt;}
.y1e_c02111{bottom:256.866667pt;}
.y1d_c02111{bottom:284.546667pt;}
.y1c_c02111{bottom:312.066667pt;}
.y1b_c02111{bottom:339.746667pt;}
.y1a_c02111{bottom:367.266667pt;}
.y19_c02111{bottom:394.946667pt;}
.y18_c02111{bottom:422.466667pt;}
.y17_c02111{bottom:450.146667pt;}
.y16_c02111{bottom:477.693333pt;}
.y15_c02111{bottom:505.373333pt;}
.y14_c02111{bottom:532.893333pt;}
.y13_c02111{bottom:560.573333pt;}
.y12_c02111{bottom:588.093333pt;}
.y11_c02111{bottom:615.773333pt;}
.y10_c02111{bottom:643.293333pt;}
.yf_c02111{bottom:670.973333pt;}
.ye_c02111{bottom:698.493333pt;}
.yd_c02111{bottom:726.213333pt;}
.yc_c02111{bottom:753.733333pt;}
.yb_c02111{bottom:781.413333pt;}
.ya_c02111{bottom:808.933333pt;}
.y9_c02111{bottom:836.613333pt;}
.y8_c02111{bottom:864.133333pt;}
.y7_c02111{bottom:891.813333pt;}
.y6_c02111{bottom:919.333333pt;}
.y5_c02111{bottom:947.040000pt;}
.y1_c02111{bottom:996.800000pt;}
.h3_c02111{height:20.000000pt;}
.h2_c02111{height:43.441250pt;}
.h1_c02111{height:52.134375pt;}
.h5_c02111{height:57.375000pt;}
.h4_c02111{height:62.812500pt;}
.h0_c02111{height:1056.000000pt;}
.w1_c02111{width:59.232000pt;}
.w0_c02111{width:816.000000pt;}
.x0_c02111{left:0.000000pt;}
.x3_c02111{left:14.720000pt;}
.x1_c02111{left:113.472000pt;}
.x4_c02111{left:160.666667pt;}
.x2_c02111{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02112 {
    display:none;
  }
  .loading-indicator_c02112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02112 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02112 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02112" -> "#page-container .classname_c02112")
 */
.pf_c02112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02112 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02112 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02112 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02112 {overflow:visible;}
  }
}
.c_c02112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02112 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02112:after { /* webkit #35443 */
  content: '';
}
.t_c02112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02112 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02112 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02112 { /* info for Javascript */
  display:none;
}
.l_c02112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02112:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02112 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02112.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02112;src:url('chunks/assets/font_064642dc64fb5111934dac68.woff2')format("woff");}.ff1_c02112{font-family:ff1_c02112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02112;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff2_c02112{font-family:ff2_c02112;line-height:0.863770;font-style:normal;font-weight: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_c02112;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02112{font-family:ff3_c02112;line-height:1.311035;font-style:normal;font-weight: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_c02112;src:url('chunks/assets/font_6bc0f6c872c1c6454d53bab6.woff2')format("woff");}.ff4_c02112{font-family:ff4_c02112;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02112{vertical-align:0.000000px;}
.ls0_c02112{letter-spacing:0.000000px;}
.sc__c02112{text-shadow:none;}
.sc0_c02112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02112{-webkit-text-stroke:0px transparent;}
.sc0_c02112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02112{word-spacing:0.000000px;}
._2_c02112{margin-left:-1.008000px;}
._1_c02112{width:1.152000px;}
._5_c02112{width:2.664000px;}
._6_c02112{width:4.200000px;}
._e_c02112{width:5.208000px;}
._a_c02112{width:6.408000px;}
._9_c02112{width:7.992000px;}
._b_c02112{width:9.060000px;}
._f_c02112{width:10.320000px;}
._c_c02112{width:11.376000px;}
._3_c02112{width:12.960000px;}
._4_c02112{width:14.184000px;}
._d_c02112{width:15.204024px;}
._11_c02112{width:16.824024px;}
._15_c02112{width:19.176000px;}
._7_c02112{width:20.424000px;}
._8_c02112{width:21.624000px;}
._13_c02112{width:31.584000px;}
._12_c02112{width:32.616000px;}
._14_c02112{width:34.056000px;}
._10_c02112{width:58.320000px;}
._0_c02112{width:1500.936000px;}
.fc1_c02112{color:rgb(192,80,77);}
.fc0_c02112{color:rgb(0,0,0);}
.fs0_c02112{font-size:59.760000px;}
.fs1_c02112{font-size:66.240000px;}
.fs2_c02112{font-size:72.000000px;}
.y0_c02112{bottom:0.000000px;}
.y4_c02112{bottom:4.680000px;}
.y3_c02112{bottom:41.796000px;}
.y2_c02112{bottom:75.456000px;}
.y23_c02112{bottom:133.776000px;}
.y22_c02112{bottom:164.910000px;}
.y21_c02112{bottom:195.870000px;}
.y20_c02112{bottom:226.830000px;}
.y1f_c02112{bottom:257.970000px;}
.y1e_c02112{bottom:288.975000px;}
.y1d_c02112{bottom:320.115000px;}
.y1c_c02112{bottom:351.075000px;}
.y1b_c02112{bottom:382.215000px;}
.y1a_c02112{bottom:413.175000px;}
.y19_c02112{bottom:444.315000px;}
.y18_c02112{bottom:475.275000px;}
.y17_c02112{bottom:506.415000px;}
.y16_c02112{bottom:537.405000px;}
.y15_c02112{bottom:568.545000px;}
.y14_c02112{bottom:599.505000px;}
.y13_c02112{bottom:630.645000px;}
.y12_c02112{bottom:661.605000px;}
.y11_c02112{bottom:692.745000px;}
.y10_c02112{bottom:723.705000px;}
.yf_c02112{bottom:754.845000px;}
.ye_c02112{bottom:785.805000px;}
.yd_c02112{bottom:816.990000px;}
.yc_c02112{bottom:847.950000px;}
.yb_c02112{bottom:879.090000px;}
.ya_c02112{bottom:910.050000px;}
.y9_c02112{bottom:941.190000px;}
.y8_c02112{bottom:972.150000px;}
.y7_c02112{bottom:1003.290000px;}
.y6_c02112{bottom:1034.250000px;}
.y5_c02112{bottom:1065.420000px;}
.y1_c02112{bottom:1121.400000px;}
.h3_c02112{height:22.500000px;}
.h2_c02112{height:48.871406px;}
.h1_c02112{height:58.651172px;}
.h6_c02112{height:64.546875px;}
.h4_c02112{height:70.664062px;}
.h5_c02112{height:72.562500px;}
.h0_c02112{height:1188.000000px;}
.w1_c02112{width:66.636000px;}
.w0_c02112{width:918.000000px;}
.x0_c02112{left:0.000000px;}
.x3_c02112{left:16.560000px;}
.x1_c02112{left:127.656000px;}
.x4_c02112{left:180.750000px;}
.x2_c02112{left:820.950000px;}
@media print{
.v0_c02112{vertical-align:0.000000pt;}
.ls0_c02112{letter-spacing:0.000000pt;}
.ws0_c02112{word-spacing:0.000000pt;}
._2_c02112{margin-left:-0.896000pt;}
._1_c02112{width:1.024000pt;}
._5_c02112{width:2.368000pt;}
._6_c02112{width:3.733333pt;}
._e_c02112{width:4.629333pt;}
._a_c02112{width:5.696000pt;}
._9_c02112{width:7.104000pt;}
._b_c02112{width:8.053333pt;}
._f_c02112{width:9.173333pt;}
._c_c02112{width:10.112000pt;}
._3_c02112{width:11.520000pt;}
._4_c02112{width:12.608000pt;}
._d_c02112{width:13.514688pt;}
._11_c02112{width:14.954688pt;}
._15_c02112{width:17.045333pt;}
._7_c02112{width:18.154667pt;}
._8_c02112{width:19.221333pt;}
._13_c02112{width:28.074667pt;}
._12_c02112{width:28.992000pt;}
._14_c02112{width:30.272000pt;}
._10_c02112{width:51.840000pt;}
._0_c02112{width:1334.165333pt;}
.fs0_c02112{font-size:53.120000pt;}
.fs1_c02112{font-size:58.880000pt;}
.fs2_c02112{font-size:64.000000pt;}
.y0_c02112{bottom:0.000000pt;}
.y4_c02112{bottom:4.160000pt;}
.y3_c02112{bottom:37.152000pt;}
.y2_c02112{bottom:67.072000pt;}
.y23_c02112{bottom:118.912000pt;}
.y22_c02112{bottom:146.586667pt;}
.y21_c02112{bottom:174.106667pt;}
.y20_c02112{bottom:201.626667pt;}
.y1f_c02112{bottom:229.306667pt;}
.y1e_c02112{bottom:256.866667pt;}
.y1d_c02112{bottom:284.546667pt;}
.y1c_c02112{bottom:312.066667pt;}
.y1b_c02112{bottom:339.746667pt;}
.y1a_c02112{bottom:367.266667pt;}
.y19_c02112{bottom:394.946667pt;}
.y18_c02112{bottom:422.466667pt;}
.y17_c02112{bottom:450.146667pt;}
.y16_c02112{bottom:477.693333pt;}
.y15_c02112{bottom:505.373333pt;}
.y14_c02112{bottom:532.893333pt;}
.y13_c02112{bottom:560.573333pt;}
.y12_c02112{bottom:588.093333pt;}
.y11_c02112{bottom:615.773333pt;}
.y10_c02112{bottom:643.293333pt;}
.yf_c02112{bottom:670.973333pt;}
.ye_c02112{bottom:698.493333pt;}
.yd_c02112{bottom:726.213333pt;}
.yc_c02112{bottom:753.733333pt;}
.yb_c02112{bottom:781.413333pt;}
.ya_c02112{bottom:808.933333pt;}
.y9_c02112{bottom:836.613333pt;}
.y8_c02112{bottom:864.133333pt;}
.y7_c02112{bottom:891.813333pt;}
.y6_c02112{bottom:919.333333pt;}
.y5_c02112{bottom:947.040000pt;}
.y1_c02112{bottom:996.800000pt;}
.h3_c02112{height:20.000000pt;}
.h2_c02112{height:43.441250pt;}
.h1_c02112{height:52.134375pt;}
.h6_c02112{height:57.375000pt;}
.h4_c02112{height:62.812500pt;}
.h5_c02112{height:64.500000pt;}
.h0_c02112{height:1056.000000pt;}
.w1_c02112{width:59.232000pt;}
.w0_c02112{width:816.000000pt;}
.x0_c02112{left:0.000000pt;}
.x3_c02112{left:14.720000pt;}
.x1_c02112{left:113.472000pt;}
.x4_c02112{left:160.666667pt;}
.x2_c02112{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02113 {
    display:none;
  }
  .loading-indicator_c02113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02113 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02113 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02113" -> "#page-container .classname_c02113")
 */
.pf_c02113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02113 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02113 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02113 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02113 {overflow:visible;}
  }
}
.c_c02113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02113 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02113:after { /* webkit #35443 */
  content: '';
}
.t_c02113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02113 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02113 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02113 { /* info for Javascript */
  display:none;
}
.l_c02113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02113:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02113 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02113.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02113;src:url('chunks/assets/font_107da5274d76cef14bd8a3ef.woff2')format("woff");}.ff1_c02113{font-family:ff1_c02113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02113;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff2_c02113{font-family:ff2_c02113;line-height:0.863770;font-style:normal;font-weight: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_c02113;src:url('chunks/assets/font_5e3e740ecb91a361254db622.woff2')format("woff");}.ff3_c02113{font-family:ff3_c02113;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02113{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02113{vertical-align:0.000000px;}
.ls1_c02113{letter-spacing:-0.288000px;}
.ls0_c02113{letter-spacing:0.000000px;}
.sc__c02113{text-shadow:none;}
.sc0_c02113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02113{-webkit-text-stroke:0px transparent;}
.sc0_c02113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02113{word-spacing:-18.000000px;}
.ws0_c02113{word-spacing:-17.712000px;}
.ws2_c02113{word-spacing:0.000000px;}
._3_c02113{margin-left:-1.440000px;}
._4_c02113{width:1.236000px;}
._8_c02113{width:2.436000px;}
._1_c02113{width:3.600000px;}
._2_c02113{width:5.472000px;}
._9_c02113{width:6.480000px;}
._7_c02113{width:7.920000px;}
._5_c02113{width:9.720000px;}
._6_c02113{width:10.920000px;}
._a_c02113{width:12.888000px;}
._b_c02113{width:13.944000px;}
._e_c02113{width:15.264000px;}
._f_c02113{width:16.512000px;}
._d_c02113{width:28.008000px;}
._c_c02113{width:29.016000px;}
._10_c02113{width:30.096000px;}
._11_c02113{width:31.356024px;}
._0_c02113{width:1500.936000px;}
.fc1_c02113{color:rgb(192,80,77);}
.fc0_c02113{color:rgb(0,0,0);}
.fs0_c02113{font-size:59.760000px;}
.fs1_c02113{font-size:66.240000px;}
.fs2_c02113{font-size:72.000000px;}
.y0_c02113{bottom:0.000000px;}
.y4_c02113{bottom:4.680000px;}
.y3_c02113{bottom:41.796000px;}
.y2_c02113{bottom:75.456000px;}
.y23_c02113{bottom:133.776000px;}
.y22_c02113{bottom:164.910000px;}
.y21_c02113{bottom:195.870000px;}
.y20_c02113{bottom:226.830000px;}
.y1f_c02113{bottom:257.970000px;}
.y1e_c02113{bottom:288.975000px;}
.y1d_c02113{bottom:320.115000px;}
.y1c_c02113{bottom:351.075000px;}
.y1b_c02113{bottom:382.215000px;}
.y1a_c02113{bottom:413.175000px;}
.y19_c02113{bottom:444.315000px;}
.y18_c02113{bottom:475.275000px;}
.y17_c02113{bottom:506.415000px;}
.y16_c02113{bottom:537.405000px;}
.y15_c02113{bottom:568.545000px;}
.y14_c02113{bottom:599.505000px;}
.y13_c02113{bottom:630.645000px;}
.y12_c02113{bottom:661.605000px;}
.y11_c02113{bottom:692.745000px;}
.y10_c02113{bottom:723.705000px;}
.yf_c02113{bottom:754.845000px;}
.ye_c02113{bottom:785.805000px;}
.yd_c02113{bottom:816.990000px;}
.yc_c02113{bottom:847.950000px;}
.yb_c02113{bottom:879.090000px;}
.ya_c02113{bottom:910.050000px;}
.y9_c02113{bottom:941.190000px;}
.y8_c02113{bottom:972.150000px;}
.y7_c02113{bottom:1003.290000px;}
.y6_c02113{bottom:1034.250000px;}
.y5_c02113{bottom:1065.420000px;}
.y1_c02113{bottom:1121.400000px;}
.h3_c02113{height:22.500000px;}
.h2_c02113{height:48.871406px;}
.h1_c02113{height:58.651172px;}
.h4_c02113{height:70.664062px;}
.h0_c02113{height:1188.000000px;}
.w1_c02113{width:66.636000px;}
.w0_c02113{width:918.000000px;}
.x0_c02113{left:0.000000px;}
.x3_c02113{left:16.560000px;}
.x1_c02113{left:127.656000px;}
.x4_c02113{left:180.750000px;}
.x2_c02113{left:820.950000px;}
@media print{
.v0_c02113{vertical-align:0.000000pt;}
.ls1_c02113{letter-spacing:-0.256000pt;}
.ls0_c02113{letter-spacing:0.000000pt;}
.ws1_c02113{word-spacing:-16.000000pt;}
.ws0_c02113{word-spacing:-15.744000pt;}
.ws2_c02113{word-spacing:0.000000pt;}
._3_c02113{margin-left:-1.280000pt;}
._4_c02113{width:1.098667pt;}
._8_c02113{width:2.165333pt;}
._1_c02113{width:3.200000pt;}
._2_c02113{width:4.864000pt;}
._9_c02113{width:5.760000pt;}
._7_c02113{width:7.040000pt;}
._5_c02113{width:8.640000pt;}
._6_c02113{width:9.706667pt;}
._a_c02113{width:11.456000pt;}
._b_c02113{width:12.394667pt;}
._e_c02113{width:13.568000pt;}
._f_c02113{width:14.677333pt;}
._d_c02113{width:24.896000pt;}
._c_c02113{width:25.792000pt;}
._10_c02113{width:26.752000pt;}
._11_c02113{width:27.872021pt;}
._0_c02113{width:1334.165333pt;}
.fs0_c02113{font-size:53.120000pt;}
.fs1_c02113{font-size:58.880000pt;}
.fs2_c02113{font-size:64.000000pt;}
.y0_c02113{bottom:0.000000pt;}
.y4_c02113{bottom:4.160000pt;}
.y3_c02113{bottom:37.152000pt;}
.y2_c02113{bottom:67.072000pt;}
.y23_c02113{bottom:118.912000pt;}
.y22_c02113{bottom:146.586667pt;}
.y21_c02113{bottom:174.106667pt;}
.y20_c02113{bottom:201.626667pt;}
.y1f_c02113{bottom:229.306667pt;}
.y1e_c02113{bottom:256.866667pt;}
.y1d_c02113{bottom:284.546667pt;}
.y1c_c02113{bottom:312.066667pt;}
.y1b_c02113{bottom:339.746667pt;}
.y1a_c02113{bottom:367.266667pt;}
.y19_c02113{bottom:394.946667pt;}
.y18_c02113{bottom:422.466667pt;}
.y17_c02113{bottom:450.146667pt;}
.y16_c02113{bottom:477.693333pt;}
.y15_c02113{bottom:505.373333pt;}
.y14_c02113{bottom:532.893333pt;}
.y13_c02113{bottom:560.573333pt;}
.y12_c02113{bottom:588.093333pt;}
.y11_c02113{bottom:615.773333pt;}
.y10_c02113{bottom:643.293333pt;}
.yf_c02113{bottom:670.973333pt;}
.ye_c02113{bottom:698.493333pt;}
.yd_c02113{bottom:726.213333pt;}
.yc_c02113{bottom:753.733333pt;}
.yb_c02113{bottom:781.413333pt;}
.ya_c02113{bottom:808.933333pt;}
.y9_c02113{bottom:836.613333pt;}
.y8_c02113{bottom:864.133333pt;}
.y7_c02113{bottom:891.813333pt;}
.y6_c02113{bottom:919.333333pt;}
.y5_c02113{bottom:947.040000pt;}
.y1_c02113{bottom:996.800000pt;}
.h3_c02113{height:20.000000pt;}
.h2_c02113{height:43.441250pt;}
.h1_c02113{height:52.134375pt;}
.h4_c02113{height:62.812500pt;}
.h0_c02113{height:1056.000000pt;}
.w1_c02113{width:59.232000pt;}
.w0_c02113{width:816.000000pt;}
.x0_c02113{left:0.000000pt;}
.x3_c02113{left:14.720000pt;}
.x1_c02113{left:113.472000pt;}
.x4_c02113{left:160.666667pt;}
.x2_c02113{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02114 {
    display:none;
  }
  .loading-indicator_c02114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02114 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02114 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02114" -> "#page-container .classname_c02114")
 */
.pf_c02114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02114 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02114 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02114 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02114 {overflow:visible;}
  }
}
.c_c02114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02114 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02114:after { /* webkit #35443 */
  content: '';
}
.t_c02114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02114 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02114 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02114 { /* info for Javascript */
  display:none;
}
.l_c02114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02114:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02114 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02114.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02114;src:url('chunks/assets/font_b470a35aa0188ee6749653f9.woff2')format("woff");}.ff1_c02114{font-family:ff1_c02114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02114;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02114{font-family:ff2_c02114;line-height:0.863770;font-style:normal;font-weight: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_c02114;src:url('chunks/assets/font_10cd8218ef40ccb1453cf0cb.woff2')format("woff");}.ff3_c02114{font-family:ff3_c02114;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02114{vertical-align:-27.360000px;}
.v0_c02114{vertical-align:0.000000px;}
.v1_c02114{vertical-align:30.240000px;}
.ls3_c02114{letter-spacing:0.000000px;}
.ls0_c02114{letter-spacing:0.150000px;}
.ls2_c02114{letter-spacing:0.298800px;}
.ls1_c02114{letter-spacing:5.220000px;}
.sc__c02114{text-shadow:none;}
.sc0_c02114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02114{-webkit-text-stroke:0px transparent;}
.sc0_c02114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02114{word-spacing:-18.000000px;}
.ws1_c02114{word-spacing:-16.560000px;}
.ws5_c02114{word-spacing:-15.238800px;}
.ws4_c02114{word-spacing:-14.940000px;}
.ws2_c02114{word-spacing:-10.440000px;}
.ws3_c02114{word-spacing:-9.720000px;}
.ws6_c02114{word-spacing:0.000000px;}
._10_c02114{margin-left:-12.817920px;}
._1_c02114{margin-left:-1.440000px;}
._3_c02114{width:1.440000px;}
._c_c02114{width:2.808000px;}
._6_c02114{width:4.896000px;}
._7_c02114{width:5.988000px;}
._5_c02114{width:7.632000px;}
._8_c02114{width:9.000000px;}
._9_c02114{width:10.008000px;}
._14_c02114{width:11.117400px;}
._a_c02114{width:12.456000px;}
._b_c02114{width:13.896000px;}
._12_c02114{width:16.075201px;}
._11_c02114{width:17.270401px;}
._2_c02114{width:19.368000px;}
._4_c02114{width:20.400000px;}
._13_c02114{width:22.648801px;}
._f_c02114{width:29.079559px;}
._d_c02114{width:32.448000px;}
._e_c02114{width:33.504000px;}
._0_c02114{width:1500.936000px;}
.fc1_c02114{color:rgb(192,80,77);}
.fc0_c02114{color:rgb(0,0,0);}
.fs4_c02114{font-size:38.880000px;}
.fs3_c02114{font-size:41.760000px;}
.fs0_c02114{font-size:59.760000px;}
.fs1_c02114{font-size:66.240000px;}
.fs2_c02114{font-size:72.000000px;}
.y0_c02114{bottom:0.000000px;}
.y4_c02114{bottom:4.680000px;}
.y3_c02114{bottom:41.796000px;}
.y2_c02114{bottom:75.456000px;}
.y30_c02114{bottom:109.836000px;}
.y2f_c02114{bottom:127.116000px;}
.y2e_c02114{bottom:151.230000px;}
.y2d_c02114{bottom:161.670000px;}
.y2c_c02114{bottom:178.950000px;}
.y2b_c02114{bottom:196.050000px;}
.y2a_c02114{bottom:213.330000px;}
.y29_c02114{bottom:230.610000px;}
.y28_c02114{bottom:247.890000px;}
.y27_c02114{bottom:265.170000px;}
.y26_c02114{bottom:282.315000px;}
.y25_c02114{bottom:299.595000px;}
.y24_c02114{bottom:316.875000px;}
.y23_c02114{bottom:334.155000px;}
.y22_c02114{bottom:351.435000px;}
.y21_c02114{bottom:368.715000px;}
.y20_c02114{bottom:385.815000px;}
.y1f_c02114{bottom:403.095000px;}
.y1e_c02114{bottom:420.375000px;}
.y1d_c02114{bottom:437.655000px;}
.y1c_c02114{bottom:461.775000px;}
.y1b_c02114{bottom:473.115000px;}
.y1a_c02114{bottom:499.215000px;}
.y19_c02114{bottom:518.115000px;}
.y18_c02114{bottom:537.225000px;}
.y17_c02114{bottom:556.125000px;}
.y16_c02114{bottom:575.205000px;}
.y15_c02114{bottom:594.105000px;}
.y14_c02114{bottom:613.005000px;}
.y13_c02114{bottom:632.085000px;}
.y12_c02114{bottom:661.605000px;}
.y11_c02114{bottom:692.745000px;}
.y10_c02114{bottom:723.705000px;}
.yf_c02114{bottom:754.845000px;}
.ye_c02114{bottom:785.805000px;}
.yd_c02114{bottom:816.990000px;}
.yc_c02114{bottom:847.950000px;}
.yb_c02114{bottom:879.090000px;}
.ya_c02114{bottom:910.050000px;}
.y9_c02114{bottom:941.190000px;}
.y8_c02114{bottom:972.150000px;}
.y7_c02114{bottom:1003.290000px;}
.y6_c02114{bottom:1034.250000px;}
.y5_c02114{bottom:1065.420000px;}
.y1_c02114{bottom:1121.400000px;}
.h3_c02114{height:22.500000px;}
.h7_c02114{height:38.158594px;}
.h2_c02114{height:48.871406px;}
.h8_c02114{height:53.573906px;}
.h1_c02114{height:58.651172px;}
.h6_c02114{height:65.010937px;}
.h4_c02114{height:70.664062px;}
.h5_c02114{height:71.225156px;}
.h0_c02114{height:1188.000000px;}
.w1_c02114{width:66.636000px;}
.w0_c02114{width:918.000000px;}
.x0_c02114{left:0.000000px;}
.x3_c02114{left:16.560000px;}
.x1_c02114{left:127.656000px;}
.x4_c02114{left:180.750000px;}
.x5_c02114{left:191.550000px;}
.x2_c02114{left:820.950000px;}
@media print{
.v2_c02114{vertical-align:-24.320000pt;}
.v0_c02114{vertical-align:0.000000pt;}
.v1_c02114{vertical-align:26.880000pt;}
.ls3_c02114{letter-spacing:0.000000pt;}
.ls0_c02114{letter-spacing:0.133333pt;}
.ls2_c02114{letter-spacing:0.265600pt;}
.ls1_c02114{letter-spacing:4.640000pt;}
.ws0_c02114{word-spacing:-16.000000pt;}
.ws1_c02114{word-spacing:-14.720000pt;}
.ws5_c02114{word-spacing:-13.545600pt;}
.ws4_c02114{word-spacing:-13.280000pt;}
.ws2_c02114{word-spacing:-9.280000pt;}
.ws3_c02114{word-spacing:-8.640000pt;}
.ws6_c02114{word-spacing:0.000000pt;}
._10_c02114{margin-left:-11.393707pt;}
._1_c02114{margin-left:-1.280000pt;}
._3_c02114{width:1.280000pt;}
._c_c02114{width:2.496000pt;}
._6_c02114{width:4.352000pt;}
._7_c02114{width:5.322667pt;}
._5_c02114{width:6.784000pt;}
._8_c02114{width:8.000000pt;}
._9_c02114{width:8.896000pt;}
._14_c02114{width:9.882134pt;}
._a_c02114{width:11.072000pt;}
._b_c02114{width:12.352000pt;}
._12_c02114{width:14.289068pt;}
._11_c02114{width:15.351468pt;}
._2_c02114{width:17.216000pt;}
._4_c02114{width:18.133333pt;}
._13_c02114{width:20.132268pt;}
._f_c02114{width:25.848497pt;}
._d_c02114{width:28.842667pt;}
._e_c02114{width:29.781333pt;}
._0_c02114{width:1334.165333pt;}
.fs4_c02114{font-size:34.560000pt;}
.fs3_c02114{font-size:37.120000pt;}
.fs0_c02114{font-size:53.120000pt;}
.fs1_c02114{font-size:58.880000pt;}
.fs2_c02114{font-size:64.000000pt;}
.y0_c02114{bottom:0.000000pt;}
.y4_c02114{bottom:4.160000pt;}
.y3_c02114{bottom:37.152000pt;}
.y2_c02114{bottom:67.072000pt;}
.y30_c02114{bottom:97.632000pt;}
.y2f_c02114{bottom:112.992000pt;}
.y2e_c02114{bottom:134.426667pt;}
.y2d_c02114{bottom:143.706667pt;}
.y2c_c02114{bottom:159.066667pt;}
.y2b_c02114{bottom:174.266667pt;}
.y2a_c02114{bottom:189.626667pt;}
.y29_c02114{bottom:204.986667pt;}
.y28_c02114{bottom:220.346667pt;}
.y27_c02114{bottom:235.706667pt;}
.y26_c02114{bottom:250.946667pt;}
.y25_c02114{bottom:266.306667pt;}
.y24_c02114{bottom:281.666667pt;}
.y23_c02114{bottom:297.026667pt;}
.y22_c02114{bottom:312.386667pt;}
.y21_c02114{bottom:327.746667pt;}
.y20_c02114{bottom:342.946667pt;}
.y1f_c02114{bottom:358.306667pt;}
.y1e_c02114{bottom:373.666667pt;}
.y1d_c02114{bottom:389.026667pt;}
.y1c_c02114{bottom:410.466667pt;}
.y1b_c02114{bottom:420.546667pt;}
.y1a_c02114{bottom:443.746667pt;}
.y19_c02114{bottom:460.546667pt;}
.y18_c02114{bottom:477.533333pt;}
.y17_c02114{bottom:494.333333pt;}
.y16_c02114{bottom:511.293333pt;}
.y15_c02114{bottom:528.093333pt;}
.y14_c02114{bottom:544.893333pt;}
.y13_c02114{bottom:561.853333pt;}
.y12_c02114{bottom:588.093333pt;}
.y11_c02114{bottom:615.773333pt;}
.y10_c02114{bottom:643.293333pt;}
.yf_c02114{bottom:670.973333pt;}
.ye_c02114{bottom:698.493333pt;}
.yd_c02114{bottom:726.213333pt;}
.yc_c02114{bottom:753.733333pt;}
.yb_c02114{bottom:781.413333pt;}
.ya_c02114{bottom:808.933333pt;}
.y9_c02114{bottom:836.613333pt;}
.y8_c02114{bottom:864.133333pt;}
.y7_c02114{bottom:891.813333pt;}
.y6_c02114{bottom:919.333333pt;}
.y5_c02114{bottom:947.040000pt;}
.y1_c02114{bottom:996.800000pt;}
.h3_c02114{height:20.000000pt;}
.h7_c02114{height:33.918750pt;}
.h2_c02114{height:43.441250pt;}
.h8_c02114{height:47.621250pt;}
.h1_c02114{height:52.134375pt;}
.h6_c02114{height:57.787500pt;}
.h4_c02114{height:62.812500pt;}
.h5_c02114{height:63.311250pt;}
.h0_c02114{height:1056.000000pt;}
.w1_c02114{width:59.232000pt;}
.w0_c02114{width:816.000000pt;}
.x0_c02114{left:0.000000pt;}
.x3_c02114{left:14.720000pt;}
.x1_c02114{left:113.472000pt;}
.x4_c02114{left:160.666667pt;}
.x5_c02114{left:170.266667pt;}
.x2_c02114{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02115 {
    display:none;
  }
  .loading-indicator_c02115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02115" -> "#page-container .classname_c02115")
 */
.pf_c02115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02115 {overflow:visible;}
  }
}
.c_c02115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02115:after { /* webkit #35443 */
  content: '';
}
.t_c02115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02115 { /* info for Javascript */
  display:none;
}
.l_c02115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02115:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02115 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02115.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02115;src:url('chunks/assets/font_6ac562f9d268419b10b8191e.woff2')format("woff");}.ff1_c02115{font-family:ff1_c02115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02115;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02115{font-family:ff2_c02115;line-height:0.863770;font-style:normal;font-weight: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_c02115;src:url('chunks/assets/font_8c967d4e5b61a94125a5620e.woff2')format("woff");}.ff3_c02115{font-family:ff3_c02115;line-height:1.402354;font-style:normal;font-weight: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_c02115;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff4_c02115{font-family:ff4_c02115;line-height:0.690918;font-style:normal;font-weight: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_c02115;src:url('chunks/assets/font_a50bb64070c5e91a7a6cdc90.woff2')format("woff");}.ff5_c02115{font-family:ff5_c02115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02115{vertical-align:-76.320000px;}
.v0_c02115{vertical-align:0.000000px;}
.ls4_c02115{letter-spacing:0.000000px;}
.ls0_c02115{letter-spacing:0.262080px;}
.ls2_c02115{letter-spacing:59.345280px;}
.ls1_c02115{letter-spacing:67.265280px;}
.ls3_c02115{letter-spacing:91.440000px;}
.sc__c02115{text-shadow:none;}
.sc0_c02115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02115{-webkit-text-stroke:0px transparent;}
.sc0_c02115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02115{word-spacing:-66.240000px;}
.ws1_c02115{word-spacing:-16.560000px;}
.ws2_c02115{word-spacing:0.000000px;}
._2_c02115{margin-left:-2.053175px;}
._7_c02115{margin-left:-1.024883px;}
._4_c02115{width:1.192188px;}
._3_c02115{width:2.583691px;}
._1_c02115{width:3.709175px;}
._6_c02115{width:4.836050px;}
._5_c02115{width:6.027575px;}
._c_c02115{width:7.617600px;}
._9_c02115{width:9.239437px;}
._8_c02115{width:10.301363px;}
._b_c02115{width:15.336000px;}
._10_c02115{width:20.728155px;}
._f_c02115{width:22.555829px;}
._e_c02115{width:27.786041px;}
._d_c02115{width:29.113788px;}
._a_c02115{width:39.844800px;}
._0_c02115{width:1500.936000px;}
.fc1_c02115{color:rgb(192,80,77);}
.fc0_c02115{color:rgb(0,0,0);}
.fs0_c02115{font-size:59.760000px;}
.fs1_c02115{font-size:66.240000px;}
.y0_c02115{bottom:0.000000px;}
.y4_c02115{bottom:4.680000px;}
.y3_c02115{bottom:41.796000px;}
.y2_c02115{bottom:75.456000px;}
.y34_c02115{bottom:145.296000px;}
.y33_c02115{bottom:164.190000px;}
.y32_c02115{bottom:183.270000px;}
.y31_c02115{bottom:203.430000px;}
.y30_c02115{bottom:222.330000px;}
.y2f_c02115{bottom:260.310000px;}
.y2e_c02115{bottom:279.255000px;}
.y2d_c02115{bottom:298.335000px;}
.y2c_c02115{bottom:317.235000px;}
.y2b_c02115{bottom:336.315000px;}
.y2a_c02115{bottom:356.295000px;}
.y29_c02115{bottom:375.375000px;}
.y28_c02115{bottom:394.275000px;}
.y27_c02115{bottom:413.355000px;}
.y26_c02115{bottom:433.515000px;}
.y25_c02115{bottom:452.415000px;}
.y24_c02115{bottom:471.495000px;}
.y23_c02115{bottom:491.475000px;}
.y22_c02115{bottom:510.555000px;}
.y21_c02115{bottom:529.455000px;}
.y20_c02115{bottom:548.565000px;}
.y1f_c02115{bottom:568.725000px;}
.y1e_c02115{bottom:587.625000px;}
.y1d_c02115{bottom:606.525000px;}
.y1c_c02115{bottom:625.605000px;}
.y1b_c02115{bottom:644.505000px;}
.y1a_c02115{bottom:663.585000px;}
.y19_c02115{bottom:683.745000px;}
.y18_c02115{bottom:702.645000px;}
.y17_c02115{bottom:721.725000px;}
.y16_c02115{bottom:741.705000px;}
.y15_c02115{bottom:760.785000px;}
.y14_c02115{bottom:779.865000px;}
.y13_c02115{bottom:799.890000px;}
.y12_c02115{bottom:818.970000px;}
.y11_c02115{bottom:837.870000px;}
.y10_c02115{bottom:856.950000px;}
.yf_c02115{bottom:877.110000px;}
.ye_c02115{bottom:896.010000px;}
.yd_c02115{bottom:914.910000px;}
.yc_c02115{bottom:933.990000px;}
.yb_c02115{bottom:952.890000px;}
.ya_c02115{bottom:971.970000px;}
.y9_c02115{bottom:990.870000px;}
.y8_c02115{bottom:1009.770000px;}
.y7_c02115{bottom:1028.850000px;}
.y6_c02115{bottom:1047.750000px;}
.y5_c02115{bottom:1066.860000px;}
.y1_c02115{bottom:1121.400000px;}
.h3_c02115{height:22.500000px;}
.h2_c02115{height:48.871406px;}
.h1_c02115{height:58.651172px;}
.h4_c02115{height:65.010937px;}
.h5_c02115{height:68.084282px;}
.h0_c02115{height:1188.000000px;}
.w1_c02115{width:66.636000px;}
.w0_c02115{width:918.000000px;}
.x0_c02115{left:0.000000px;}
.x3_c02115{left:16.560000px;}
.x1_c02115{left:127.656000px;}
.x4_c02115{left:191.550000px;}
.x5_c02115{left:218.550000px;}
.x6_c02115{left:245.550000px;}
.x7_c02115{left:272.550000px;}
.x2_c02115{left:820.950000px;}
@media print{
.v1_c02115{vertical-align:-67.840000pt;}
.v0_c02115{vertical-align:0.000000pt;}
.ls4_c02115{letter-spacing:0.000000pt;}
.ls0_c02115{letter-spacing:0.232960pt;}
.ls2_c02115{letter-spacing:52.751360pt;}
.ls1_c02115{letter-spacing:59.791360pt;}
.ls3_c02115{letter-spacing:81.280000pt;}
.ws0_c02115{word-spacing:-58.880000pt;}
.ws1_c02115{word-spacing:-14.720000pt;}
.ws2_c02115{word-spacing:0.000000pt;}
._2_c02115{margin-left:-1.825044pt;}
._7_c02115{margin-left:-0.911007pt;}
._4_c02115{width:1.059722pt;}
._3_c02115{width:2.296614pt;}
._1_c02115{width:3.297044pt;}
._6_c02115{width:4.298711pt;}
._5_c02115{width:5.357844pt;}
._c_c02115{width:6.771200pt;}
._9_c02115{width:8.212833pt;}
._8_c02115{width:9.156767pt;}
._b_c02115{width:13.632000pt;}
._10_c02115{width:18.425027pt;}
._f_c02115{width:20.049626pt;}
._e_c02115{width:24.698703pt;}
._d_c02115{width:25.878922pt;}
._a_c02115{width:35.417600pt;}
._0_c02115{width:1334.165333pt;}
.fs0_c02115{font-size:53.120000pt;}
.fs1_c02115{font-size:58.880000pt;}
.y0_c02115{bottom:0.000000pt;}
.y4_c02115{bottom:4.160000pt;}
.y3_c02115{bottom:37.152000pt;}
.y2_c02115{bottom:67.072000pt;}
.y34_c02115{bottom:129.152000pt;}
.y33_c02115{bottom:145.946667pt;}
.y32_c02115{bottom:162.906667pt;}
.y31_c02115{bottom:180.826667pt;}
.y30_c02115{bottom:197.626667pt;}
.y2f_c02115{bottom:231.386667pt;}
.y2e_c02115{bottom:248.226667pt;}
.y2d_c02115{bottom:265.186667pt;}
.y2c_c02115{bottom:281.986667pt;}
.y2b_c02115{bottom:298.946667pt;}
.y2a_c02115{bottom:316.706667pt;}
.y29_c02115{bottom:333.666667pt;}
.y28_c02115{bottom:350.466667pt;}
.y27_c02115{bottom:367.426667pt;}
.y26_c02115{bottom:385.346667pt;}
.y25_c02115{bottom:402.146667pt;}
.y24_c02115{bottom:419.106667pt;}
.y23_c02115{bottom:436.866667pt;}
.y22_c02115{bottom:453.826667pt;}
.y21_c02115{bottom:470.626667pt;}
.y20_c02115{bottom:487.613333pt;}
.y1f_c02115{bottom:505.533333pt;}
.y1e_c02115{bottom:522.333333pt;}
.y1d_c02115{bottom:539.133333pt;}
.y1c_c02115{bottom:556.093333pt;}
.y1b_c02115{bottom:572.893333pt;}
.y1a_c02115{bottom:589.853333pt;}
.y19_c02115{bottom:607.773333pt;}
.y18_c02115{bottom:624.573333pt;}
.y17_c02115{bottom:641.533333pt;}
.y16_c02115{bottom:659.293333pt;}
.y15_c02115{bottom:676.253333pt;}
.y14_c02115{bottom:693.213333pt;}
.y13_c02115{bottom:711.013333pt;}
.y12_c02115{bottom:727.973333pt;}
.y11_c02115{bottom:744.773333pt;}
.y10_c02115{bottom:761.733333pt;}
.yf_c02115{bottom:779.653333pt;}
.ye_c02115{bottom:796.453333pt;}
.yd_c02115{bottom:813.253333pt;}
.yc_c02115{bottom:830.213333pt;}
.yb_c02115{bottom:847.013333pt;}
.ya_c02115{bottom:863.973333pt;}
.y9_c02115{bottom:880.773333pt;}
.y8_c02115{bottom:897.573333pt;}
.y7_c02115{bottom:914.533333pt;}
.y6_c02115{bottom:931.333333pt;}
.y5_c02115{bottom:948.320000pt;}
.y1_c02115{bottom:996.800000pt;}
.h3_c02115{height:20.000000pt;}
.h2_c02115{height:43.441250pt;}
.h1_c02115{height:52.134375pt;}
.h4_c02115{height:57.787500pt;}
.h5_c02115{height:60.519362pt;}
.h0_c02115{height:1056.000000pt;}
.w1_c02115{width:59.232000pt;}
.w0_c02115{width:816.000000pt;}
.x0_c02115{left:0.000000pt;}
.x3_c02115{left:14.720000pt;}
.x1_c02115{left:113.472000pt;}
.x4_c02115{left:170.266667pt;}
.x5_c02115{left:194.266667pt;}
.x6_c02115{left:218.266667pt;}
.x7_c02115{left:242.266667pt;}
.x2_c02115{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02116 {
    display:none;
  }
  .loading-indicator_c02116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02116 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02116 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02116" -> "#page-container .classname_c02116")
 */
.pf_c02116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02116 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02116 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02116 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02116 {overflow:visible;}
  }
}
.c_c02116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02116 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02116:after { /* webkit #35443 */
  content: '';
}
.t_c02116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02116 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02116 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02116 { /* info for Javascript */
  display:none;
}
.l_c02116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02116:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02116 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02116.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02116;src:url('chunks/assets/font_7da4afe20321e9a3056c7af0.woff2')format("woff");}.ff1_c02116{font-family:ff1_c02116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02116;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02116{font-family:ff2_c02116;line-height:0.863770;font-style:normal;font-weight: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_c02116;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02116{font-family:ff3_c02116;line-height:0.690918;font-style:normal;font-weight: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_c02116;src:url('chunks/assets/font_746c23b5c47a4a24a87b3624.woff2')format("woff");}.ff4_c02116{font-family:ff4_c02116;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02116{vertical-align:-76.320000px;}
.v0_c02116{vertical-align:0.000000px;}
.ls5_c02116{letter-spacing:-0.612000px;}
.ls4_c02116{letter-spacing:0.000000px;}
.ls1_c02116{letter-spacing:0.262080px;}
.ls0_c02116{letter-spacing:59.345280px;}
.ls2_c02116{letter-spacing:67.265280px;}
.ls3_c02116{letter-spacing:91.440000px;}
.sc__c02116{text-shadow:none;}
.sc0_c02116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02116{-webkit-text-stroke:0px transparent;}
.sc0_c02116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02116{word-spacing:-66.240000px;}
.ws1_c02116{word-spacing:0.000000px;}
._1_c02116{margin-left:-1.687812px;}
._8_c02116{width:1.157429px;}
._9_c02116{width:3.179388px;}
._c_c02116{width:4.330129px;}
._b_c02116{width:5.365837px;}
._10_c02116{width:7.087812px;}
._12_c02116{width:8.544629px;}
._11_c02116{width:9.671371px;}
._5_c02116{width:11.334522px;}
._4_c02116{width:12.551437px;}
._7_c02116{width:14.242262px;}
._6_c02116{width:15.301175px;}
._f_c02116{width:18.018009px;}
._a_c02116{width:20.203200px;}
._e_c02116{width:27.886841px;}
._d_c02116{width:29.476866px;}
._3_c02116{width:63.786439px;}
._2_c02116{width:64.915266px;}
._0_c02116{width:1500.936000px;}
.fc1_c02116{color:rgb(192,80,77);}
.fc0_c02116{color:rgb(0,0,0);}
.fs0_c02116{font-size:59.760000px;}
.fs1_c02116{font-size:66.240000px;}
.y0_c02116{bottom:0.000000px;}
.y4_c02116{bottom:4.680000px;}
.y3_c02116{bottom:41.796000px;}
.y2_c02116{bottom:75.456000px;}
.y34_c02116{bottom:141.696000px;}
.y33_c02116{bottom:160.590000px;}
.y32_c02116{bottom:179.670000px;}
.y31_c02116{bottom:199.830000px;}
.y30_c02116{bottom:218.730000px;}
.y2f_c02116{bottom:237.810000px;}
.y2e_c02116{bottom:257.970000px;}
.y2d_c02116{bottom:276.915000px;}
.y2c_c02116{bottom:295.815000px;}
.y2b_c02116{bottom:314.895000px;}
.y2a_c02116{bottom:333.975000px;}
.y29_c02116{bottom:353.955000px;}
.y28_c02116{bottom:373.035000px;}
.y27_c02116{bottom:411.015000px;}
.y26_c02116{bottom:429.915000px;}
.y25_c02116{bottom:448.815000px;}
.y24_c02116{bottom:467.895000px;}
.y23_c02116{bottom:486.975000px;}
.y22_c02116{bottom:506.955000px;}
.y21_c02116{bottom:526.035000px;}
.y20_c02116{bottom:545.145000px;}
.y1f_c02116{bottom:565.125000px;}
.y1e_c02116{bottom:584.025000px;}
.y1d_c02116{bottom:603.105000px;}
.y1c_c02116{bottom:623.265000px;}
.y1b_c02116{bottom:642.165000px;}
.y1a_c02116{bottom:661.245000px;}
.y19_c02116{bottom:681.405000px;}
.y18_c02116{bottom:700.305000px;}
.y17_c02116{bottom:719.205000px;}
.y16_c02116{bottom:738.285000px;}
.y15_c02116{bottom:757.365000px;}
.y14_c02116{bottom:777.345000px;}
.y13_c02116{bottom:796.470000px;}
.y12_c02116{bottom:815.550000px;}
.y11_c02116{bottom:835.530000px;}
.y10_c02116{bottom:854.430000px;}
.yf_c02116{bottom:873.510000px;}
.ye_c02116{bottom:892.590000px;}
.yd_c02116{bottom:912.570000px;}
.yc_c02116{bottom:931.650000px;}
.yb_c02116{bottom:950.550000px;}
.ya_c02116{bottom:969.630000px;}
.y9_c02116{bottom:989.610000px;}
.y8_c02116{bottom:1008.690000px;}
.y7_c02116{bottom:1027.590000px;}
.y6_c02116{bottom:1046.670000px;}
.y5_c02116{bottom:1065.780000px;}
.y1_c02116{bottom:1121.400000px;}
.h3_c02116{height:22.500000px;}
.h2_c02116{height:48.871406px;}
.h1_c02116{height:58.651172px;}
.h5_c02116{height:65.010937px;}
.h4_c02116{height:68.084282px;}
.h0_c02116{height:1188.000000px;}
.w1_c02116{width:66.636000px;}
.w0_c02116{width:918.000000px;}
.x0_c02116{left:0.000000px;}
.x3_c02116{left:16.560000px;}
.x1_c02116{left:127.656000px;}
.x6_c02116{left:191.550000px;}
.x7_c02116{left:218.550000px;}
.x4_c02116{left:245.550000px;}
.x5_c02116{left:272.550000px;}
.x2_c02116{left:820.950000px;}
@media print{
.v1_c02116{vertical-align:-67.840000pt;}
.v0_c02116{vertical-align:0.000000pt;}
.ls5_c02116{letter-spacing:-0.544000pt;}
.ls4_c02116{letter-spacing:0.000000pt;}
.ls1_c02116{letter-spacing:0.232960pt;}
.ls0_c02116{letter-spacing:52.751360pt;}
.ls2_c02116{letter-spacing:59.791360pt;}
.ls3_c02116{letter-spacing:81.280000pt;}
.ws0_c02116{word-spacing:-58.880000pt;}
.ws1_c02116{word-spacing:0.000000pt;}
._1_c02116{margin-left:-1.500278pt;}
._8_c02116{width:1.028826pt;}
._9_c02116{width:2.826122pt;}
._c_c02116{width:3.849004pt;}
._b_c02116{width:4.769633pt;}
._10_c02116{width:6.300278pt;}
._12_c02116{width:7.595226pt;}
._11_c02116{width:8.596774pt;}
._5_c02116{width:10.075131pt;}
._4_c02116{width:11.156833pt;}
._7_c02116{width:12.659789pt;}
._6_c02116{width:13.601044pt;}
._f_c02116{width:16.016008pt;}
._a_c02116{width:17.958400pt;}
._e_c02116{width:24.788303pt;}
._d_c02116{width:26.201659pt;}
._3_c02116{width:56.699057pt;}
._2_c02116{width:57.702459pt;}
._0_c02116{width:1334.165333pt;}
.fs0_c02116{font-size:53.120000pt;}
.fs1_c02116{font-size:58.880000pt;}
.y0_c02116{bottom:0.000000pt;}
.y4_c02116{bottom:4.160000pt;}
.y3_c02116{bottom:37.152000pt;}
.y2_c02116{bottom:67.072000pt;}
.y34_c02116{bottom:125.952000pt;}
.y33_c02116{bottom:142.746667pt;}
.y32_c02116{bottom:159.706667pt;}
.y31_c02116{bottom:177.626667pt;}
.y30_c02116{bottom:194.426667pt;}
.y2f_c02116{bottom:211.386667pt;}
.y2e_c02116{bottom:229.306667pt;}
.y2d_c02116{bottom:246.146667pt;}
.y2c_c02116{bottom:262.946667pt;}
.y2b_c02116{bottom:279.906667pt;}
.y2a_c02116{bottom:296.866667pt;}
.y29_c02116{bottom:314.626667pt;}
.y28_c02116{bottom:331.586667pt;}
.y27_c02116{bottom:365.346667pt;}
.y26_c02116{bottom:382.146667pt;}
.y25_c02116{bottom:398.946667pt;}
.y24_c02116{bottom:415.906667pt;}
.y23_c02116{bottom:432.866667pt;}
.y22_c02116{bottom:450.626667pt;}
.y21_c02116{bottom:467.586667pt;}
.y20_c02116{bottom:484.573333pt;}
.y1f_c02116{bottom:502.333333pt;}
.y1e_c02116{bottom:519.133333pt;}
.y1d_c02116{bottom:536.093333pt;}
.y1c_c02116{bottom:554.013333pt;}
.y1b_c02116{bottom:570.813333pt;}
.y1a_c02116{bottom:587.773333pt;}
.y19_c02116{bottom:605.693333pt;}
.y18_c02116{bottom:622.493333pt;}
.y17_c02116{bottom:639.293333pt;}
.y16_c02116{bottom:656.253333pt;}
.y15_c02116{bottom:673.213333pt;}
.y14_c02116{bottom:690.973333pt;}
.y13_c02116{bottom:707.973333pt;}
.y12_c02116{bottom:724.933333pt;}
.y11_c02116{bottom:742.693333pt;}
.y10_c02116{bottom:759.493333pt;}
.yf_c02116{bottom:776.453333pt;}
.ye_c02116{bottom:793.413333pt;}
.yd_c02116{bottom:811.173333pt;}
.yc_c02116{bottom:828.133333pt;}
.yb_c02116{bottom:844.933333pt;}
.ya_c02116{bottom:861.893333pt;}
.y9_c02116{bottom:879.653333pt;}
.y8_c02116{bottom:896.613333pt;}
.y7_c02116{bottom:913.413333pt;}
.y6_c02116{bottom:930.373333pt;}
.y5_c02116{bottom:947.360000pt;}
.y1_c02116{bottom:996.800000pt;}
.h3_c02116{height:20.000000pt;}
.h2_c02116{height:43.441250pt;}
.h1_c02116{height:52.134375pt;}
.h5_c02116{height:57.787500pt;}
.h4_c02116{height:60.519362pt;}
.h0_c02116{height:1056.000000pt;}
.w1_c02116{width:59.232000pt;}
.w0_c02116{width:816.000000pt;}
.x0_c02116{left:0.000000pt;}
.x3_c02116{left:14.720000pt;}
.x1_c02116{left:113.472000pt;}
.x6_c02116{left:170.266667pt;}
.x7_c02116{left:194.266667pt;}
.x4_c02116{left:218.266667pt;}
.x5_c02116{left:242.266667pt;}
.x2_c02116{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02117 {
    display:none;
  }
  .loading-indicator_c02117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02117 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02117 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02117" -> "#page-container .classname_c02117")
 */
.pf_c02117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02117 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02117 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02117 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02117 {overflow:visible;}
  }
}
.c_c02117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02117 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02117:after { /* webkit #35443 */
  content: '';
}
.t_c02117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02117 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02117 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02117 { /* info for Javascript */
  display:none;
}
.l_c02117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02117:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02117 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02117.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02117;src:url('chunks/assets/font_ed71e7d6f41da3507a46e207.woff2')format("woff");}.ff1_c02117{font-family:ff1_c02117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02117;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff2_c02117{font-family:ff2_c02117;line-height:0.863770;font-style:normal;font-weight: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_c02117;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff3_c02117{font-family:ff3_c02117;line-height:0.690918;font-style:normal;font-weight: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_c02117;src:url('chunks/assets/font_f1554d2b9cf6052e5849b607.woff2')format("woff");}.ff4_c02117{font-family:ff4_c02117;line-height:1.402354;font-style:normal;font-weight: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_c02117;src:url('chunks/assets/font_eb8ead61f9db763b5d1c8105.woff2')format("woff");}.ff5_c02117{font-family:ff5_c02117;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02117{vertical-align:-75.600000px;}
.v0_c02117{vertical-align:0.000000px;}
.ls4_c02117{letter-spacing:0.000000px;}
.ls2_c02117{letter-spacing:0.262080px;}
.ls0_c02117{letter-spacing:59.345280px;}
.ls3_c02117{letter-spacing:67.265280px;}
.ls1_c02117{letter-spacing:91.440000px;}
.sc__c02117{text-shadow:none;}
.sc0_c02117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02117{-webkit-text-stroke:0px transparent;}
.sc0_c02117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02117{word-spacing:-66.240000px;}
.ws1_c02117{word-spacing:0.000000px;}
._1_c02117{margin-left:-1.224000px;}
._4_c02117{width:1.048977px;}
._5_c02117{width:2.649600px;}
._6_c02117{width:3.807625px;}
._b_c02117{width:5.034041px;}
._c_c02117{width:6.237887px;}
._10_c02117{width:7.540629px;}
._12_c02117{width:8.610443px;}
._2_c02117{width:10.038606px;}
._3_c02117{width:11.128254px;}
._13_c02117{width:12.276379px;}
._11_c02117{width:14.705412px;}
._a_c02117{width:17.752254px;}
._f_c02117{width:21.461959px;}
._d_c02117{width:22.986605px;}
._e_c02117{width:24.136813px;}
._9_c02117{width:26.524932px;}
._8_c02117{width:28.152000px;}
._7_c02117{width:36.630720px;}
._0_c02117{width:1500.936000px;}
.fc1_c02117{color:rgb(192,80,77);}
.fc0_c02117{color:rgb(0,0,0);}
.fs0_c02117{font-size:59.760000px;}
.fs1_c02117{font-size:66.240000px;}
.fs2_c02117{font-size:72.000000px;}
.y0_c02117{bottom:0.000000px;}
.y4_c02117{bottom:4.680000px;}
.y3_c02117{bottom:41.796000px;}
.y2_c02117{bottom:75.456000px;}
.y31_c02117{bottom:134.856000px;}
.y30_c02117{bottom:165.990000px;}
.y2f_c02117{bottom:196.950000px;}
.y2e_c02117{bottom:228.090000px;}
.y2d_c02117{bottom:257.970000px;}
.y2c_c02117{bottom:276.915000px;}
.y2b_c02117{bottom:295.995000px;}
.y2a_c02117{bottom:315.975000px;}
.y29_c02117{bottom:335.055000px;}
.y28_c02117{bottom:354.135000px;}
.y27_c02117{bottom:374.115000px;}
.y26_c02117{bottom:393.195000px;}
.y25_c02117{bottom:412.275000px;}
.y24_c02117{bottom:432.255000px;}
.y23_c02117{bottom:451.155000px;}
.y22_c02117{bottom:470.235000px;}
.y21_c02117{bottom:489.315000px;}
.y20_c02117{bottom:509.295000px;}
.y1f_c02117{bottom:528.375000px;}
.y1e_c02117{bottom:566.385000px;}
.y1d_c02117{bottom:585.285000px;}
.y1c_c02117{bottom:604.185000px;}
.y1b_c02117{bottom:623.265000px;}
.y1a_c02117{bottom:643.425000px;}
.y19_c02117{bottom:662.325000px;}
.y18_c02117{bottom:681.405000px;}
.y17_c02117{bottom:700.485000px;}
.y16_c02117{bottom:720.465000px;}
.y15_c02117{bottom:739.365000px;}
.y14_c02117{bottom:758.445000px;}
.y13_c02117{bottom:777.525000px;}
.y12_c02117{bottom:797.550000px;}
.y11_c02117{bottom:816.630000px;}
.y10_c02117{bottom:835.530000px;}
.yf_c02117{bottom:854.430000px;}
.ye_c02117{bottom:873.510000px;}
.yd_c02117{bottom:893.670000px;}
.yc_c02117{bottom:912.570000px;}
.yb_c02117{bottom:950.550000px;}
.ya_c02117{bottom:969.450000px;}
.y9_c02117{bottom:988.530000px;}
.y8_c02117{bottom:1008.690000px;}
.y7_c02117{bottom:1027.590000px;}
.y6_c02117{bottom:1046.670000px;}
.y5_c02117{bottom:1065.780000px;}
.y1_c02117{bottom:1121.400000px;}
.h3_c02117{height:22.500000px;}
.h2_c02117{height:48.871406px;}
.h1_c02117{height:58.651172px;}
.h5_c02117{height:65.010937px;}
.h4_c02117{height:68.084282px;}
.h6_c02117{height:70.664062px;}
.h0_c02117{height:1188.000000px;}
.w1_c02117{width:66.636000px;}
.w0_c02117{width:918.000000px;}
.x0_c02117{left:0.000000px;}
.x3_c02117{left:16.560000px;}
.x1_c02117{left:127.656000px;}
.x8_c02117{left:180.750000px;}
.x6_c02117{left:191.550000px;}
.x7_c02117{left:218.550000px;}
.x4_c02117{left:245.550000px;}
.x5_c02117{left:272.550000px;}
.x2_c02117{left:820.950000px;}
@media print{
.v1_c02117{vertical-align:-67.200000pt;}
.v0_c02117{vertical-align:0.000000pt;}
.ls4_c02117{letter-spacing:0.000000pt;}
.ls2_c02117{letter-spacing:0.232960pt;}
.ls0_c02117{letter-spacing:52.751360pt;}
.ls3_c02117{letter-spacing:59.791360pt;}
.ls1_c02117{letter-spacing:81.280000pt;}
.ws0_c02117{word-spacing:-58.880000pt;}
.ws1_c02117{word-spacing:0.000000pt;}
._1_c02117{margin-left:-1.088000pt;}
._4_c02117{width:0.932424pt;}
._5_c02117{width:2.355200pt;}
._6_c02117{width:3.384556pt;}
._b_c02117{width:4.474703pt;}
._c_c02117{width:5.544788pt;}
._10_c02117{width:6.702781pt;}
._12_c02117{width:7.653727pt;}
._2_c02117{width:8.923205pt;}
._3_c02117{width:9.891781pt;}
._13_c02117{width:10.912337pt;}
._11_c02117{width:13.071478pt;}
._a_c02117{width:15.779781pt;}
._f_c02117{width:19.077297pt;}
._d_c02117{width:20.432538pt;}
._e_c02117{width:21.454945pt;}
._9_c02117{width:23.577718pt;}
._8_c02117{width:25.024000pt;}
._7_c02117{width:32.560640pt;}
._0_c02117{width:1334.165333pt;}
.fs0_c02117{font-size:53.120000pt;}
.fs1_c02117{font-size:58.880000pt;}
.fs2_c02117{font-size:64.000000pt;}
.y0_c02117{bottom:0.000000pt;}
.y4_c02117{bottom:4.160000pt;}
.y3_c02117{bottom:37.152000pt;}
.y2_c02117{bottom:67.072000pt;}
.y31_c02117{bottom:119.872000pt;}
.y30_c02117{bottom:147.546667pt;}
.y2f_c02117{bottom:175.066667pt;}
.y2e_c02117{bottom:202.746667pt;}
.y2d_c02117{bottom:229.306667pt;}
.y2c_c02117{bottom:246.146667pt;}
.y2b_c02117{bottom:263.106667pt;}
.y2a_c02117{bottom:280.866667pt;}
.y29_c02117{bottom:297.826667pt;}
.y28_c02117{bottom:314.786667pt;}
.y27_c02117{bottom:332.546667pt;}
.y26_c02117{bottom:349.506667pt;}
.y25_c02117{bottom:366.466667pt;}
.y24_c02117{bottom:384.226667pt;}
.y23_c02117{bottom:401.026667pt;}
.y22_c02117{bottom:417.986667pt;}
.y21_c02117{bottom:434.946667pt;}
.y20_c02117{bottom:452.706667pt;}
.y1f_c02117{bottom:469.666667pt;}
.y1e_c02117{bottom:503.453333pt;}
.y1d_c02117{bottom:520.253333pt;}
.y1c_c02117{bottom:537.053333pt;}
.y1b_c02117{bottom:554.013333pt;}
.y1a_c02117{bottom:571.933333pt;}
.y19_c02117{bottom:588.733333pt;}
.y18_c02117{bottom:605.693333pt;}
.y17_c02117{bottom:622.653333pt;}
.y16_c02117{bottom:640.413333pt;}
.y15_c02117{bottom:657.213333pt;}
.y14_c02117{bottom:674.173333pt;}
.y13_c02117{bottom:691.133333pt;}
.y12_c02117{bottom:708.933333pt;}
.y11_c02117{bottom:725.893333pt;}
.y10_c02117{bottom:742.693333pt;}
.yf_c02117{bottom:759.493333pt;}
.ye_c02117{bottom:776.453333pt;}
.yd_c02117{bottom:794.373333pt;}
.yc_c02117{bottom:811.173333pt;}
.yb_c02117{bottom:844.933333pt;}
.ya_c02117{bottom:861.733333pt;}
.y9_c02117{bottom:878.693333pt;}
.y8_c02117{bottom:896.613333pt;}
.y7_c02117{bottom:913.413333pt;}
.y6_c02117{bottom:930.373333pt;}
.y5_c02117{bottom:947.360000pt;}
.y1_c02117{bottom:996.800000pt;}
.h3_c02117{height:20.000000pt;}
.h2_c02117{height:43.441250pt;}
.h1_c02117{height:52.134375pt;}
.h5_c02117{height:57.787500pt;}
.h4_c02117{height:60.519362pt;}
.h6_c02117{height:62.812500pt;}
.h0_c02117{height:1056.000000pt;}
.w1_c02117{width:59.232000pt;}
.w0_c02117{width:816.000000pt;}
.x0_c02117{left:0.000000pt;}
.x3_c02117{left:14.720000pt;}
.x1_c02117{left:113.472000pt;}
.x8_c02117{left:160.666667pt;}
.x6_c02117{left:170.266667pt;}
.x7_c02117{left:194.266667pt;}
.x4_c02117{left:218.266667pt;}
.x5_c02117{left:242.266667pt;}
.x2_c02117{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02118 {
    display:none;
  }
  .loading-indicator_c02118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02118 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02118 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02118" -> "#page-container .classname_c02118")
 */
.pf_c02118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02118 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02118 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02118 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02118 {overflow:visible;}
  }
}
.c_c02118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02118 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02118:after { /* webkit #35443 */
  content: '';
}
.t_c02118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02118 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02118 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02118 { /* info for Javascript */
  display:none;
}
.l_c02118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02118:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02118 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02118.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02118;src:url('chunks/assets/font_69d1f681b0832420defe0673.woff2')format("woff");}.ff1_c02118{font-family:ff1_c02118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02118;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff2_c02118{font-family:ff2_c02118;line-height:0.863770;font-style:normal;font-weight: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_c02118;src:url('chunks/assets/font_3a4ef560a001110a0bc0edd1.woff2')format("woff");}.ff3_c02118{font-family:ff3_c02118;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02118{vertical-align:0.000000px;}
.ls0_c02118{letter-spacing:0.000000px;}
.sc__c02118{text-shadow:none;}
.sc0_c02118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02118{-webkit-text-stroke:0px transparent;}
.sc0_c02118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02118{word-spacing:0.000000px;}
._f_c02118{margin-left:-2.832000px;}
._3_c02118{margin-left:-1.464000px;}
._6_c02118{width:1.032000px;}
._a_c02118{width:2.088000px;}
._10_c02118{width:3.360000px;}
._e_c02118{width:4.464000px;}
._15_c02118{width:5.592000px;}
._4_c02118{width:6.624000px;}
._5_c02118{width:8.064000px;}
._13_c02118{width:9.120000px;}
._16_c02118{width:10.248000px;}
._8_c02118{width:11.448000px;}
._9_c02118{width:12.672000px;}
._14_c02118{width:14.760000px;}
._b_c02118{width:15.792000px;}
._11_c02118{width:16.824000px;}
._12_c02118{width:19.308000px;}
._c_c02118{width:20.808000px;}
._1_c02118{width:22.392000px;}
._2_c02118{width:24.348000px;}
._d_c02118{width:25.716024px;}
._7_c02118{width:27.144000px;}
._17_c02118{width:28.440000px;}
._18_c02118{width:29.880000px;}
._19_c02118{width:31.392000px;}
._1b_c02118{width:36.360000px;}
._1c_c02118{width:37.872000px;}
._1a_c02118{width:40.968000px;}
._0_c02118{width:1500.936000px;}
.fc1_c02118{color:rgb(192,80,77);}
.fc0_c02118{color:rgb(0,0,0);}
.fs0_c02118{font-size:59.760000px;}
.fs1_c02118{font-size:66.240000px;}
.fs2_c02118{font-size:72.000000px;}
.y0_c02118{bottom:0.000000px;}
.y4_c02118{bottom:4.680000px;}
.y3_c02118{bottom:41.796000px;}
.y2_c02118{bottom:75.456000px;}
.y23_c02118{bottom:133.776000px;}
.y22_c02118{bottom:164.910000px;}
.y21_c02118{bottom:195.870000px;}
.y20_c02118{bottom:226.830000px;}
.y1f_c02118{bottom:257.970000px;}
.y1e_c02118{bottom:288.975000px;}
.y1d_c02118{bottom:320.115000px;}
.y1c_c02118{bottom:351.075000px;}
.y1b_c02118{bottom:382.215000px;}
.y1a_c02118{bottom:413.175000px;}
.y19_c02118{bottom:444.315000px;}
.y18_c02118{bottom:475.275000px;}
.y17_c02118{bottom:506.415000px;}
.y16_c02118{bottom:537.405000px;}
.y15_c02118{bottom:568.545000px;}
.y14_c02118{bottom:599.505000px;}
.y13_c02118{bottom:630.645000px;}
.y12_c02118{bottom:661.605000px;}
.y11_c02118{bottom:692.745000px;}
.y10_c02118{bottom:723.705000px;}
.yf_c02118{bottom:754.845000px;}
.ye_c02118{bottom:785.805000px;}
.yd_c02118{bottom:816.990000px;}
.yc_c02118{bottom:847.950000px;}
.yb_c02118{bottom:879.090000px;}
.ya_c02118{bottom:910.050000px;}
.y9_c02118{bottom:941.190000px;}
.y8_c02118{bottom:972.150000px;}
.y7_c02118{bottom:1003.290000px;}
.y6_c02118{bottom:1034.250000px;}
.y5_c02118{bottom:1065.420000px;}
.y1_c02118{bottom:1121.400000px;}
.h3_c02118{height:22.500000px;}
.h2_c02118{height:48.871406px;}
.h1_c02118{height:58.651172px;}
.h5_c02118{height:64.546875px;}
.h4_c02118{height:70.664062px;}
.h0_c02118{height:1188.000000px;}
.w1_c02118{width:66.636000px;}
.w0_c02118{width:918.000000px;}
.x0_c02118{left:0.000000px;}
.x3_c02118{left:16.560000px;}
.x1_c02118{left:127.656000px;}
.x4_c02118{left:180.750000px;}
.x2_c02118{left:820.950000px;}
@media print{
.v0_c02118{vertical-align:0.000000pt;}
.ls0_c02118{letter-spacing:0.000000pt;}
.ws0_c02118{word-spacing:0.000000pt;}
._f_c02118{margin-left:-2.517333pt;}
._3_c02118{margin-left:-1.301333pt;}
._6_c02118{width:0.917333pt;}
._a_c02118{width:1.856000pt;}
._10_c02118{width:2.986667pt;}
._e_c02118{width:3.968000pt;}
._15_c02118{width:4.970667pt;}
._4_c02118{width:5.888000pt;}
._5_c02118{width:7.168000pt;}
._13_c02118{width:8.106667pt;}
._16_c02118{width:9.109333pt;}
._8_c02118{width:10.176000pt;}
._9_c02118{width:11.264000pt;}
._14_c02118{width:13.120000pt;}
._b_c02118{width:14.037333pt;}
._11_c02118{width:14.954667pt;}
._12_c02118{width:17.162667pt;}
._c_c02118{width:18.496000pt;}
._1_c02118{width:19.904000pt;}
._2_c02118{width:21.642667pt;}
._d_c02118{width:22.858688pt;}
._7_c02118{width:24.128000pt;}
._17_c02118{width:25.280000pt;}
._18_c02118{width:26.560000pt;}
._19_c02118{width:27.904000pt;}
._1b_c02118{width:32.320000pt;}
._1c_c02118{width:33.664000pt;}
._1a_c02118{width:36.416000pt;}
._0_c02118{width:1334.165333pt;}
.fs0_c02118{font-size:53.120000pt;}
.fs1_c02118{font-size:58.880000pt;}
.fs2_c02118{font-size:64.000000pt;}
.y0_c02118{bottom:0.000000pt;}
.y4_c02118{bottom:4.160000pt;}
.y3_c02118{bottom:37.152000pt;}
.y2_c02118{bottom:67.072000pt;}
.y23_c02118{bottom:118.912000pt;}
.y22_c02118{bottom:146.586667pt;}
.y21_c02118{bottom:174.106667pt;}
.y20_c02118{bottom:201.626667pt;}
.y1f_c02118{bottom:229.306667pt;}
.y1e_c02118{bottom:256.866667pt;}
.y1d_c02118{bottom:284.546667pt;}
.y1c_c02118{bottom:312.066667pt;}
.y1b_c02118{bottom:339.746667pt;}
.y1a_c02118{bottom:367.266667pt;}
.y19_c02118{bottom:394.946667pt;}
.y18_c02118{bottom:422.466667pt;}
.y17_c02118{bottom:450.146667pt;}
.y16_c02118{bottom:477.693333pt;}
.y15_c02118{bottom:505.373333pt;}
.y14_c02118{bottom:532.893333pt;}
.y13_c02118{bottom:560.573333pt;}
.y12_c02118{bottom:588.093333pt;}
.y11_c02118{bottom:615.773333pt;}
.y10_c02118{bottom:643.293333pt;}
.yf_c02118{bottom:670.973333pt;}
.ye_c02118{bottom:698.493333pt;}
.yd_c02118{bottom:726.213333pt;}
.yc_c02118{bottom:753.733333pt;}
.yb_c02118{bottom:781.413333pt;}
.ya_c02118{bottom:808.933333pt;}
.y9_c02118{bottom:836.613333pt;}
.y8_c02118{bottom:864.133333pt;}
.y7_c02118{bottom:891.813333pt;}
.y6_c02118{bottom:919.333333pt;}
.y5_c02118{bottom:947.040000pt;}
.y1_c02118{bottom:996.800000pt;}
.h3_c02118{height:20.000000pt;}
.h2_c02118{height:43.441250pt;}
.h1_c02118{height:52.134375pt;}
.h5_c02118{height:57.375000pt;}
.h4_c02118{height:62.812500pt;}
.h0_c02118{height:1056.000000pt;}
.w1_c02118{width:59.232000pt;}
.w0_c02118{width:816.000000pt;}
.x0_c02118{left:0.000000pt;}
.x3_c02118{left:14.720000pt;}
.x1_c02118{left:113.472000pt;}
.x4_c02118{left:160.666667pt;}
.x2_c02118{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02119 {
    display:none;
  }
  .loading-indicator_c02119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02119 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02119 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02119" -> "#page-container .classname_c02119")
 */
.pf_c02119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02119 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02119 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02119 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02119 {overflow:visible;}
  }
}
.c_c02119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02119 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02119:after { /* webkit #35443 */
  content: '';
}
.t_c02119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02119 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02119 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02119 { /* info for Javascript */
  display:none;
}
.l_c02119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02119:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02119 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02119.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02119;src:url('chunks/assets/font_8665251daa7d1f3d74e22c05.woff2')format("woff");}.ff1_c02119{font-family:ff1_c02119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02119;src:url('chunks/assets/font_a17a95125dabf4b367b0345e.woff2')format("woff");}.ff2_c02119{font-family:ff2_c02119;line-height:0.863770;font-style:normal;font-weight: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_c02119;src:url('chunks/assets/font_ad58be4393149f3700c0a45b.woff2')format("woff");}.ff3_c02119{font-family:ff3_c02119;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02119{vertical-align:0.000000px;}
.ls1_c02119{letter-spacing:-0.216000px;}
.ls0_c02119{letter-spacing:0.000000px;}
.sc__c02119{text-shadow:none;}
.sc0_c02119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02119{-webkit-text-stroke:0px transparent;}
.sc0_c02119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02119{word-spacing:-17.784000px;}
.ws1_c02119{word-spacing:0.000000px;}
._6_c02119{margin-left:-1.440000px;}
._1_c02119{width:1.080000px;}
._9_c02119{width:2.376000px;}
._a_c02119{width:3.960000px;}
._c_c02119{width:5.760000px;}
._7_c02119{width:6.984000px;}
._8_c02119{width:8.508000px;}
._f_c02119{width:10.872000px;}
._4_c02119{width:12.240000px;}
._5_c02119{width:13.752000px;}
._d_c02119{width:14.760000px;}
._10_c02119{width:16.992000px;}
._b_c02119{width:19.800000px;}
._e_c02119{width:21.672000px;}
._2_c02119{width:23.544000px;}
._3_c02119{width:24.696000px;}
._11_c02119{width:26.568000px;}
._12_c02119{width:27.792000px;}
._13_c02119{width:28.944000px;}
._0_c02119{width:1500.936000px;}
.fc1_c02119{color:rgb(192,80,77);}
.fc0_c02119{color:rgb(0,0,0);}
.fs0_c02119{font-size:59.760000px;}
.fs1_c02119{font-size:66.240000px;}
.fs2_c02119{font-size:72.000000px;}
.y0_c02119{bottom:0.000000px;}
.y4_c02119{bottom:4.680000px;}
.y3_c02119{bottom:41.796000px;}
.y2_c02119{bottom:75.456000px;}
.y23_c02119{bottom:133.776000px;}
.y22_c02119{bottom:164.910000px;}
.y21_c02119{bottom:195.870000px;}
.y20_c02119{bottom:226.830000px;}
.y1f_c02119{bottom:257.970000px;}
.y1e_c02119{bottom:288.975000px;}
.y1d_c02119{bottom:320.115000px;}
.y1c_c02119{bottom:351.075000px;}
.y1b_c02119{bottom:382.215000px;}
.y1a_c02119{bottom:413.175000px;}
.y19_c02119{bottom:444.315000px;}
.y18_c02119{bottom:475.275000px;}
.y17_c02119{bottom:506.415000px;}
.y16_c02119{bottom:537.405000px;}
.y15_c02119{bottom:568.545000px;}
.y14_c02119{bottom:599.505000px;}
.y13_c02119{bottom:630.645000px;}
.y12_c02119{bottom:661.605000px;}
.y11_c02119{bottom:692.745000px;}
.y10_c02119{bottom:723.705000px;}
.yf_c02119{bottom:754.845000px;}
.ye_c02119{bottom:785.805000px;}
.yd_c02119{bottom:816.990000px;}
.yc_c02119{bottom:847.950000px;}
.yb_c02119{bottom:879.090000px;}
.ya_c02119{bottom:910.050000px;}
.y9_c02119{bottom:941.190000px;}
.y8_c02119{bottom:972.150000px;}
.y7_c02119{bottom:1003.290000px;}
.y6_c02119{bottom:1034.250000px;}
.y5_c02119{bottom:1065.420000px;}
.y1_c02119{bottom:1121.400000px;}
.h3_c02119{height:22.500000px;}
.h2_c02119{height:48.871406px;}
.h1_c02119{height:58.651172px;}
.h4_c02119{height:64.546875px;}
.h5_c02119{height:70.664062px;}
.h0_c02119{height:1188.000000px;}
.w1_c02119{width:66.636000px;}
.w0_c02119{width:918.000000px;}
.x0_c02119{left:0.000000px;}
.x3_c02119{left:16.560000px;}
.x1_c02119{left:127.656000px;}
.x4_c02119{left:180.750000px;}
.x2_c02119{left:820.950000px;}
@media print{
.v0_c02119{vertical-align:0.000000pt;}
.ls1_c02119{letter-spacing:-0.192000pt;}
.ls0_c02119{letter-spacing:0.000000pt;}
.ws0_c02119{word-spacing:-15.808000pt;}
.ws1_c02119{word-spacing:0.000000pt;}
._6_c02119{margin-left:-1.280000pt;}
._1_c02119{width:0.960000pt;}
._9_c02119{width:2.112000pt;}
._a_c02119{width:3.520000pt;}
._c_c02119{width:5.120000pt;}
._7_c02119{width:6.208000pt;}
._8_c02119{width:7.562667pt;}
._f_c02119{width:9.664000pt;}
._4_c02119{width:10.880000pt;}
._5_c02119{width:12.224000pt;}
._d_c02119{width:13.120000pt;}
._10_c02119{width:15.104000pt;}
._b_c02119{width:17.600000pt;}
._e_c02119{width:19.264000pt;}
._2_c02119{width:20.928000pt;}
._3_c02119{width:21.952000pt;}
._11_c02119{width:23.616000pt;}
._12_c02119{width:24.704000pt;}
._13_c02119{width:25.728000pt;}
._0_c02119{width:1334.165333pt;}
.fs0_c02119{font-size:53.120000pt;}
.fs1_c02119{font-size:58.880000pt;}
.fs2_c02119{font-size:64.000000pt;}
.y0_c02119{bottom:0.000000pt;}
.y4_c02119{bottom:4.160000pt;}
.y3_c02119{bottom:37.152000pt;}
.y2_c02119{bottom:67.072000pt;}
.y23_c02119{bottom:118.912000pt;}
.y22_c02119{bottom:146.586667pt;}
.y21_c02119{bottom:174.106667pt;}
.y20_c02119{bottom:201.626667pt;}
.y1f_c02119{bottom:229.306667pt;}
.y1e_c02119{bottom:256.866667pt;}
.y1d_c02119{bottom:284.546667pt;}
.y1c_c02119{bottom:312.066667pt;}
.y1b_c02119{bottom:339.746667pt;}
.y1a_c02119{bottom:367.266667pt;}
.y19_c02119{bottom:394.946667pt;}
.y18_c02119{bottom:422.466667pt;}
.y17_c02119{bottom:450.146667pt;}
.y16_c02119{bottom:477.693333pt;}
.y15_c02119{bottom:505.373333pt;}
.y14_c02119{bottom:532.893333pt;}
.y13_c02119{bottom:560.573333pt;}
.y12_c02119{bottom:588.093333pt;}
.y11_c02119{bottom:615.773333pt;}
.y10_c02119{bottom:643.293333pt;}
.yf_c02119{bottom:670.973333pt;}
.ye_c02119{bottom:698.493333pt;}
.yd_c02119{bottom:726.213333pt;}
.yc_c02119{bottom:753.733333pt;}
.yb_c02119{bottom:781.413333pt;}
.ya_c02119{bottom:808.933333pt;}
.y9_c02119{bottom:836.613333pt;}
.y8_c02119{bottom:864.133333pt;}
.y7_c02119{bottom:891.813333pt;}
.y6_c02119{bottom:919.333333pt;}
.y5_c02119{bottom:947.040000pt;}
.y1_c02119{bottom:996.800000pt;}
.h3_c02119{height:20.000000pt;}
.h2_c02119{height:43.441250pt;}
.h1_c02119{height:52.134375pt;}
.h4_c02119{height:57.375000pt;}
.h5_c02119{height:62.812500pt;}
.h0_c02119{height:1056.000000pt;}
.w1_c02119{width:59.232000pt;}
.w0_c02119{width:816.000000pt;}
.x0_c02119{left:0.000000pt;}
.x3_c02119{left:14.720000pt;}
.x1_c02119{left:113.472000pt;}
.x4_c02119{left:160.666667pt;}
.x2_c02119{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02120 {
    display:none;
  }
  .loading-indicator_c02120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02120 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02120 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02120" -> "#page-container .classname_c02120")
 */
.pf_c02120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02120 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02120 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02120 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02120 {overflow:visible;}
  }
}
.c_c02120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02120 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02120:after { /* webkit #35443 */
  content: '';
}
.t_c02120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02120 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02120 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02120 { /* info for Javascript */
  display:none;
}
.l_c02120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02120:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02120 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02120.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02120;src:url('chunks/assets/font_db0f03c52f6ac929aa8be24b.woff2')format("woff");}.ff1_c02120{font-family:ff1_c02120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02120;src:url('chunks/assets/font_76a6f2e67be8565a80a8e862.woff2')format("woff");}.ff2_c02120{font-family:ff2_c02120;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02120{vertical-align:0.000000px;}
.ls0_c02120{letter-spacing:0.000000px;}
.sc__c02120{text-shadow:none;}
.sc0_c02120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02120{-webkit-text-stroke:0px transparent;}
.sc0_c02120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02120{word-spacing:0.000000px;}
._6_c02120{margin-left:-1.512000px;}
._3_c02120{width:1.080000px;}
._7_c02120{width:4.032000px;}
._8_c02120{width:5.112000px;}
._1_c02120{width:6.264000px;}
._2_c02120{width:7.488000px;}
._4_c02120{width:10.440000px;}
._5_c02120{width:11.604000px;}
._9_c02120{width:30.240000px;}
._b_c02120{width:31.248000px;}
._a_c02120{width:32.328000px;}
._0_c02120{width:1500.936000px;}
.fc1_c02120{color:rgb(192,80,77);}
.fc0_c02120{color:rgb(0,0,0);}
.fs0_c02120{font-size:59.760000px;}
.fs1_c02120{font-size:66.240000px;}
.fs2_c02120{font-size:72.000000px;}
.y0_c02120{bottom:0.000000px;}
.y4_c02120{bottom:4.680000px;}
.y3_c02120{bottom:41.796000px;}
.y2_c02120{bottom:75.456000px;}
.ya_c02120{bottom:910.050000px;}
.y9_c02120{bottom:941.190000px;}
.y8_c02120{bottom:972.150000px;}
.y7_c02120{bottom:1003.290000px;}
.y6_c02120{bottom:1034.250000px;}
.y5_c02120{bottom:1065.420000px;}
.y1_c02120{bottom:1121.400000px;}
.h3_c02120{height:22.500000px;}
.h2_c02120{height:48.871406px;}
.h1_c02120{height:58.651172px;}
.h4_c02120{height:70.664062px;}
.h0_c02120{height:1188.000000px;}
.w1_c02120{width:66.636000px;}
.w0_c02120{width:918.000000px;}
.x0_c02120{left:0.000000px;}
.x3_c02120{left:16.560000px;}
.x1_c02120{left:127.656000px;}
.x4_c02120{left:180.750000px;}
.x2_c02120{left:820.950000px;}
@media print{
.v0_c02120{vertical-align:0.000000pt;}
.ls0_c02120{letter-spacing:0.000000pt;}
.ws0_c02120{word-spacing:0.000000pt;}
._6_c02120{margin-left:-1.344000pt;}
._3_c02120{width:0.960000pt;}
._7_c02120{width:3.584000pt;}
._8_c02120{width:4.544000pt;}
._1_c02120{width:5.568000pt;}
._2_c02120{width:6.656000pt;}
._4_c02120{width:9.280000pt;}
._5_c02120{width:10.314667pt;}
._9_c02120{width:26.880000pt;}
._b_c02120{width:27.776000pt;}
._a_c02120{width:28.736000pt;}
._0_c02120{width:1334.165333pt;}
.fs0_c02120{font-size:53.120000pt;}
.fs1_c02120{font-size:58.880000pt;}
.fs2_c02120{font-size:64.000000pt;}
.y0_c02120{bottom:0.000000pt;}
.y4_c02120{bottom:4.160000pt;}
.y3_c02120{bottom:37.152000pt;}
.y2_c02120{bottom:67.072000pt;}
.ya_c02120{bottom:808.933333pt;}
.y9_c02120{bottom:836.613333pt;}
.y8_c02120{bottom:864.133333pt;}
.y7_c02120{bottom:891.813333pt;}
.y6_c02120{bottom:919.333333pt;}
.y5_c02120{bottom:947.040000pt;}
.y1_c02120{bottom:996.800000pt;}
.h3_c02120{height:20.000000pt;}
.h2_c02120{height:43.441250pt;}
.h1_c02120{height:52.134375pt;}
.h4_c02120{height:62.812500pt;}
.h0_c02120{height:1056.000000pt;}
.w1_c02120{width:59.232000pt;}
.w0_c02120{width:816.000000pt;}
.x0_c02120{left:0.000000pt;}
.x3_c02120{left:14.720000pt;}
.x1_c02120{left:113.472000pt;}
.x4_c02120{left:160.666667pt;}
.x2_c02120{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02121 {
    display:none;
  }
  .loading-indicator_c02121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02121 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02121 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02121" -> "#page-container .classname_c02121")
 */
.pf_c02121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02121 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02121 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02121 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02121 {overflow:visible;}
  }
}
.c_c02121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02121 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02121:after { /* webkit #35443 */
  content: '';
}
.t_c02121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02121 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02121 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02121 { /* info for Javascript */
  display:none;
}
.l_c02121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02121:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02121 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02121.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02121;src:url('chunks/assets/font_087e4a86e90ef2b513637245.woff2')format("woff");}.ff1_c02121{font-family:ff1_c02121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02121;src:url('chunks/assets/font_f41a402c08bc8c547bbbd41c.woff2')format("woff");}.ff2_c02121{font-family:ff2_c02121;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02121{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02121{vertical-align:0.000000px;}
.ls0_c02121{letter-spacing:0.000000px;}
.sc__c02121{text-shadow:none;}
.sc0_c02121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02121{-webkit-text-stroke:0px transparent;}
.sc0_c02121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02121{word-spacing:-18.000000px;}
.ws1_c02121{word-spacing:0.000000px;}
._4_c02121{margin-left:-2.091433px;}
._1_c02121{margin-left:-1.008000px;}
._2_c02121{width:1.272000px;}
._3_c02121{width:2.333280px;}
._0_c02121{width:1500.960000px;}
.fc3_c02121{color:rgb(0,0,255);}
.fc1_c02121{color:rgb(192,80,77);}
.fc2_c02121{color:rgb(255,255,255);}
.fc0_c02121{color:rgb(0,0,0);}
.fs0_c02121{font-size:59.760000px;}
.fs1_c02121{font-size:66.240000px;}
.fs3_c02121{font-size:69.120000px;}
.fs2_c02121{font-size:72.000000px;}
.y0_c02121{bottom:0.000000px;}
.y9_c02121{bottom:4.140000px;}
.y14_c02121{bottom:4.320000px;}
.y4_c02121{bottom:4.860000px;}
.yd_c02121{bottom:23.940000px;}
.y1a_c02121{bottom:24.120000px;}
.y3_c02121{bottom:52.416000px;}
.y2_c02121{bottom:75.456000px;}
.y1f_c02121{bottom:260.715000px;}
.y1e_c02121{bottom:277.635000px;}
.y1d_c02121{bottom:298.155000px;}
.y1c_c02121{bottom:318.675000px;}
.y1b_c02121{bottom:339.375000px;}
.y19_c02121{bottom:379.695000px;}
.y18_c02121{bottom:420.195000px;}
.y17_c02121{bottom:440.745000px;}
.y16_c02121{bottom:461.445000px;}
.y15_c02121{bottom:481.965000px;}
.y13_c02121{bottom:502.485000px;}
.y12_c02121{bottom:523.185000px;}
.y11_c02121{bottom:543.705000px;}
.y10_c02121{bottom:564.405000px;}
.yf_c02121{bottom:584.925000px;}
.ye_c02121{bottom:605.445000px;}
.yc_c02121{bottom:626.190000px;}
.yb_c02121{bottom:666.510000px;}
.ya_c02121{bottom:687.210000px;}
.y8_c02121{bottom:707.730000px;}
.y7_c02121{bottom:732.750000px;}
.y6_c02121{bottom:753.450000px;}
.y5_c02121{bottom:774.150000px;}
.y1_c02121{bottom:851.400000px;}
.h5_c02121{height:19.800000px;}
.h8_c02121{height:19.836000px;}
.h9_c02121{height:19.980000px;}
.h3_c02121{height:22.680000px;}
.h7_c02121{height:39.600000px;}
.ha_c02121{height:39.780000px;}
.h2_c02121{height:48.871406px;}
.h1_c02121{height:58.651172px;}
.h6_c02121{height:67.837500px;}
.h4_c02121{height:70.664062px;}
.h0_c02121{height:918.000000px;}
.w1_c02121{width:66.780000px;}
.w2_c02121{width:222.150000px;}
.w3_c02121{width:775.365000px;}
.w0_c02121{width:1188.000000px;}
.x0_c02121{left:0.000000px;}
.xc_c02121{left:7.740000px;}
.x19_c02121{left:13.500000px;}
.x3_c02121{left:16.560000px;}
.x12_c02121{left:21.600000px;}
.x18_c02121{left:25.560000px;}
.x10_c02121{left:28.620000px;}
.x8_c02121{left:34.236000px;}
.x16_c02121{left:39.456000px;}
.x11_c02121{left:42.156000px;}
.x14_c02121{left:48.996000px;}
.x15_c02121{left:50.796000px;}
.xe_c02121{left:55.110000px;}
.xb_c02121{left:57.270000px;}
.xf_c02121{left:66.090000px;}
.x13_c02121{left:68.250000px;}
.x17_c02121{left:76.890000px;}
.xd_c02121{left:82.650000px;}
.x7_c02121{left:98.640000px;}
.x1_c02121{left:106.200000px;}
.x9_c02121{left:321.510000px;}
.xa_c02121{left:346.035000px;}
.x5_c02121{left:453.495000px;}
.x4_c02121{left:550.695000px;}
.x6_c02121{left:593.895000px;}
.x2_c02121{left:1101.570000px;}
@media print{
.v0_c02121{vertical-align:0.000000pt;}
.ls0_c02121{letter-spacing:0.000000pt;}
.ws0_c02121{word-spacing:-16.000000pt;}
.ws1_c02121{word-spacing:0.000000pt;}
._4_c02121{margin-left:-1.859052pt;}
._1_c02121{margin-left:-0.896000pt;}
._2_c02121{width:1.130667pt;}
._3_c02121{width:2.074027pt;}
._0_c02121{width:1334.186667pt;}
.fs0_c02121{font-size:53.120000pt;}
.fs1_c02121{font-size:58.880000pt;}
.fs3_c02121{font-size:61.440000pt;}
.fs2_c02121{font-size:64.000000pt;}
.y0_c02121{bottom:0.000000pt;}
.y9_c02121{bottom:3.680000pt;}
.y14_c02121{bottom:3.840000pt;}
.y4_c02121{bottom:4.320000pt;}
.yd_c02121{bottom:21.280000pt;}
.y1a_c02121{bottom:21.440000pt;}
.y3_c02121{bottom:46.592000pt;}
.y2_c02121{bottom:67.072000pt;}
.y1f_c02121{bottom:231.746667pt;}
.y1e_c02121{bottom:246.786667pt;}
.y1d_c02121{bottom:265.026667pt;}
.y1c_c02121{bottom:283.266667pt;}
.y1b_c02121{bottom:301.666667pt;}
.y19_c02121{bottom:337.506667pt;}
.y18_c02121{bottom:373.506667pt;}
.y17_c02121{bottom:391.773333pt;}
.y16_c02121{bottom:410.173333pt;}
.y15_c02121{bottom:428.413333pt;}
.y13_c02121{bottom:446.653333pt;}
.y12_c02121{bottom:465.053333pt;}
.y11_c02121{bottom:483.293333pt;}
.y10_c02121{bottom:501.693333pt;}
.yf_c02121{bottom:519.933333pt;}
.ye_c02121{bottom:538.173333pt;}
.yc_c02121{bottom:556.613333pt;}
.yb_c02121{bottom:592.453333pt;}
.ya_c02121{bottom:610.853333pt;}
.y8_c02121{bottom:629.093333pt;}
.y7_c02121{bottom:651.333333pt;}
.y6_c02121{bottom:669.733333pt;}
.y5_c02121{bottom:688.133333pt;}
.y1_c02121{bottom:756.800000pt;}
.h5_c02121{height:17.600000pt;}
.h8_c02121{height:17.632000pt;}
.h9_c02121{height:17.760000pt;}
.h3_c02121{height:20.160000pt;}
.h7_c02121{height:35.200000pt;}
.ha_c02121{height:35.360000pt;}
.h2_c02121{height:43.441250pt;}
.h1_c02121{height:52.134375pt;}
.h6_c02121{height:60.300000pt;}
.h4_c02121{height:62.812500pt;}
.h0_c02121{height:816.000000pt;}
.w1_c02121{width:59.360000pt;}
.w2_c02121{width:197.466667pt;}
.w3_c02121{width:689.213333pt;}
.w0_c02121{width:1056.000000pt;}
.x0_c02121{left:0.000000pt;}
.xc_c02121{left:6.880000pt;}
.x19_c02121{left:12.000000pt;}
.x3_c02121{left:14.720000pt;}
.x12_c02121{left:19.200000pt;}
.x18_c02121{left:22.720000pt;}
.x10_c02121{left:25.440000pt;}
.x8_c02121{left:30.432000pt;}
.x16_c02121{left:35.072000pt;}
.x11_c02121{left:37.472000pt;}
.x14_c02121{left:43.552000pt;}
.x15_c02121{left:45.152000pt;}
.xe_c02121{left:48.986667pt;}
.xb_c02121{left:50.906667pt;}
.xf_c02121{left:58.746667pt;}
.x13_c02121{left:60.666667pt;}
.x17_c02121{left:68.346667pt;}
.xd_c02121{left:73.466667pt;}
.x7_c02121{left:87.680000pt;}
.x1_c02121{left:94.400000pt;}
.x9_c02121{left:285.786667pt;}
.xa_c02121{left:307.586667pt;}
.x5_c02121{left:403.106667pt;}
.x4_c02121{left:489.506667pt;}
.x6_c02121{left:527.906667pt;}
.x2_c02121{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02122 {
    display:none;
  }
  .loading-indicator_c02122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02122 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02122 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02122" -> "#page-container .classname_c02122")
 */
.pf_c02122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02122 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02122 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02122 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02122 {overflow:visible;}
  }
}
.c_c02122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02122 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02122:after { /* webkit #35443 */
  content: '';
}
.t_c02122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02122 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02122 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02122 { /* info for Javascript */
  display:none;
}
.l_c02122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02122:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02122 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02122.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02122;src:url('chunks/assets/font_29a94d4e9ef15e720b2442d4.woff2')format("woff");}.ff1_c02122{font-family:ff1_c02122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02122;src:url('chunks/assets/font_6923c60fe20a4699f3d9d299.woff2')format("woff");}.ff2_c02122{font-family:ff2_c02122;line-height:0.863770;font-style:normal;font-weight: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_c02122;src:url('chunks/assets/font_a19dbec277b5ee40474a83e1.woff2')format("woff");}.ff3_c02122{font-family:ff3_c02122;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02122{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02122{vertical-align:0.000000px;}
.ls0_c02122{letter-spacing:0.000000px;}
.sc__c02122{text-shadow:none;}
.sc0_c02122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02122{-webkit-text-stroke:0px transparent;}
.sc0_c02122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02122{word-spacing:-18.000000px;}
.ws1_c02122{word-spacing:0.000000px;}
._12_c02122{margin-left:-2.520000px;}
._7_c02122{margin-left:-1.104000px;}
._2_c02122{width:1.296000px;}
._f_c02122{width:2.376000px;}
._d_c02122{width:3.744000px;}
._e_c02122{width:5.040000px;}
._c_c02122{width:6.156000px;}
._4_c02122{width:7.416000px;}
._5_c02122{width:8.508000px;}
._a_c02122{width:9.912000px;}
._8_c02122{width:13.368000px;}
._9_c02122{width:14.700000px;}
._13_c02122{width:15.996000px;}
._10_c02122{width:19.944000px;}
._1_c02122{width:25.344000px;}
._3_c02122{width:26.676000px;}
._11_c02122{width:27.900000px;}
._6_c02122{width:30.240000px;}
._b_c02122{width:33.192000px;}
._0_c02122{width:1500.936000px;}
.fc1_c02122{color:rgb(192,80,77);}
.fc0_c02122{color:rgb(0,0,0);}
.fs0_c02122{font-size:59.760000px;}
.fs1_c02122{font-size:66.240000px;}
.fs2_c02122{font-size:72.000000px;}
.y0_c02122{bottom:0.000000px;}
.y4_c02122{bottom:4.680000px;}
.y3_c02122{bottom:41.796000px;}
.y2_c02122{bottom:75.456000px;}
.y22_c02122{bottom:164.910000px;}
.y21_c02122{bottom:195.870000px;}
.y20_c02122{bottom:226.830000px;}
.y1f_c02122{bottom:257.970000px;}
.y1e_c02122{bottom:288.975000px;}
.y1d_c02122{bottom:320.115000px;}
.y1c_c02122{bottom:351.075000px;}
.y1b_c02122{bottom:382.215000px;}
.y1a_c02122{bottom:413.175000px;}
.y19_c02122{bottom:444.315000px;}
.y18_c02122{bottom:475.275000px;}
.y17_c02122{bottom:506.415000px;}
.y16_c02122{bottom:537.405000px;}
.y15_c02122{bottom:568.545000px;}
.y14_c02122{bottom:599.505000px;}
.y13_c02122{bottom:630.645000px;}
.y12_c02122{bottom:661.605000px;}
.y11_c02122{bottom:692.745000px;}
.y10_c02122{bottom:723.705000px;}
.yf_c02122{bottom:754.845000px;}
.ye_c02122{bottom:785.805000px;}
.yd_c02122{bottom:816.990000px;}
.yc_c02122{bottom:847.950000px;}
.yb_c02122{bottom:879.090000px;}
.ya_c02122{bottom:910.050000px;}
.y9_c02122{bottom:941.190000px;}
.y8_c02122{bottom:972.150000px;}
.y7_c02122{bottom:1003.290000px;}
.y6_c02122{bottom:1034.250000px;}
.y5_c02122{bottom:1065.420000px;}
.y1_c02122{bottom:1121.400000px;}
.h3_c02122{height:22.500000px;}
.h2_c02122{height:48.871406px;}
.h1_c02122{height:58.651172px;}
.h5_c02122{height:64.546875px;}
.h4_c02122{height:70.664062px;}
.h0_c02122{height:1188.000000px;}
.w1_c02122{width:66.636000px;}
.w0_c02122{width:918.000000px;}
.x0_c02122{left:0.000000px;}
.x3_c02122{left:16.560000px;}
.x1_c02122{left:127.656000px;}
.x4_c02122{left:180.750000px;}
.x2_c02122{left:820.950000px;}
@media print{
.v0_c02122{vertical-align:0.000000pt;}
.ls0_c02122{letter-spacing:0.000000pt;}
.ws0_c02122{word-spacing:-16.000000pt;}
.ws1_c02122{word-spacing:0.000000pt;}
._12_c02122{margin-left:-2.240000pt;}
._7_c02122{margin-left:-0.981333pt;}
._2_c02122{width:1.152000pt;}
._f_c02122{width:2.112000pt;}
._d_c02122{width:3.328000pt;}
._e_c02122{width:4.480000pt;}
._c_c02122{width:5.472000pt;}
._4_c02122{width:6.592000pt;}
._5_c02122{width:7.562667pt;}
._a_c02122{width:8.810667pt;}
._8_c02122{width:11.882667pt;}
._9_c02122{width:13.066667pt;}
._13_c02122{width:14.218667pt;}
._10_c02122{width:17.728000pt;}
._1_c02122{width:22.528000pt;}
._3_c02122{width:23.712000pt;}
._11_c02122{width:24.800000pt;}
._6_c02122{width:26.880000pt;}
._b_c02122{width:29.504000pt;}
._0_c02122{width:1334.165333pt;}
.fs0_c02122{font-size:53.120000pt;}
.fs1_c02122{font-size:58.880000pt;}
.fs2_c02122{font-size:64.000000pt;}
.y0_c02122{bottom:0.000000pt;}
.y4_c02122{bottom:4.160000pt;}
.y3_c02122{bottom:37.152000pt;}
.y2_c02122{bottom:67.072000pt;}
.y22_c02122{bottom:146.586667pt;}
.y21_c02122{bottom:174.106667pt;}
.y20_c02122{bottom:201.626667pt;}
.y1f_c02122{bottom:229.306667pt;}
.y1e_c02122{bottom:256.866667pt;}
.y1d_c02122{bottom:284.546667pt;}
.y1c_c02122{bottom:312.066667pt;}
.y1b_c02122{bottom:339.746667pt;}
.y1a_c02122{bottom:367.266667pt;}
.y19_c02122{bottom:394.946667pt;}
.y18_c02122{bottom:422.466667pt;}
.y17_c02122{bottom:450.146667pt;}
.y16_c02122{bottom:477.693333pt;}
.y15_c02122{bottom:505.373333pt;}
.y14_c02122{bottom:532.893333pt;}
.y13_c02122{bottom:560.573333pt;}
.y12_c02122{bottom:588.093333pt;}
.y11_c02122{bottom:615.773333pt;}
.y10_c02122{bottom:643.293333pt;}
.yf_c02122{bottom:670.973333pt;}
.ye_c02122{bottom:698.493333pt;}
.yd_c02122{bottom:726.213333pt;}
.yc_c02122{bottom:753.733333pt;}
.yb_c02122{bottom:781.413333pt;}
.ya_c02122{bottom:808.933333pt;}
.y9_c02122{bottom:836.613333pt;}
.y8_c02122{bottom:864.133333pt;}
.y7_c02122{bottom:891.813333pt;}
.y6_c02122{bottom:919.333333pt;}
.y5_c02122{bottom:947.040000pt;}
.y1_c02122{bottom:996.800000pt;}
.h3_c02122{height:20.000000pt;}
.h2_c02122{height:43.441250pt;}
.h1_c02122{height:52.134375pt;}
.h5_c02122{height:57.375000pt;}
.h4_c02122{height:62.812500pt;}
.h0_c02122{height:1056.000000pt;}
.w1_c02122{width:59.232000pt;}
.w0_c02122{width:816.000000pt;}
.x0_c02122{left:0.000000pt;}
.x3_c02122{left:14.720000pt;}
.x1_c02122{left:113.472000pt;}
.x4_c02122{left:160.666667pt;}
.x2_c02122{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02123 {
    display:none;
  }
  .loading-indicator_c02123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02123 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02123 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02123" -> "#page-container .classname_c02123")
 */
.pf_c02123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02123 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02123 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02123 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02123 {overflow:visible;}
  }
}
.c_c02123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02123 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02123:after { /* webkit #35443 */
  content: '';
}
.t_c02123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02123 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02123 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02123 { /* info for Javascript */
  display:none;
}
.l_c02123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02123:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02123 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02123.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02123;src:url('chunks/assets/font_66eb1df00f2c71e74a672798.woff2')format("woff");}.ff1_c02123{font-family:ff1_c02123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02123;src:url('chunks/assets/font_7f72bfe12ceb53df7ff1eeb4.woff2')format("woff");}.ff2_c02123{font-family:ff2_c02123;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02123{vertical-align:0.000000px;}
.ls0_c02123{letter-spacing:0.000000px;}
.sc__c02123{text-shadow:none;}
.sc0_c02123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02123{-webkit-text-stroke:0px transparent;}
.sc0_c02123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02123{word-spacing:0.000000px;}
._4_c02123{margin-left:-1.008000px;}
._2_c02123{width:1.080000px;}
._1_c02123{width:19.224000px;}
._3_c02123{width:20.988000px;}
._0_c02123{width:1500.936000px;}
.fc1_c02123{color:rgb(192,80,77);}
.fc0_c02123{color:rgb(0,0,0);}
.fs0_c02123{font-size:59.760000px;}
.fs1_c02123{font-size:66.240000px;}
.fs2_c02123{font-size:72.000000px;}
.y0_c02123{bottom:0.000000px;}
.y4_c02123{bottom:4.680000px;}
.y3_c02123{bottom:41.796000px;}
.y2_c02123{bottom:75.456000px;}
.y7_c02123{bottom:1003.290000px;}
.y6_c02123{bottom:1034.250000px;}
.y5_c02123{bottom:1065.420000px;}
.y1_c02123{bottom:1121.400000px;}
.h3_c02123{height:22.500000px;}
.h2_c02123{height:48.871406px;}
.h1_c02123{height:58.651172px;}
.h4_c02123{height:70.664062px;}
.h0_c02123{height:1188.000000px;}
.w1_c02123{width:66.636000px;}
.w0_c02123{width:918.000000px;}
.x0_c02123{left:0.000000px;}
.x3_c02123{left:16.560000px;}
.x1_c02123{left:127.656000px;}
.x4_c02123{left:180.750000px;}
.x2_c02123{left:820.950000px;}
@media print{
.v0_c02123{vertical-align:0.000000pt;}
.ls0_c02123{letter-spacing:0.000000pt;}
.ws0_c02123{word-spacing:0.000000pt;}
._4_c02123{margin-left:-0.896000pt;}
._2_c02123{width:0.960000pt;}
._1_c02123{width:17.088000pt;}
._3_c02123{width:18.656000pt;}
._0_c02123{width:1334.165333pt;}
.fs0_c02123{font-size:53.120000pt;}
.fs1_c02123{font-size:58.880000pt;}
.fs2_c02123{font-size:64.000000pt;}
.y0_c02123{bottom:0.000000pt;}
.y4_c02123{bottom:4.160000pt;}
.y3_c02123{bottom:37.152000pt;}
.y2_c02123{bottom:67.072000pt;}
.y7_c02123{bottom:891.813333pt;}
.y6_c02123{bottom:919.333333pt;}
.y5_c02123{bottom:947.040000pt;}
.y1_c02123{bottom:996.800000pt;}
.h3_c02123{height:20.000000pt;}
.h2_c02123{height:43.441250pt;}
.h1_c02123{height:52.134375pt;}
.h4_c02123{height:62.812500pt;}
.h0_c02123{height:1056.000000pt;}
.w1_c02123{width:59.232000pt;}
.w0_c02123{width:816.000000pt;}
.x0_c02123{left:0.000000pt;}
.x3_c02123{left:14.720000pt;}
.x1_c02123{left:113.472000pt;}
.x4_c02123{left:160.666667pt;}
.x2_c02123{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02124 {
    display:none;
  }
  .loading-indicator_c02124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02124 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02124 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02124" -> "#page-container .classname_c02124")
 */
.pf_c02124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02124 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02124 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02124 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02124 {overflow:visible;}
  }
}
.c_c02124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02124 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02124:after { /* webkit #35443 */
  content: '';
}
.t_c02124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02124 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02124 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02124 { /* info for Javascript */
  display:none;
}
.l_c02124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02124:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02124 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02124.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02124;src:url('chunks/assets/font_4e7ca86c73c1b2e5363c417a.woff2')format("woff");}.ff1_c02124{font-family:ff1_c02124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02124;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff2_c02124{font-family:ff2_c02124;line-height:0.863770;font-style:normal;font-weight: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_c02124;src:url('chunks/assets/font_8502b4a87fc0d7f1959d9647.woff2')format("woff");}.ff3_c02124{font-family:ff3_c02124;line-height:1.112305;font-style:normal;font-weight: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_c02124;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02124{font-family:ff4_c02124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02124{vertical-align:0.000000px;}
.ls1_c02124{letter-spacing:-0.166800px;}
.ls0_c02124{letter-spacing:0.000000px;}
.sc__c02124{text-shadow:none;}
.sc0_c02124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02124{-webkit-text-stroke:0px transparent;}
.sc0_c02124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02124{word-spacing:0.000000px;}
._3_c02124{margin-left:-2.137213px;}
._1_c02124{margin-left:-1.008000px;}
._2_c02124{width:1.416000px;}
._0_c02124{width:1500.960000px;}
.fc1_c02124{color:rgb(192,80,77);}
.fc2_c02124{color:rgb(255,255,255);}
.fc0_c02124{color:rgb(0,0,0);}
.fs0_c02124{font-size:59.760000px;}
.fs3_c02124{font-size:63.360000px;}
.fs1_c02124{font-size:66.240000px;}
.fs2_c02124{font-size:72.000000px;}
.y0_c02124{bottom:0.000000px;}
.y9_c02124{bottom:3.780000px;}
.y10_c02124{bottom:3.960000px;}
.ye_c02124{bottom:4.005000px;}
.y4_c02124{bottom:4.860000px;}
.y8_c02124{bottom:21.960000px;}
.y15_c02124{bottom:21.990000px;}
.y1d_c02124{bottom:22.005000px;}
.y17_c02124{bottom:22.140000px;}
.yd_c02124{bottom:22.185000px;}
.yb_c02124{bottom:40.140000px;}
.y3_c02124{bottom:52.416000px;}
.y2_c02124{bottom:75.456000px;}
.y20_c02124{bottom:138.456000px;}
.y1f_c02124{bottom:157.350000px;}
.y1e_c02124{bottom:176.250000px;}
.y1c_c02124{bottom:213.150000px;}
.y1b_c02124{bottom:250.095000px;}
.y1a_c02124{bottom:287.175000px;}
.y19_c02124{bottom:324.075000px;}
.y18_c02124{bottom:361.155000px;}
.y16_c02124{bottom:379.875000px;}
.y14_c02124{bottom:416.955000px;}
.y13_c02124{bottom:453.885000px;}
.y12_c02124{bottom:508.965000px;}
.y11_c02124{bottom:546.045000px;}
.yf_c02124{bottom:582.945000px;}
.yc_c02124{bottom:619.845000px;}
.ya_c02124{bottom:656.970000px;}
.y7_c02124{bottom:712.050000px;}
.y6_c02124{bottom:753.450000px;}
.y5_c02124{bottom:774.150000px;}
.y1_c02124{bottom:851.400000px;}
.hc_c02124{height:18.000000px;}
.hd_c02124{height:18.180000px;}
.h3_c02124{height:22.680000px;}
.h5_c02124{height:36.180000px;}
.ha_c02124{height:36.216000px;}
.hb_c02124{height:36.360000px;}
.h9_c02124{height:36.396000px;}
.h2_c02124{height:48.871406px;}
.h7_c02124{height:54.360000px;}
.h1_c02124{height:58.651172px;}
.h6_c02124{height:62.184375px;}
.h8_c02124{height:63.855000px;}
.h4_c02124{height:70.664062px;}
.h0_c02124{height:918.000000px;}
.w1_c02124{width:66.780000px;}
.w2_c02124{width:188.130000px;}
.w3_c02124{width:820.185000px;}
.w0_c02124{width:1188.000000px;}
.x0_c02124{left:0.000000px;}
.xe_c02124{left:7.740000px;}
.x17_c02124{left:9.360000px;}
.x3_c02124{left:16.560000px;}
.xf_c02124{left:40.716000px;}
.x19_c02124{left:44.136000px;}
.x12_c02124{left:46.836000px;}
.x13_c02124{left:49.176000px;}
.x8_c02124{left:51.690000px;}
.x11_c02124{left:53.850000px;}
.x14_c02124{left:55.110000px;}
.x15_c02124{left:57.990000px;}
.x10_c02124{left:62.310000px;}
.x18_c02124{left:66.090000px;}
.x7_c02124{left:68.070000px;}
.x16_c02124{left:72.390000px;}
.xd_c02124{left:75.450000px;}
.xc_c02124{left:93.810000px;}
.x6_c02124{left:98.640000px;}
.x1_c02124{left:106.200000px;}
.x9_c02124{left:287.490000px;}
.xb_c02124{left:371.955000px;}
.xa_c02124{left:410.115000px;}
.x5_c02124{left:481.035000px;}
.x4_c02124{left:577.155000px;}
.x2_c02124{left:1101.570000px;}
@media print{
.v0_c02124{vertical-align:0.000000pt;}
.ls1_c02124{letter-spacing:-0.148267pt;}
.ls0_c02124{letter-spacing:0.000000pt;}
.ws0_c02124{word-spacing:0.000000pt;}
._3_c02124{margin-left:-1.899745pt;}
._1_c02124{margin-left:-0.896000pt;}
._2_c02124{width:1.258667pt;}
._0_c02124{width:1334.186667pt;}
.fs0_c02124{font-size:53.120000pt;}
.fs3_c02124{font-size:56.320000pt;}
.fs1_c02124{font-size:58.880000pt;}
.fs2_c02124{font-size:64.000000pt;}
.y0_c02124{bottom:0.000000pt;}
.y9_c02124{bottom:3.360000pt;}
.y10_c02124{bottom:3.520000pt;}
.ye_c02124{bottom:3.560000pt;}
.y4_c02124{bottom:4.320000pt;}
.y8_c02124{bottom:19.520000pt;}
.y15_c02124{bottom:19.546667pt;}
.y1d_c02124{bottom:19.560000pt;}
.y17_c02124{bottom:19.680000pt;}
.yd_c02124{bottom:19.720000pt;}
.yb_c02124{bottom:35.680000pt;}
.y3_c02124{bottom:46.592000pt;}
.y2_c02124{bottom:67.072000pt;}
.y20_c02124{bottom:123.072000pt;}
.y1f_c02124{bottom:139.866667pt;}
.y1e_c02124{bottom:156.666667pt;}
.y1c_c02124{bottom:189.466667pt;}
.y1b_c02124{bottom:222.306667pt;}
.y1a_c02124{bottom:255.266667pt;}
.y19_c02124{bottom:288.066667pt;}
.y18_c02124{bottom:321.026667pt;}
.y16_c02124{bottom:337.666667pt;}
.y14_c02124{bottom:370.626667pt;}
.y13_c02124{bottom:403.453333pt;}
.y12_c02124{bottom:452.413333pt;}
.y11_c02124{bottom:485.373333pt;}
.yf_c02124{bottom:518.173333pt;}
.yc_c02124{bottom:550.973333pt;}
.ya_c02124{bottom:583.973333pt;}
.y7_c02124{bottom:632.933333pt;}
.y6_c02124{bottom:669.733333pt;}
.y5_c02124{bottom:688.133333pt;}
.y1_c02124{bottom:756.800000pt;}
.hc_c02124{height:16.000000pt;}
.hd_c02124{height:16.160000pt;}
.h3_c02124{height:20.160000pt;}
.h5_c02124{height:32.160000pt;}
.ha_c02124{height:32.192000pt;}
.hb_c02124{height:32.320000pt;}
.h9_c02124{height:32.352000pt;}
.h2_c02124{height:43.441250pt;}
.h7_c02124{height:48.320000pt;}
.h1_c02124{height:52.134375pt;}
.h6_c02124{height:55.275000pt;}
.h8_c02124{height:56.760000pt;}
.h4_c02124{height:62.812500pt;}
.h0_c02124{height:816.000000pt;}
.w1_c02124{width:59.360000pt;}
.w2_c02124{width:167.226667pt;}
.w3_c02124{width:729.053333pt;}
.w0_c02124{width:1056.000000pt;}
.x0_c02124{left:0.000000pt;}
.xe_c02124{left:6.880000pt;}
.x17_c02124{left:8.320000pt;}
.x3_c02124{left:14.720000pt;}
.xf_c02124{left:36.192000pt;}
.x19_c02124{left:39.232000pt;}
.x12_c02124{left:41.632000pt;}
.x13_c02124{left:43.712000pt;}
.x8_c02124{left:45.946667pt;}
.x11_c02124{left:47.866667pt;}
.x14_c02124{left:48.986667pt;}
.x15_c02124{left:51.546667pt;}
.x10_c02124{left:55.386667pt;}
.x18_c02124{left:58.746667pt;}
.x7_c02124{left:60.506667pt;}
.x16_c02124{left:64.346667pt;}
.xd_c02124{left:67.066667pt;}
.xc_c02124{left:83.386667pt;}
.x6_c02124{left:87.680000pt;}
.x1_c02124{left:94.400000pt;}
.x9_c02124{left:255.546667pt;}
.xb_c02124{left:330.626667pt;}
.xa_c02124{left:364.546667pt;}
.x5_c02124{left:427.586667pt;}
.x4_c02124{left:513.026667pt;}
.x2_c02124{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02125 {
    display:none;
  }
  .loading-indicator_c02125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02125 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02125 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02125" -> "#page-container .classname_c02125")
 */
.pf_c02125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02125 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02125 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02125 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02125 {overflow:visible;}
  }
}
.c_c02125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02125 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02125:after { /* webkit #35443 */
  content: '';
}
.t_c02125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02125 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02125 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02125 { /* info for Javascript */
  display:none;
}
.l_c02125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02125:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02125 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02125.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02125;src:url('chunks/assets/font_d2cf5bf64444ec7b71bb55d5.woff2')format("woff");}.ff1_c02125{font-family:ff1_c02125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02125;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02125{font-family:ff2_c02125;line-height:0.863770;font-style:normal;font-weight: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_c02125;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02125{font-family:ff3_c02125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02125{vertical-align:0.000000px;}
.ls0_c02125{letter-spacing:0.000000px;}
.sc__c02125{text-shadow:none;}
.sc0_c02125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02125{-webkit-text-stroke:0px transparent;}
.sc0_c02125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02125{word-spacing:0.000000px;}
._2_c02125{margin-left:-2.378753px;}
._1_c02125{margin-left:-1.157760px;}
._3_c02125{width:1.047940px;}
._4_c02125{width:32.328000px;}
._5_c02125{width:33.340120px;}
._0_c02125{width:1500.960000px;}
.fc1_c02125{color:rgb(192,80,77);}
.fc0_c02125{color:rgb(0,0,0);}
.fs0_c02125{font-size:59.760000px;}
.fs2_c02125{font-size:63.360000px;}
.fs1_c02125{font-size:66.240000px;}
.fs3_c02125{font-size:72.000000px;}
.y0_c02125{bottom:0.000000px;}
.yf_c02125{bottom:3.780000px;}
.y6_c02125{bottom:3.960000px;}
.y4_c02125{bottom:4.860000px;}
.yc_c02125{bottom:21.600000px;}
.yb_c02125{bottom:21.960000px;}
.y9_c02125{bottom:22.140000px;}
.y8_c02125{bottom:40.140000px;}
.y3_c02125{bottom:52.416000px;}
.y2_c02125{bottom:75.456000px;}
.y1e_c02125{bottom:143.316000px;}
.y1d_c02125{bottom:160.230000px;}
.y1c_c02125{bottom:197.310000px;}
.y1b_c02125{bottom:234.255000px;}
.y1a_c02125{bottom:253.155000px;}
.y19_c02125{bottom:290.055000px;}
.y18_c02125{bottom:327.135000px;}
.y17_c02125{bottom:364.035000px;}
.y16_c02125{bottom:400.935000px;}
.y15_c02125{bottom:438.045000px;}
.y14_c02125{bottom:474.945000px;}
.y13_c02125{bottom:493.845000px;}
.y12_c02125{bottom:530.745000px;}
.y11_c02125{bottom:549.645000px;}
.y10_c02125{bottom:586.545000px;}
.ye_c02125{bottom:623.670000px;}
.yd_c02125{bottom:660.570000px;}
.ya_c02125{bottom:679.470000px;}
.y7_c02125{bottom:716.370000px;}
.y5_c02125{bottom:771.450000px;}
.y1_c02125{bottom:851.400000px;}
.h4_c02125{height:18.180000px;}
.h3_c02125{height:22.680000px;}
.h7_c02125{height:36.180000px;}
.ha_c02125{height:36.216000px;}
.h9_c02125{height:36.396000px;}
.h2_c02125{height:48.871406px;}
.h6_c02125{height:54.360000px;}
.h1_c02125{height:58.651172px;}
.h5_c02125{height:62.184375px;}
.h8_c02125{height:63.855000px;}
.hb_c02125{height:70.664062px;}
.h0_c02125{height:918.000000px;}
.w1_c02125{width:66.780000px;}
.w2_c02125{width:188.130000px;}
.w3_c02125{width:820.185000px;}
.w0_c02125{width:1188.000000px;}
.x0_c02125{left:0.000000px;}
.x7_c02125{left:7.740000px;}
.x3_c02125{left:16.560000px;}
.x14_c02125{left:33.336000px;}
.xd_c02125{left:37.476000px;}
.xf_c02125{left:43.416000px;}
.x9_c02125{left:45.396000px;}
.x10_c02125{left:47.016000px;}
.x13_c02125{left:51.690000px;}
.xc_c02125{left:52.770000px;}
.x11_c02125{left:56.910000px;}
.xb_c02125{left:58.170000px;}
.x15_c02125{left:59.250000px;}
.x12_c02125{left:60.690000px;}
.xe_c02125{left:64.830000px;}
.x5_c02125{left:68.970000px;}
.xa_c02125{left:74.910000px;}
.x8_c02125{left:93.810000px;}
.x4_c02125{left:98.640000px;}
.x1_c02125{left:106.200000px;}
.x6_c02125{left:287.490000px;}
.x2_c02125{left:1101.570000px;}
@media print{
.v0_c02125{vertical-align:0.000000pt;}
.ls0_c02125{letter-spacing:0.000000pt;}
.ws0_c02125{word-spacing:0.000000pt;}
._2_c02125{margin-left:-2.114447pt;}
._1_c02125{margin-left:-1.029120pt;}
._3_c02125{width:0.931502pt;}
._4_c02125{width:28.736000pt;}
._5_c02125{width:29.635663pt;}
._0_c02125{width:1334.186667pt;}
.fs0_c02125{font-size:53.120000pt;}
.fs2_c02125{font-size:56.320000pt;}
.fs1_c02125{font-size:58.880000pt;}
.fs3_c02125{font-size:64.000000pt;}
.y0_c02125{bottom:0.000000pt;}
.yf_c02125{bottom:3.360000pt;}
.y6_c02125{bottom:3.520000pt;}
.y4_c02125{bottom:4.320000pt;}
.yc_c02125{bottom:19.200000pt;}
.yb_c02125{bottom:19.520000pt;}
.y9_c02125{bottom:19.680000pt;}
.y8_c02125{bottom:35.680000pt;}
.y3_c02125{bottom:46.592000pt;}
.y2_c02125{bottom:67.072000pt;}
.y1e_c02125{bottom:127.392000pt;}
.y1d_c02125{bottom:142.426667pt;}
.y1c_c02125{bottom:175.386667pt;}
.y1b_c02125{bottom:208.226667pt;}
.y1a_c02125{bottom:225.026667pt;}
.y19_c02125{bottom:257.826667pt;}
.y18_c02125{bottom:290.786667pt;}
.y17_c02125{bottom:323.586667pt;}
.y16_c02125{bottom:356.386667pt;}
.y15_c02125{bottom:389.373333pt;}
.y14_c02125{bottom:422.173333pt;}
.y13_c02125{bottom:438.973333pt;}
.y12_c02125{bottom:471.773333pt;}
.y11_c02125{bottom:488.573333pt;}
.y10_c02125{bottom:521.373333pt;}
.ye_c02125{bottom:554.373333pt;}
.yd_c02125{bottom:587.173333pt;}
.ya_c02125{bottom:603.973333pt;}
.y7_c02125{bottom:636.773333pt;}
.y5_c02125{bottom:685.733333pt;}
.y1_c02125{bottom:756.800000pt;}
.h4_c02125{height:16.160000pt;}
.h3_c02125{height:20.160000pt;}
.h7_c02125{height:32.160000pt;}
.ha_c02125{height:32.192000pt;}
.h9_c02125{height:32.352000pt;}
.h2_c02125{height:43.441250pt;}
.h6_c02125{height:48.320000pt;}
.h1_c02125{height:52.134375pt;}
.h5_c02125{height:55.275000pt;}
.h8_c02125{height:56.760000pt;}
.hb_c02125{height:62.812500pt;}
.h0_c02125{height:816.000000pt;}
.w1_c02125{width:59.360000pt;}
.w2_c02125{width:167.226667pt;}
.w3_c02125{width:729.053333pt;}
.w0_c02125{width:1056.000000pt;}
.x0_c02125{left:0.000000pt;}
.x7_c02125{left:6.880000pt;}
.x3_c02125{left:14.720000pt;}
.x14_c02125{left:29.632000pt;}
.xd_c02125{left:33.312000pt;}
.xf_c02125{left:38.592000pt;}
.x9_c02125{left:40.352000pt;}
.x10_c02125{left:41.792000pt;}
.x13_c02125{left:45.946667pt;}
.xc_c02125{left:46.906667pt;}
.x11_c02125{left:50.586667pt;}
.xb_c02125{left:51.706667pt;}
.x15_c02125{left:52.666667pt;}
.x12_c02125{left:53.946667pt;}
.xe_c02125{left:57.626667pt;}
.x5_c02125{left:61.306667pt;}
.xa_c02125{left:66.586667pt;}
.x8_c02125{left:83.386667pt;}
.x4_c02125{left:87.680000pt;}
.x1_c02125{left:94.400000pt;}
.x6_c02125{left:255.546667pt;}
.x2_c02125{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02126 {
    display:none;
  }
  .loading-indicator_c02126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02126 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02126 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02126" -> "#page-container .classname_c02126")
 */
.pf_c02126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02126 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02126 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02126 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02126 {overflow:visible;}
  }
}
.c_c02126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02126 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02126:after { /* webkit #35443 */
  content: '';
}
.t_c02126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02126 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02126 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02126 { /* info for Javascript */
  display:none;
}
.l_c02126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02126:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02126 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02126.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02126;src:url('chunks/assets/font_18c47f59758899ef54bc9086.woff2')format("woff");}.ff1_c02126{font-family:ff1_c02126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02126;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02126{font-family:ff2_c02126;line-height:0.863770;font-style:normal;font-weight: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_c02126;src:url('chunks/assets/font_a77cd07fe1d1de0083520f66.woff2')format("woff");}.ff3_c02126{font-family:ff3_c02126;line-height:1.284180;font-style:normal;font-weight: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_c02126;src:url('chunks/assets/font_1cdd0fa79c45f15db79d6a82.woff2')format("woff");}.ff4_c02126{font-family:ff4_c02126;line-height:1.112305;font-style:normal;font-weight: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_c02126;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02126{font-family:ff5_c02126;line-height:1.311035;font-style:normal;font-weight: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_c02126;src:url('chunks/assets/font_b50ebd77b37287b08578fb6b.woff2')format("woff");}.ff6_c02126{font-family:ff6_c02126;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02126{vertical-align:0.000000px;}
.ls2_c02126{letter-spacing:0.000000px;}
.ls0_c02126{letter-spacing:31.680000px;}
.ls1_c02126{letter-spacing:39.905280px;}
.sc__c02126{text-shadow:none;}
.sc0_c02126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02126{-webkit-text-stroke:0px transparent;}
.sc0_c02126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02126{word-spacing:0.000000px;}
._8_c02126{margin-left:-1.152000px;}
._3_c02126{width:1.152000px;}
._9_c02126{width:2.808000px;}
._12_c02126{width:4.265412px;}
._1_c02126{width:5.472000px;}
._2_c02126{width:6.480000px;}
._c_c02126{width:8.134114px;}
._a_c02126{width:9.339641px;}
._b_c02126{width:10.863559px;}
._f_c02126{width:12.213683px;}
._4_c02126{width:13.320000px;}
._5_c02126{width:14.688000px;}
._10_c02126{width:16.032000px;}
._14_c02126{width:19.724325px;}
._13_c02126{width:20.799625px;}
._e_c02126{width:23.886654px;}
._d_c02126{width:25.329666px;}
._11_c02126{width:27.423625px;}
._6_c02126{width:31.032000px;}
._7_c02126{width:32.052024px;}
._0_c02126{width:1500.936000px;}
.fc1_c02126{color:rgb(192,80,77);}
.fc0_c02126{color:rgb(0,0,0);}
.fs0_c02126{font-size:59.760000px;}
.fs1_c02126{font-size:66.240000px;}
.fs2_c02126{font-size:72.000000px;}
.y0_c02126{bottom:0.000000px;}
.y4_c02126{bottom:4.680000px;}
.y3_c02126{bottom:41.796000px;}
.y2_c02126{bottom:75.456000px;}
.y2c_c02126{bottom:120.816000px;}
.y2b_c02126{bottom:151.950000px;}
.y2a_c02126{bottom:182.910000px;}
.y29_c02126{bottom:214.050000px;}
.y28_c02126{bottom:245.010000px;}
.y27_c02126{bottom:276.195000px;}
.y26_c02126{bottom:307.155000px;}
.y25_c02126{bottom:336.675000px;}
.y24_c02126{bottom:356.115000px;}
.y23_c02126{bottom:375.015000px;}
.y22_c02126{bottom:393.915000px;}
.y21_c02126{bottom:412.995000px;}
.y20_c02126{bottom:431.895000px;}
.y1f_c02126{bottom:450.975000px;}
.y1e_c02126{bottom:469.875000px;}
.y1d_c02126{bottom:488.775000px;}
.y1c_c02126{bottom:507.855000px;}
.y1b_c02126{bottom:527.295000px;}
.y1a_c02126{bottom:547.485000px;}
.y19_c02126{bottom:566.565000px;}
.y18_c02126{bottom:585.465000px;}
.y17_c02126{bottom:604.365000px;}
.y16_c02126{bottom:623.445000px;}
.y15_c02126{bottom:642.345000px;}
.y14_c02126{bottom:661.425000px;}
.y13_c02126{bottom:690.945000px;}
.y12_c02126{bottom:722.085000px;}
.y11_c02126{bottom:753.045000px;}
.y10_c02126{bottom:783.825000px;}
.yf_c02126{bottom:804.570000px;}
.ye_c02126{bottom:823.470000px;}
.yd_c02126{bottom:842.550000px;}
.yc_c02126{bottom:861.450000px;}
.yb_c02126{bottom:880.530000px;}
.ya_c02126{bottom:910.050000px;}
.y9_c02126{bottom:941.190000px;}
.y8_c02126{bottom:972.150000px;}
.y7_c02126{bottom:1003.290000px;}
.y6_c02126{bottom:1034.250000px;}
.y5_c02126{bottom:1065.420000px;}
.y1_c02126{bottom:1121.400000px;}
.h3_c02126{height:22.500000px;}
.h2_c02126{height:48.871406px;}
.h1_c02126{height:58.651172px;}
.h5_c02126{height:65.010937px;}
.h8_c02126{height:66.757500px;}
.h7_c02126{height:68.084282px;}
.h4_c02126{height:70.664062px;}
.h6_c02126{height:72.562500px;}
.h0_c02126{height:1188.000000px;}
.w1_c02126{width:66.636000px;}
.w0_c02126{width:918.000000px;}
.x0_c02126{left:0.000000px;}
.x3_c02126{left:16.560000px;}
.x1_c02126{left:127.656000px;}
.x4_c02126{left:180.750000px;}
.x5_c02126{left:191.550000px;}
.x6_c02126{left:218.550000px;}
.x2_c02126{left:820.950000px;}
@media print{
.v0_c02126{vertical-align:0.000000pt;}
.ls2_c02126{letter-spacing:0.000000pt;}
.ls0_c02126{letter-spacing:28.160000pt;}
.ls1_c02126{letter-spacing:35.471360pt;}
.ws0_c02126{word-spacing:0.000000pt;}
._8_c02126{margin-left:-1.024000pt;}
._3_c02126{width:1.024000pt;}
._9_c02126{width:2.496000pt;}
._12_c02126{width:3.791478pt;}
._1_c02126{width:4.864000pt;}
._2_c02126{width:5.760000pt;}
._c_c02126{width:7.230323pt;}
._a_c02126{width:8.301903pt;}
._b_c02126{width:9.656497pt;}
._f_c02126{width:10.856607pt;}
._4_c02126{width:11.840000pt;}
._5_c02126{width:13.056000pt;}
._10_c02126{width:14.250667pt;}
._14_c02126{width:17.532733pt;}
._13_c02126{width:18.488556pt;}
._e_c02126{width:21.232581pt;}
._d_c02126{width:22.515259pt;}
._11_c02126{width:24.376556pt;}
._6_c02126{width:27.584000pt;}
._7_c02126{width:28.490688pt;}
._0_c02126{width:1334.165333pt;}
.fs0_c02126{font-size:53.120000pt;}
.fs1_c02126{font-size:58.880000pt;}
.fs2_c02126{font-size:64.000000pt;}
.y0_c02126{bottom:0.000000pt;}
.y4_c02126{bottom:4.160000pt;}
.y3_c02126{bottom:37.152000pt;}
.y2_c02126{bottom:67.072000pt;}
.y2c_c02126{bottom:107.392000pt;}
.y2b_c02126{bottom:135.066667pt;}
.y2a_c02126{bottom:162.586667pt;}
.y29_c02126{bottom:190.266667pt;}
.y28_c02126{bottom:217.786667pt;}
.y27_c02126{bottom:245.506667pt;}
.y26_c02126{bottom:273.026667pt;}
.y25_c02126{bottom:299.266667pt;}
.y24_c02126{bottom:316.546667pt;}
.y23_c02126{bottom:333.346667pt;}
.y22_c02126{bottom:350.146667pt;}
.y21_c02126{bottom:367.106667pt;}
.y20_c02126{bottom:383.906667pt;}
.y1f_c02126{bottom:400.866667pt;}
.y1e_c02126{bottom:417.666667pt;}
.y1d_c02126{bottom:434.466667pt;}
.y1c_c02126{bottom:451.426667pt;}
.y1b_c02126{bottom:468.706667pt;}
.y1a_c02126{bottom:486.653333pt;}
.y19_c02126{bottom:503.613333pt;}
.y18_c02126{bottom:520.413333pt;}
.y17_c02126{bottom:537.213333pt;}
.y16_c02126{bottom:554.173333pt;}
.y15_c02126{bottom:570.973333pt;}
.y14_c02126{bottom:587.933333pt;}
.y13_c02126{bottom:614.173333pt;}
.y12_c02126{bottom:641.853333pt;}
.y11_c02126{bottom:669.373333pt;}
.y10_c02126{bottom:696.733333pt;}
.yf_c02126{bottom:715.173333pt;}
.ye_c02126{bottom:731.973333pt;}
.yd_c02126{bottom:748.933333pt;}
.yc_c02126{bottom:765.733333pt;}
.yb_c02126{bottom:782.693333pt;}
.ya_c02126{bottom:808.933333pt;}
.y9_c02126{bottom:836.613333pt;}
.y8_c02126{bottom:864.133333pt;}
.y7_c02126{bottom:891.813333pt;}
.y6_c02126{bottom:919.333333pt;}
.y5_c02126{bottom:947.040000pt;}
.y1_c02126{bottom:996.800000pt;}
.h3_c02126{height:20.000000pt;}
.h2_c02126{height:43.441250pt;}
.h1_c02126{height:52.134375pt;}
.h5_c02126{height:57.787500pt;}
.h8_c02126{height:59.340000pt;}
.h7_c02126{height:60.519362pt;}
.h4_c02126{height:62.812500pt;}
.h6_c02126{height:64.500000pt;}
.h0_c02126{height:1056.000000pt;}
.w1_c02126{width:59.232000pt;}
.w0_c02126{width:816.000000pt;}
.x0_c02126{left:0.000000pt;}
.x3_c02126{left:14.720000pt;}
.x1_c02126{left:113.472000pt;}
.x4_c02126{left:160.666667pt;}
.x5_c02126{left:170.266667pt;}
.x6_c02126{left:194.266667pt;}
.x2_c02126{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02127 {
    display:none;
  }
  .loading-indicator_c02127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02127 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02127 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02127" -> "#page-container .classname_c02127")
 */
.pf_c02127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02127 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02127 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02127 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02127 {overflow:visible;}
  }
}
.c_c02127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02127 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02127:after { /* webkit #35443 */
  content: '';
}
.t_c02127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02127 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02127 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02127 { /* info for Javascript */
  display:none;
}
.l_c02127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02127:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02127 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02127.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02127;src:url('chunks/assets/font_a6ec251684a6a2dfc285c926.woff2')format("woff");}.ff1_c02127{font-family:ff1_c02127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02127;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02127{font-family:ff2_c02127;line-height:0.863770;font-style:normal;font-weight: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_c02127;src:url('chunks/assets/font_9580a0a7438949d53ecef3ac.woff2')format("woff");}.ff3_c02127{font-family:ff3_c02127;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02127{vertical-align:-27.336000px;}
.v0_c02127{vertical-align:0.000000px;}
.v1_c02127{vertical-align:33.120000px;}
.ls2_c02127{letter-spacing:0.000000px;}
.ls1_c02127{letter-spacing:0.150000px;}
.ls0_c02127{letter-spacing:0.360000px;}
.sc__c02127{text-shadow:none;}
.sc0_c02127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02127{-webkit-text-stroke:0px transparent;}
.sc0_c02127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02127{word-spacing:-9.720000px;}
.ws1_c02127{word-spacing:0.000000px;}
._12_c02127{margin-left:-12.817920px;}
._9_c02127{margin-left:-2.256000px;}
._6_c02127{margin-left:-1.044000px;}
._2_c02127{width:1.452000px;}
._7_c02127{width:2.484000px;}
._8_c02127{width:7.560000px;}
._3_c02127{width:8.928000px;}
._4_c02127{width:9.936000px;}
._5_c02127{width:11.244000px;}
._c_c02127{width:13.035261px;}
._a_c02127{width:14.292132px;}
._b_c02127{width:15.301836px;}
._d_c02127{width:16.956000px;}
._1_c02127{width:19.440000px;}
._10_c02127{width:20.448000px;}
._11_c02127{width:21.516000px;}
._e_c02127{width:35.784000px;}
._f_c02127{width:37.224000px;}
._0_c02127{width:1500.936000px;}
.fc1_c02127{color:rgb(192,80,77);}
.fc0_c02127{color:rgb(0,0,0);}
.fs4_c02127{font-size:38.880000px;}
.fs3_c02127{font-size:48.240000px;}
.fs0_c02127{font-size:59.760000px;}
.fs1_c02127{font-size:66.240000px;}
.fs2_c02127{font-size:72.000000px;}
.y0_c02127{bottom:0.000000px;}
.y4_c02127{bottom:4.680000px;}
.y3_c02127{bottom:41.796000px;}
.y2_c02127{bottom:75.456000px;}
.y27_c02127{bottom:109.836000px;}
.y26_c02127{bottom:127.116000px;}
.y25_c02127{bottom:151.230000px;}
.y24_c02127{bottom:162.570000px;}
.y23_c02127{bottom:206.130000px;}
.y22_c02127{bottom:237.270000px;}
.y21_c02127{bottom:268.230000px;}
.y20_c02127{bottom:299.415000px;}
.y1f_c02127{bottom:330.375000px;}
.y1e_c02127{bottom:361.515000px;}
.y1d_c02127{bottom:392.475000px;}
.y1c_c02127{bottom:423.615000px;}
.y1b_c02127{bottom:454.575000px;}
.y1a_c02127{bottom:485.715000px;}
.y19_c02127{bottom:516.675000px;}
.y18_c02127{bottom:547.845000px;}
.y17_c02127{bottom:578.805000px;}
.y16_c02127{bottom:609.945000px;}
.y15_c02127{bottom:640.905000px;}
.y14_c02127{bottom:672.045000px;}
.y13_c02127{bottom:703.005000px;}
.y12_c02127{bottom:723.525000px;}
.y11_c02127{bottom:742.425000px;}
.y10_c02127{bottom:761.325000px;}
.yf_c02127{bottom:780.405000px;}
.ye_c02127{bottom:799.350000px;}
.yd_c02127{bottom:818.430000px;}
.yc_c02127{bottom:847.950000px;}
.yb_c02127{bottom:879.090000px;}
.ya_c02127{bottom:910.050000px;}
.y9_c02127{bottom:941.190000px;}
.y8_c02127{bottom:972.150000px;}
.y7_c02127{bottom:1003.290000px;}
.y6_c02127{bottom:1034.250000px;}
.y5_c02127{bottom:1065.420000px;}
.y1_c02127{bottom:1121.400000px;}
.h3_c02127{height:22.500000px;}
.h8_c02127{height:38.158594px;}
.h2_c02127{height:48.871406px;}
.h1_c02127{height:58.651172px;}
.h7_c02127{height:64.546875px;}
.h6_c02127{height:65.010937px;}
.h4_c02127{height:70.664062px;}
.h5_c02127{height:80.464922px;}
.h0_c02127{height:1188.000000px;}
.w1_c02127{width:66.636000px;}
.w0_c02127{width:918.000000px;}
.x0_c02127{left:0.000000px;}
.x3_c02127{left:16.560000px;}
.x1_c02127{left:127.656000px;}
.x4_c02127{left:180.750000px;}
.x5_c02127{left:191.550000px;}
.x2_c02127{left:820.950000px;}
@media print{
.v2_c02127{vertical-align:-24.298667pt;}
.v0_c02127{vertical-align:0.000000pt;}
.v1_c02127{vertical-align:29.440000pt;}
.ls2_c02127{letter-spacing:0.000000pt;}
.ls1_c02127{letter-spacing:0.133333pt;}
.ls0_c02127{letter-spacing:0.320000pt;}
.ws0_c02127{word-spacing:-8.640000pt;}
.ws1_c02127{word-spacing:0.000000pt;}
._12_c02127{margin-left:-11.393707pt;}
._9_c02127{margin-left:-2.005333pt;}
._6_c02127{margin-left:-0.928000pt;}
._2_c02127{width:1.290667pt;}
._7_c02127{width:2.208000pt;}
._8_c02127{width:6.720000pt;}
._3_c02127{width:7.936000pt;}
._4_c02127{width:8.832000pt;}
._5_c02127{width:9.994667pt;}
._c_c02127{width:11.586899pt;}
._a_c02127{width:12.704118pt;}
._b_c02127{width:13.601632pt;}
._d_c02127{width:15.072000pt;}
._1_c02127{width:17.280000pt;}
._10_c02127{width:18.176000pt;}
._11_c02127{width:19.125333pt;}
._e_c02127{width:31.808000pt;}
._f_c02127{width:33.088000pt;}
._0_c02127{width:1334.165333pt;}
.fs4_c02127{font-size:34.560000pt;}
.fs3_c02127{font-size:42.880000pt;}
.fs0_c02127{font-size:53.120000pt;}
.fs1_c02127{font-size:58.880000pt;}
.fs2_c02127{font-size:64.000000pt;}
.y0_c02127{bottom:0.000000pt;}
.y4_c02127{bottom:4.160000pt;}
.y3_c02127{bottom:37.152000pt;}
.y2_c02127{bottom:67.072000pt;}
.y27_c02127{bottom:97.632000pt;}
.y26_c02127{bottom:112.992000pt;}
.y25_c02127{bottom:134.426667pt;}
.y24_c02127{bottom:144.506667pt;}
.y23_c02127{bottom:183.226667pt;}
.y22_c02127{bottom:210.906667pt;}
.y21_c02127{bottom:238.426667pt;}
.y20_c02127{bottom:266.146667pt;}
.y1f_c02127{bottom:293.666667pt;}
.y1e_c02127{bottom:321.346667pt;}
.y1d_c02127{bottom:348.866667pt;}
.y1c_c02127{bottom:376.546667pt;}
.y1b_c02127{bottom:404.066667pt;}
.y1a_c02127{bottom:431.746667pt;}
.y19_c02127{bottom:459.266667pt;}
.y18_c02127{bottom:486.973333pt;}
.y17_c02127{bottom:514.493333pt;}
.y16_c02127{bottom:542.173333pt;}
.y15_c02127{bottom:569.693333pt;}
.y14_c02127{bottom:597.373333pt;}
.y13_c02127{bottom:624.893333pt;}
.y12_c02127{bottom:643.133333pt;}
.y11_c02127{bottom:659.933333pt;}
.y10_c02127{bottom:676.733333pt;}
.yf_c02127{bottom:693.693333pt;}
.ye_c02127{bottom:710.533333pt;}
.yd_c02127{bottom:727.493333pt;}
.yc_c02127{bottom:753.733333pt;}
.yb_c02127{bottom:781.413333pt;}
.ya_c02127{bottom:808.933333pt;}
.y9_c02127{bottom:836.613333pt;}
.y8_c02127{bottom:864.133333pt;}
.y7_c02127{bottom:891.813333pt;}
.y6_c02127{bottom:919.333333pt;}
.y5_c02127{bottom:947.040000pt;}
.y1_c02127{bottom:996.800000pt;}
.h3_c02127{height:20.000000pt;}
.h8_c02127{height:33.918750pt;}
.h2_c02127{height:43.441250pt;}
.h1_c02127{height:52.134375pt;}
.h7_c02127{height:57.375000pt;}
.h6_c02127{height:57.787500pt;}
.h4_c02127{height:62.812500pt;}
.h5_c02127{height:71.524375pt;}
.h0_c02127{height:1056.000000pt;}
.w1_c02127{width:59.232000pt;}
.w0_c02127{width:816.000000pt;}
.x0_c02127{left:0.000000pt;}
.x3_c02127{left:14.720000pt;}
.x1_c02127{left:113.472000pt;}
.x4_c02127{left:160.666667pt;}
.x5_c02127{left:170.266667pt;}
.x2_c02127{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02128 {
    display:none;
  }
  .loading-indicator_c02128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02128 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02128 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02128" -> "#page-container .classname_c02128")
 */
.pf_c02128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02128 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02128 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02128 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02128 {overflow:visible;}
  }
}
.c_c02128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02128 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02128:after { /* webkit #35443 */
  content: '';
}
.t_c02128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02128 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02128 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02128 { /* info for Javascript */
  display:none;
}
.l_c02128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02128:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02128 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02128.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02128;src:url('chunks/assets/font_fa9f10eb62747ffc23c687e1.woff2')format("woff");}.ff1_c02128{font-family:ff1_c02128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02128;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff2_c02128{font-family:ff2_c02128;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02128{vertical-align:0.000000px;}
.ls0_c02128{letter-spacing:0.000000px;}
.sc__c02128{text-shadow:none;}
.sc0_c02128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02128{-webkit-text-stroke:0px transparent;}
.sc0_c02128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02128{word-spacing:0.000000px;}
._4_c02128{margin-left:-1.440000px;}
._3_c02128{width:1.440000px;}
._1_c02128{width:2.952000px;}
._2_c02128{width:4.248000px;}
._0_c02128{width:1500.936000px;}
.fc1_c02128{color:rgb(192,80,77);}
.fc0_c02128{color:rgb(0,0,0);}
.fs0_c02128{font-size:59.760000px;}
.fs1_c02128{font-size:66.240000px;}
.fs2_c02128{font-size:72.000000px;}
.y0_c02128{bottom:0.000000px;}
.y4_c02128{bottom:4.680000px;}
.y3_c02128{bottom:41.796000px;}
.y2_c02128{bottom:75.456000px;}
.y6_c02128{bottom:1034.250000px;}
.y5_c02128{bottom:1065.420000px;}
.y1_c02128{bottom:1121.400000px;}
.h3_c02128{height:22.500000px;}
.h2_c02128{height:48.871406px;}
.h1_c02128{height:58.651172px;}
.h4_c02128{height:70.664062px;}
.h0_c02128{height:1188.000000px;}
.w1_c02128{width:66.636000px;}
.w0_c02128{width:918.000000px;}
.x0_c02128{left:0.000000px;}
.x3_c02128{left:16.560000px;}
.x1_c02128{left:127.656000px;}
.x2_c02128{left:820.950000px;}
@media print{
.v0_c02128{vertical-align:0.000000pt;}
.ls0_c02128{letter-spacing:0.000000pt;}
.ws0_c02128{word-spacing:0.000000pt;}
._4_c02128{margin-left:-1.280000pt;}
._3_c02128{width:1.280000pt;}
._1_c02128{width:2.624000pt;}
._2_c02128{width:3.776000pt;}
._0_c02128{width:1334.165333pt;}
.fs0_c02128{font-size:53.120000pt;}
.fs1_c02128{font-size:58.880000pt;}
.fs2_c02128{font-size:64.000000pt;}
.y0_c02128{bottom:0.000000pt;}
.y4_c02128{bottom:4.160000pt;}
.y3_c02128{bottom:37.152000pt;}
.y2_c02128{bottom:67.072000pt;}
.y6_c02128{bottom:919.333333pt;}
.y5_c02128{bottom:947.040000pt;}
.y1_c02128{bottom:996.800000pt;}
.h3_c02128{height:20.000000pt;}
.h2_c02128{height:43.441250pt;}
.h1_c02128{height:52.134375pt;}
.h4_c02128{height:62.812500pt;}
.h0_c02128{height:1056.000000pt;}
.w1_c02128{width:59.232000pt;}
.w0_c02128{width:816.000000pt;}
.x0_c02128{left:0.000000pt;}
.x3_c02128{left:14.720000pt;}
.x1_c02128{left:113.472000pt;}
.x2_c02128{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02129 {
    display:none;
  }
  .loading-indicator_c02129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02129 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02129 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02129" -> "#page-container .classname_c02129")
 */
.pf_c02129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02129 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02129 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02129 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02129 {overflow:visible;}
  }
}
.c_c02129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02129 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02129:after { /* webkit #35443 */
  content: '';
}
.t_c02129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02129 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02129 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02129 { /* info for Javascript */
  display:none;
}
.l_c02129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02129:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02129 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02129.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02129;src:url('chunks/assets/font_4ad56332c3b8e5656ba3e9d4.woff2')format("woff");}.ff1_c02129{font-family:ff1_c02129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02129;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff2_c02129{font-family:ff2_c02129;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02129{vertical-align:0.000000px;}
.ls1_c02129{letter-spacing:-0.166800px;}
.ls0_c02129{letter-spacing:0.000000px;}
.sc__c02129{text-shadow:none;}
.sc0_c02129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02129{-webkit-text-stroke:0px transparent;}
.sc0_c02129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02129{word-spacing:0.000000px;}
._1_c02129{margin-left:-1.008000px;}
._2_c02129{width:1.668024px;}
._0_c02129{width:1500.960000px;}
.fc1_c02129{color:rgb(192,80,77);}
.fc2_c02129{color:rgb(255,255,255);}
.fc0_c02129{color:rgb(0,0,0);}
.fs0_c02129{font-size:59.760000px;}
.fs3_c02129{font-size:63.360000px;}
.fs1_c02129{font-size:66.240000px;}
.fs2_c02129{font-size:72.000000px;}
.y0_c02129{bottom:0.000000px;}
.yc_c02129{bottom:3.780000px;}
.y20_c02129{bottom:3.810000px;}
.y9_c02129{bottom:3.960000px;}
.y4_c02129{bottom:4.860000px;}
.yb_c02129{bottom:21.960000px;}
.y1f_c02129{bottom:21.990000px;}
.y38_c02129{bottom:22.134000px;}
.y1d_c02129{bottom:22.140000px;}
.y1b_c02129{bottom:22.680000px;}
.y2f_c02129{bottom:22.860000px;}
.y28_c02129{bottom:39.960000px;}
.y37_c02129{bottom:40.134000px;}
.y11_c02129{bottom:40.140000px;}
.y36_c02129{bottom:40.185000px;}
.yf_c02129{bottom:40.860000px;}
.y2e_c02129{bottom:40.905000px;}
.y3_c02129{bottom:52.416000px;}
.y14_c02129{bottom:58.860000px;}
.y23_c02129{bottom:58.890000px;}
.ye_c02129{bottom:59.040000px;}
.y2d_c02129{bottom:59.085000px;}
.y35_c02129{bottom:59.754000px;}
.y2_c02129{bottom:75.456000px;}
.y13_c02129{bottom:77.040000px;}
.y22_c02129{bottom:77.070000px;}
.y2c_c02129{bottom:77.265000px;}
.y34_c02129{bottom:77.934000px;}
.y27_c02129{bottom:78.480000px;}
.y1a_c02129{bottom:78.660000px;}
.y33_c02129{bottom:95.979000px;}
.y19_c02129{bottom:96.660000px;}
.y32_c02129{bottom:114.159000px;}
.y18_c02129{bottom:114.840000px;}
.y31_c02129{bottom:132.339000px;}
.y17_c02129{bottom:132.840000px;}
.y26_c02129{bottom:132.870000px;}
.y30_c02129{bottom:145.836000px;}
.y16_c02129{bottom:151.020000px;}
.y25_c02129{bottom:151.050000px;}
.y2b_c02129{bottom:200.910000px;}
.y2a_c02129{bottom:256.035000px;}
.y24_c02129{bottom:293.115000px;}
.y29_c02129{bottom:330.015000px;}
.y21_c02129{bottom:367.095000px;}
.y1e_c02129{bottom:422.175000px;}
.y15_c02129{bottom:459.105000px;}
.y1c_c02129{bottom:496.005000px;}
.y12_c02129{bottom:533.085000px;}
.y10_c02129{bottom:569.985000px;}
.yd_c02129{bottom:625.110000px;}
.ya_c02129{bottom:662.190000px;}
.y8_c02129{bottom:699.090000px;}
.y7_c02129{bottom:732.570000px;}
.y6_c02129{bottom:753.450000px;}
.y5_c02129{bottom:774.150000px;}
.y1_c02129{bottom:851.400000px;}
.h5_c02129{height:18.180000px;}
.h3_c02129{height:22.680000px;}
.h7_c02129{height:36.180000px;}
.hd_c02129{height:36.216000px;}
.hc_c02129{height:36.360000px;}
.h2_c02129{height:48.871406px;}
.he_c02129{height:54.180000px;}
.h12_c02129{height:54.360000px;}
.h9_c02129{height:54.396000px;}
.h1_c02129{height:58.651172px;}
.h6_c02129{height:62.184375px;}
.h4_c02129{height:70.664062px;}
.hf_c02129{height:73.080000px;}
.h8_c02129{height:73.260000px;}
.ha_c02129{height:91.296000px;}
.h10_c02129{height:91.476000px;}
.h11_c02129{height:146.556000px;}
.hb_c02129{height:165.270000px;}
.h0_c02129{height:918.000000px;}
.w2_c02129{width:59.796000px;}
.w1_c02129{width:66.780000px;}
.w9_c02129{width:115.560000px;}
.w6_c02129{width:121.896000px;}
.w8_c02129{width:131.436000px;}
.w3_c02129{width:134.280000px;}
.w7_c02129{width:137.520000px;}
.w5_c02129{width:142.740000px;}
.w4_c02129{width:142.776000px;}
.wa_c02129{width:679.245000px;}
.w0_c02129{width:1188.000000px;}
.x0_c02129{left:0.000000px;}
.x16_c02129{left:7.560000px;}
.x28_c02129{left:9.000000px;}
.x1b_c02129{left:11.880000px;}
.x2e_c02129{left:12.960000px;}
.x8_c02129{left:14.040000px;}
.x3_c02129{left:16.560000px;}
.x2b_c02129{left:18.000000px;}
.x21_c02129{left:21.600000px;}
.x30_c02129{left:23.400000px;}
.x2c_c02129{left:24.480000px;}
.x1e_c02129{left:25.920000px;}
.x15_c02129{left:27.900000px;}
.x1c_c02129{left:29.700000px;}
.x31_c02129{left:31.140000px;}
.x25_c02129{left:32.400000px;}
.x2f_c02129{left:33.840000px;}
.x24_c02129{left:35.100000px;}
.x2d_c02129{left:36.360000px;}
.x27_c02129{left:37.620000px;}
.xe_c02129{left:39.780000px;}
.x13_c02129{left:42.480000px;}
.x11_c02129{left:44.280000px;}
.x26_c02129{left:45.540000px;}
.xa_c02129{left:47.880000px;}
.xc_c02129{left:49.500000px;}
.x2a_c02129{left:52.020000px;}
.x1f_c02129{left:54.180000px;}
.x1a_c02129{left:57.600000px;}
.x20_c02129{left:60.840000px;}
.x23_c02129{left:65.700000px;}
.x17_c02129{left:67.140000px;}
.x22_c02129{left:68.760000px;}
.x1d_c02129{left:71.280000px;}
.x7_c02129{left:98.640000px;}
.x1_c02129{left:106.200000px;}
.x9_c02129{left:159.150000px;}
.x29_c02129{left:275.985000px;}
.xb_c02129{left:294.150000px;}
.x19_c02129{left:315.585000px;}
.x18_c02129{left:339.705000px;}
.x5_c02129{left:355.350000px;}
.xd_c02129{left:437.655000px;}
.x4_c02129{left:550.695000px;}
.xf_c02129{left:581.115000px;}
.x6_c02129{left:593.895000px;}
.x10_c02129{left:703.725000px;}
.x12_c02129{left:841.965000px;}
.x14_c02129{left:974.130000px;}
.x2_c02129{left:1101.570000px;}
@media print{
.v0_c02129{vertical-align:0.000000pt;}
.ls1_c02129{letter-spacing:-0.148267pt;}
.ls0_c02129{letter-spacing:0.000000pt;}
.ws0_c02129{word-spacing:0.000000pt;}
._1_c02129{margin-left:-0.896000pt;}
._2_c02129{width:1.482688pt;}
._0_c02129{width:1334.186667pt;}
.fs0_c02129{font-size:53.120000pt;}
.fs3_c02129{font-size:56.320000pt;}
.fs1_c02129{font-size:58.880000pt;}
.fs2_c02129{font-size:64.000000pt;}
.y0_c02129{bottom:0.000000pt;}
.yc_c02129{bottom:3.360000pt;}
.y20_c02129{bottom:3.386667pt;}
.y9_c02129{bottom:3.520000pt;}
.y4_c02129{bottom:4.320000pt;}
.yb_c02129{bottom:19.520000pt;}
.y1f_c02129{bottom:19.546667pt;}
.y38_c02129{bottom:19.674667pt;}
.y1d_c02129{bottom:19.680000pt;}
.y1b_c02129{bottom:20.160000pt;}
.y2f_c02129{bottom:20.320000pt;}
.y28_c02129{bottom:35.520000pt;}
.y37_c02129{bottom:35.674667pt;}
.y11_c02129{bottom:35.680000pt;}
.y36_c02129{bottom:35.720000pt;}
.yf_c02129{bottom:36.320000pt;}
.y2e_c02129{bottom:36.360000pt;}
.y3_c02129{bottom:46.592000pt;}
.y14_c02129{bottom:52.320000pt;}
.y23_c02129{bottom:52.346667pt;}
.ye_c02129{bottom:52.480000pt;}
.y2d_c02129{bottom:52.520000pt;}
.y35_c02129{bottom:53.114667pt;}
.y2_c02129{bottom:67.072000pt;}
.y13_c02129{bottom:68.480000pt;}
.y22_c02129{bottom:68.506667pt;}
.y2c_c02129{bottom:68.680000pt;}
.y34_c02129{bottom:69.274667pt;}
.y27_c02129{bottom:69.760000pt;}
.y1a_c02129{bottom:69.920000pt;}
.y33_c02129{bottom:85.314667pt;}
.y19_c02129{bottom:85.920000pt;}
.y32_c02129{bottom:101.474667pt;}
.y18_c02129{bottom:102.080000pt;}
.y31_c02129{bottom:117.634667pt;}
.y17_c02129{bottom:118.080000pt;}
.y26_c02129{bottom:118.106667pt;}
.y30_c02129{bottom:129.632000pt;}
.y16_c02129{bottom:134.240000pt;}
.y25_c02129{bottom:134.266667pt;}
.y2b_c02129{bottom:178.586667pt;}
.y2a_c02129{bottom:227.586667pt;}
.y24_c02129{bottom:260.546667pt;}
.y29_c02129{bottom:293.346667pt;}
.y21_c02129{bottom:326.306667pt;}
.y1e_c02129{bottom:375.266667pt;}
.y15_c02129{bottom:408.093333pt;}
.y1c_c02129{bottom:440.893333pt;}
.y12_c02129{bottom:473.853333pt;}
.y10_c02129{bottom:506.653333pt;}
.yd_c02129{bottom:555.653333pt;}
.ya_c02129{bottom:588.613333pt;}
.y8_c02129{bottom:621.413333pt;}
.y7_c02129{bottom:651.173333pt;}
.y6_c02129{bottom:669.733333pt;}
.y5_c02129{bottom:688.133333pt;}
.y1_c02129{bottom:756.800000pt;}
.h5_c02129{height:16.160000pt;}
.h3_c02129{height:20.160000pt;}
.h7_c02129{height:32.160000pt;}
.hd_c02129{height:32.192000pt;}
.hc_c02129{height:32.320000pt;}
.h2_c02129{height:43.441250pt;}
.he_c02129{height:48.160000pt;}
.h12_c02129{height:48.320000pt;}
.h9_c02129{height:48.352000pt;}
.h1_c02129{height:52.134375pt;}
.h6_c02129{height:55.275000pt;}
.h4_c02129{height:62.812500pt;}
.hf_c02129{height:64.960000pt;}
.h8_c02129{height:65.120000pt;}
.ha_c02129{height:81.152000pt;}
.h10_c02129{height:81.312000pt;}
.h11_c02129{height:130.272000pt;}
.hb_c02129{height:146.906667pt;}
.h0_c02129{height:816.000000pt;}
.w2_c02129{width:53.152000pt;}
.w1_c02129{width:59.360000pt;}
.w9_c02129{width:102.720000pt;}
.w6_c02129{width:108.352000pt;}
.w8_c02129{width:116.832000pt;}
.w3_c02129{width:119.360000pt;}
.w7_c02129{width:122.240000pt;}
.w5_c02129{width:126.880000pt;}
.w4_c02129{width:126.912000pt;}
.wa_c02129{width:603.773333pt;}
.w0_c02129{width:1056.000000pt;}
.x0_c02129{left:0.000000pt;}
.x16_c02129{left:6.720000pt;}
.x28_c02129{left:8.000000pt;}
.x1b_c02129{left:10.560000pt;}
.x2e_c02129{left:11.520000pt;}
.x8_c02129{left:12.480000pt;}
.x3_c02129{left:14.720000pt;}
.x2b_c02129{left:16.000000pt;}
.x21_c02129{left:19.200000pt;}
.x30_c02129{left:20.800000pt;}
.x2c_c02129{left:21.760000pt;}
.x1e_c02129{left:23.040000pt;}
.x15_c02129{left:24.800000pt;}
.x1c_c02129{left:26.400000pt;}
.x31_c02129{left:27.680000pt;}
.x25_c02129{left:28.800000pt;}
.x2f_c02129{left:30.080000pt;}
.x24_c02129{left:31.200000pt;}
.x2d_c02129{left:32.320000pt;}
.x27_c02129{left:33.440000pt;}
.xe_c02129{left:35.360000pt;}
.x13_c02129{left:37.760000pt;}
.x11_c02129{left:39.360000pt;}
.x26_c02129{left:40.480000pt;}
.xa_c02129{left:42.560000pt;}
.xc_c02129{left:44.000000pt;}
.x2a_c02129{left:46.240000pt;}
.x1f_c02129{left:48.160000pt;}
.x1a_c02129{left:51.200000pt;}
.x20_c02129{left:54.080000pt;}
.x23_c02129{left:58.400000pt;}
.x17_c02129{left:59.680000pt;}
.x22_c02129{left:61.120000pt;}
.x1d_c02129{left:63.360000pt;}
.x7_c02129{left:87.680000pt;}
.x1_c02129{left:94.400000pt;}
.x9_c02129{left:141.466667pt;}
.x29_c02129{left:245.320000pt;}
.xb_c02129{left:261.466667pt;}
.x19_c02129{left:280.520000pt;}
.x18_c02129{left:301.960000pt;}
.x5_c02129{left:315.866667pt;}
.xd_c02129{left:389.026667pt;}
.x4_c02129{left:489.506667pt;}
.xf_c02129{left:516.546667pt;}
.x6_c02129{left:527.906667pt;}
.x10_c02129{left:625.533333pt;}
.x12_c02129{left:748.413333pt;}
.x14_c02129{left:865.893333pt;}
.x2_c02129{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02130 {
    display:none;
  }
  .loading-indicator_c02130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02130 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02130 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02130" -> "#page-container .classname_c02130")
 */
.pf_c02130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02130 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02130 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02130 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02130 {overflow:visible;}
  }
}
.c_c02130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02130 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02130:after { /* webkit #35443 */
  content: '';
}
.t_c02130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02130 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02130 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02130 { /* info for Javascript */
  display:none;
}
.l_c02130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02130:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02130 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02130.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02130;src:url('chunks/assets/font_a0b3a312a35c46a2e6726ce5.woff2')format("woff");}.ff1_c02130{font-family:ff1_c02130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02130;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff2_c02130{font-family:ff2_c02130;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02130{vertical-align:0.000000px;}
.ls0_c02130{letter-spacing:0.000000px;}
.sc__c02130{text-shadow:none;}
.sc0_c02130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02130{-webkit-text-stroke:0px transparent;}
.sc0_c02130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02130{word-spacing:0.000000px;}
._1_c02130{margin-left:-1.014013px;}
._0_c02130{width:1500.960000px;}
.fc1_c02130{color:rgb(192,80,77);}
.fc0_c02130{color:rgb(0,0,0);}
.fs0_c02130{font-size:59.760000px;}
.fs2_c02130{font-size:63.360000px;}
.fs1_c02130{font-size:66.240000px;}
.y0_c02130{bottom:0.000000px;}
.ya_c02130{bottom:3.780000px;}
.y8_c02130{bottom:3.960000px;}
.y27_c02130{bottom:4.500000px;}
.y2e_c02130{bottom:4.680000px;}
.y4_c02130{bottom:4.860000px;}
.y7_c02130{bottom:21.960000px;}
.y15_c02130{bottom:22.140000px;}
.y22_c02130{bottom:22.680000px;}
.ye_c02130{bottom:22.860000px;}
.y28_c02130{bottom:39.960000px;}
.y6_c02130{bottom:40.140000px;}
.yd_c02130{bottom:40.860000px;}
.y3_c02130{bottom:52.416000px;}
.y26_c02130{bottom:58.860000px;}
.yc_c02130{bottom:59.040000px;}
.y1b_c02130{bottom:60.480000px;}
.y14_c02130{bottom:60.525000px;}
.y2_c02130{bottom:75.456000px;}
.y25_c02130{bottom:77.040000px;}
.y1a_c02130{bottom:78.480000px;}
.y13_c02130{bottom:78.525000px;}
.y20_c02130{bottom:78.660000px;}
.y2b_c02130{bottom:95.040000px;}
.y19_c02130{bottom:96.660000px;}
.y12_c02130{bottom:96.705000px;}
.y11_c02130{bottom:114.705000px;}
.y1f_c02130{bottom:114.840000px;}
.y18_c02130{bottom:114.885000px;}
.y1e_c02130{bottom:132.840000px;}
.y10_c02130{bottom:132.885000px;}
.y2f_c02130{bottom:144.396000px;}
.y2d_c02130{bottom:163.290000px;}
.y2c_c02130{bottom:200.190000px;}
.y2a_c02130{bottom:237.315000px;}
.y29_c02130{bottom:292.395000px;}
.y24_c02130{bottom:347.475000px;}
.y23_c02130{bottom:402.555000px;}
.y1d_c02130{bottom:439.485000px;}
.y21_c02130{bottom:476.385000px;}
.y17_c02130{bottom:513.465000px;}
.y1c_c02130{bottom:550.365000px;}
.yf_c02130{bottom:587.445000px;}
.y16_c02130{bottom:624.390000px;}
.yb_c02130{bottom:661.290000px;}
.y9_c02130{bottom:698.370000px;}
.y5_c02130{bottom:735.270000px;}
.y1_c02130{bottom:851.400000px;}
.h10_c02130{height:18.180000px;}
.h3_c02130{height:22.680000px;}
.h6_c02130{height:36.180000px;}
.ha_c02130{height:36.216000px;}
.h9_c02130{height:36.360000px;}
.h2_c02130{height:48.871406px;}
.hd_c02130{height:54.180000px;}
.h4_c02130{height:54.360000px;}
.h1_c02130{height:58.651172px;}
.h5_c02130{height:62.184375px;}
.hf_c02130{height:73.116000px;}
.h7_c02130{height:73.260000px;}
.hc_c02130{height:91.296000px;}
.he_c02130{height:109.260000px;}
.hb_c02130{height:147.060000px;}
.h8_c02130{height:147.096000px;}
.h0_c02130{height:918.000000px;}
.w2_c02130{width:59.796000px;}
.w1_c02130{width:66.780000px;}
.w8_c02130{width:115.560000px;}
.w6_c02130{width:121.896000px;}
.w9_c02130{width:131.436000px;}
.w3_c02130{width:134.280000px;}
.w7_c02130{width:137.520000px;}
.w5_c02130{width:142.740000px;}
.w4_c02130{width:142.776000px;}
.w0_c02130{width:1188.000000px;}
.x0_c02130{left:0.000000px;}
.x13_c02130{left:8.100000px;}
.x21_c02130{left:9.360000px;}
.xc_c02130{left:10.800000px;}
.x6_c02130{left:11.880000px;}
.x20_c02130{left:15.480000px;}
.x3_c02130{left:16.560000px;}
.x28_c02130{left:17.820000px;}
.x19_c02130{left:19.440000px;}
.x23_c02130{left:21.060000px;}
.x27_c02130{left:22.140000px;}
.x1f_c02130{left:24.480000px;}
.x1e_c02130{left:28.080000px;}
.x5_c02130{left:29.700000px;}
.x10_c02130{left:31.140000px;}
.x22_c02130{left:32.400000px;}
.x1c_c02130{left:33.660000px;}
.x26_c02130{left:35.460000px;}
.x9_c02130{left:37.260000px;}
.x16_c02130{left:38.700000px;}
.x29_c02130{left:39.960000px;}
.x24_c02130{left:41.580000px;}
.x18_c02130{left:42.840000px;}
.x2a_c02130{left:44.460000px;}
.x25_c02130{left:46.440000px;}
.x15_c02130{left:48.240000px;}
.x17_c02130{left:52.380000px;}
.x1d_c02130{left:57.600000px;}
.xf_c02130{left:60.840000px;}
.x1b_c02130{left:65.700000px;}
.x8_c02130{left:67.140000px;}
.x12_c02130{left:68.760000px;}
.xb_c02130{left:71.280000px;}
.x4_c02130{left:98.640000px;}
.x1_c02130{left:106.200000px;}
.x7_c02130{left:159.150000px;}
.xa_c02130{left:294.150000px;}
.xd_c02130{left:437.655000px;}
.xe_c02130{left:581.115000px;}
.x11_c02130{left:703.725000px;}
.x1a_c02130{left:841.965000px;}
.x14_c02130{left:974.130000px;}
.x2_c02130{left:1101.570000px;}
@media print{
.v0_c02130{vertical-align:0.000000pt;}
.ls0_c02130{letter-spacing:0.000000pt;}
.ws0_c02130{word-spacing:0.000000pt;}
._1_c02130{margin-left:-0.901345pt;}
._0_c02130{width:1334.186667pt;}
.fs0_c02130{font-size:53.120000pt;}
.fs2_c02130{font-size:56.320000pt;}
.fs1_c02130{font-size:58.880000pt;}
.y0_c02130{bottom:0.000000pt;}
.ya_c02130{bottom:3.360000pt;}
.y8_c02130{bottom:3.520000pt;}
.y27_c02130{bottom:4.000000pt;}
.y2e_c02130{bottom:4.160000pt;}
.y4_c02130{bottom:4.320000pt;}
.y7_c02130{bottom:19.520000pt;}
.y15_c02130{bottom:19.680000pt;}
.y22_c02130{bottom:20.160000pt;}
.ye_c02130{bottom:20.320000pt;}
.y28_c02130{bottom:35.520000pt;}
.y6_c02130{bottom:35.680000pt;}
.yd_c02130{bottom:36.320000pt;}
.y3_c02130{bottom:46.592000pt;}
.y26_c02130{bottom:52.320000pt;}
.yc_c02130{bottom:52.480000pt;}
.y1b_c02130{bottom:53.760000pt;}
.y14_c02130{bottom:53.800000pt;}
.y2_c02130{bottom:67.072000pt;}
.y25_c02130{bottom:68.480000pt;}
.y1a_c02130{bottom:69.760000pt;}
.y13_c02130{bottom:69.800000pt;}
.y20_c02130{bottom:69.920000pt;}
.y2b_c02130{bottom:84.480000pt;}
.y19_c02130{bottom:85.920000pt;}
.y12_c02130{bottom:85.960000pt;}
.y11_c02130{bottom:101.960000pt;}
.y1f_c02130{bottom:102.080000pt;}
.y18_c02130{bottom:102.120000pt;}
.y1e_c02130{bottom:118.080000pt;}
.y10_c02130{bottom:118.120000pt;}
.y2f_c02130{bottom:128.352000pt;}
.y2d_c02130{bottom:145.146667pt;}
.y2c_c02130{bottom:177.946667pt;}
.y2a_c02130{bottom:210.946667pt;}
.y29_c02130{bottom:259.906667pt;}
.y24_c02130{bottom:308.866667pt;}
.y23_c02130{bottom:357.826667pt;}
.y1d_c02130{bottom:390.653333pt;}
.y21_c02130{bottom:423.453333pt;}
.y17_c02130{bottom:456.413333pt;}
.y1c_c02130{bottom:489.213333pt;}
.yf_c02130{bottom:522.173333pt;}
.y16_c02130{bottom:555.013333pt;}
.yb_c02130{bottom:587.813333pt;}
.y9_c02130{bottom:620.773333pt;}
.y5_c02130{bottom:653.573333pt;}
.y1_c02130{bottom:756.800000pt;}
.h10_c02130{height:16.160000pt;}
.h3_c02130{height:20.160000pt;}
.h6_c02130{height:32.160000pt;}
.ha_c02130{height:32.192000pt;}
.h9_c02130{height:32.320000pt;}
.h2_c02130{height:43.441250pt;}
.hd_c02130{height:48.160000pt;}
.h4_c02130{height:48.320000pt;}
.h1_c02130{height:52.134375pt;}
.h5_c02130{height:55.275000pt;}
.hf_c02130{height:64.992000pt;}
.h7_c02130{height:65.120000pt;}
.hc_c02130{height:81.152000pt;}
.he_c02130{height:97.120000pt;}
.hb_c02130{height:130.720000pt;}
.h8_c02130{height:130.752000pt;}
.h0_c02130{height:816.000000pt;}
.w2_c02130{width:53.152000pt;}
.w1_c02130{width:59.360000pt;}
.w8_c02130{width:102.720000pt;}
.w6_c02130{width:108.352000pt;}
.w9_c02130{width:116.832000pt;}
.w3_c02130{width:119.360000pt;}
.w7_c02130{width:122.240000pt;}
.w5_c02130{width:126.880000pt;}
.w4_c02130{width:126.912000pt;}
.w0_c02130{width:1056.000000pt;}
.x0_c02130{left:0.000000pt;}
.x13_c02130{left:7.200000pt;}
.x21_c02130{left:8.320000pt;}
.xc_c02130{left:9.600000pt;}
.x6_c02130{left:10.560000pt;}
.x20_c02130{left:13.760000pt;}
.x3_c02130{left:14.720000pt;}
.x28_c02130{left:15.840000pt;}
.x19_c02130{left:17.280000pt;}
.x23_c02130{left:18.720000pt;}
.x27_c02130{left:19.680000pt;}
.x1f_c02130{left:21.760000pt;}
.x1e_c02130{left:24.960000pt;}
.x5_c02130{left:26.400000pt;}
.x10_c02130{left:27.680000pt;}
.x22_c02130{left:28.800000pt;}
.x1c_c02130{left:29.920000pt;}
.x26_c02130{left:31.520000pt;}
.x9_c02130{left:33.120000pt;}
.x16_c02130{left:34.400000pt;}
.x29_c02130{left:35.520000pt;}
.x24_c02130{left:36.960000pt;}
.x18_c02130{left:38.080000pt;}
.x2a_c02130{left:39.520000pt;}
.x25_c02130{left:41.280000pt;}
.x15_c02130{left:42.880000pt;}
.x17_c02130{left:46.560000pt;}
.x1d_c02130{left:51.200000pt;}
.xf_c02130{left:54.080000pt;}
.x1b_c02130{left:58.400000pt;}
.x8_c02130{left:59.680000pt;}
.x12_c02130{left:61.120000pt;}
.xb_c02130{left:63.360000pt;}
.x4_c02130{left:87.680000pt;}
.x1_c02130{left:94.400000pt;}
.x7_c02130{left:141.466667pt;}
.xa_c02130{left:261.466667pt;}
.xd_c02130{left:389.026667pt;}
.xe_c02130{left:516.546667pt;}
.x11_c02130{left:625.533333pt;}
.x1a_c02130{left:748.413333pt;}
.x14_c02130{left:865.893333pt;}
.x2_c02130{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02131 {
    display:none;
  }
  .loading-indicator_c02131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02131 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02131 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02131" -> "#page-container .classname_c02131")
 */
.pf_c02131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02131 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02131 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02131 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02131 {overflow:visible;}
  }
}
.c_c02131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02131 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02131:after { /* webkit #35443 */
  content: '';
}
.t_c02131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02131 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02131 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02131 { /* info for Javascript */
  display:none;
}
.l_c02131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02131:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02131 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02131.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02131;src:url('chunks/assets/font_a0ab83d9aa5cafa761bc4b37.woff2')format("woff");}.ff1_c02131{font-family:ff1_c02131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02131;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff2_c02131{font-family:ff2_c02131;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02131{vertical-align:0.000000px;}
.ls0_c02131{letter-spacing:0.000000px;}
.sc__c02131{text-shadow:none;}
.sc0_c02131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02131{-webkit-text-stroke:0px transparent;}
.sc0_c02131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02131{word-spacing:0.000000px;}
._1_c02131{margin-left:-1.543680px;}
._0_c02131{width:1500.960000px;}
.fc1_c02131{color:rgb(192,80,77);}
.fc0_c02131{color:rgb(0,0,0);}
.fs0_c02131{font-size:59.760000px;}
.fs2_c02131{font-size:63.360000px;}
.fs1_c02131{font-size:66.240000px;}
.y0_c02131{bottom:0.000000px;}
.y19_c02131{bottom:3.780000px;}
.y6_c02131{bottom:3.960000px;}
.y18_c02131{bottom:4.500000px;}
.y20_c02131{bottom:4.680000px;}
.y4_c02131{bottom:4.860000px;}
.y39_c02131{bottom:6.114000px;}
.y15_c02131{bottom:21.960000px;}
.y1b_c02131{bottom:22.005000px;}
.y13_c02131{bottom:22.140000px;}
.y3c_c02131{bottom:22.674000px;}
.y17_c02131{bottom:22.680000px;}
.y11_c02131{bottom:22.860000px;}
.y38_c02131{bottom:24.294000px;}
.y12_c02131{bottom:40.140000px;}
.y3b_c02131{bottom:40.854000px;}
.y10_c02131{bottom:40.860000px;}
.y29_c02131{bottom:40.890000px;}
.y31_c02131{bottom:40.905000px;}
.y37_c02131{bottom:42.294000px;}
.yd_c02131{bottom:42.300000px;}
.y3_c02131{bottom:52.416000px;}
.y16_c02131{bottom:58.860000px;}
.yf_c02131{bottom:59.040000px;}
.y28_c02131{bottom:59.070000px;}
.y30_c02131{bottom:59.085000px;}
.y36_c02131{bottom:60.474000px;}
.yc_c02131{bottom:60.480000px;}
.y2_c02131{bottom:75.456000px;}
.y2d_c02131{bottom:77.040000px;}
.y27_c02131{bottom:77.070000px;}
.y1d_c02131{bottom:77.085000px;}
.yb_c02131{bottom:78.480000px;}
.y35_c02131{bottom:78.654000px;}
.y2c_c02131{bottom:95.220000px;}
.ya_c02131{bottom:96.660000px;}
.y25_c02131{bottom:96.690000px;}
.y34_c02131{bottom:96.699000px;}
.y9_c02131{bottom:114.660000px;}
.y24_c02131{bottom:114.870000px;}
.y33_c02131{bottom:114.879000px;}
.y8_c02131{bottom:132.840000px;}
.y23_c02131{bottom:132.870000px;}
.y32_c02131{bottom:144.396000px;}
.y22_c02131{bottom:151.050000px;}
.y3a_c02131{bottom:163.290000px;}
.y2f_c02131{bottom:200.190000px;}
.y2e_c02131{bottom:237.315000px;}
.y2b_c02131{bottom:274.215000px;}
.y2a_c02131{bottom:329.295000px;}
.y21_c02131{bottom:384.375000px;}
.y26_c02131{bottom:439.485000px;}
.y1f_c02131{bottom:476.385000px;}
.y1e_c02131{bottom:513.465000px;}
.y1c_c02131{bottom:550.365000px;}
.y1a_c02131{bottom:605.445000px;}
.y7_c02131{bottom:642.570000px;}
.y14_c02131{bottom:679.470000px;}
.ye_c02131{bottom:716.370000px;}
.y5_c02131{bottom:771.450000px;}
.y1_c02131{bottom:851.400000px;}
.h4_c02131{height:18.180000px;}
.h3_c02131{height:22.680000px;}
.h9_c02131{height:36.180000px;}
.hb_c02131{height:36.216000px;}
.he_c02131{height:36.360000px;}
.h2_c02131{height:48.871406px;}
.h8_c02131{height:54.360000px;}
.hf_c02131{height:54.396000px;}
.h13_c02131{height:55.080000px;}
.h1_c02131{height:58.651172px;}
.h5_c02131{height:62.184375px;}
.ha_c02131{height:73.080000px;}
.h7_c02131{height:73.260000px;}
.h11_c02131{height:73.296000px;}
.hc_c02131{height:91.296000px;}
.h10_c02131{height:109.440000px;}
.h12_c02131{height:129.096000px;}
.h6_c02131{height:147.060000px;}
.hd_c02131{height:165.270000px;}
.h0_c02131{height:918.000000px;}
.w2_c02131{width:59.796000px;}
.w1_c02131{width:66.780000px;}
.w9_c02131{width:115.560000px;}
.w6_c02131{width:121.896000px;}
.w8_c02131{width:131.436000px;}
.w3_c02131{width:134.280000px;}
.w7_c02131{width:137.520000px;}
.w5_c02131{width:142.740000px;}
.w4_c02131{width:142.776000px;}
.w0_c02131{width:1188.000000px;}
.x0_c02131{left:0.000000px;}
.x18_c02131{left:10.260000px;}
.x5_c02131{left:11.880000px;}
.x20_c02131{left:14.760000px;}
.x3_c02131{left:16.560000px;}
.x1f_c02131{left:17.820000px;}
.x1d_c02131{left:20.700000px;}
.x1b_c02131{left:22.500000px;}
.x28_c02131{left:24.660000px;}
.x27_c02131{left:25.920000px;}
.x2b_c02131{left:27.000000px;}
.x23_c02131{left:28.980000px;}
.x11_c02131{left:30.240000px;}
.x1e_c02131{left:31.320000px;}
.x22_c02131{left:32.580000px;}
.x25_c02131{left:34.200000px;}
.x8_c02131{left:36.360000px;}
.x12_c02131{left:37.440000px;}
.x24_c02131{left:38.880000px;}
.xc_c02131{left:40.680000px;}
.x1a_c02131{left:42.300000px;}
.x9_c02131{left:43.740000px;}
.x15_c02131{left:45.360000px;}
.x2a_c02131{left:46.800000px;}
.xd_c02131{left:47.880000px;}
.x29_c02131{left:48.960000px;}
.x26_c02131{left:50.220000px;}
.x21_c02131{left:51.660000px;}
.x1c_c02131{left:57.600000px;}
.x10_c02131{left:60.840000px;}
.x17_c02131{left:65.700000px;}
.x7_c02131{left:67.140000px;}
.x14_c02131{left:68.760000px;}
.xb_c02131{left:71.280000px;}
.x4_c02131{left:98.640000px;}
.x1_c02131{left:106.200000px;}
.x6_c02131{left:159.150000px;}
.xa_c02131{left:294.150000px;}
.xe_c02131{left:437.655000px;}
.xf_c02131{left:581.115000px;}
.x13_c02131{left:703.725000px;}
.x16_c02131{left:841.965000px;}
.x19_c02131{left:974.130000px;}
.x2_c02131{left:1101.570000px;}
@media print{
.v0_c02131{vertical-align:0.000000pt;}
.ls0_c02131{letter-spacing:0.000000pt;}
.ws0_c02131{word-spacing:0.000000pt;}
._1_c02131{margin-left:-1.372160pt;}
._0_c02131{width:1334.186667pt;}
.fs0_c02131{font-size:53.120000pt;}
.fs2_c02131{font-size:56.320000pt;}
.fs1_c02131{font-size:58.880000pt;}
.y0_c02131{bottom:0.000000pt;}
.y19_c02131{bottom:3.360000pt;}
.y6_c02131{bottom:3.520000pt;}
.y18_c02131{bottom:4.000000pt;}
.y20_c02131{bottom:4.160000pt;}
.y4_c02131{bottom:4.320000pt;}
.y39_c02131{bottom:5.434667pt;}
.y15_c02131{bottom:19.520000pt;}
.y1b_c02131{bottom:19.560000pt;}
.y13_c02131{bottom:19.680000pt;}
.y3c_c02131{bottom:20.154667pt;}
.y17_c02131{bottom:20.160000pt;}
.y11_c02131{bottom:20.320000pt;}
.y38_c02131{bottom:21.594667pt;}
.y12_c02131{bottom:35.680000pt;}
.y3b_c02131{bottom:36.314667pt;}
.y10_c02131{bottom:36.320000pt;}
.y29_c02131{bottom:36.346667pt;}
.y31_c02131{bottom:36.360000pt;}
.y37_c02131{bottom:37.594667pt;}
.yd_c02131{bottom:37.600000pt;}
.y3_c02131{bottom:46.592000pt;}
.y16_c02131{bottom:52.320000pt;}
.yf_c02131{bottom:52.480000pt;}
.y28_c02131{bottom:52.506667pt;}
.y30_c02131{bottom:52.520000pt;}
.y36_c02131{bottom:53.754667pt;}
.yc_c02131{bottom:53.760000pt;}
.y2_c02131{bottom:67.072000pt;}
.y2d_c02131{bottom:68.480000pt;}
.y27_c02131{bottom:68.506667pt;}
.y1d_c02131{bottom:68.520000pt;}
.yb_c02131{bottom:69.760000pt;}
.y35_c02131{bottom:69.914667pt;}
.y2c_c02131{bottom:84.640000pt;}
.ya_c02131{bottom:85.920000pt;}
.y25_c02131{bottom:85.946667pt;}
.y34_c02131{bottom:85.954667pt;}
.y9_c02131{bottom:101.920000pt;}
.y24_c02131{bottom:102.106667pt;}
.y33_c02131{bottom:102.114667pt;}
.y8_c02131{bottom:118.080000pt;}
.y23_c02131{bottom:118.106667pt;}
.y32_c02131{bottom:128.352000pt;}
.y22_c02131{bottom:134.266667pt;}
.y3a_c02131{bottom:145.146667pt;}
.y2f_c02131{bottom:177.946667pt;}
.y2e_c02131{bottom:210.946667pt;}
.y2b_c02131{bottom:243.746667pt;}
.y2a_c02131{bottom:292.706667pt;}
.y21_c02131{bottom:341.666667pt;}
.y26_c02131{bottom:390.653333pt;}
.y1f_c02131{bottom:423.453333pt;}
.y1e_c02131{bottom:456.413333pt;}
.y1c_c02131{bottom:489.213333pt;}
.y1a_c02131{bottom:538.173333pt;}
.y7_c02131{bottom:571.173333pt;}
.y14_c02131{bottom:603.973333pt;}
.ye_c02131{bottom:636.773333pt;}
.y5_c02131{bottom:685.733333pt;}
.y1_c02131{bottom:756.800000pt;}
.h4_c02131{height:16.160000pt;}
.h3_c02131{height:20.160000pt;}
.h9_c02131{height:32.160000pt;}
.hb_c02131{height:32.192000pt;}
.he_c02131{height:32.320000pt;}
.h2_c02131{height:43.441250pt;}
.h8_c02131{height:48.320000pt;}
.hf_c02131{height:48.352000pt;}
.h13_c02131{height:48.960000pt;}
.h1_c02131{height:52.134375pt;}
.h5_c02131{height:55.275000pt;}
.ha_c02131{height:64.960000pt;}
.h7_c02131{height:65.120000pt;}
.h11_c02131{height:65.152000pt;}
.hc_c02131{height:81.152000pt;}
.h10_c02131{height:97.280000pt;}
.h12_c02131{height:114.752000pt;}
.h6_c02131{height:130.720000pt;}
.hd_c02131{height:146.906667pt;}
.h0_c02131{height:816.000000pt;}
.w2_c02131{width:53.152000pt;}
.w1_c02131{width:59.360000pt;}
.w9_c02131{width:102.720000pt;}
.w6_c02131{width:108.352000pt;}
.w8_c02131{width:116.832000pt;}
.w3_c02131{width:119.360000pt;}
.w7_c02131{width:122.240000pt;}
.w5_c02131{width:126.880000pt;}
.w4_c02131{width:126.912000pt;}
.w0_c02131{width:1056.000000pt;}
.x0_c02131{left:0.000000pt;}
.x18_c02131{left:9.120000pt;}
.x5_c02131{left:10.560000pt;}
.x20_c02131{left:13.120000pt;}
.x3_c02131{left:14.720000pt;}
.x1f_c02131{left:15.840000pt;}
.x1d_c02131{left:18.400000pt;}
.x1b_c02131{left:20.000000pt;}
.x28_c02131{left:21.920000pt;}
.x27_c02131{left:23.040000pt;}
.x2b_c02131{left:24.000000pt;}
.x23_c02131{left:25.760000pt;}
.x11_c02131{left:26.880000pt;}
.x1e_c02131{left:27.840000pt;}
.x22_c02131{left:28.960000pt;}
.x25_c02131{left:30.400000pt;}
.x8_c02131{left:32.320000pt;}
.x12_c02131{left:33.280000pt;}
.x24_c02131{left:34.560000pt;}
.xc_c02131{left:36.160000pt;}
.x1a_c02131{left:37.600000pt;}
.x9_c02131{left:38.880000pt;}
.x15_c02131{left:40.320000pt;}
.x2a_c02131{left:41.600000pt;}
.xd_c02131{left:42.560000pt;}
.x29_c02131{left:43.520000pt;}
.x26_c02131{left:44.640000pt;}
.x21_c02131{left:45.920000pt;}
.x1c_c02131{left:51.200000pt;}
.x10_c02131{left:54.080000pt;}
.x17_c02131{left:58.400000pt;}
.x7_c02131{left:59.680000pt;}
.x14_c02131{left:61.120000pt;}
.xb_c02131{left:63.360000pt;}
.x4_c02131{left:87.680000pt;}
.x1_c02131{left:94.400000pt;}
.x6_c02131{left:141.466667pt;}
.xa_c02131{left:261.466667pt;}
.xe_c02131{left:389.026667pt;}
.xf_c02131{left:516.546667pt;}
.x13_c02131{left:625.533333pt;}
.x16_c02131{left:748.413333pt;}
.x19_c02131{left:865.893333pt;}
.x2_c02131{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02132 {
    display:none;
  }
  .loading-indicator_c02132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02132 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02132 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02132" -> "#page-container .classname_c02132")
 */
.pf_c02132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02132 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02132 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02132 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02132 {overflow:visible;}
  }
}
.c_c02132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02132 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02132:after { /* webkit #35443 */
  content: '';
}
.t_c02132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02132 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02132 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02132 { /* info for Javascript */
  display:none;
}
.l_c02132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02132:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02132 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02132.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02132;src:url('chunks/assets/font_f848507844f637d24570a9ba.woff2')format("woff");}.ff1_c02132{font-family:ff1_c02132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02132;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff2_c02132{font-family:ff2_c02132;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02132{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02132{vertical-align:0.000000px;}
.ls0_c02132{letter-spacing:0.000000px;}
.sc__c02132{text-shadow:none;}
.sc0_c02132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02132{-webkit-text-stroke:0px transparent;}
.sc0_c02132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02132{word-spacing:-15.840000px;}
.ws1_c02132{word-spacing:0.000000px;}
._1_c02132{margin-left:-1.014013px;}
._0_c02132{width:1500.960000px;}
.fc2_c02132{color:rgb(0,0,255);}
.fc1_c02132{color:rgb(192,80,77);}
.fc0_c02132{color:rgb(0,0,0);}
.fs0_c02132{font-size:59.760000px;}
.fs2_c02132{font-size:63.360000px;}
.fs1_c02132{font-size:66.240000px;}
.y0_c02132{bottom:0.000000px;}
.y11_c02132{bottom:3.780000px;}
.y6_c02132{bottom:3.960000px;}
.y10_c02132{bottom:4.500000px;}
.y4_c02132{bottom:4.860000px;}
.yc_c02132{bottom:21.960000px;}
.yf_c02132{bottom:22.680000px;}
.y19_c02132{bottom:40.005000px;}
.y13_c02132{bottom:40.140000px;}
.ye_c02132{bottom:40.860000px;}
.y18_c02132{bottom:40.905000px;}
.ya_c02132{bottom:41.580000px;}
.y3_c02132{bottom:52.416000px;}
.yd_c02132{bottom:58.860000px;}
.y17_c02132{bottom:58.905000px;}
.y9_c02132{bottom:59.580000px;}
.y2_c02132{bottom:75.456000px;}
.y16_c02132{bottom:77.085000px;}
.y8_c02132{bottom:77.760000px;}
.y15_c02132{bottom:95.265000px;}
.y1a_c02132{bottom:572.325000px;}
.y14_c02132{bottom:587.445000px;}
.y12_c02132{bottom:642.570000px;}
.y7_c02132{bottom:697.650000px;}
.yb_c02132{bottom:734.550000px;}
.y5_c02132{bottom:771.450000px;}
.y1_c02132{bottom:851.400000px;}
.h4_c02132{height:18.180000px;}
.h3_c02132{height:22.680000px;}
.h7_c02132{height:36.180000px;}
.h2_c02132{height:48.871406px;}
.hb_c02132{height:54.216000px;}
.h9_c02132{height:54.360000px;}
.h1_c02132{height:58.651172px;}
.h5_c02132{height:62.184375px;}
.h8_c02132{height:73.080000px;}
.h6_c02132{height:91.980000px;}
.ha_c02132{height:109.476000px;}
.h0_c02132{height:918.000000px;}
.w2_c02132{width:59.796000px;}
.w1_c02132{width:66.780000px;}
.w5_c02132{width:115.560000px;}
.w8_c02132{width:121.896000px;}
.w9_c02132{width:131.436000px;}
.w6_c02132{width:134.280000px;}
.w4_c02132{width:137.520000px;}
.w3_c02132{width:142.740000px;}
.w7_c02132{width:142.776000px;}
.w0_c02132{width:1188.000000px;}
.x0_c02132{left:0.000000px;}
.x5_c02132{left:11.880000px;}
.x17_c02132{left:15.480000px;}
.x3_c02132{left:16.560000px;}
.x1f_c02132{left:19.260000px;}
.x23_c02132{left:28.980000px;}
.x24_c02132{left:30.600000px;}
.xf_c02132{left:31.860000px;}
.xc_c02132{left:34.020000px;}
.x21_c02132{left:35.640000px;}
.x1e_c02132{left:36.900000px;}
.x13_c02132{left:38.880000px;}
.x1b_c02132{left:40.680000px;}
.x1c_c02132{left:42.660000px;}
.x22_c02132{left:44.100000px;}
.xa_c02132{left:45.540000px;}
.x20_c02132{left:47.700000px;}
.x1d_c02132{left:51.480000px;}
.x14_c02132{left:52.920000px;}
.x12_c02132{left:55.440000px;}
.x7_c02132{left:56.520000px;}
.x1a_c02132{left:57.600000px;}
.x16_c02132{left:60.840000px;}
.x19_c02132{left:65.700000px;}
.xe_c02132{left:67.140000px;}
.x9_c02132{left:68.760000px;}
.x11_c02132{left:71.280000px;}
.x4_c02132{left:98.640000px;}
.x1_c02132{left:106.200000px;}
.xd_c02132{left:159.150000px;}
.x10_c02132{left:294.150000px;}
.x6_c02132{left:437.655000px;}
.x15_c02132{left:581.115000px;}
.x8_c02132{left:703.725000px;}
.x18_c02132{left:841.965000px;}
.xb_c02132{left:974.130000px;}
.x2_c02132{left:1101.570000px;}
@media print{
.v0_c02132{vertical-align:0.000000pt;}
.ls0_c02132{letter-spacing:0.000000pt;}
.ws0_c02132{word-spacing:-14.080000pt;}
.ws1_c02132{word-spacing:0.000000pt;}
._1_c02132{margin-left:-0.901345pt;}
._0_c02132{width:1334.186667pt;}
.fs0_c02132{font-size:53.120000pt;}
.fs2_c02132{font-size:56.320000pt;}
.fs1_c02132{font-size:58.880000pt;}
.y0_c02132{bottom:0.000000pt;}
.y11_c02132{bottom:3.360000pt;}
.y6_c02132{bottom:3.520000pt;}
.y10_c02132{bottom:4.000000pt;}
.y4_c02132{bottom:4.320000pt;}
.yc_c02132{bottom:19.520000pt;}
.yf_c02132{bottom:20.160000pt;}
.y19_c02132{bottom:35.560000pt;}
.y13_c02132{bottom:35.680000pt;}
.ye_c02132{bottom:36.320000pt;}
.y18_c02132{bottom:36.360000pt;}
.ya_c02132{bottom:36.960000pt;}
.y3_c02132{bottom:46.592000pt;}
.yd_c02132{bottom:52.320000pt;}
.y17_c02132{bottom:52.360000pt;}
.y9_c02132{bottom:52.960000pt;}
.y2_c02132{bottom:67.072000pt;}
.y16_c02132{bottom:68.520000pt;}
.y8_c02132{bottom:69.120000pt;}
.y15_c02132{bottom:84.680000pt;}
.y1a_c02132{bottom:508.733333pt;}
.y14_c02132{bottom:522.173333pt;}
.y12_c02132{bottom:571.173333pt;}
.y7_c02132{bottom:620.133333pt;}
.yb_c02132{bottom:652.933333pt;}
.y5_c02132{bottom:685.733333pt;}
.y1_c02132{bottom:756.800000pt;}
.h4_c02132{height:16.160000pt;}
.h3_c02132{height:20.160000pt;}
.h7_c02132{height:32.160000pt;}
.h2_c02132{height:43.441250pt;}
.hb_c02132{height:48.192000pt;}
.h9_c02132{height:48.320000pt;}
.h1_c02132{height:52.134375pt;}
.h5_c02132{height:55.275000pt;}
.h8_c02132{height:64.960000pt;}
.h6_c02132{height:81.760000pt;}
.ha_c02132{height:97.312000pt;}
.h0_c02132{height:816.000000pt;}
.w2_c02132{width:53.152000pt;}
.w1_c02132{width:59.360000pt;}
.w5_c02132{width:102.720000pt;}
.w8_c02132{width:108.352000pt;}
.w9_c02132{width:116.832000pt;}
.w6_c02132{width:119.360000pt;}
.w4_c02132{width:122.240000pt;}
.w3_c02132{width:126.880000pt;}
.w7_c02132{width:126.912000pt;}
.w0_c02132{width:1056.000000pt;}
.x0_c02132{left:0.000000pt;}
.x5_c02132{left:10.560000pt;}
.x17_c02132{left:13.760000pt;}
.x3_c02132{left:14.720000pt;}
.x1f_c02132{left:17.120000pt;}
.x23_c02132{left:25.760000pt;}
.x24_c02132{left:27.200000pt;}
.xf_c02132{left:28.320000pt;}
.xc_c02132{left:30.240000pt;}
.x21_c02132{left:31.680000pt;}
.x1e_c02132{left:32.800000pt;}
.x13_c02132{left:34.560000pt;}
.x1b_c02132{left:36.160000pt;}
.x1c_c02132{left:37.920000pt;}
.x22_c02132{left:39.200000pt;}
.xa_c02132{left:40.480000pt;}
.x20_c02132{left:42.400000pt;}
.x1d_c02132{left:45.760000pt;}
.x14_c02132{left:47.040000pt;}
.x12_c02132{left:49.280000pt;}
.x7_c02132{left:50.240000pt;}
.x1a_c02132{left:51.200000pt;}
.x16_c02132{left:54.080000pt;}
.x19_c02132{left:58.400000pt;}
.xe_c02132{left:59.680000pt;}
.x9_c02132{left:61.120000pt;}
.x11_c02132{left:63.360000pt;}
.x4_c02132{left:87.680000pt;}
.x1_c02132{left:94.400000pt;}
.xd_c02132{left:141.466667pt;}
.x10_c02132{left:261.466667pt;}
.x6_c02132{left:389.026667pt;}
.x15_c02132{left:516.546667pt;}
.x8_c02132{left:625.533333pt;}
.x18_c02132{left:748.413333pt;}
.xb_c02132{left:865.893333pt;}
.x2_c02132{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02133 {
    display:none;
  }
  .loading-indicator_c02133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02133 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02133 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02133" -> "#page-container .classname_c02133")
 */
.pf_c02133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02133 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02133 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02133 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02133 {overflow:visible;}
  }
}
.c_c02133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02133 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02133:after { /* webkit #35443 */
  content: '';
}
.t_c02133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02133 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02133 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02133 { /* info for Javascript */
  display:none;
}
.l_c02133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02133:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02133 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02133.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02133;src:url('chunks/assets/font_2a484d3ca0b06d32768e1b70.woff2')format("woff");}.ff1_c02133{font-family:ff1_c02133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02133;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff2_c02133{font-family:ff2_c02133;line-height:0.863770;font-style:normal;font-weight: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_c02133;src:url('chunks/assets/font_9855911d0873fb9aab9b9660.woff2')format("woff");}.ff3_c02133{font-family:ff3_c02133;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02133{vertical-align:0.000000px;}
.ls1_c02133{letter-spacing:-0.216000px;}
.ls0_c02133{letter-spacing:0.000000px;}
.sc__c02133{text-shadow:none;}
.sc0_c02133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02133{-webkit-text-stroke:0px transparent;}
.sc0_c02133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02133{word-spacing:-18.000000px;}
.ws1_c02133{word-spacing:-17.784000px;}
.ws2_c02133{word-spacing:0.000000px;}
._4_c02133{margin-left:-1.440000px;}
._2_c02133{width:1.080000px;}
._1_c02133{width:2.448000px;}
._8_c02133{width:3.456000px;}
._9_c02133{width:4.464000px;}
._6_c02133{width:6.192000px;}
._5_c02133{width:7.632000px;}
._7_c02133{width:8.843976px;}
._12_c02133{width:9.936000px;}
._13_c02133{width:11.532024px;}
._18_c02133{width:13.079928px;}
._10_c02133{width:15.552000px;}
._3_c02133{width:16.920000px;}
._17_c02133{width:19.296000px;}
._14_c02133{width:20.808000px;}
._15_c02133{width:23.052024px;}
._11_c02133{width:26.208000px;}
._c_c02133{width:27.432000px;}
._d_c02133{width:29.088000px;}
._19_c02133{width:30.108024px;}
._e_c02133{width:36.648000px;}
._f_c02133{width:38.304000px;}
._16_c02133{width:50.016024px;}
._a_c02133{width:59.832000px;}
._b_c02133{width:62.064000px;}
._0_c02133{width:1500.936000px;}
.fc1_c02133{color:rgb(192,80,77);}
.fc0_c02133{color:rgb(0,0,0);}
.fs0_c02133{font-size:59.760000px;}
.fs1_c02133{font-size:66.240000px;}
.fs2_c02133{font-size:72.000000px;}
.y0_c02133{bottom:0.000000px;}
.y4_c02133{bottom:4.680000px;}
.y3_c02133{bottom:41.796000px;}
.y2_c02133{bottom:75.456000px;}
.y23_c02133{bottom:133.776000px;}
.y22_c02133{bottom:164.910000px;}
.y21_c02133{bottom:195.870000px;}
.y20_c02133{bottom:226.830000px;}
.y1f_c02133{bottom:257.970000px;}
.y1e_c02133{bottom:288.975000px;}
.y1d_c02133{bottom:320.115000px;}
.y1c_c02133{bottom:351.075000px;}
.y1b_c02133{bottom:382.215000px;}
.y1a_c02133{bottom:413.175000px;}
.y19_c02133{bottom:444.315000px;}
.y18_c02133{bottom:475.275000px;}
.y17_c02133{bottom:506.415000px;}
.y16_c02133{bottom:537.405000px;}
.y15_c02133{bottom:568.545000px;}
.y14_c02133{bottom:599.505000px;}
.y13_c02133{bottom:630.645000px;}
.y12_c02133{bottom:661.605000px;}
.y11_c02133{bottom:692.745000px;}
.y10_c02133{bottom:723.705000px;}
.yf_c02133{bottom:754.845000px;}
.ye_c02133{bottom:785.805000px;}
.yd_c02133{bottom:816.990000px;}
.yc_c02133{bottom:847.950000px;}
.yb_c02133{bottom:879.090000px;}
.ya_c02133{bottom:910.050000px;}
.y9_c02133{bottom:941.190000px;}
.y8_c02133{bottom:972.150000px;}
.y7_c02133{bottom:1003.290000px;}
.y6_c02133{bottom:1034.250000px;}
.y5_c02133{bottom:1065.420000px;}
.y1_c02133{bottom:1121.400000px;}
.h3_c02133{height:22.500000px;}
.h2_c02133{height:48.871406px;}
.h1_c02133{height:58.651172px;}
.h5_c02133{height:64.546875px;}
.h4_c02133{height:70.664062px;}
.h0_c02133{height:1188.000000px;}
.w1_c02133{width:66.636000px;}
.w0_c02133{width:918.000000px;}
.x0_c02133{left:0.000000px;}
.x3_c02133{left:16.560000px;}
.x1_c02133{left:127.656000px;}
.x4_c02133{left:180.750000px;}
.x2_c02133{left:820.950000px;}
@media print{
.v0_c02133{vertical-align:0.000000pt;}
.ls1_c02133{letter-spacing:-0.192000pt;}
.ls0_c02133{letter-spacing:0.000000pt;}
.ws0_c02133{word-spacing:-16.000000pt;}
.ws1_c02133{word-spacing:-15.808000pt;}
.ws2_c02133{word-spacing:0.000000pt;}
._4_c02133{margin-left:-1.280000pt;}
._2_c02133{width:0.960000pt;}
._1_c02133{width:2.176000pt;}
._8_c02133{width:3.072000pt;}
._9_c02133{width:3.968000pt;}
._6_c02133{width:5.504000pt;}
._5_c02133{width:6.784000pt;}
._7_c02133{width:7.861312pt;}
._12_c02133{width:8.832000pt;}
._13_c02133{width:10.250688pt;}
._18_c02133{width:11.626603pt;}
._10_c02133{width:13.824000pt;}
._3_c02133{width:15.040000pt;}
._17_c02133{width:17.152000pt;}
._14_c02133{width:18.496000pt;}
._15_c02133{width:20.490688pt;}
._11_c02133{width:23.296000pt;}
._c_c02133{width:24.384000pt;}
._d_c02133{width:25.856000pt;}
._19_c02133{width:26.762688pt;}
._e_c02133{width:32.576000pt;}
._f_c02133{width:34.048000pt;}
._16_c02133{width:44.458688pt;}
._a_c02133{width:53.184000pt;}
._b_c02133{width:55.168000pt;}
._0_c02133{width:1334.165333pt;}
.fs0_c02133{font-size:53.120000pt;}
.fs1_c02133{font-size:58.880000pt;}
.fs2_c02133{font-size:64.000000pt;}
.y0_c02133{bottom:0.000000pt;}
.y4_c02133{bottom:4.160000pt;}
.y3_c02133{bottom:37.152000pt;}
.y2_c02133{bottom:67.072000pt;}
.y23_c02133{bottom:118.912000pt;}
.y22_c02133{bottom:146.586667pt;}
.y21_c02133{bottom:174.106667pt;}
.y20_c02133{bottom:201.626667pt;}
.y1f_c02133{bottom:229.306667pt;}
.y1e_c02133{bottom:256.866667pt;}
.y1d_c02133{bottom:284.546667pt;}
.y1c_c02133{bottom:312.066667pt;}
.y1b_c02133{bottom:339.746667pt;}
.y1a_c02133{bottom:367.266667pt;}
.y19_c02133{bottom:394.946667pt;}
.y18_c02133{bottom:422.466667pt;}
.y17_c02133{bottom:450.146667pt;}
.y16_c02133{bottom:477.693333pt;}
.y15_c02133{bottom:505.373333pt;}
.y14_c02133{bottom:532.893333pt;}
.y13_c02133{bottom:560.573333pt;}
.y12_c02133{bottom:588.093333pt;}
.y11_c02133{bottom:615.773333pt;}
.y10_c02133{bottom:643.293333pt;}
.yf_c02133{bottom:670.973333pt;}
.ye_c02133{bottom:698.493333pt;}
.yd_c02133{bottom:726.213333pt;}
.yc_c02133{bottom:753.733333pt;}
.yb_c02133{bottom:781.413333pt;}
.ya_c02133{bottom:808.933333pt;}
.y9_c02133{bottom:836.613333pt;}
.y8_c02133{bottom:864.133333pt;}
.y7_c02133{bottom:891.813333pt;}
.y6_c02133{bottom:919.333333pt;}
.y5_c02133{bottom:947.040000pt;}
.y1_c02133{bottom:996.800000pt;}
.h3_c02133{height:20.000000pt;}
.h2_c02133{height:43.441250pt;}
.h1_c02133{height:52.134375pt;}
.h5_c02133{height:57.375000pt;}
.h4_c02133{height:62.812500pt;}
.h0_c02133{height:1056.000000pt;}
.w1_c02133{width:59.232000pt;}
.w0_c02133{width:816.000000pt;}
.x0_c02133{left:0.000000pt;}
.x3_c02133{left:14.720000pt;}
.x1_c02133{left:113.472000pt;}
.x4_c02133{left:160.666667pt;}
.x2_c02133{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02134 {
    display:none;
  }
  .loading-indicator_c02134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02134 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02134 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02134" -> "#page-container .classname_c02134")
 */
.pf_c02134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02134 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02134 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02134 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02134 {overflow:visible;}
  }
}
.c_c02134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02134 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02134:after { /* webkit #35443 */
  content: '';
}
.t_c02134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02134 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02134 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02134 { /* info for Javascript */
  display:none;
}
.l_c02134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02134:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02134 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02134.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02134;src:url('chunks/assets/font_da1a91e4653946d0eb213178.woff2')format("woff");}.ff1_c02134{font-family:ff1_c02134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02134;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff2_c02134{font-family:ff2_c02134;line-height:0.863770;font-style:normal;font-weight: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_c02134;src:url('chunks/assets/font_d00fdbec254dcf3e717c0d47.woff2')format("woff");}.ff3_c02134{font-family:ff3_c02134;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02134{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02134{vertical-align:0.000000px;}
.ls0_c02134{letter-spacing:0.000000px;}
.sc__c02134{text-shadow:none;}
.sc0_c02134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02134{-webkit-text-stroke:0px transparent;}
.sc0_c02134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02134{word-spacing:0.000000px;}
._3_c02134{margin-left:-2.091007px;}
._1_c02134{margin-left:-1.008000px;}
._2_c02134{width:1.308024px;}
._4_c02134{width:2.376000px;}
._5_c02134{width:3.503952px;}
._6_c02134{width:6.984000px;}
._e_c02134{width:8.081412px;}
._c_c02134{width:14.976000px;}
._d_c02134{width:16.632000px;}
._8_c02134{width:24.984000px;}
._7_c02134{width:26.064000px;}
._b_c02134{width:27.695952px;}
._9_c02134{width:32.040000px;}
._a_c02134{width:33.348000px;}
._0_c02134{width:1500.936000px;}
.fc1_c02134{color:rgb(192,80,77);}
.fc2_c02134{color:rgb(255,255,255);}
.fc0_c02134{color:rgb(0,0,0);}
.fs0_c02134{font-size:59.760000px;}
.fs3_c02134{font-size:63.360000px;}
.fs1_c02134{font-size:66.240000px;}
.fs2_c02134{font-size:72.000000px;}
.y0_c02134{bottom:0.000000px;}
.ya_c02134{bottom:3.780000px;}
.yc_c02134{bottom:3.960000px;}
.y4_c02134{bottom:4.680000px;}
.y3_c02134{bottom:41.796000px;}
.y2_c02134{bottom:75.456000px;}
.y2d_c02134{bottom:160.410000px;}
.y2c_c02134{bottom:179.310000px;}
.y2b_c02134{bottom:198.390000px;}
.y2a_c02134{bottom:217.290000px;}
.y29_c02134{bottom:236.370000px;}
.y28_c02134{bottom:265.890000px;}
.y27_c02134{bottom:297.075000px;}
.y26_c02134{bottom:328.035000px;}
.y25_c02134{bottom:359.175000px;}
.y24_c02134{bottom:390.135000px;}
.y23_c02134{bottom:421.275000px;}
.y22_c02134{bottom:452.235000px;}
.y21_c02134{bottom:483.375000px;}
.y20_c02134{bottom:514.335000px;}
.y1f_c02134{bottom:545.325000px;}
.y1e_c02134{bottom:576.465000px;}
.y1d_c02134{bottom:607.425000px;}
.y1c_c02134{bottom:638.565000px;}
.y1b_c02134{bottom:659.445000px;}
.y1a_c02134{bottom:676.365000px;}
.y19_c02134{bottom:695.265000px;}
.y18_c02134{bottom:714.165000px;}
.y17_c02134{bottom:732.885000px;}
.y16_c02134{bottom:751.785000px;}
.y15_c02134{bottom:770.685000px;}
.y14_c02134{bottom:789.585000px;}
.y13_c02134{bottom:808.530000px;}
.y12_c02134{bottom:827.250000px;}
.y11_c02134{bottom:846.150000px;}
.y10_c02134{bottom:865.050000px;}
.yf_c02134{bottom:883.950000px;}
.ye_c02134{bottom:902.670000px;}
.yd_c02134{bottom:921.570000px;}
.yb_c02134{bottom:940.470000px;}
.y9_c02134{bottom:959.370000px;}
.y8_c02134{bottom:992.850000px;}
.y7_c02134{bottom:1013.730000px;}
.y6_c02134{bottom:1034.430000px;}
.y5_c02134{bottom:1065.420000px;}
.y1_c02134{bottom:1121.400000px;}
.h5_c02134{height:18.000000px;}
.h8_c02134{height:18.036000px;}
.h7_c02134{height:18.180000px;}
.h3_c02134{height:22.500000px;}
.h2_c02134{height:48.871406px;}
.h1_c02134{height:58.651172px;}
.h6_c02134{height:62.184375px;}
.h9_c02134{height:64.546875px;}
.ha_c02134{height:65.010937px;}
.h4_c02134{height:70.664062px;}
.h0_c02134{height:1188.000000px;}
.w1_c02134{width:66.636000px;}
.w2_c02134{width:223.590000px;}
.w3_c02134{width:223.770000px;}
.w0_c02134{width:918.000000px;}
.x0_c02134{left:0.000000px;}
.x3_c02134{left:16.560000px;}
.xd_c02134{left:23.760000px;}
.x12_c02134{left:31.860000px;}
.x10_c02134{left:37.080000px;}
.x18_c02134{left:50.400000px;}
.x15_c02134{left:62.994000px;}
.x17_c02134{left:69.120000px;}
.xc_c02134{left:75.594000px;}
.x19_c02134{left:76.854000px;}
.x1c_c02134{left:77.940000px;}
.x13_c02134{left:81.174000px;}
.x14_c02134{left:83.700000px;}
.xe_c02134{left:84.780000px;}
.x16_c02134{left:86.760000px;}
.x11_c02134{left:87.834000px;}
.x9_c02134{left:88.920000px;}
.x7_c02134{left:90.354000px;}
.xf_c02134{left:92.154000px;}
.x1b_c02134{left:95.214000px;}
.xb_c02134{left:98.280000px;}
.x1a_c02134{left:111.600000px;}
.x6_c02134{left:119.916000px;}
.x1_c02134{left:127.656000px;}
.x1d_c02134{left:180.750000px;}
.x1e_c02134{left:191.550000px;}
.x5_c02134{left:260.490000px;}
.x8_c02134{left:344.415000px;}
.x4_c02134{left:415.695000px;}
.xa_c02134{left:568.905000px;}
.x2_c02134{left:820.950000px;}
@media print{
.v0_c02134{vertical-align:0.000000pt;}
.ls0_c02134{letter-spacing:0.000000pt;}
.ws0_c02134{word-spacing:0.000000pt;}
._3_c02134{margin-left:-1.858673pt;}
._1_c02134{margin-left:-0.896000pt;}
._2_c02134{width:1.162688pt;}
._4_c02134{width:2.112000pt;}
._5_c02134{width:3.114624pt;}
._6_c02134{width:6.208000pt;}
._e_c02134{width:7.183478pt;}
._c_c02134{width:13.312000pt;}
._d_c02134{width:14.784000pt;}
._8_c02134{width:22.208000pt;}
._7_c02134{width:23.168000pt;}
._b_c02134{width:24.618624pt;}
._9_c02134{width:28.480000pt;}
._a_c02134{width:29.642667pt;}
._0_c02134{width:1334.165333pt;}
.fs0_c02134{font-size:53.120000pt;}
.fs3_c02134{font-size:56.320000pt;}
.fs1_c02134{font-size:58.880000pt;}
.fs2_c02134{font-size:64.000000pt;}
.y0_c02134{bottom:0.000000pt;}
.ya_c02134{bottom:3.360000pt;}
.yc_c02134{bottom:3.520000pt;}
.y4_c02134{bottom:4.160000pt;}
.y3_c02134{bottom:37.152000pt;}
.y2_c02134{bottom:67.072000pt;}
.y2d_c02134{bottom:142.586667pt;}
.y2c_c02134{bottom:159.386667pt;}
.y2b_c02134{bottom:176.346667pt;}
.y2a_c02134{bottom:193.146667pt;}
.y29_c02134{bottom:210.106667pt;}
.y28_c02134{bottom:236.346667pt;}
.y27_c02134{bottom:264.066667pt;}
.y26_c02134{bottom:291.586667pt;}
.y25_c02134{bottom:319.266667pt;}
.y24_c02134{bottom:346.786667pt;}
.y23_c02134{bottom:374.466667pt;}
.y22_c02134{bottom:401.986667pt;}
.y21_c02134{bottom:429.666667pt;}
.y20_c02134{bottom:457.186667pt;}
.y1f_c02134{bottom:484.733333pt;}
.y1e_c02134{bottom:512.413333pt;}
.y1d_c02134{bottom:539.933333pt;}
.y1c_c02134{bottom:567.613333pt;}
.y1b_c02134{bottom:586.173333pt;}
.y1a_c02134{bottom:601.213333pt;}
.y19_c02134{bottom:618.013333pt;}
.y18_c02134{bottom:634.813333pt;}
.y17_c02134{bottom:651.453333pt;}
.y16_c02134{bottom:668.253333pt;}
.y15_c02134{bottom:685.053333pt;}
.y14_c02134{bottom:701.853333pt;}
.y13_c02134{bottom:718.693333pt;}
.y12_c02134{bottom:735.333333pt;}
.y11_c02134{bottom:752.133333pt;}
.y10_c02134{bottom:768.933333pt;}
.yf_c02134{bottom:785.733333pt;}
.ye_c02134{bottom:802.373333pt;}
.yd_c02134{bottom:819.173333pt;}
.yb_c02134{bottom:835.973333pt;}
.y9_c02134{bottom:852.773333pt;}
.y8_c02134{bottom:882.533333pt;}
.y7_c02134{bottom:901.093333pt;}
.y6_c02134{bottom:919.493333pt;}
.y5_c02134{bottom:947.040000pt;}
.y1_c02134{bottom:996.800000pt;}
.h5_c02134{height:16.000000pt;}
.h8_c02134{height:16.032000pt;}
.h7_c02134{height:16.160000pt;}
.h3_c02134{height:20.000000pt;}
.h2_c02134{height:43.441250pt;}
.h1_c02134{height:52.134375pt;}
.h6_c02134{height:55.275000pt;}
.h9_c02134{height:57.375000pt;}
.ha_c02134{height:57.787500pt;}
.h4_c02134{height:62.812500pt;}
.h0_c02134{height:1056.000000pt;}
.w1_c02134{width:59.232000pt;}
.w2_c02134{width:198.746667pt;}
.w3_c02134{width:198.906667pt;}
.w0_c02134{width:816.000000pt;}
.x0_c02134{left:0.000000pt;}
.x3_c02134{left:14.720000pt;}
.xd_c02134{left:21.120000pt;}
.x12_c02134{left:28.320000pt;}
.x10_c02134{left:32.960000pt;}
.x18_c02134{left:44.800000pt;}
.x15_c02134{left:55.994667pt;}
.x17_c02134{left:61.440000pt;}
.xc_c02134{left:67.194667pt;}
.x19_c02134{left:68.314667pt;}
.x1c_c02134{left:69.280000pt;}
.x13_c02134{left:72.154667pt;}
.x14_c02134{left:74.400000pt;}
.xe_c02134{left:75.360000pt;}
.x16_c02134{left:77.120000pt;}
.x11_c02134{left:78.074667pt;}
.x9_c02134{left:79.040000pt;}
.x7_c02134{left:80.314667pt;}
.xf_c02134{left:81.914667pt;}
.x1b_c02134{left:84.634667pt;}
.xb_c02134{left:87.360000pt;}
.x1a_c02134{left:99.200000pt;}
.x6_c02134{left:106.592000pt;}
.x1_c02134{left:113.472000pt;}
.x1d_c02134{left:160.666667pt;}
.x1e_c02134{left:170.266667pt;}
.x5_c02134{left:231.546667pt;}
.x8_c02134{left:306.146667pt;}
.x4_c02134{left:369.506667pt;}
.xa_c02134{left:505.693333pt;}
.x2_c02134{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02135 {
    display:none;
  }
  .loading-indicator_c02135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02135 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02135 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02135" -> "#page-container .classname_c02135")
 */
.pf_c02135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02135 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02135 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02135 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02135 {overflow:visible;}
  }
}
.c_c02135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02135 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02135:after { /* webkit #35443 */
  content: '';
}
.t_c02135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02135 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02135 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02135 { /* info for Javascript */
  display:none;
}
.l_c02135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02135:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02135 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02135.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02135;src:url('chunks/assets/font_b66752d6dfce4caa0ab55c23.woff2')format("woff");}.ff1_c02135{font-family:ff1_c02135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02135;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff2_c02135{font-family:ff2_c02135;line-height:0.863770;font-style:normal;font-weight: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_c02135;src:url('chunks/assets/font_01ebeee77043345229826186.woff2')format("woff");}.ff3_c02135{font-family:ff3_c02135;line-height:1.311035;font-style:normal;font-weight: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_c02135;src:url('chunks/assets/font_0f24e3b8c7375736f3731a7a.woff2')format("woff");}.ff4_c02135{font-family:ff4_c02135;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02135{vertical-align:0.000000px;}
.ls3_c02135{letter-spacing:-0.305400px;}
.ls2_c02135{letter-spacing:0.000000px;}
.ls0_c02135{letter-spacing:0.262080px;}
.ls1_c02135{letter-spacing:67.265280px;}
.sc__c02135{text-shadow:none;}
.sc0_c02135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02135{-webkit-text-stroke:0px transparent;}
.sc0_c02135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02135{word-spacing:-16.254600px;}
.ws1_c02135{word-spacing:0.000000px;}
._e_c02135{margin-left:-2.115706px;}
._3_c02135{margin-left:-1.060237px;}
._a_c02135{width:1.263396px;}
._11_c02135{width:2.569582px;}
._1_c02135{width:3.577291px;}
._2_c02135{width:4.636800px;}
._9_c02135{width:12.452988px;}
._12_c02135{width:15.226655px;}
._7_c02135{width:18.613970px;}
._8_c02135{width:19.672353px;}
._10_c02135{width:20.865600px;}
._4_c02135{width:21.925241px;}
._f_c02135{width:22.972231px;}
._d_c02135{width:23.974906px;}
._b_c02135{width:27.423625px;}
._c_c02135{width:28.544671px;}
._6_c02135{width:36.694310px;}
._5_c02135{width:37.757462px;}
._0_c02135{width:1500.936000px;}
.fc1_c02135{color:rgb(192,80,77);}
.fc0_c02135{color:rgb(0,0,0);}
.fs0_c02135{font-size:59.760000px;}
.fs1_c02135{font-size:66.240000px;}
.y0_c02135{bottom:0.000000px;}
.y4_c02135{bottom:4.680000px;}
.y3_c02135{bottom:41.796000px;}
.y2_c02135{bottom:75.456000px;}
.y37_c02135{bottom:117.936000px;}
.y36_c02135{bottom:137.016000px;}
.y35_c02135{bottom:155.910000px;}
.y34_c02135{bottom:174.810000px;}
.y33_c02135{bottom:193.890000px;}
.y32_c02135{bottom:212.790000px;}
.y31_c02135{bottom:231.870000px;}
.y30_c02135{bottom:250.770000px;}
.y2f_c02135{bottom:269.670000px;}
.y2e_c02135{bottom:288.795000px;}
.y2d_c02135{bottom:307.695000px;}
.y2c_c02135{bottom:326.775000px;}
.y2b_c02135{bottom:345.675000px;}
.y2a_c02135{bottom:364.575000px;}
.y29_c02135{bottom:383.655000px;}
.y28_c02135{bottom:402.555000px;}
.y27_c02135{bottom:421.635000px;}
.y26_c02135{bottom:440.535000px;}
.y25_c02135{bottom:459.615000px;}
.y24_c02135{bottom:478.515000px;}
.y23_c02135{bottom:497.415000px;}
.y22_c02135{bottom:516.495000px;}
.y21_c02135{bottom:535.425000px;}
.y20_c02135{bottom:554.505000px;}
.y1f_c02135{bottom:573.405000px;}
.y1e_c02135{bottom:592.305000px;}
.y1d_c02135{bottom:611.385000px;}
.y1c_c02135{bottom:630.285000px;}
.y1b_c02135{bottom:649.365000px;}
.y1a_c02135{bottom:668.265000px;}
.y19_c02135{bottom:687.165000px;}
.y18_c02135{bottom:706.245000px;}
.y17_c02135{bottom:725.145000px;}
.y16_c02135{bottom:744.225000px;}
.y15_c02135{bottom:763.125000px;}
.y14_c02135{bottom:781.665000px;}
.y13_c02135{bottom:800.790000px;}
.y12_c02135{bottom:820.050000px;}
.y11_c02135{bottom:839.130000px;}
.y10_c02135{bottom:858.030000px;}
.yf_c02135{bottom:877.110000px;}
.ye_c02135{bottom:896.010000px;}
.yd_c02135{bottom:914.910000px;}
.yc_c02135{bottom:933.990000px;}
.yb_c02135{bottom:952.890000px;}
.ya_c02135{bottom:971.970000px;}
.y9_c02135{bottom:990.870000px;}
.y8_c02135{bottom:1009.770000px;}
.y7_c02135{bottom:1028.850000px;}
.y6_c02135{bottom:1047.750000px;}
.y5_c02135{bottom:1066.860000px;}
.y1_c02135{bottom:1121.400000px;}
.h3_c02135{height:22.500000px;}
.h2_c02135{height:48.871406px;}
.h1_c02135{height:58.651172px;}
.h4_c02135{height:65.010937px;}
.h5_c02135{height:66.757500px;}
.h6_c02135{height:68.084282px;}
.h0_c02135{height:1188.000000px;}
.w1_c02135{width:66.636000px;}
.w0_c02135{width:918.000000px;}
.x0_c02135{left:0.000000px;}
.x3_c02135{left:16.560000px;}
.x1_c02135{left:127.656000px;}
.x4_c02135{left:191.550000px;}
.x5_c02135{left:218.550000px;}
.x2_c02135{left:820.950000px;}
@media print{
.v0_c02135{vertical-align:0.000000pt;}
.ls3_c02135{letter-spacing:-0.271467pt;}
.ls2_c02135{letter-spacing:0.000000pt;}
.ls0_c02135{letter-spacing:0.232960pt;}
.ls1_c02135{letter-spacing:59.791360pt;}
.ws0_c02135{word-spacing:-14.448533pt;}
.ws1_c02135{word-spacing:0.000000pt;}
._e_c02135{margin-left:-1.880627pt;}
._3_c02135{margin-left:-0.942433pt;}
._a_c02135{width:1.123018pt;}
._11_c02135{width:2.284073pt;}
._1_c02135{width:3.179814pt;}
._2_c02135{width:4.121600pt;}
._9_c02135{width:11.069322pt;}
._12_c02135{width:13.534804pt;}
._7_c02135{width:16.545751pt;}
._8_c02135{width:17.486536pt;}
._10_c02135{width:18.547200pt;}
._4_c02135{width:19.489103pt;}
._f_c02135{width:20.419761pt;}
._d_c02135{width:21.311027pt;}
._b_c02135{width:24.376556pt;}
._c_c02135{width:25.373041pt;}
._6_c02135{width:32.617165pt;}
._5_c02135{width:33.562189pt;}
._0_c02135{width:1334.165333pt;}
.fs0_c02135{font-size:53.120000pt;}
.fs1_c02135{font-size:58.880000pt;}
.y0_c02135{bottom:0.000000pt;}
.y4_c02135{bottom:4.160000pt;}
.y3_c02135{bottom:37.152000pt;}
.y2_c02135{bottom:67.072000pt;}
.y37_c02135{bottom:104.832000pt;}
.y36_c02135{bottom:121.792000pt;}
.y35_c02135{bottom:138.586667pt;}
.y34_c02135{bottom:155.386667pt;}
.y33_c02135{bottom:172.346667pt;}
.y32_c02135{bottom:189.146667pt;}
.y31_c02135{bottom:206.106667pt;}
.y30_c02135{bottom:222.906667pt;}
.y2f_c02135{bottom:239.706667pt;}
.y2e_c02135{bottom:256.706667pt;}
.y2d_c02135{bottom:273.506667pt;}
.y2c_c02135{bottom:290.466667pt;}
.y2b_c02135{bottom:307.266667pt;}
.y2a_c02135{bottom:324.066667pt;}
.y29_c02135{bottom:341.026667pt;}
.y28_c02135{bottom:357.826667pt;}
.y27_c02135{bottom:374.786667pt;}
.y26_c02135{bottom:391.586667pt;}
.y25_c02135{bottom:408.546667pt;}
.y24_c02135{bottom:425.346667pt;}
.y23_c02135{bottom:442.146667pt;}
.y22_c02135{bottom:459.106667pt;}
.y21_c02135{bottom:475.933333pt;}
.y20_c02135{bottom:492.893333pt;}
.y1f_c02135{bottom:509.693333pt;}
.y1e_c02135{bottom:526.493333pt;}
.y1d_c02135{bottom:543.453333pt;}
.y1c_c02135{bottom:560.253333pt;}
.y1b_c02135{bottom:577.213333pt;}
.y1a_c02135{bottom:594.013333pt;}
.y19_c02135{bottom:610.813333pt;}
.y18_c02135{bottom:627.773333pt;}
.y17_c02135{bottom:644.573333pt;}
.y16_c02135{bottom:661.533333pt;}
.y15_c02135{bottom:678.333333pt;}
.y14_c02135{bottom:694.813333pt;}
.y13_c02135{bottom:711.813333pt;}
.y12_c02135{bottom:728.933333pt;}
.y11_c02135{bottom:745.893333pt;}
.y10_c02135{bottom:762.693333pt;}
.yf_c02135{bottom:779.653333pt;}
.ye_c02135{bottom:796.453333pt;}
.yd_c02135{bottom:813.253333pt;}
.yc_c02135{bottom:830.213333pt;}
.yb_c02135{bottom:847.013333pt;}
.ya_c02135{bottom:863.973333pt;}
.y9_c02135{bottom:880.773333pt;}
.y8_c02135{bottom:897.573333pt;}
.y7_c02135{bottom:914.533333pt;}
.y6_c02135{bottom:931.333333pt;}
.y5_c02135{bottom:948.320000pt;}
.y1_c02135{bottom:996.800000pt;}
.h3_c02135{height:20.000000pt;}
.h2_c02135{height:43.441250pt;}
.h1_c02135{height:52.134375pt;}
.h4_c02135{height:57.787500pt;}
.h5_c02135{height:59.340000pt;}
.h6_c02135{height:60.519362pt;}
.h0_c02135{height:1056.000000pt;}
.w1_c02135{width:59.232000pt;}
.w0_c02135{width:816.000000pt;}
.x0_c02135{left:0.000000pt;}
.x3_c02135{left:14.720000pt;}
.x1_c02135{left:113.472000pt;}
.x4_c02135{left:170.266667pt;}
.x5_c02135{left:194.266667pt;}
.x2_c02135{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02136 {
    display:none;
  }
  .loading-indicator_c02136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02136 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02136 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02136" -> "#page-container .classname_c02136")
 */
.pf_c02136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02136 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02136 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02136 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02136 {overflow:visible;}
  }
}
.c_c02136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02136 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02136:after { /* webkit #35443 */
  content: '';
}
.t_c02136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02136 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02136 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02136 { /* info for Javascript */
  display:none;
}
.l_c02136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02136:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02136 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02136.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02136;src:url('chunks/assets/font_bac120af151636e3ecf5b029.woff2')format("woff");}.ff1_c02136{font-family:ff1_c02136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02136;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff2_c02136{font-family:ff2_c02136;line-height:0.863770;font-style:normal;font-weight: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_c02136;src:url('chunks/assets/font_6f4d2bebd44670515223f31e.woff2')format("woff");}.ff3_c02136{font-family:ff3_c02136;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02136{vertical-align:-75.600000px;}
.v0_c02136{vertical-align:0.000000px;}
.ls4_c02136{letter-spacing:-0.109200px;}
.ls3_c02136{letter-spacing:0.000000px;}
.ls1_c02136{letter-spacing:0.262080px;}
.ls2_c02136{letter-spacing:67.265280px;}
.ls0_c02136{letter-spacing:239.016000px;}
.sc__c02136{text-shadow:none;}
.sc0_c02136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02136{-webkit-text-stroke:0px transparent;}
.sc0_c02136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02136{word-spacing:-16.450800px;}
.ws1_c02136{word-spacing:0.000000px;}
._2_c02136{margin-left:-1.192188px;}
._3_c02136{width:1.258229px;}
._8_c02136{width:2.849314px;}
._5_c02136{width:4.305070px;}
._4_c02136{width:5.895559px;}
._6_c02136{width:7.683575px;}
._7_c02136{width:8.810384px;}
._f_c02136{width:10.010454px;}
._1_c02136{width:13.711812px;}
._10_c02136{width:17.686477px;}
._9_c02136{width:20.203266px;}
._a_c02136{width:21.262841px;}
._d_c02136{width:27.357054px;}
._e_c02136{width:28.482935px;}
._b_c02136{width:38.551812px;}
._c_c02136{width:39.677031px;}
._0_c02136{width:1500.936000px;}
.fc1_c02136{color:rgb(192,80,77);}
.fc0_c02136{color:rgb(0,0,0);}
.fs0_c02136{font-size:59.760000px;}
.fs1_c02136{font-size:66.240000px;}
.y0_c02136{bottom:0.000000px;}
.y4_c02136{bottom:4.680000px;}
.y3_c02136{bottom:41.796000px;}
.y2_c02136{bottom:75.456000px;}
.y35_c02136{bottom:117.936000px;}
.y34_c02136{bottom:137.016000px;}
.y33_c02136{bottom:155.910000px;}
.y32_c02136{bottom:174.810000px;}
.y31_c02136{bottom:193.890000px;}
.y30_c02136{bottom:212.790000px;}
.y2f_c02136{bottom:231.870000px;}
.y2e_c02136{bottom:250.770000px;}
.y2d_c02136{bottom:269.670000px;}
.y2c_c02136{bottom:288.795000px;}
.y2b_c02136{bottom:307.695000px;}
.y2a_c02136{bottom:326.775000px;}
.y29_c02136{bottom:345.675000px;}
.y28_c02136{bottom:364.575000px;}
.y27_c02136{bottom:383.655000px;}
.y26_c02136{bottom:402.555000px;}
.y25_c02136{bottom:421.635000px;}
.y24_c02136{bottom:440.535000px;}
.y23_c02136{bottom:459.615000px;}
.y22_c02136{bottom:478.515000px;}
.y21_c02136{bottom:497.415000px;}
.y20_c02136{bottom:535.425000px;}
.y1f_c02136{bottom:554.505000px;}
.y1e_c02136{bottom:573.405000px;}
.y1d_c02136{bottom:592.305000px;}
.y1c_c02136{bottom:611.385000px;}
.y1b_c02136{bottom:630.285000px;}
.y1a_c02136{bottom:649.365000px;}
.y19_c02136{bottom:668.265000px;}
.y18_c02136{bottom:687.165000px;}
.y17_c02136{bottom:706.245000px;}
.y16_c02136{bottom:725.145000px;}
.y15_c02136{bottom:744.225000px;}
.y14_c02136{bottom:763.125000px;}
.y13_c02136{bottom:782.025000px;}
.y12_c02136{bottom:801.150000px;}
.y11_c02136{bottom:820.050000px;}
.y10_c02136{bottom:839.130000px;}
.yf_c02136{bottom:858.030000px;}
.ye_c02136{bottom:877.110000px;}
.yd_c02136{bottom:896.010000px;}
.yc_c02136{bottom:914.910000px;}
.yb_c02136{bottom:933.990000px;}
.ya_c02136{bottom:952.890000px;}
.y9_c02136{bottom:971.970000px;}
.y8_c02136{bottom:990.870000px;}
.y7_c02136{bottom:1009.770000px;}
.y6_c02136{bottom:1047.750000px;}
.y5_c02136{bottom:1066.860000px;}
.y1_c02136{bottom:1121.400000px;}
.h3_c02136{height:22.500000px;}
.h2_c02136{height:48.871406px;}
.h1_c02136{height:58.651172px;}
.h4_c02136{height:65.010937px;}
.h5_c02136{height:68.084282px;}
.h0_c02136{height:1188.000000px;}
.w1_c02136{width:66.636000px;}
.w0_c02136{width:918.000000px;}
.x0_c02136{left:0.000000px;}
.x3_c02136{left:16.560000px;}
.x1_c02136{left:127.656000px;}
.x4_c02136{left:191.550000px;}
.x5_c02136{left:218.550000px;}
.x2_c02136{left:820.950000px;}
@media print{
.v1_c02136{vertical-align:-67.200000pt;}
.v0_c02136{vertical-align:0.000000pt;}
.ls4_c02136{letter-spacing:-0.097067pt;}
.ls3_c02136{letter-spacing:0.000000pt;}
.ls1_c02136{letter-spacing:0.232960pt;}
.ls2_c02136{letter-spacing:59.791360pt;}
.ls0_c02136{letter-spacing:212.458667pt;}
.ws0_c02136{word-spacing:-14.622933pt;}
.ws1_c02136{word-spacing:0.000000pt;}
._2_c02136{margin-left:-1.059722pt;}
._3_c02136{width:1.118426pt;}
._8_c02136{width:2.532723pt;}
._5_c02136{width:3.826729pt;}
._4_c02136{width:5.240497pt;}
._6_c02136{width:6.829844pt;}
._7_c02136{width:7.831452pt;}
._f_c02136{width:8.898181pt;}
._1_c02136{width:12.188278pt;}
._10_c02136{width:15.721313pt;}
._9_c02136{width:17.958459pt;}
._a_c02136{width:18.900303pt;}
._d_c02136{width:24.317381pt;}
._e_c02136{width:25.318164pt;}
._b_c02136{width:34.268278pt;}
._c_c02136{width:35.268472pt;}
._0_c02136{width:1334.165333pt;}
.fs0_c02136{font-size:53.120000pt;}
.fs1_c02136{font-size:58.880000pt;}
.y0_c02136{bottom:0.000000pt;}
.y4_c02136{bottom:4.160000pt;}
.y3_c02136{bottom:37.152000pt;}
.y2_c02136{bottom:67.072000pt;}
.y35_c02136{bottom:104.832000pt;}
.y34_c02136{bottom:121.792000pt;}
.y33_c02136{bottom:138.586667pt;}
.y32_c02136{bottom:155.386667pt;}
.y31_c02136{bottom:172.346667pt;}
.y30_c02136{bottom:189.146667pt;}
.y2f_c02136{bottom:206.106667pt;}
.y2e_c02136{bottom:222.906667pt;}
.y2d_c02136{bottom:239.706667pt;}
.y2c_c02136{bottom:256.706667pt;}
.y2b_c02136{bottom:273.506667pt;}
.y2a_c02136{bottom:290.466667pt;}
.y29_c02136{bottom:307.266667pt;}
.y28_c02136{bottom:324.066667pt;}
.y27_c02136{bottom:341.026667pt;}
.y26_c02136{bottom:357.826667pt;}
.y25_c02136{bottom:374.786667pt;}
.y24_c02136{bottom:391.586667pt;}
.y23_c02136{bottom:408.546667pt;}
.y22_c02136{bottom:425.346667pt;}
.y21_c02136{bottom:442.146667pt;}
.y20_c02136{bottom:475.933333pt;}
.y1f_c02136{bottom:492.893333pt;}
.y1e_c02136{bottom:509.693333pt;}
.y1d_c02136{bottom:526.493333pt;}
.y1c_c02136{bottom:543.453333pt;}
.y1b_c02136{bottom:560.253333pt;}
.y1a_c02136{bottom:577.213333pt;}
.y19_c02136{bottom:594.013333pt;}
.y18_c02136{bottom:610.813333pt;}
.y17_c02136{bottom:627.773333pt;}
.y16_c02136{bottom:644.573333pt;}
.y15_c02136{bottom:661.533333pt;}
.y14_c02136{bottom:678.333333pt;}
.y13_c02136{bottom:695.133333pt;}
.y12_c02136{bottom:712.133333pt;}
.y11_c02136{bottom:728.933333pt;}
.y10_c02136{bottom:745.893333pt;}
.yf_c02136{bottom:762.693333pt;}
.ye_c02136{bottom:779.653333pt;}
.yd_c02136{bottom:796.453333pt;}
.yc_c02136{bottom:813.253333pt;}
.yb_c02136{bottom:830.213333pt;}
.ya_c02136{bottom:847.013333pt;}
.y9_c02136{bottom:863.973333pt;}
.y8_c02136{bottom:880.773333pt;}
.y7_c02136{bottom:897.573333pt;}
.y6_c02136{bottom:931.333333pt;}
.y5_c02136{bottom:948.320000pt;}
.y1_c02136{bottom:996.800000pt;}
.h3_c02136{height:20.000000pt;}
.h2_c02136{height:43.441250pt;}
.h1_c02136{height:52.134375pt;}
.h4_c02136{height:57.787500pt;}
.h5_c02136{height:60.519362pt;}
.h0_c02136{height:1056.000000pt;}
.w1_c02136{width:59.232000pt;}
.w0_c02136{width:816.000000pt;}
.x0_c02136{left:0.000000pt;}
.x3_c02136{left:14.720000pt;}
.x1_c02136{left:113.472000pt;}
.x4_c02136{left:170.266667pt;}
.x5_c02136{left:194.266667pt;}
.x2_c02136{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02137 {
    display:none;
  }
  .loading-indicator_c02137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02137 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02137 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02137" -> "#page-container .classname_c02137")
 */
.pf_c02137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02137 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02137 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02137 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02137 {overflow:visible;}
  }
}
.c_c02137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02137 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02137:after { /* webkit #35443 */
  content: '';
}
.t_c02137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02137 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02137 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02137 { /* info for Javascript */
  display:none;
}
.l_c02137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02137:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02137 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02137.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02137;src:url('chunks/assets/font_21f824ef1679c37be8fb302d.woff2')format("woff");}.ff1_c02137{font-family:ff1_c02137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02137;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff2_c02137{font-family:ff2_c02137;line-height:0.863770;font-style:normal;font-weight: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_c02137;src:url('chunks/assets/font_b193ff593d8963f5d61fc186.woff2')format("woff");}.ff3_c02137{font-family:ff3_c02137;line-height:1.402354;font-style:normal;font-weight: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_c02137;src:url('chunks/assets/font_a9e8ec745cb3839493bd0ad9.woff2')format("woff");}.ff4_c02137{font-family:ff4_c02137;line-height:1.311035;font-style:normal;font-weight: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_c02137;src:url('chunks/assets/font_28ef0dab6a4d3d22008c38d2.woff2')format("woff");}.ff5_c02137{font-family:ff5_c02137;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02137{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02137{vertical-align:0.000000px;}
.ls2_c02137{letter-spacing:0.000000px;}
.ls0_c02137{letter-spacing:0.262080px;}
.ls1_c02137{letter-spacing:67.265280px;}
.sc__c02137{text-shadow:none;}
.sc0_c02137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02137{-webkit-text-stroke:0px transparent;}
.sc0_c02137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02137{word-spacing:0.000000px;}
._b_c02137{margin-left:-2.116195px;}
._2_c02137{margin-left:-1.060039px;}
._5_c02137{width:1.579294px;}
._1_c02137{width:2.914759px;}
._3_c02137{width:4.106483px;}
._4_c02137{width:5.432409px;}
._6_c02137{width:6.889225px;}
._9_c02137{width:8.885047px;}
._e_c02137{width:10.780039px;}
._11_c02137{width:11.932039px;}
._12_c02137{width:12.932536px;}
._c_c02137{width:13.968000px;}
._d_c02137{width:15.528000px;}
._8_c02137{width:17.885330px;}
._a_c02137{width:19.800000px;}
._15_c02137{width:21.213841px;}
._7_c02137{width:22.322814px;}
._13_c02137{width:24.696000px;}
._14_c02137{width:25.704000px;}
._f_c02137{width:27.648000px;}
._10_c02137{width:28.728000px;}
._0_c02137{width:1500.936000px;}
.fc1_c02137{color:rgb(192,80,77);}
.fc0_c02137{color:rgb(0,0,0);}
.fs0_c02137{font-size:59.760000px;}
.fs1_c02137{font-size:66.240000px;}
.fs2_c02137{font-size:72.000000px;}
.y0_c02137{bottom:0.000000px;}
.y4_c02137{bottom:4.680000px;}
.y3_c02137{bottom:41.796000px;}
.y2_c02137{bottom:75.456000px;}
.y2a_c02137{bottom:128.016000px;}
.y29_c02137{bottom:158.970000px;}
.y28_c02137{bottom:190.110000px;}
.y27_c02137{bottom:221.070000px;}
.y26_c02137{bottom:252.210000px;}
.y25_c02137{bottom:283.215000px;}
.y24_c02137{bottom:313.995000px;}
.y23_c02137{bottom:344.955000px;}
.y22_c02137{bottom:376.455000px;}
.y21_c02137{bottom:407.415000px;}
.y20_c02137{bottom:438.555000px;}
.y1f_c02137{bottom:469.515000px;}
.y1e_c02137{bottom:500.655000px;}
.y1d_c02137{bottom:531.615000px;}
.y1c_c02137{bottom:562.785000px;}
.y1b_c02137{bottom:593.745000px;}
.y1a_c02137{bottom:624.885000px;}
.y19_c02137{bottom:655.845000px;}
.y18_c02137{bottom:686.985000px;}
.y17_c02137{bottom:707.325000px;}
.y16_c02137{bottom:726.405000px;}
.y15_c02137{bottom:745.305000px;}
.y14_c02137{bottom:764.205000px;}
.y13_c02137{bottom:783.285000px;}
.y12_c02137{bottom:802.230000px;}
.y11_c02137{bottom:821.310000px;}
.y10_c02137{bottom:840.210000px;}
.yf_c02137{bottom:859.110000px;}
.ye_c02137{bottom:878.190000px;}
.yd_c02137{bottom:897.090000px;}
.yc_c02137{bottom:916.170000px;}
.yb_c02137{bottom:935.070000px;}
.ya_c02137{bottom:953.970000px;}
.y9_c02137{bottom:973.050000px;}
.y8_c02137{bottom:1009.770000px;}
.y7_c02137{bottom:1028.850000px;}
.y6_c02137{bottom:1047.750000px;}
.y5_c02137{bottom:1066.860000px;}
.y1_c02137{bottom:1121.400000px;}
.h3_c02137{height:22.500000px;}
.h2_c02137{height:48.871406px;}
.h1_c02137{height:58.651172px;}
.h5_c02137{height:65.010937px;}
.h6_c02137{height:66.757500px;}
.h4_c02137{height:68.084282px;}
.h7_c02137{height:70.664062px;}
.h8_c02137{height:72.562500px;}
.h0_c02137{height:1188.000000px;}
.w1_c02137{width:66.636000px;}
.w0_c02137{width:918.000000px;}
.x0_c02137{left:0.000000px;}
.x3_c02137{left:16.560000px;}
.x1_c02137{left:127.656000px;}
.x6_c02137{left:180.750000px;}
.x4_c02137{left:191.550000px;}
.x5_c02137{left:218.550000px;}
.x2_c02137{left:820.950000px;}
@media print{
.v0_c02137{vertical-align:0.000000pt;}
.ls2_c02137{letter-spacing:0.000000pt;}
.ls0_c02137{letter-spacing:0.232960pt;}
.ls1_c02137{letter-spacing:59.791360pt;}
.ws0_c02137{word-spacing:0.000000pt;}
._b_c02137{margin-left:-1.881062pt;}
._2_c02137{margin-left:-0.942257pt;}
._5_c02137{width:1.403817pt;}
._1_c02137{width:2.590897pt;}
._3_c02137{width:3.650207pt;}
._4_c02137{width:4.828808pt;}
._6_c02137{width:6.123756pt;}
._9_c02137{width:7.897819pt;}
._e_c02137{width:9.582257pt;}
._11_c02137{width:10.606257pt;}
._12_c02137{width:11.495588pt;}
._c_c02137{width:12.416000pt;}
._d_c02137{width:13.802667pt;}
._8_c02137{width:15.898071pt;}
._a_c02137{width:17.600000pt;}
._15_c02137{width:18.856748pt;}
._7_c02137{width:19.842501pt;}
._13_c02137{width:21.952000pt;}
._14_c02137{width:22.848000pt;}
._f_c02137{width:24.576000pt;}
._10_c02137{width:25.536000pt;}
._0_c02137{width:1334.165333pt;}
.fs0_c02137{font-size:53.120000pt;}
.fs1_c02137{font-size:58.880000pt;}
.fs2_c02137{font-size:64.000000pt;}
.y0_c02137{bottom:0.000000pt;}
.y4_c02137{bottom:4.160000pt;}
.y3_c02137{bottom:37.152000pt;}
.y2_c02137{bottom:67.072000pt;}
.y2a_c02137{bottom:113.792000pt;}
.y29_c02137{bottom:141.306667pt;}
.y28_c02137{bottom:168.986667pt;}
.y27_c02137{bottom:196.506667pt;}
.y26_c02137{bottom:224.186667pt;}
.y25_c02137{bottom:251.746667pt;}
.y24_c02137{bottom:279.106667pt;}
.y23_c02137{bottom:306.626667pt;}
.y22_c02137{bottom:334.626667pt;}
.y21_c02137{bottom:362.146667pt;}
.y20_c02137{bottom:389.826667pt;}
.y1f_c02137{bottom:417.346667pt;}
.y1e_c02137{bottom:445.026667pt;}
.y1d_c02137{bottom:472.546667pt;}
.y1c_c02137{bottom:500.253333pt;}
.y1b_c02137{bottom:527.773333pt;}
.y1a_c02137{bottom:555.453333pt;}
.y19_c02137{bottom:582.973333pt;}
.y18_c02137{bottom:610.653333pt;}
.y17_c02137{bottom:628.733333pt;}
.y16_c02137{bottom:645.693333pt;}
.y15_c02137{bottom:662.493333pt;}
.y14_c02137{bottom:679.293333pt;}
.y13_c02137{bottom:696.253333pt;}
.y12_c02137{bottom:713.093333pt;}
.y11_c02137{bottom:730.053333pt;}
.y10_c02137{bottom:746.853333pt;}
.yf_c02137{bottom:763.653333pt;}
.ye_c02137{bottom:780.613333pt;}
.yd_c02137{bottom:797.413333pt;}
.yc_c02137{bottom:814.373333pt;}
.yb_c02137{bottom:831.173333pt;}
.ya_c02137{bottom:847.973333pt;}
.y9_c02137{bottom:864.933333pt;}
.y8_c02137{bottom:897.573333pt;}
.y7_c02137{bottom:914.533333pt;}
.y6_c02137{bottom:931.333333pt;}
.y5_c02137{bottom:948.320000pt;}
.y1_c02137{bottom:996.800000pt;}
.h3_c02137{height:20.000000pt;}
.h2_c02137{height:43.441250pt;}
.h1_c02137{height:52.134375pt;}
.h5_c02137{height:57.787500pt;}
.h6_c02137{height:59.340000pt;}
.h4_c02137{height:60.519362pt;}
.h7_c02137{height:62.812500pt;}
.h8_c02137{height:64.500000pt;}
.h0_c02137{height:1056.000000pt;}
.w1_c02137{width:59.232000pt;}
.w0_c02137{width:816.000000pt;}
.x0_c02137{left:0.000000pt;}
.x3_c02137{left:14.720000pt;}
.x1_c02137{left:113.472000pt;}
.x6_c02137{left:160.666667pt;}
.x4_c02137{left:170.266667pt;}
.x5_c02137{left:194.266667pt;}
.x2_c02137{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02138 {
    display:none;
  }
  .loading-indicator_c02138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02138 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02138 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02138" -> "#page-container .classname_c02138")
 */
.pf_c02138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02138 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02138 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02138 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02138 {overflow:visible;}
  }
}
.c_c02138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02138 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02138:after { /* webkit #35443 */
  content: '';
}
.t_c02138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02138 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02138 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02138 { /* info for Javascript */
  display:none;
}
.l_c02138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02138:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02138 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02138.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02138;src:url('chunks/assets/font_00a1e7823bdac17bdee01a8c.woff2')format("woff");}.ff1_c02138{font-family:ff1_c02138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02138;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff2_c02138{font-family:ff2_c02138;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02138{vertical-align:-27.360000px;}
.v0_c02138{vertical-align:0.000000px;}
.v1_c02138{vertical-align:33.120000px;}
.ls4_c02138{letter-spacing:-0.360000px;}
.ls3_c02138{letter-spacing:0.000000px;}
.ls1_c02138{letter-spacing:0.150000px;}
.ls2_c02138{letter-spacing:0.180000px;}
.ls0_c02138{letter-spacing:0.360000px;}
.sc__c02138{text-shadow:none;}
.sc0_c02138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02138{-webkit-text-stroke:0px transparent;}
.sc0_c02138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02138{word-spacing:-14.940000px;}
.ws0_c02138{word-spacing:-9.720000px;}
.ws2_c02138{word-spacing:0.000000px;}
._12_c02138{margin-left:-12.817920px;}
._2_c02138{margin-left:-1.008000px;}
._4_c02138{width:1.008000px;}
._5_c02138{width:2.796000px;}
._6_c02138{width:4.344000px;}
._c_c02138{width:5.760000px;}
._a_c02138{width:7.272000px;}
._b_c02138{width:8.280000px;}
._7_c02138{width:9.480000px;}
._8_c02138{width:10.800000px;}
._f_c02138{width:11.808000px;}
._9_c02138{width:13.104000px;}
._3_c02138{width:15.048000px;}
._13_c02138{width:16.971601px;}
._14_c02138{width:18.285589px;}
._1_c02138{width:19.584000px;}
._15_c02138{width:20.999400px;}
._11_c02138{width:22.248000px;}
._10_c02138{width:23.400000px;}
._e_c02138{width:26.424000px;}
._d_c02138{width:30.672000px;}
._0_c02138{width:1500.936000px;}
.fc1_c02138{color:rgb(192,80,77);}
.fc0_c02138{color:rgb(0,0,0);}
.fs4_c02138{font-size:38.880000px;}
.fs3_c02138{font-size:48.240000px;}
.fs0_c02138{font-size:59.760000px;}
.fs1_c02138{font-size:66.240000px;}
.fs2_c02138{font-size:72.000000px;}
.y0_c02138{bottom:0.000000px;}
.y4_c02138{bottom:4.680000px;}
.y3_c02138{bottom:41.796000px;}
.y2_c02138{bottom:75.456000px;}
.y25_c02138{bottom:109.836000px;}
.y24_c02138{bottom:127.116000px;}
.y23_c02138{bottom:144.396000px;}
.y22_c02138{bottom:161.670000px;}
.y21_c02138{bottom:178.950000px;}
.y20_c02138{bottom:202.890000px;}
.y1f_c02138{bottom:214.230000px;}
.y1e_c02138{bottom:288.975000px;}
.y1d_c02138{bottom:320.115000px;}
.y1c_c02138{bottom:351.075000px;}
.y1b_c02138{bottom:382.215000px;}
.y1a_c02138{bottom:413.175000px;}
.y19_c02138{bottom:444.315000px;}
.y18_c02138{bottom:475.275000px;}
.y17_c02138{bottom:506.415000px;}
.y16_c02138{bottom:537.405000px;}
.y15_c02138{bottom:568.545000px;}
.y14_c02138{bottom:599.505000px;}
.y13_c02138{bottom:630.645000px;}
.y12_c02138{bottom:661.605000px;}
.y11_c02138{bottom:692.745000px;}
.y10_c02138{bottom:723.705000px;}
.yf_c02138{bottom:754.845000px;}
.ye_c02138{bottom:785.805000px;}
.yd_c02138{bottom:816.990000px;}
.yc_c02138{bottom:847.950000px;}
.yb_c02138{bottom:879.090000px;}
.ya_c02138{bottom:910.050000px;}
.y9_c02138{bottom:941.190000px;}
.y8_c02138{bottom:972.150000px;}
.y7_c02138{bottom:1003.290000px;}
.y6_c02138{bottom:1034.250000px;}
.y5_c02138{bottom:1065.420000px;}
.y1_c02138{bottom:1121.400000px;}
.h3_c02138{height:22.500000px;}
.h6_c02138{height:38.158594px;}
.h2_c02138{height:48.871406px;}
.h1_c02138{height:58.651172px;}
.h4_c02138{height:70.664062px;}
.h5_c02138{height:80.464922px;}
.h0_c02138{height:1188.000000px;}
.w1_c02138{width:66.636000px;}
.w0_c02138{width:918.000000px;}
.x0_c02138{left:0.000000px;}
.x3_c02138{left:16.560000px;}
.x1_c02138{left:127.656000px;}
.x4_c02138{left:180.750000px;}
.x2_c02138{left:820.950000px;}
@media print{
.v2_c02138{vertical-align:-24.320000pt;}
.v0_c02138{vertical-align:0.000000pt;}
.v1_c02138{vertical-align:29.440000pt;}
.ls4_c02138{letter-spacing:-0.320000pt;}
.ls3_c02138{letter-spacing:0.000000pt;}
.ls1_c02138{letter-spacing:0.133333pt;}
.ls2_c02138{letter-spacing:0.160000pt;}
.ls0_c02138{letter-spacing:0.320000pt;}
.ws1_c02138{word-spacing:-13.280000pt;}
.ws0_c02138{word-spacing:-8.640000pt;}
.ws2_c02138{word-spacing:0.000000pt;}
._12_c02138{margin-left:-11.393707pt;}
._2_c02138{margin-left:-0.896000pt;}
._4_c02138{width:0.896000pt;}
._5_c02138{width:2.485333pt;}
._6_c02138{width:3.861333pt;}
._c_c02138{width:5.120000pt;}
._a_c02138{width:6.464000pt;}
._b_c02138{width:7.360000pt;}
._7_c02138{width:8.426667pt;}
._8_c02138{width:9.600000pt;}
._f_c02138{width:10.496000pt;}
._9_c02138{width:11.648000pt;}
._3_c02138{width:13.376000pt;}
._13_c02138{width:15.085868pt;}
._14_c02138{width:16.253857pt;}
._1_c02138{width:17.408000pt;}
._15_c02138{width:18.666134pt;}
._11_c02138{width:19.776000pt;}
._10_c02138{width:20.800000pt;}
._e_c02138{width:23.488000pt;}
._d_c02138{width:27.264000pt;}
._0_c02138{width:1334.165333pt;}
.fs4_c02138{font-size:34.560000pt;}
.fs3_c02138{font-size:42.880000pt;}
.fs0_c02138{font-size:53.120000pt;}
.fs1_c02138{font-size:58.880000pt;}
.fs2_c02138{font-size:64.000000pt;}
.y0_c02138{bottom:0.000000pt;}
.y4_c02138{bottom:4.160000pt;}
.y3_c02138{bottom:37.152000pt;}
.y2_c02138{bottom:67.072000pt;}
.y25_c02138{bottom:97.632000pt;}
.y24_c02138{bottom:112.992000pt;}
.y23_c02138{bottom:128.352000pt;}
.y22_c02138{bottom:143.706667pt;}
.y21_c02138{bottom:159.066667pt;}
.y20_c02138{bottom:180.346667pt;}
.y1f_c02138{bottom:190.426667pt;}
.y1e_c02138{bottom:256.866667pt;}
.y1d_c02138{bottom:284.546667pt;}
.y1c_c02138{bottom:312.066667pt;}
.y1b_c02138{bottom:339.746667pt;}
.y1a_c02138{bottom:367.266667pt;}
.y19_c02138{bottom:394.946667pt;}
.y18_c02138{bottom:422.466667pt;}
.y17_c02138{bottom:450.146667pt;}
.y16_c02138{bottom:477.693333pt;}
.y15_c02138{bottom:505.373333pt;}
.y14_c02138{bottom:532.893333pt;}
.y13_c02138{bottom:560.573333pt;}
.y12_c02138{bottom:588.093333pt;}
.y11_c02138{bottom:615.773333pt;}
.y10_c02138{bottom:643.293333pt;}
.yf_c02138{bottom:670.973333pt;}
.ye_c02138{bottom:698.493333pt;}
.yd_c02138{bottom:726.213333pt;}
.yc_c02138{bottom:753.733333pt;}
.yb_c02138{bottom:781.413333pt;}
.ya_c02138{bottom:808.933333pt;}
.y9_c02138{bottom:836.613333pt;}
.y8_c02138{bottom:864.133333pt;}
.y7_c02138{bottom:891.813333pt;}
.y6_c02138{bottom:919.333333pt;}
.y5_c02138{bottom:947.040000pt;}
.y1_c02138{bottom:996.800000pt;}
.h3_c02138{height:20.000000pt;}
.h6_c02138{height:33.918750pt;}
.h2_c02138{height:43.441250pt;}
.h1_c02138{height:52.134375pt;}
.h4_c02138{height:62.812500pt;}
.h5_c02138{height:71.524375pt;}
.h0_c02138{height:1056.000000pt;}
.w1_c02138{width:59.232000pt;}
.w0_c02138{width:816.000000pt;}
.x0_c02138{left:0.000000pt;}
.x3_c02138{left:14.720000pt;}
.x1_c02138{left:113.472000pt;}
.x4_c02138{left:160.666667pt;}
.x2_c02138{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02139 {
    display:none;
  }
  .loading-indicator_c02139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02139 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02139 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02139" -> "#page-container .classname_c02139")
 */
.pf_c02139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02139 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02139 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02139 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02139 {overflow:visible;}
  }
}
.c_c02139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02139 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02139:after { /* webkit #35443 */
  content: '';
}
.t_c02139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02139 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02139 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02139 { /* info for Javascript */
  display:none;
}
.l_c02139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02139:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02139 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02139.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02139;src:url('chunks/assets/font_fb4a44a8dd10e58092352766.woff2')format("woff");}.ff1_c02139{font-family:ff1_c02139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02139;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff2_c02139{font-family:ff2_c02139;line-height:0.863770;font-style:normal;font-weight: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_c02139;src:url('chunks/assets/font_2fa36247301d7a138c94b7e8.woff2')format("woff");}.ff3_c02139{font-family:ff3_c02139;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02139{vertical-align:0.000000px;}
.ls0_c02139{letter-spacing:0.000000px;}
.sc__c02139{text-shadow:none;}
.sc0_c02139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02139{-webkit-text-stroke:0px transparent;}
.sc0_c02139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02139{word-spacing:-18.000000px;}
.ws1_c02139{word-spacing:0.000000px;}
._8_c02139{margin-left:-2.136000px;}
._3_c02139{margin-left:-1.080000px;}
._2_c02139{width:1.128000px;}
._11_c02139{width:2.449757px;}
._4_c02139{width:3.456000px;}
._5_c02139{width:4.464000px;}
._9_c02139{width:5.472000px;}
._6_c02139{width:6.480000px;}
._c_c02139{width:8.928000px;}
._b_c02139{width:10.440000px;}
._10_c02139{width:11.710212px;}
._a_c02139{width:13.176000px;}
._1_c02139{width:14.184000px;}
._7_c02139{width:15.564000px;}
._d_c02139{width:16.932000px;}
._f_c02139{width:30.622841px;}
._e_c02139{width:36.034825px;}
._0_c02139{width:1500.936000px;}
.fc1_c02139{color:rgb(192,80,77);}
.fc0_c02139{color:rgb(0,0,0);}
.fs0_c02139{font-size:59.760000px;}
.fs1_c02139{font-size:66.240000px;}
.fs2_c02139{font-size:72.000000px;}
.y0_c02139{bottom:0.000000px;}
.y4_c02139{bottom:4.680000px;}
.y3_c02139{bottom:41.796000px;}
.y2_c02139{bottom:75.456000px;}
.y2f_c02139{bottom:137.016000px;}
.y2e_c02139{bottom:155.910000px;}
.y2d_c02139{bottom:174.810000px;}
.y2c_c02139{bottom:193.890000px;}
.y2b_c02139{bottom:212.790000px;}
.y2a_c02139{bottom:231.870000px;}
.y29_c02139{bottom:250.770000px;}
.y28_c02139{bottom:269.670000px;}
.y27_c02139{bottom:288.795000px;}
.y26_c02139{bottom:307.695000px;}
.y25_c02139{bottom:326.775000px;}
.y24_c02139{bottom:345.675000px;}
.y23_c02139{bottom:364.575000px;}
.y22_c02139{bottom:383.655000px;}
.y21_c02139{bottom:402.555000px;}
.y20_c02139{bottom:421.635000px;}
.y1f_c02139{bottom:440.535000px;}
.y1e_c02139{bottom:459.615000px;}
.y1d_c02139{bottom:478.515000px;}
.y1c_c02139{bottom:497.415000px;}
.y1b_c02139{bottom:516.495000px;}
.y1a_c02139{bottom:535.425000px;}
.y19_c02139{bottom:554.505000px;}
.y18_c02139{bottom:573.405000px;}
.y17_c02139{bottom:592.305000px;}
.y16_c02139{bottom:611.385000px;}
.y15_c02139{bottom:630.285000px;}
.y14_c02139{bottom:649.365000px;}
.y13_c02139{bottom:668.265000px;}
.y12_c02139{bottom:687.165000px;}
.y11_c02139{bottom:706.245000px;}
.y10_c02139{bottom:725.145000px;}
.yf_c02139{bottom:754.845000px;}
.ye_c02139{bottom:785.805000px;}
.yd_c02139{bottom:816.990000px;}
.yc_c02139{bottom:847.950000px;}
.yb_c02139{bottom:879.090000px;}
.ya_c02139{bottom:910.050000px;}
.y9_c02139{bottom:941.190000px;}
.y8_c02139{bottom:972.150000px;}
.y7_c02139{bottom:1003.290000px;}
.y6_c02139{bottom:1034.250000px;}
.y5_c02139{bottom:1065.420000px;}
.y1_c02139{bottom:1121.400000px;}
.h3_c02139{height:22.500000px;}
.h2_c02139{height:48.871406px;}
.h1_c02139{height:58.651172px;}
.h5_c02139{height:64.546875px;}
.h6_c02139{height:65.010937px;}
.h4_c02139{height:70.664062px;}
.h0_c02139{height:1188.000000px;}
.w1_c02139{width:66.636000px;}
.w0_c02139{width:918.000000px;}
.x0_c02139{left:0.000000px;}
.x3_c02139{left:16.560000px;}
.x1_c02139{left:127.656000px;}
.x4_c02139{left:180.750000px;}
.x5_c02139{left:191.550000px;}
.x2_c02139{left:820.950000px;}
@media print{
.v0_c02139{vertical-align:0.000000pt;}
.ls0_c02139{letter-spacing:0.000000pt;}
.ws0_c02139{word-spacing:-16.000000pt;}
.ws1_c02139{word-spacing:0.000000pt;}
._8_c02139{margin-left:-1.898667pt;}
._3_c02139{margin-left:-0.960000pt;}
._2_c02139{width:1.002667pt;}
._11_c02139{width:2.177562pt;}
._4_c02139{width:3.072000pt;}
._5_c02139{width:3.968000pt;}
._9_c02139{width:4.864000pt;}
._6_c02139{width:5.760000pt;}
._c_c02139{width:7.936000pt;}
._b_c02139{width:9.280000pt;}
._10_c02139{width:10.409078pt;}
._a_c02139{width:11.712000pt;}
._1_c02139{width:12.608000pt;}
._7_c02139{width:13.834667pt;}
._d_c02139{width:15.050667pt;}
._f_c02139{width:27.220303pt;}
._e_c02139{width:32.030956pt;}
._0_c02139{width:1334.165333pt;}
.fs0_c02139{font-size:53.120000pt;}
.fs1_c02139{font-size:58.880000pt;}
.fs2_c02139{font-size:64.000000pt;}
.y0_c02139{bottom:0.000000pt;}
.y4_c02139{bottom:4.160000pt;}
.y3_c02139{bottom:37.152000pt;}
.y2_c02139{bottom:67.072000pt;}
.y2f_c02139{bottom:121.792000pt;}
.y2e_c02139{bottom:138.586667pt;}
.y2d_c02139{bottom:155.386667pt;}
.y2c_c02139{bottom:172.346667pt;}
.y2b_c02139{bottom:189.146667pt;}
.y2a_c02139{bottom:206.106667pt;}
.y29_c02139{bottom:222.906667pt;}
.y28_c02139{bottom:239.706667pt;}
.y27_c02139{bottom:256.706667pt;}
.y26_c02139{bottom:273.506667pt;}
.y25_c02139{bottom:290.466667pt;}
.y24_c02139{bottom:307.266667pt;}
.y23_c02139{bottom:324.066667pt;}
.y22_c02139{bottom:341.026667pt;}
.y21_c02139{bottom:357.826667pt;}
.y20_c02139{bottom:374.786667pt;}
.y1f_c02139{bottom:391.586667pt;}
.y1e_c02139{bottom:408.546667pt;}
.y1d_c02139{bottom:425.346667pt;}
.y1c_c02139{bottom:442.146667pt;}
.y1b_c02139{bottom:459.106667pt;}
.y1a_c02139{bottom:475.933333pt;}
.y19_c02139{bottom:492.893333pt;}
.y18_c02139{bottom:509.693333pt;}
.y17_c02139{bottom:526.493333pt;}
.y16_c02139{bottom:543.453333pt;}
.y15_c02139{bottom:560.253333pt;}
.y14_c02139{bottom:577.213333pt;}
.y13_c02139{bottom:594.013333pt;}
.y12_c02139{bottom:610.813333pt;}
.y11_c02139{bottom:627.773333pt;}
.y10_c02139{bottom:644.573333pt;}
.yf_c02139{bottom:670.973333pt;}
.ye_c02139{bottom:698.493333pt;}
.yd_c02139{bottom:726.213333pt;}
.yc_c02139{bottom:753.733333pt;}
.yb_c02139{bottom:781.413333pt;}
.ya_c02139{bottom:808.933333pt;}
.y9_c02139{bottom:836.613333pt;}
.y8_c02139{bottom:864.133333pt;}
.y7_c02139{bottom:891.813333pt;}
.y6_c02139{bottom:919.333333pt;}
.y5_c02139{bottom:947.040000pt;}
.y1_c02139{bottom:996.800000pt;}
.h3_c02139{height:20.000000pt;}
.h2_c02139{height:43.441250pt;}
.h1_c02139{height:52.134375pt;}
.h5_c02139{height:57.375000pt;}
.h6_c02139{height:57.787500pt;}
.h4_c02139{height:62.812500pt;}
.h0_c02139{height:1056.000000pt;}
.w1_c02139{width:59.232000pt;}
.w0_c02139{width:816.000000pt;}
.x0_c02139{left:0.000000pt;}
.x3_c02139{left:14.720000pt;}
.x1_c02139{left:113.472000pt;}
.x4_c02139{left:160.666667pt;}
.x5_c02139{left:170.266667pt;}
.x2_c02139{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02140 {
    display:none;
  }
  .loading-indicator_c02140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02140 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02140 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02140" -> "#page-container .classname_c02140")
 */
.pf_c02140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02140 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02140 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02140 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02140 {overflow:visible;}
  }
}
.c_c02140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02140 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02140:after { /* webkit #35443 */
  content: '';
}
.t_c02140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02140 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02140 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02140 { /* info for Javascript */
  display:none;
}
.l_c02140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02140:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02140 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02140.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02140;src:url('chunks/assets/font_8c143ec13b477246ac4a0b1b.woff2')format("woff");}.ff1_c02140{font-family:ff1_c02140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02140;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff2_c02140{font-family:ff2_c02140;line-height:0.863770;font-style:normal;font-weight: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_c02140;src:url('chunks/assets/font_a051ddde11183c282160926a.woff2')format("woff");}.ff3_c02140{font-family:ff3_c02140;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02140{vertical-align:0.000000px;}
.ls0_c02140{letter-spacing:0.000000px;}
.sc__c02140{text-shadow:none;}
.sc0_c02140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02140{-webkit-text-stroke:0px transparent;}
.sc0_c02140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02140{word-spacing:-16.560000px;}
.ws1_c02140{word-spacing:0.000000px;}
._2_c02140{margin-left:-1.324866px;}
._6_c02140{width:1.059641px;}
._b_c02140{width:2.252955px;}
._c_c02140{width:3.300673px;}
._11_c02140{width:4.480937px;}
._4_c02140{width:5.759038px;}
._a_c02140{width:7.422921px;}
._f_c02140{width:9.075012px;}
._12_c02140{width:10.398819px;}
._8_c02140{width:11.857225px;}
._9_c02140{width:13.025566px;}
._13_c02140{width:14.042350px;}
._10_c02140{width:15.500425px;}
._5_c02140{width:17.884800px;}
._7_c02140{width:18.945170px;}
._17_c02140{width:20.071250px;}
._16_c02140{width:21.395454px;}
._15_c02140{width:23.846400px;}
._14_c02140{width:24.972679px;}
._3_c02140{width:28.881369px;}
._1_c02140{width:30.006588px;}
._e_c02140{width:31.398025px;}
._d_c02140{width:32.457600px;}
._0_c02140{width:1500.936000px;}
.fc1_c02140{color:rgb(192,80,77);}
.fc0_c02140{color:rgb(0,0,0);}
.fs0_c02140{font-size:59.760000px;}
.fs1_c02140{font-size:66.240000px;}
.y0_c02140{bottom:0.000000px;}
.y4_c02140{bottom:4.680000px;}
.y3_c02140{bottom:41.796000px;}
.y2_c02140{bottom:75.456000px;}
.y37_c02140{bottom:117.936000px;}
.y36_c02140{bottom:137.016000px;}
.y35_c02140{bottom:155.910000px;}
.y34_c02140{bottom:174.810000px;}
.y33_c02140{bottom:193.890000px;}
.y32_c02140{bottom:212.790000px;}
.y31_c02140{bottom:231.870000px;}
.y30_c02140{bottom:250.770000px;}
.y2f_c02140{bottom:269.670000px;}
.y2e_c02140{bottom:288.795000px;}
.y2d_c02140{bottom:307.695000px;}
.y2c_c02140{bottom:326.775000px;}
.y2b_c02140{bottom:345.675000px;}
.y2a_c02140{bottom:364.575000px;}
.y29_c02140{bottom:383.655000px;}
.y28_c02140{bottom:402.555000px;}
.y27_c02140{bottom:421.635000px;}
.y26_c02140{bottom:440.535000px;}
.y25_c02140{bottom:459.615000px;}
.y24_c02140{bottom:478.515000px;}
.y23_c02140{bottom:497.415000px;}
.y22_c02140{bottom:516.495000px;}
.y21_c02140{bottom:535.425000px;}
.y20_c02140{bottom:554.505000px;}
.y1f_c02140{bottom:573.405000px;}
.y1e_c02140{bottom:592.305000px;}
.y1d_c02140{bottom:611.385000px;}
.y1c_c02140{bottom:630.285000px;}
.y1b_c02140{bottom:649.365000px;}
.y1a_c02140{bottom:668.265000px;}
.y19_c02140{bottom:687.165000px;}
.y18_c02140{bottom:706.245000px;}
.y17_c02140{bottom:725.145000px;}
.y16_c02140{bottom:744.225000px;}
.y15_c02140{bottom:763.125000px;}
.y14_c02140{bottom:782.025000px;}
.y13_c02140{bottom:801.150000px;}
.y12_c02140{bottom:820.050000px;}
.y11_c02140{bottom:839.130000px;}
.y10_c02140{bottom:858.030000px;}
.yf_c02140{bottom:877.110000px;}
.ye_c02140{bottom:896.010000px;}
.yd_c02140{bottom:914.910000px;}
.yc_c02140{bottom:933.990000px;}
.yb_c02140{bottom:952.890000px;}
.ya_c02140{bottom:971.970000px;}
.y9_c02140{bottom:990.870000px;}
.y8_c02140{bottom:1009.770000px;}
.y7_c02140{bottom:1028.850000px;}
.y6_c02140{bottom:1047.750000px;}
.y5_c02140{bottom:1066.860000px;}
.y1_c02140{bottom:1121.400000px;}
.h3_c02140{height:22.500000px;}
.h2_c02140{height:48.871406px;}
.h1_c02140{height:58.651172px;}
.h4_c02140{height:65.010937px;}
.h0_c02140{height:1188.000000px;}
.w1_c02140{width:66.636000px;}
.w0_c02140{width:918.000000px;}
.x0_c02140{left:0.000000px;}
.x3_c02140{left:16.560000px;}
.x1_c02140{left:127.656000px;}
.x4_c02140{left:191.550000px;}
.x2_c02140{left:820.950000px;}
@media print{
.v0_c02140{vertical-align:0.000000pt;}
.ls0_c02140{letter-spacing:0.000000pt;}
.ws0_c02140{word-spacing:-14.720000pt;}
.ws1_c02140{word-spacing:0.000000pt;}
._2_c02140{margin-left:-1.177659pt;}
._6_c02140{width:0.941903pt;}
._b_c02140{width:2.002627pt;}
._c_c02140{width:2.933932pt;}
._11_c02140{width:3.983055pt;}
._4_c02140{width:5.119145pt;}
._a_c02140{width:6.598152pt;}
._f_c02140{width:8.066678pt;}
._12_c02140{width:9.243395pt;}
._8_c02140{width:10.539756pt;}
._9_c02140{width:11.578281pt;}
._13_c02140{width:12.482089pt;}
._10_c02140{width:13.778156pt;}
._5_c02140{width:15.897600pt;}
._7_c02140{width:16.840151pt;}
._17_c02140{width:17.841111pt;}
._16_c02140{width:19.018181pt;}
._15_c02140{width:21.196800pt;}
._14_c02140{width:22.197937pt;}
._3_c02140{width:25.672328pt;}
._1_c02140{width:26.672522pt;}
._e_c02140{width:27.909356pt;}
._d_c02140{width:28.851200pt;}
._0_c02140{width:1334.165333pt;}
.fs0_c02140{font-size:53.120000pt;}
.fs1_c02140{font-size:58.880000pt;}
.y0_c02140{bottom:0.000000pt;}
.y4_c02140{bottom:4.160000pt;}
.y3_c02140{bottom:37.152000pt;}
.y2_c02140{bottom:67.072000pt;}
.y37_c02140{bottom:104.832000pt;}
.y36_c02140{bottom:121.792000pt;}
.y35_c02140{bottom:138.586667pt;}
.y34_c02140{bottom:155.386667pt;}
.y33_c02140{bottom:172.346667pt;}
.y32_c02140{bottom:189.146667pt;}
.y31_c02140{bottom:206.106667pt;}
.y30_c02140{bottom:222.906667pt;}
.y2f_c02140{bottom:239.706667pt;}
.y2e_c02140{bottom:256.706667pt;}
.y2d_c02140{bottom:273.506667pt;}
.y2c_c02140{bottom:290.466667pt;}
.y2b_c02140{bottom:307.266667pt;}
.y2a_c02140{bottom:324.066667pt;}
.y29_c02140{bottom:341.026667pt;}
.y28_c02140{bottom:357.826667pt;}
.y27_c02140{bottom:374.786667pt;}
.y26_c02140{bottom:391.586667pt;}
.y25_c02140{bottom:408.546667pt;}
.y24_c02140{bottom:425.346667pt;}
.y23_c02140{bottom:442.146667pt;}
.y22_c02140{bottom:459.106667pt;}
.y21_c02140{bottom:475.933333pt;}
.y20_c02140{bottom:492.893333pt;}
.y1f_c02140{bottom:509.693333pt;}
.y1e_c02140{bottom:526.493333pt;}
.y1d_c02140{bottom:543.453333pt;}
.y1c_c02140{bottom:560.253333pt;}
.y1b_c02140{bottom:577.213333pt;}
.y1a_c02140{bottom:594.013333pt;}
.y19_c02140{bottom:610.813333pt;}
.y18_c02140{bottom:627.773333pt;}
.y17_c02140{bottom:644.573333pt;}
.y16_c02140{bottom:661.533333pt;}
.y15_c02140{bottom:678.333333pt;}
.y14_c02140{bottom:695.133333pt;}
.y13_c02140{bottom:712.133333pt;}
.y12_c02140{bottom:728.933333pt;}
.y11_c02140{bottom:745.893333pt;}
.y10_c02140{bottom:762.693333pt;}
.yf_c02140{bottom:779.653333pt;}
.ye_c02140{bottom:796.453333pt;}
.yd_c02140{bottom:813.253333pt;}
.yc_c02140{bottom:830.213333pt;}
.yb_c02140{bottom:847.013333pt;}
.ya_c02140{bottom:863.973333pt;}
.y9_c02140{bottom:880.773333pt;}
.y8_c02140{bottom:897.573333pt;}
.y7_c02140{bottom:914.533333pt;}
.y6_c02140{bottom:931.333333pt;}
.y5_c02140{bottom:948.320000pt;}
.y1_c02140{bottom:996.800000pt;}
.h3_c02140{height:20.000000pt;}
.h2_c02140{height:43.441250pt;}
.h1_c02140{height:52.134375pt;}
.h4_c02140{height:57.787500pt;}
.h0_c02140{height:1056.000000pt;}
.w1_c02140{width:59.232000pt;}
.w0_c02140{width:816.000000pt;}
.x0_c02140{left:0.000000pt;}
.x3_c02140{left:14.720000pt;}
.x1_c02140{left:113.472000pt;}
.x4_c02140{left:170.266667pt;}
.x2_c02140{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02141 {
    display:none;
  }
  .loading-indicator_c02141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02141 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02141 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02141" -> "#page-container .classname_c02141")
 */
.pf_c02141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02141 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02141 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02141 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02141 {overflow:visible;}
  }
}
.c_c02141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02141 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02141:after { /* webkit #35443 */
  content: '';
}
.t_c02141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02141 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02141 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02141 { /* info for Javascript */
  display:none;
}
.l_c02141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02141:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02141 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02141.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02141;src:url('chunks/assets/font_40f3adae49c9b7f764fddf8c.woff2')format("woff");}.ff1_c02141{font-family:ff1_c02141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02141;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff2_c02141{font-family:ff2_c02141;line-height:0.863770;font-style:normal;font-weight: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_c02141;src:url('chunks/assets/font_26c65cbd3f084ecdf909bcc4.woff2')format("woff");}.ff3_c02141{font-family:ff3_c02141;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02141{vertical-align:0.000000px;}
.ls0_c02141{letter-spacing:0.000000px;}
.ls1_c02141{letter-spacing:0.720000px;}
.sc__c02141{text-shadow:none;}
.sc0_c02141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02141{-webkit-text-stroke:0px transparent;}
.sc0_c02141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02141{word-spacing:-18.000000px;}
.ws1_c02141{word-spacing:0.000000px;}
._1_c02141{margin-left:-1.258825px;}
._8_c02141{width:1.085607px;}
._4_c02141{width:2.093383px;}
._f_c02141{width:3.155740px;}
._10_c02141{width:4.752000px;}
._7_c02141{width:5.762151px;}
._3_c02141{width:7.154649px;}
._2_c02141{width:8.346637px;}
._13_c02141{width:9.536705px;}
._5_c02141{width:12.055812px;}
._6_c02141{width:13.711812px;}
._11_c02141{width:19.296000px;}
._12_c02141{width:20.376000px;}
._b_c02141{width:22.337055px;}
._a_c02141{width:24.177600px;}
._17_c02141{width:25.427193px;}
._c_c02141{width:27.291012px;}
._d_c02141{width:28.350654px;}
._e_c02141{width:29.657039px;}
._14_c02141{width:36.216000px;}
._15_c02141{width:37.474580px;}
._9_c02141{width:38.551812px;}
._16_c02141{width:79.272000px;}
._0_c02141{width:1500.936000px;}
.fc1_c02141{color:rgb(192,80,77);}
.fc0_c02141{color:rgb(0,0,0);}
.fs0_c02141{font-size:59.760000px;}
.fs1_c02141{font-size:66.240000px;}
.fs2_c02141{font-size:72.000000px;}
.y0_c02141{bottom:0.000000px;}
.y4_c02141{bottom:4.680000px;}
.y3_c02141{bottom:41.796000px;}
.y2_c02141{bottom:75.456000px;}
.y2b_c02141{bottom:126.936000px;}
.y2a_c02141{bottom:157.890000px;}
.y29_c02141{bottom:189.030000px;}
.y28_c02141{bottom:219.990000px;}
.y27_c02141{bottom:251.130000px;}
.y26_c02141{bottom:282.135000px;}
.y25_c02141{bottom:313.275000px;}
.y24_c02141{bottom:344.235000px;}
.y23_c02141{bottom:375.375000px;}
.y22_c02141{bottom:406.335000px;}
.y21_c02141{bottom:426.675000px;}
.y20_c02141{bottom:445.755000px;}
.y1f_c02141{bottom:464.655000px;}
.y1e_c02141{bottom:483.735000px;}
.y1d_c02141{bottom:502.635000px;}
.y1c_c02141{bottom:521.715000px;}
.y1b_c02141{bottom:551.265000px;}
.y1a_c02141{bottom:582.225000px;}
.y19_c02141{bottom:613.365000px;}
.y18_c02141{bottom:644.325000px;}
.y17_c02141{bottom:675.465000px;}
.y16_c02141{bottom:706.425000px;}
.y15_c02141{bottom:737.565000px;}
.y14_c02141{bottom:768.525000px;}
.y13_c02141{bottom:799.710000px;}
.y12_c02141{bottom:820.050000px;}
.y11_c02141{bottom:839.130000px;}
.y10_c02141{bottom:858.030000px;}
.yf_c02141{bottom:877.110000px;}
.ye_c02141{bottom:896.010000px;}
.yd_c02141{bottom:914.910000px;}
.yc_c02141{bottom:933.990000px;}
.yb_c02141{bottom:952.890000px;}
.ya_c02141{bottom:971.970000px;}
.y9_c02141{bottom:990.870000px;}
.y8_c02141{bottom:1009.770000px;}
.y7_c02141{bottom:1028.850000px;}
.y6_c02141{bottom:1047.750000px;}
.y5_c02141{bottom:1066.860000px;}
.y1_c02141{bottom:1121.400000px;}
.h3_c02141{height:22.500000px;}
.h2_c02141{height:48.871406px;}
.h1_c02141{height:58.651172px;}
.h4_c02141{height:65.010937px;}
.h5_c02141{height:70.664062px;}
.h0_c02141{height:1188.000000px;}
.w1_c02141{width:66.636000px;}
.w0_c02141{width:918.000000px;}
.x0_c02141{left:0.000000px;}
.x3_c02141{left:16.560000px;}
.x1_c02141{left:127.656000px;}
.x5_c02141{left:180.750000px;}
.x4_c02141{left:191.550000px;}
.x2_c02141{left:820.950000px;}
@media print{
.v0_c02141{vertical-align:0.000000pt;}
.ls0_c02141{letter-spacing:0.000000pt;}
.ls1_c02141{letter-spacing:0.640000pt;}
.ws0_c02141{word-spacing:-16.000000pt;}
.ws1_c02141{word-spacing:0.000000pt;}
._1_c02141{margin-left:-1.118956pt;}
._8_c02141{width:0.964984pt;}
._4_c02141{width:1.860785pt;}
._f_c02141{width:2.805102pt;}
._10_c02141{width:4.224000pt;}
._7_c02141{width:5.121912pt;}
._3_c02141{width:6.359688pt;}
._2_c02141{width:7.419233pt;}
._13_c02141{width:8.477071pt;}
._5_c02141{width:10.716278pt;}
._6_c02141{width:12.188278pt;}
._11_c02141{width:17.152000pt;}
._12_c02141{width:18.112000pt;}
._b_c02141{width:19.855160pt;}
._a_c02141{width:21.491200pt;}
._17_c02141{width:22.601949pt;}
._c_c02141{width:24.258678pt;}
._d_c02141{width:25.200581pt;}
._e_c02141{width:26.361812pt;}
._14_c02141{width:32.192000pt;}
._15_c02141{width:33.310738pt;}
._9_c02141{width:34.268278pt;}
._16_c02141{width:70.464000pt;}
._0_c02141{width:1334.165333pt;}
.fs0_c02141{font-size:53.120000pt;}
.fs1_c02141{font-size:58.880000pt;}
.fs2_c02141{font-size:64.000000pt;}
.y0_c02141{bottom:0.000000pt;}
.y4_c02141{bottom:4.160000pt;}
.y3_c02141{bottom:37.152000pt;}
.y2_c02141{bottom:67.072000pt;}
.y2b_c02141{bottom:112.832000pt;}
.y2a_c02141{bottom:140.346667pt;}
.y29_c02141{bottom:168.026667pt;}
.y28_c02141{bottom:195.546667pt;}
.y27_c02141{bottom:223.226667pt;}
.y26_c02141{bottom:250.786667pt;}
.y25_c02141{bottom:278.466667pt;}
.y24_c02141{bottom:305.986667pt;}
.y23_c02141{bottom:333.666667pt;}
.y22_c02141{bottom:361.186667pt;}
.y21_c02141{bottom:379.266667pt;}
.y20_c02141{bottom:396.226667pt;}
.y1f_c02141{bottom:413.026667pt;}
.y1e_c02141{bottom:429.986667pt;}
.y1d_c02141{bottom:446.786667pt;}
.y1c_c02141{bottom:463.746667pt;}
.y1b_c02141{bottom:490.013333pt;}
.y1a_c02141{bottom:517.533333pt;}
.y19_c02141{bottom:545.213333pt;}
.y18_c02141{bottom:572.733333pt;}
.y17_c02141{bottom:600.413333pt;}
.y16_c02141{bottom:627.933333pt;}
.y15_c02141{bottom:655.613333pt;}
.y14_c02141{bottom:683.133333pt;}
.y13_c02141{bottom:710.853333pt;}
.y12_c02141{bottom:728.933333pt;}
.y11_c02141{bottom:745.893333pt;}
.y10_c02141{bottom:762.693333pt;}
.yf_c02141{bottom:779.653333pt;}
.ye_c02141{bottom:796.453333pt;}
.yd_c02141{bottom:813.253333pt;}
.yc_c02141{bottom:830.213333pt;}
.yb_c02141{bottom:847.013333pt;}
.ya_c02141{bottom:863.973333pt;}
.y9_c02141{bottom:880.773333pt;}
.y8_c02141{bottom:897.573333pt;}
.y7_c02141{bottom:914.533333pt;}
.y6_c02141{bottom:931.333333pt;}
.y5_c02141{bottom:948.320000pt;}
.y1_c02141{bottom:996.800000pt;}
.h3_c02141{height:20.000000pt;}
.h2_c02141{height:43.441250pt;}
.h1_c02141{height:52.134375pt;}
.h4_c02141{height:57.787500pt;}
.h5_c02141{height:62.812500pt;}
.h0_c02141{height:1056.000000pt;}
.w1_c02141{width:59.232000pt;}
.w0_c02141{width:816.000000pt;}
.x0_c02141{left:0.000000pt;}
.x3_c02141{left:14.720000pt;}
.x1_c02141{left:113.472000pt;}
.x5_c02141{left:160.666667pt;}
.x4_c02141{left:170.266667pt;}
.x2_c02141{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02142 {
    display:none;
  }
  .loading-indicator_c02142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02142 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02142 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02142" -> "#page-container .classname_c02142")
 */
.pf_c02142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02142 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02142 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02142 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02142 {overflow:visible;}
  }
}
.c_c02142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02142 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02142:after { /* webkit #35443 */
  content: '';
}
.t_c02142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02142 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02142 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02142 { /* info for Javascript */
  display:none;
}
.l_c02142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02142:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02142 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02142.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02142;src:url('chunks/assets/font_3cb17f7c6227d538af90b5e3.woff2')format("woff");}.ff1_c02142{font-family:ff1_c02142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02142;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff2_c02142{font-family:ff2_c02142;line-height:0.863770;font-style:normal;font-weight: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_c02142;src:url('chunks/assets/font_50e0b8fd604f13ca730963bb.woff2')format("woff");}.ff3_c02142{font-family:ff3_c02142;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02142{vertical-align:-27.360000px;}
.v0_c02142{vertical-align:0.000000px;}
.v1_c02142{vertical-align:33.120000px;}
.ls3_c02142{letter-spacing:-0.206400px;}
.ls2_c02142{letter-spacing:0.000000px;}
.ls1_c02142{letter-spacing:0.150000px;}
.ls0_c02142{letter-spacing:0.360000px;}
.sc__c02142{text-shadow:none;}
.sc0_c02142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02142{-webkit-text-stroke:0px transparent;}
.sc0_c02142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02142{word-spacing:-9.720000px;}
.ws1_c02142{word-spacing:0.000000px;}
._b_c02142{margin-left:-12.817920px;}
._a_c02142{margin-left:-2.160000px;}
._4_c02142{margin-left:-1.152000px;}
._2_c02142{width:1.440000px;}
._8_c02142{width:3.312000px;}
._9_c02142{width:4.392000px;}
._6_c02142{width:5.472000px;}
._5_c02142{width:7.128000px;}
._7_c02142{width:8.640000px;}
._1_c02142{width:27.000000px;}
._3_c02142{width:28.152000px;}
._0_c02142{width:1500.936000px;}
.fc1_c02142{color:rgb(192,80,77);}
.fc0_c02142{color:rgb(0,0,0);}
.fs4_c02142{font-size:38.880000px;}
.fs3_c02142{font-size:48.240000px;}
.fs0_c02142{font-size:59.760000px;}
.fs1_c02142{font-size:66.240000px;}
.fs2_c02142{font-size:72.000000px;}
.y0_c02142{bottom:0.000000px;}
.y4_c02142{bottom:4.680000px;}
.y3_c02142{bottom:41.796000px;}
.y2_c02142{bottom:75.456000px;}
.yd_c02142{bottom:109.836000px;}
.yc_c02142{bottom:133.956000px;}
.yb_c02142{bottom:145.296000px;}
.ya_c02142{bottom:910.050000px;}
.y9_c02142{bottom:941.190000px;}
.y8_c02142{bottom:972.150000px;}
.y7_c02142{bottom:1003.290000px;}
.y6_c02142{bottom:1034.250000px;}
.y5_c02142{bottom:1065.420000px;}
.y1_c02142{bottom:1121.400000px;}
.h3_c02142{height:22.500000px;}
.h6_c02142{height:38.158594px;}
.h2_c02142{height:48.871406px;}
.h1_c02142{height:58.651172px;}
.h4_c02142{height:70.664062px;}
.h5_c02142{height:80.464922px;}
.h0_c02142{height:1188.000000px;}
.w1_c02142{width:66.636000px;}
.w0_c02142{width:918.000000px;}
.x0_c02142{left:0.000000px;}
.x3_c02142{left:16.560000px;}
.x1_c02142{left:127.656000px;}
.x4_c02142{left:180.750000px;}
.x2_c02142{left:820.950000px;}
@media print{
.v2_c02142{vertical-align:-24.320000pt;}
.v0_c02142{vertical-align:0.000000pt;}
.v1_c02142{vertical-align:29.440000pt;}
.ls3_c02142{letter-spacing:-0.183467pt;}
.ls2_c02142{letter-spacing:0.000000pt;}
.ls1_c02142{letter-spacing:0.133333pt;}
.ls0_c02142{letter-spacing:0.320000pt;}
.ws0_c02142{word-spacing:-8.640000pt;}
.ws1_c02142{word-spacing:0.000000pt;}
._b_c02142{margin-left:-11.393707pt;}
._a_c02142{margin-left:-1.920000pt;}
._4_c02142{margin-left:-1.024000pt;}
._2_c02142{width:1.280000pt;}
._8_c02142{width:2.944000pt;}
._9_c02142{width:3.904000pt;}
._6_c02142{width:4.864000pt;}
._5_c02142{width:6.336000pt;}
._7_c02142{width:7.680000pt;}
._1_c02142{width:24.000000pt;}
._3_c02142{width:25.024000pt;}
._0_c02142{width:1334.165333pt;}
.fs4_c02142{font-size:34.560000pt;}
.fs3_c02142{font-size:42.880000pt;}
.fs0_c02142{font-size:53.120000pt;}
.fs1_c02142{font-size:58.880000pt;}
.fs2_c02142{font-size:64.000000pt;}
.y0_c02142{bottom:0.000000pt;}
.y4_c02142{bottom:4.160000pt;}
.y3_c02142{bottom:37.152000pt;}
.y2_c02142{bottom:67.072000pt;}
.yd_c02142{bottom:97.632000pt;}
.yc_c02142{bottom:119.072000pt;}
.yb_c02142{bottom:129.152000pt;}
.ya_c02142{bottom:808.933333pt;}
.y9_c02142{bottom:836.613333pt;}
.y8_c02142{bottom:864.133333pt;}
.y7_c02142{bottom:891.813333pt;}
.y6_c02142{bottom:919.333333pt;}
.y5_c02142{bottom:947.040000pt;}
.y1_c02142{bottom:996.800000pt;}
.h3_c02142{height:20.000000pt;}
.h6_c02142{height:33.918750pt;}
.h2_c02142{height:43.441250pt;}
.h1_c02142{height:52.134375pt;}
.h4_c02142{height:62.812500pt;}
.h5_c02142{height:71.524375pt;}
.h0_c02142{height:1056.000000pt;}
.w1_c02142{width:59.232000pt;}
.w0_c02142{width:816.000000pt;}
.x0_c02142{left:0.000000pt;}
.x3_c02142{left:14.720000pt;}
.x1_c02142{left:113.472000pt;}
.x4_c02142{left:160.666667pt;}
.x2_c02142{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02143 {
    display:none;
  }
  .loading-indicator_c02143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02143 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02143 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02143" -> "#page-container .classname_c02143")
 */
.pf_c02143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02143 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02143 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02143 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02143 {overflow:visible;}
  }
}
.c_c02143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02143 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02143:after { /* webkit #35443 */
  content: '';
}
.t_c02143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02143 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02143 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02143 { /* info for Javascript */
  display:none;
}
.l_c02143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02143:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02143 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02143.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02143;src:url('chunks/assets/font_f7d20525da0505d257ed38f7.woff2')format("woff");}.ff1_c02143{font-family:ff1_c02143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02143;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff2_c02143{font-family:ff2_c02143;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02143{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02143{vertical-align:0.000000px;}
.ls2_c02143{letter-spacing:-0.334200px;}
.ls0_c02143{letter-spacing:0.000000px;}
.ls1_c02143{letter-spacing:0.219000px;}
.sc__c02143{text-shadow:none;}
.sc0_c02143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02143{-webkit-text-stroke:0px transparent;}
.sc0_c02143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02143{word-spacing:-16.059000px;}
.ws0_c02143{word-spacing:-15.840000px;}
.ws2_c02143{word-spacing:0.000000px;}
._2_c02143{margin-left:-2.101893px;}
._1_c02143{margin-left:-1.014013px;}
._3_c02143{width:1.261613px;}
._0_c02143{width:1500.960000px;}
.fc3_c02143{color:rgb(0,0,255);}
.fc1_c02143{color:rgb(192,80,77);}
.fc2_c02143{color:rgb(255,255,255);}
.fc0_c02143{color:rgb(0,0,0);}
.fs0_c02143{font-size:59.760000px;}
.fs3_c02143{font-size:63.360000px;}
.fs1_c02143{font-size:66.240000px;}
.fs2_c02143{font-size:72.000000px;}
.y0_c02143{bottom:0.000000px;}
.yb_c02143{bottom:3.780000px;}
.y9_c02143{bottom:3.960000px;}
.y4_c02143{bottom:4.860000px;}
.y3_c02143{bottom:52.416000px;}
.y2_c02143{bottom:75.456000px;}
.y28_c02143{bottom:143.496000px;}
.y27_c02143{bottom:162.390000px;}
.y26_c02143{bottom:181.290000px;}
.y25_c02143{bottom:200.010000px;}
.y24_c02143{bottom:218.910000px;}
.y23_c02143{bottom:237.855000px;}
.y22_c02143{bottom:256.755000px;}
.y21_c02143{bottom:275.475000px;}
.y20_c02143{bottom:294.375000px;}
.y1f_c02143{bottom:313.275000px;}
.y1e_c02143{bottom:332.175000px;}
.y1d_c02143{bottom:351.075000px;}
.y1c_c02143{bottom:369.795000px;}
.y1b_c02143{bottom:388.695000px;}
.y1a_c02143{bottom:407.595000px;}
.y19_c02143{bottom:426.525000px;}
.y18_c02143{bottom:445.425000px;}
.y17_c02143{bottom:464.145000px;}
.y16_c02143{bottom:483.045000px;}
.y15_c02143{bottom:501.945000px;}
.y14_c02143{bottom:520.845000px;}
.y13_c02143{bottom:539.565000px;}
.y12_c02143{bottom:558.465000px;}
.y11_c02143{bottom:577.365000px;}
.y10_c02143{bottom:596.265000px;}
.yf_c02143{bottom:615.165000px;}
.ye_c02143{bottom:633.930000px;}
.yd_c02143{bottom:652.830000px;}
.yc_c02143{bottom:671.730000px;}
.ya_c02143{bottom:690.630000px;}
.y8_c02143{bottom:709.350000px;}
.y7_c02143{bottom:732.750000px;}
.y6_c02143{bottom:753.450000px;}
.y5_c02143{bottom:774.150000px;}
.y1_c02143{bottom:851.400000px;}
.h7_c02143{height:18.000000px;}
.h8_c02143{height:18.036000px;}
.h5_c02143{height:18.180000px;}
.h9_c02143{height:18.216000px;}
.h3_c02143{height:22.680000px;}
.h2_c02143{height:48.871406px;}
.h1_c02143{height:58.651172px;}
.h6_c02143{height:62.184375px;}
.h4_c02143{height:70.664062px;}
.h0_c02143{height:918.000000px;}
.w1_c02143{width:66.780000px;}
.w2_c02143{width:456.015000px;}
.w3_c02143{width:530.895000px;}
.w0_c02143{width:1188.000000px;}
.x0_c02143{left:0.000000px;}
.x3_c02143{left:16.560000px;}
.x29_c02143{left:44.820000px;}
.x33_c02143{left:59.250000px;}
.x2d_c02143{left:94.890000px;}
.x7_c02143{left:98.640000px;}
.x14_c02143{left:102.630000px;}
.x1_c02143{left:106.200000px;}
.x15_c02143{left:107.490000px;}
.x19_c02143{left:119.910000px;}
.x1f_c02143{left:127.110000px;}
.xb_c02143{left:131.610000px;}
.x18_c02143{left:132.870000px;}
.x13_c02143{left:137.190000px;}
.x2a_c02143{left:138.450000px;}
.x17_c02143{left:141.150000px;}
.x16_c02143{left:143.670000px;}
.x31_c02143{left:146.010000px;}
.x32_c02143{left:147.090000px;}
.x2c_c02143{left:153.210000px;}
.xd_c02143{left:157.530000px;}
.x11_c02143{left:159.510000px;}
.x34_c02143{left:161.670000px;}
.x1a_c02143{left:162.930000px;}
.x28_c02143{left:165.450000px;}
.x25_c02143{left:166.890000px;}
.x2b_c02143{left:169.230000px;}
.x2e_c02143{left:172.290000px;}
.x21_c02143{left:174.450000px;}
.x10_c02143{left:176.430000px;}
.x1d_c02143{left:178.230000px;}
.x1e_c02143{left:179.670000px;}
.x24_c02143{left:181.650000px;}
.x22_c02143{left:182.730000px;}
.x26_c02143{left:184.350000px;}
.x1b_c02143{left:185.970000px;}
.x20_c02143{left:187.950000px;}
.x27_c02143{left:189.570000px;}
.x23_c02143{left:191.190000px;}
.x12_c02143{left:193.350000px;}
.x1c_c02143{left:194.610000px;}
.x30_c02143{left:199.830000px;}
.x8_c02143{left:201.990000px;}
.xe_c02143{left:205.950000px;}
.xc_c02143{left:209.550000px;}
.x2f_c02143{left:212.610000px;}
.xf_c02143{left:214.950000px;}
.xa_c02143{left:235.470000px;}
.x5_c02143{left:464.475000px;}
.x4_c02143{left:550.695000px;}
.x9_c02143{left:555.375000px;}
.x6_c02143{left:593.895000px;}
.x2_c02143{left:1101.570000px;}
@media print{
.v0_c02143{vertical-align:0.000000pt;}
.ls2_c02143{letter-spacing:-0.297067pt;}
.ls0_c02143{letter-spacing:0.000000pt;}
.ls1_c02143{letter-spacing:0.194667pt;}
.ws1_c02143{word-spacing:-14.274667pt;}
.ws0_c02143{word-spacing:-14.080000pt;}
.ws2_c02143{word-spacing:0.000000pt;}
._2_c02143{margin-left:-1.868349pt;}
._1_c02143{margin-left:-0.901345pt;}
._3_c02143{width:1.121434pt;}
._0_c02143{width:1334.186667pt;}
.fs0_c02143{font-size:53.120000pt;}
.fs3_c02143{font-size:56.320000pt;}
.fs1_c02143{font-size:58.880000pt;}
.fs2_c02143{font-size:64.000000pt;}
.y0_c02143{bottom:0.000000pt;}
.yb_c02143{bottom:3.360000pt;}
.y9_c02143{bottom:3.520000pt;}
.y4_c02143{bottom:4.320000pt;}
.y3_c02143{bottom:46.592000pt;}
.y2_c02143{bottom:67.072000pt;}
.y28_c02143{bottom:127.552000pt;}
.y27_c02143{bottom:144.346667pt;}
.y26_c02143{bottom:161.146667pt;}
.y25_c02143{bottom:177.786667pt;}
.y24_c02143{bottom:194.586667pt;}
.y23_c02143{bottom:211.426667pt;}
.y22_c02143{bottom:228.226667pt;}
.y21_c02143{bottom:244.866667pt;}
.y20_c02143{bottom:261.666667pt;}
.y1f_c02143{bottom:278.466667pt;}
.y1e_c02143{bottom:295.266667pt;}
.y1d_c02143{bottom:312.066667pt;}
.y1c_c02143{bottom:328.706667pt;}
.y1b_c02143{bottom:345.506667pt;}
.y1a_c02143{bottom:362.306667pt;}
.y19_c02143{bottom:379.133333pt;}
.y18_c02143{bottom:395.933333pt;}
.y17_c02143{bottom:412.573333pt;}
.y16_c02143{bottom:429.373333pt;}
.y15_c02143{bottom:446.173333pt;}
.y14_c02143{bottom:462.973333pt;}
.y13_c02143{bottom:479.613333pt;}
.y12_c02143{bottom:496.413333pt;}
.y11_c02143{bottom:513.213333pt;}
.y10_c02143{bottom:530.013333pt;}
.yf_c02143{bottom:546.813333pt;}
.ye_c02143{bottom:563.493333pt;}
.yd_c02143{bottom:580.293333pt;}
.yc_c02143{bottom:597.093333pt;}
.ya_c02143{bottom:613.893333pt;}
.y8_c02143{bottom:630.533333pt;}
.y7_c02143{bottom:651.333333pt;}
.y6_c02143{bottom:669.733333pt;}
.y5_c02143{bottom:688.133333pt;}
.y1_c02143{bottom:756.800000pt;}
.h7_c02143{height:16.000000pt;}
.h8_c02143{height:16.032000pt;}
.h5_c02143{height:16.160000pt;}
.h9_c02143{height:16.192000pt;}
.h3_c02143{height:20.160000pt;}
.h2_c02143{height:43.441250pt;}
.h1_c02143{height:52.134375pt;}
.h6_c02143{height:55.275000pt;}
.h4_c02143{height:62.812500pt;}
.h0_c02143{height:816.000000pt;}
.w1_c02143{width:59.360000pt;}
.w2_c02143{width:405.346667pt;}
.w3_c02143{width:471.906667pt;}
.w0_c02143{width:1056.000000pt;}
.x0_c02143{left:0.000000pt;}
.x3_c02143{left:14.720000pt;}
.x29_c02143{left:39.840000pt;}
.x33_c02143{left:52.666667pt;}
.x2d_c02143{left:84.346667pt;}
.x7_c02143{left:87.680000pt;}
.x14_c02143{left:91.226667pt;}
.x1_c02143{left:94.400000pt;}
.x15_c02143{left:95.546667pt;}
.x19_c02143{left:106.586667pt;}
.x1f_c02143{left:112.986667pt;}
.xb_c02143{left:116.986667pt;}
.x18_c02143{left:118.106667pt;}
.x13_c02143{left:121.946667pt;}
.x2a_c02143{left:123.066667pt;}
.x17_c02143{left:125.466667pt;}
.x16_c02143{left:127.706667pt;}
.x31_c02143{left:129.786667pt;}
.x32_c02143{left:130.746667pt;}
.x2c_c02143{left:136.186667pt;}
.xd_c02143{left:140.026667pt;}
.x11_c02143{left:141.786667pt;}
.x34_c02143{left:143.706667pt;}
.x1a_c02143{left:144.826667pt;}
.x28_c02143{left:147.066667pt;}
.x25_c02143{left:148.346667pt;}
.x2b_c02143{left:150.426667pt;}
.x2e_c02143{left:153.146667pt;}
.x21_c02143{left:155.066667pt;}
.x10_c02143{left:156.826667pt;}
.x1d_c02143{left:158.426667pt;}
.x1e_c02143{left:159.706667pt;}
.x24_c02143{left:161.466667pt;}
.x22_c02143{left:162.426667pt;}
.x26_c02143{left:163.866667pt;}
.x1b_c02143{left:165.306667pt;}
.x20_c02143{left:167.066667pt;}
.x27_c02143{left:168.506667pt;}
.x23_c02143{left:169.946667pt;}
.x12_c02143{left:171.866667pt;}
.x1c_c02143{left:172.986667pt;}
.x30_c02143{left:177.626667pt;}
.x8_c02143{left:179.546667pt;}
.xe_c02143{left:183.066667pt;}
.xc_c02143{left:186.266667pt;}
.x2f_c02143{left:188.986667pt;}
.xf_c02143{left:191.066667pt;}
.xa_c02143{left:209.306667pt;}
.x5_c02143{left:412.866667pt;}
.x4_c02143{left:489.506667pt;}
.x9_c02143{left:493.666667pt;}
.x6_c02143{left:527.906667pt;}
.x2_c02143{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02144 {
    display:none;
  }
  .loading-indicator_c02144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02144 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02144 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02144" -> "#page-container .classname_c02144")
 */
.pf_c02144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02144 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02144 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02144 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02144 {overflow:visible;}
  }
}
.c_c02144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02144 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02144:after { /* webkit #35443 */
  content: '';
}
.t_c02144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02144 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02144 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02144 { /* info for Javascript */
  display:none;
}
.l_c02144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02144:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02144 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02144.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02144;src:url('chunks/assets/font_db0fa46a2cc4b116489ac442.woff2')format("woff");}.ff1_c02144{font-family:ff1_c02144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02144;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff2_c02144{font-family:ff2_c02144;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02144{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02144{vertical-align:0.000000px;}
.ls1_c02144{letter-spacing:-0.051600px;}
.ls0_c02144{letter-spacing:0.000000px;}
.sc__c02144{text-shadow:none;}
.sc0_c02144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02144{-webkit-text-stroke:0px transparent;}
.sc0_c02144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02144{word-spacing:-15.840000px;}
.ws1_c02144{word-spacing:-15.788400px;}
.ws2_c02144{word-spacing:0.000000px;}
._1_c02144{margin-left:-1.584000px;}
._2_c02144{width:1.020960px;}
._0_c02144{width:1500.960000px;}
.fc2_c02144{color:rgb(0,0,255);}
.fc1_c02144{color:rgb(192,80,77);}
.fc0_c02144{color:rgb(0,0,0);}
.fs0_c02144{font-size:59.760000px;}
.fs2_c02144{font-size:63.360000px;}
.fs1_c02144{font-size:66.240000px;}
.y0_c02144{bottom:0.000000px;}
.y2b_c02144{bottom:3.774000px;}
.y8_c02144{bottom:3.780000px;}
.y26_c02144{bottom:3.825000px;}
.y6_c02144{bottom:3.960000px;}
.y10_c02144{bottom:4.005000px;}
.y4_c02144{bottom:4.860000px;}
.y3_c02144{bottom:52.416000px;}
.y2_c02144{bottom:75.456000px;}
.y2c_c02144{bottom:130.176000px;}
.y2a_c02144{bottom:149.076000px;}
.y29_c02144{bottom:167.790000px;}
.y28_c02144{bottom:186.690000px;}
.y27_c02144{bottom:205.590000px;}
.y25_c02144{bottom:224.490000px;}
.y24_c02144{bottom:243.435000px;}
.y23_c02144{bottom:262.155000px;}
.y22_c02144{bottom:281.055000px;}
.y21_c02144{bottom:299.955000px;}
.y20_c02144{bottom:318.855000px;}
.y1f_c02144{bottom:337.575000px;}
.y1e_c02144{bottom:356.475000px;}
.y1d_c02144{bottom:375.375000px;}
.y1c_c02144{bottom:394.275000px;}
.y1b_c02144{bottom:413.175000px;}
.y1a_c02144{bottom:431.925000px;}
.y19_c02144{bottom:450.825000px;}
.y18_c02144{bottom:469.725000px;}
.y17_c02144{bottom:488.625000px;}
.y16_c02144{bottom:507.525000px;}
.y15_c02144{bottom:526.245000px;}
.y14_c02144{bottom:545.145000px;}
.y13_c02144{bottom:564.045000px;}
.y12_c02144{bottom:582.945000px;}
.y11_c02144{bottom:601.665000px;}
.yf_c02144{bottom:620.565000px;}
.ye_c02144{bottom:639.510000px;}
.yd_c02144{bottom:658.410000px;}
.yc_c02144{bottom:677.310000px;}
.yb_c02144{bottom:696.030000px;}
.ya_c02144{bottom:714.930000px;}
.y9_c02144{bottom:733.830000px;}
.y7_c02144{bottom:752.730000px;}
.y5_c02144{bottom:771.450000px;}
.y1_c02144{bottom:851.400000px;}
.h6_c02144{height:18.000000px;}
.h8_c02144{height:18.036000px;}
.h4_c02144{height:18.180000px;}
.h7_c02144{height:18.216000px;}
.h3_c02144{height:22.680000px;}
.h2_c02144{height:48.871406px;}
.h1_c02144{height:58.651172px;}
.h5_c02144{height:62.184375px;}
.h0_c02144{height:918.000000px;}
.w1_c02144{width:66.780000px;}
.w2_c02144{width:456.015000px;}
.w3_c02144{width:530.895000px;}
.w0_c02144{width:1188.000000px;}
.x0_c02144{left:0.000000px;}
.x3_c02144{left:16.560000px;}
.x21_c02144{left:86.070000px;}
.x4_c02144{left:98.640000px;}
.x1_c02144{left:106.200000px;}
.x1a_c02144{left:113.070000px;}
.xa_c02144{left:114.330000px;}
.x29_c02144{left:116.130000px;}
.xc_c02144{left:118.830000px;}
.xb_c02144{left:121.710000px;}
.x1f_c02144{left:129.270000px;}
.x8_c02144{left:131.970000px;}
.x7_c02144{left:136.830000px;}
.x5_c02144{left:138.810000px;}
.x17_c02144{left:144.570000px;}
.x2e_c02144{left:146.010000px;}
.x15_c02144{left:153.210000px;}
.x1c_c02144{left:154.650000px;}
.x12_c02144{left:157.710000px;}
.x10_c02144{left:158.790000px;}
.x2d_c02144{left:160.230000px;}
.x19_c02144{left:162.210000px;}
.xf_c02144{left:163.830000px;}
.x14_c02144{left:165.270000px;}
.x24_c02144{left:167.250000px;}
.x11_c02144{left:169.590000px;}
.x9_c02144{left:171.750000px;}
.x1b_c02144{left:173.010000px;}
.x23_c02144{left:174.630000px;}
.xe_c02144{left:176.610000px;}
.x13_c02144{left:182.190000px;}
.x2a_c02144{left:184.350000px;}
.x1d_c02144{left:186.150000px;}
.x2c_c02144{left:187.770000px;}
.x25_c02144{left:189.210000px;}
.x20_c02144{left:191.910000px;}
.x18_c02144{left:193.710000px;}
.xd_c02144{left:195.330000px;}
.x26_c02144{left:198.750000px;}
.x16_c02144{left:200.010000px;}
.x27_c02144{left:203.790000px;}
.x2b_c02144{left:206.850000px;}
.x28_c02144{left:208.470000px;}
.x22_c02144{left:212.610000px;}
.x1e_c02144{left:216.390000px;}
.x6_c02144{left:555.375000px;}
.x2_c02144{left:1101.570000px;}
@media print{
.v0_c02144{vertical-align:0.000000pt;}
.ls1_c02144{letter-spacing:-0.045867pt;}
.ls0_c02144{letter-spacing:0.000000pt;}
.ws0_c02144{word-spacing:-14.080000pt;}
.ws1_c02144{word-spacing:-14.034133pt;}
.ws2_c02144{word-spacing:0.000000pt;}
._1_c02144{margin-left:-1.408000pt;}
._2_c02144{width:0.907520pt;}
._0_c02144{width:1334.186667pt;}
.fs0_c02144{font-size:53.120000pt;}
.fs2_c02144{font-size:56.320000pt;}
.fs1_c02144{font-size:58.880000pt;}
.y0_c02144{bottom:0.000000pt;}
.y2b_c02144{bottom:3.354667pt;}
.y8_c02144{bottom:3.360000pt;}
.y26_c02144{bottom:3.400000pt;}
.y6_c02144{bottom:3.520000pt;}
.y10_c02144{bottom:3.560000pt;}
.y4_c02144{bottom:4.320000pt;}
.y3_c02144{bottom:46.592000pt;}
.y2_c02144{bottom:67.072000pt;}
.y2c_c02144{bottom:115.712000pt;}
.y2a_c02144{bottom:132.512000pt;}
.y29_c02144{bottom:149.146667pt;}
.y28_c02144{bottom:165.946667pt;}
.y27_c02144{bottom:182.746667pt;}
.y25_c02144{bottom:199.546667pt;}
.y24_c02144{bottom:216.386667pt;}
.y23_c02144{bottom:233.026667pt;}
.y22_c02144{bottom:249.826667pt;}
.y21_c02144{bottom:266.626667pt;}
.y20_c02144{bottom:283.426667pt;}
.y1f_c02144{bottom:300.066667pt;}
.y1e_c02144{bottom:316.866667pt;}
.y1d_c02144{bottom:333.666667pt;}
.y1c_c02144{bottom:350.466667pt;}
.y1b_c02144{bottom:367.266667pt;}
.y1a_c02144{bottom:383.933333pt;}
.y19_c02144{bottom:400.733333pt;}
.y18_c02144{bottom:417.533333pt;}
.y17_c02144{bottom:434.333333pt;}
.y16_c02144{bottom:451.133333pt;}
.y15_c02144{bottom:467.773333pt;}
.y14_c02144{bottom:484.573333pt;}
.y13_c02144{bottom:501.373333pt;}
.y12_c02144{bottom:518.173333pt;}
.y11_c02144{bottom:534.813333pt;}
.yf_c02144{bottom:551.613333pt;}
.ye_c02144{bottom:568.453333pt;}
.yd_c02144{bottom:585.253333pt;}
.yc_c02144{bottom:602.053333pt;}
.yb_c02144{bottom:618.693333pt;}
.ya_c02144{bottom:635.493333pt;}
.y9_c02144{bottom:652.293333pt;}
.y7_c02144{bottom:669.093333pt;}
.y5_c02144{bottom:685.733333pt;}
.y1_c02144{bottom:756.800000pt;}
.h6_c02144{height:16.000000pt;}
.h8_c02144{height:16.032000pt;}
.h4_c02144{height:16.160000pt;}
.h7_c02144{height:16.192000pt;}
.h3_c02144{height:20.160000pt;}
.h2_c02144{height:43.441250pt;}
.h1_c02144{height:52.134375pt;}
.h5_c02144{height:55.275000pt;}
.h0_c02144{height:816.000000pt;}
.w1_c02144{width:59.360000pt;}
.w2_c02144{width:405.346667pt;}
.w3_c02144{width:471.906667pt;}
.w0_c02144{width:1056.000000pt;}
.x0_c02144{left:0.000000pt;}
.x3_c02144{left:14.720000pt;}
.x21_c02144{left:76.506667pt;}
.x4_c02144{left:87.680000pt;}
.x1_c02144{left:94.400000pt;}
.x1a_c02144{left:100.506667pt;}
.xa_c02144{left:101.626667pt;}
.x29_c02144{left:103.226667pt;}
.xc_c02144{left:105.626667pt;}
.xb_c02144{left:108.186667pt;}
.x1f_c02144{left:114.906667pt;}
.x8_c02144{left:117.306667pt;}
.x7_c02144{left:121.626667pt;}
.x5_c02144{left:123.386667pt;}
.x17_c02144{left:128.506667pt;}
.x2e_c02144{left:129.786667pt;}
.x15_c02144{left:136.186667pt;}
.x1c_c02144{left:137.466667pt;}
.x12_c02144{left:140.186667pt;}
.x10_c02144{left:141.146667pt;}
.x2d_c02144{left:142.426667pt;}
.x19_c02144{left:144.186667pt;}
.xf_c02144{left:145.626667pt;}
.x14_c02144{left:146.906667pt;}
.x24_c02144{left:148.666667pt;}
.x11_c02144{left:150.746667pt;}
.x9_c02144{left:152.666667pt;}
.x1b_c02144{left:153.786667pt;}
.x23_c02144{left:155.226667pt;}
.xe_c02144{left:156.986667pt;}
.x13_c02144{left:161.946667pt;}
.x2a_c02144{left:163.866667pt;}
.x1d_c02144{left:165.466667pt;}
.x2c_c02144{left:166.906667pt;}
.x25_c02144{left:168.186667pt;}
.x20_c02144{left:170.586667pt;}
.x18_c02144{left:172.186667pt;}
.xd_c02144{left:173.626667pt;}
.x26_c02144{left:176.666667pt;}
.x16_c02144{left:177.786667pt;}
.x27_c02144{left:181.146667pt;}
.x2b_c02144{left:183.866667pt;}
.x28_c02144{left:185.306667pt;}
.x22_c02144{left:188.986667pt;}
.x1e_c02144{left:192.346667pt;}
.x6_c02144{left:493.666667pt;}
.x2_c02144{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02145 {
    display:none;
  }
  .loading-indicator_c02145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02145 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02145 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02145" -> "#page-container .classname_c02145")
 */
.pf_c02145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02145 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02145 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02145 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02145 {overflow:visible;}
  }
}
.c_c02145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02145 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02145:after { /* webkit #35443 */
  content: '';
}
.t_c02145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02145 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02145 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02145 { /* info for Javascript */
  display:none;
}
.l_c02145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02145:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02145 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02145.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02145;src:url('chunks/assets/font_31c5b6dab416b448a9e7b19a.woff2')format("woff");}.ff1_c02145{font-family:ff1_c02145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02145;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff2_c02145{font-family:ff2_c02145;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02145{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02145{vertical-align:0.000000px;}
.ls0_c02145{letter-spacing:0.000000px;}
.sc__c02145{text-shadow:none;}
.sc0_c02145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02145{-webkit-text-stroke:0px transparent;}
.sc0_c02145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02145{word-spacing:-15.840000px;}
.ws1_c02145{word-spacing:0.000000px;}
._1_c02145{margin-left:-1.140607px;}
._2_c02145{width:1.116631px;}
._0_c02145{width:1500.960000px;}
.fc2_c02145{color:rgb(0,0,255);}
.fc1_c02145{color:rgb(192,80,77);}
.fc0_c02145{color:rgb(0,0,0);}
.fs0_c02145{font-size:59.760000px;}
.fs2_c02145{font-size:63.360000px;}
.fs1_c02145{font-size:66.240000px;}
.fs3_c02145{font-size:72.000000px;}
.y0_c02145{bottom:0.000000px;}
.y8_c02145{bottom:3.780000px;}
.y6_c02145{bottom:3.960000px;}
.y4_c02145{bottom:4.860000px;}
.y3_c02145{bottom:52.416000px;}
.y2_c02145{bottom:75.456000px;}
.yc_c02145{bottom:677.130000px;}
.yb_c02145{bottom:698.010000px;}
.ya_c02145{bottom:714.930000px;}
.y9_c02145{bottom:733.830000px;}
.y7_c02145{bottom:752.730000px;}
.y5_c02145{bottom:771.450000px;}
.y1_c02145{bottom:851.400000px;}
.h6_c02145{height:18.000000px;}
.h4_c02145{height:18.180000px;}
.h3_c02145{height:22.680000px;}
.h2_c02145{height:48.871406px;}
.h1_c02145{height:58.651172px;}
.h5_c02145{height:62.184375px;}
.h7_c02145{height:70.664062px;}
.h0_c02145{height:918.000000px;}
.w1_c02145{width:66.780000px;}
.w2_c02145{width:456.015000px;}
.w3_c02145{width:530.895000px;}
.w0_c02145{width:1188.000000px;}
.x0_c02145{left:0.000000px;}
.x3_c02145{left:16.560000px;}
.x4_c02145{left:98.640000px;}
.x1_c02145{left:106.200000px;}
.x8_c02145{left:127.830000px;}
.x9_c02145{left:156.810000px;}
.x7_c02145{left:158.790000px;}
.x5_c02145{left:163.830000px;}
.xb_c02145{left:176.070000px;}
.xc_c02145{left:177.870000px;}
.xa_c02145{left:179.490000px;}
.x6_c02145{left:555.375000px;}
.x2_c02145{left:1101.570000px;}
@media print{
.v0_c02145{vertical-align:0.000000pt;}
.ls0_c02145{letter-spacing:0.000000pt;}
.ws0_c02145{word-spacing:-14.080000pt;}
.ws1_c02145{word-spacing:0.000000pt;}
._1_c02145{margin-left:-1.013873pt;}
._2_c02145{width:0.992561pt;}
._0_c02145{width:1334.186667pt;}
.fs0_c02145{font-size:53.120000pt;}
.fs2_c02145{font-size:56.320000pt;}
.fs1_c02145{font-size:58.880000pt;}
.fs3_c02145{font-size:64.000000pt;}
.y0_c02145{bottom:0.000000pt;}
.y8_c02145{bottom:3.360000pt;}
.y6_c02145{bottom:3.520000pt;}
.y4_c02145{bottom:4.320000pt;}
.y3_c02145{bottom:46.592000pt;}
.y2_c02145{bottom:67.072000pt;}
.yc_c02145{bottom:601.893333pt;}
.yb_c02145{bottom:620.453333pt;}
.ya_c02145{bottom:635.493333pt;}
.y9_c02145{bottom:652.293333pt;}
.y7_c02145{bottom:669.093333pt;}
.y5_c02145{bottom:685.733333pt;}
.y1_c02145{bottom:756.800000pt;}
.h6_c02145{height:16.000000pt;}
.h4_c02145{height:16.160000pt;}
.h3_c02145{height:20.160000pt;}
.h2_c02145{height:43.441250pt;}
.h1_c02145{height:52.134375pt;}
.h5_c02145{height:55.275000pt;}
.h7_c02145{height:62.812500pt;}
.h0_c02145{height:816.000000pt;}
.w1_c02145{width:59.360000pt;}
.w2_c02145{width:405.346667pt;}
.w3_c02145{width:471.906667pt;}
.w0_c02145{width:1056.000000pt;}
.x0_c02145{left:0.000000pt;}
.x3_c02145{left:14.720000pt;}
.x4_c02145{left:87.680000pt;}
.x1_c02145{left:94.400000pt;}
.x8_c02145{left:113.626667pt;}
.x9_c02145{left:139.386667pt;}
.x7_c02145{left:141.146667pt;}
.x5_c02145{left:145.626667pt;}
.xb_c02145{left:156.506667pt;}
.xc_c02145{left:158.106667pt;}
.xa_c02145{left:159.546667pt;}
.x6_c02145{left:493.666667pt;}
.x2_c02145{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02146 {
    display:none;
  }
  .loading-indicator_c02146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02146 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02146 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02146" -> "#page-container .classname_c02146")
 */
.pf_c02146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02146 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02146 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02146 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02146 {overflow:visible;}
  }
}
.c_c02146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02146 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02146:after { /* webkit #35443 */
  content: '';
}
.t_c02146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02146 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02146 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02146 { /* info for Javascript */
  display:none;
}
.l_c02146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02146:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02146 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02146.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02146;src:url('chunks/assets/font_486cbba72124956591fa54f5.woff2')format("woff");}.ff1_c02146{font-family:ff1_c02146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02146;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff2_c02146{font-family:ff2_c02146;line-height:0.863770;font-style:normal;font-weight: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_c02146;src:url('chunks/assets/font_2a3cc747f70d9112250c15fc.woff2')format("woff");}.ff3_c02146{font-family:ff3_c02146;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02146{vertical-align:0.000000px;}
.ls1_c02146{letter-spacing:-1.440000px;}
.ls0_c02146{letter-spacing:0.000000px;}
.sc__c02146{text-shadow:none;}
.sc0_c02146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02146{-webkit-text-stroke:0px transparent;}
.sc0_c02146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02146{word-spacing:0.000000px;}
._13_c02146{margin-left:-2.052072px;}
._6_c02146{margin-left:-1.008000px;}
._2_c02146{width:1.008000px;}
._1_c02146{width:2.016000px;}
._c_c02146{width:3.456000px;}
._b_c02146{width:4.464000px;}
._e_c02146{width:6.348024px;}
._9_c02146{width:7.704000px;}
._a_c02146{width:8.796000px;}
._d_c02146{width:11.375976px;}
._12_c02146{width:12.744000px;}
._5_c02146{width:16.416000px;}
._7_c02146{width:19.224000px;}
._8_c02146{width:20.244000px;}
._f_c02146{width:21.300000px;}
._3_c02146{width:22.752000px;}
._4_c02146{width:24.852024px;}
._10_c02146{width:26.411976px;}
._11_c02146{width:28.584000px;}
._16_c02146{width:30.000072px;}
._15_c02146{width:31.536000px;}
._14_c02146{width:32.652072px;}
._0_c02146{width:1500.936000px;}
.fc1_c02146{color:rgb(192,80,77);}
.fc0_c02146{color:rgb(0,0,0);}
.fs0_c02146{font-size:59.760000px;}
.fs1_c02146{font-size:66.240000px;}
.fs2_c02146{font-size:72.000000px;}
.y0_c02146{bottom:0.000000px;}
.y4_c02146{bottom:4.680000px;}
.y3_c02146{bottom:41.796000px;}
.y2_c02146{bottom:75.456000px;}
.y22_c02146{bottom:164.910000px;}
.y21_c02146{bottom:195.870000px;}
.y20_c02146{bottom:226.830000px;}
.y1f_c02146{bottom:257.970000px;}
.y1e_c02146{bottom:288.975000px;}
.y1d_c02146{bottom:320.115000px;}
.y1c_c02146{bottom:351.075000px;}
.y1b_c02146{bottom:382.215000px;}
.y1a_c02146{bottom:413.175000px;}
.y19_c02146{bottom:444.315000px;}
.y18_c02146{bottom:475.275000px;}
.y17_c02146{bottom:506.415000px;}
.y16_c02146{bottom:537.405000px;}
.y15_c02146{bottom:568.545000px;}
.y14_c02146{bottom:599.505000px;}
.y13_c02146{bottom:630.645000px;}
.y12_c02146{bottom:661.605000px;}
.y11_c02146{bottom:692.745000px;}
.y10_c02146{bottom:723.705000px;}
.yf_c02146{bottom:754.845000px;}
.ye_c02146{bottom:785.805000px;}
.yd_c02146{bottom:816.990000px;}
.yc_c02146{bottom:847.950000px;}
.yb_c02146{bottom:879.090000px;}
.ya_c02146{bottom:910.050000px;}
.y9_c02146{bottom:941.190000px;}
.y8_c02146{bottom:972.150000px;}
.y7_c02146{bottom:1003.290000px;}
.y6_c02146{bottom:1034.250000px;}
.y5_c02146{bottom:1065.420000px;}
.y1_c02146{bottom:1121.400000px;}
.h3_c02146{height:22.500000px;}
.h2_c02146{height:48.871406px;}
.h1_c02146{height:58.651172px;}
.h5_c02146{height:64.546875px;}
.h4_c02146{height:70.664062px;}
.h0_c02146{height:1188.000000px;}
.w1_c02146{width:66.636000px;}
.w0_c02146{width:918.000000px;}
.x0_c02146{left:0.000000px;}
.x3_c02146{left:16.560000px;}
.x1_c02146{left:127.656000px;}
.x4_c02146{left:180.750000px;}
.x2_c02146{left:820.950000px;}
@media print{
.v0_c02146{vertical-align:0.000000pt;}
.ls1_c02146{letter-spacing:-1.280000pt;}
.ls0_c02146{letter-spacing:0.000000pt;}
.ws0_c02146{word-spacing:0.000000pt;}
._13_c02146{margin-left:-1.824064pt;}
._6_c02146{margin-left:-0.896000pt;}
._2_c02146{width:0.896000pt;}
._1_c02146{width:1.792000pt;}
._c_c02146{width:3.072000pt;}
._b_c02146{width:3.968000pt;}
._e_c02146{width:5.642688pt;}
._9_c02146{width:6.848000pt;}
._a_c02146{width:7.818667pt;}
._d_c02146{width:10.111979pt;}
._12_c02146{width:11.328000pt;}
._5_c02146{width:14.592000pt;}
._7_c02146{width:17.088000pt;}
._8_c02146{width:17.994667pt;}
._f_c02146{width:18.933333pt;}
._3_c02146{width:20.224000pt;}
._4_c02146{width:22.090688pt;}
._10_c02146{width:23.477312pt;}
._11_c02146{width:25.408000pt;}
._16_c02146{width:26.666731pt;}
._15_c02146{width:28.032000pt;}
._14_c02146{width:29.024064pt;}
._0_c02146{width:1334.165333pt;}
.fs0_c02146{font-size:53.120000pt;}
.fs1_c02146{font-size:58.880000pt;}
.fs2_c02146{font-size:64.000000pt;}
.y0_c02146{bottom:0.000000pt;}
.y4_c02146{bottom:4.160000pt;}
.y3_c02146{bottom:37.152000pt;}
.y2_c02146{bottom:67.072000pt;}
.y22_c02146{bottom:146.586667pt;}
.y21_c02146{bottom:174.106667pt;}
.y20_c02146{bottom:201.626667pt;}
.y1f_c02146{bottom:229.306667pt;}
.y1e_c02146{bottom:256.866667pt;}
.y1d_c02146{bottom:284.546667pt;}
.y1c_c02146{bottom:312.066667pt;}
.y1b_c02146{bottom:339.746667pt;}
.y1a_c02146{bottom:367.266667pt;}
.y19_c02146{bottom:394.946667pt;}
.y18_c02146{bottom:422.466667pt;}
.y17_c02146{bottom:450.146667pt;}
.y16_c02146{bottom:477.693333pt;}
.y15_c02146{bottom:505.373333pt;}
.y14_c02146{bottom:532.893333pt;}
.y13_c02146{bottom:560.573333pt;}
.y12_c02146{bottom:588.093333pt;}
.y11_c02146{bottom:615.773333pt;}
.y10_c02146{bottom:643.293333pt;}
.yf_c02146{bottom:670.973333pt;}
.ye_c02146{bottom:698.493333pt;}
.yd_c02146{bottom:726.213333pt;}
.yc_c02146{bottom:753.733333pt;}
.yb_c02146{bottom:781.413333pt;}
.ya_c02146{bottom:808.933333pt;}
.y9_c02146{bottom:836.613333pt;}
.y8_c02146{bottom:864.133333pt;}
.y7_c02146{bottom:891.813333pt;}
.y6_c02146{bottom:919.333333pt;}
.y5_c02146{bottom:947.040000pt;}
.y1_c02146{bottom:996.800000pt;}
.h3_c02146{height:20.000000pt;}
.h2_c02146{height:43.441250pt;}
.h1_c02146{height:52.134375pt;}
.h5_c02146{height:57.375000pt;}
.h4_c02146{height:62.812500pt;}
.h0_c02146{height:1056.000000pt;}
.w1_c02146{width:59.232000pt;}
.w0_c02146{width:816.000000pt;}
.x0_c02146{left:0.000000pt;}
.x3_c02146{left:14.720000pt;}
.x1_c02146{left:113.472000pt;}
.x4_c02146{left:160.666667pt;}
.x2_c02146{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02147 {
    display:none;
  }
  .loading-indicator_c02147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02147 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02147 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02147" -> "#page-container .classname_c02147")
 */
.pf_c02147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02147 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02147 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02147 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02147 {overflow:visible;}
  }
}
.c_c02147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02147 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02147:after { /* webkit #35443 */
  content: '';
}
.t_c02147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02147 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02147 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02147 { /* info for Javascript */
  display:none;
}
.l_c02147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02147:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02147 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02147.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02147;src:url('chunks/assets/font_1f1e55c43b56f973d600f933.woff2')format("woff");}.ff1_c02147{font-family:ff1_c02147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02147;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff2_c02147{font-family:ff2_c02147;line-height:0.863770;font-style:normal;font-weight: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_c02147;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff3_c02147{font-family:ff3_c02147;line-height:1.284180;font-style:normal;font-weight: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_c02147;src:url('chunks/assets/font_81965dc4a9b20822e6cc526f.woff2')format("woff");}.ff4_c02147{font-family:ff4_c02147;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c02147{vertical-align:-27.336000px;}
.v0_c02147{vertical-align:0.000000px;}
.v1_c02147{vertical-align:33.120000px;}
.ls4_c02147{letter-spacing:-0.144000px;}
.ls3_c02147{letter-spacing:0.000000px;}
.ls5_c02147{letter-spacing:0.144000px;}
.ls2_c02147{letter-spacing:0.150000px;}
.ls1_c02147{letter-spacing:0.360000px;}
.ls0_c02147{letter-spacing:12.240000px;}
.sc__c02147{text-shadow:none;}
.sc0_c02147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02147{-webkit-text-stroke:0px transparent;}
.sc0_c02147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02147{word-spacing:-17.856000px;}
.ws1_c02147{word-spacing:-9.720000px;}
.ws2_c02147{word-spacing:0.000000px;}
._12_c02147{margin-left:-12.817920px;}
._3_c02147{margin-left:-1.080000px;}
._7_c02147{width:1.319904px;}
._e_c02147{width:2.856096px;}
._2_c02147{width:4.824000px;}
._1_c02147{width:6.048000px;}
._d_c02147{width:7.560000px;}
._c_c02147{width:9.144000px;}
._f_c02147{width:10.944000px;}
._5_c02147{width:11.952000px;}
._b_c02147{width:13.392000px;}
._a_c02147{width:14.688000px;}
._9_c02147{width:15.696000px;}
._4_c02147{width:20.016000px;}
._6_c02147{width:21.360024px;}
._8_c02147{width:22.415904px;}
._10_c02147{width:30.528000px;}
._11_c02147{width:31.608000px;}
._0_c02147{width:1500.936000px;}
.fc1_c02147{color:rgb(192,80,77);}
.fc0_c02147{color:rgb(0,0,0);}
.fs4_c02147{font-size:38.880000px;}
.fs3_c02147{font-size:48.240000px;}
.fs0_c02147{font-size:59.760000px;}
.fs1_c02147{font-size:66.240000px;}
.fs2_c02147{font-size:72.000000px;}
.y0_c02147{bottom:0.000000px;}
.y4_c02147{bottom:4.680000px;}
.y3_c02147{bottom:41.796000px;}
.y2_c02147{bottom:75.456000px;}
.y25_c02147{bottom:109.836000px;}
.y24_c02147{bottom:127.116000px;}
.y23_c02147{bottom:151.230000px;}
.y22_c02147{bottom:162.570000px;}
.y21_c02147{bottom:195.870000px;}
.y20_c02147{bottom:226.830000px;}
.y1f_c02147{bottom:257.970000px;}
.y1e_c02147{bottom:288.975000px;}
.y1d_c02147{bottom:320.115000px;}
.y1c_c02147{bottom:351.075000px;}
.y1b_c02147{bottom:382.215000px;}
.y1a_c02147{bottom:413.175000px;}
.y19_c02147{bottom:444.315000px;}
.y18_c02147{bottom:475.275000px;}
.y17_c02147{bottom:506.415000px;}
.y16_c02147{bottom:537.405000px;}
.y15_c02147{bottom:568.545000px;}
.y14_c02147{bottom:599.505000px;}
.y13_c02147{bottom:630.645000px;}
.y12_c02147{bottom:661.605000px;}
.y11_c02147{bottom:692.745000px;}
.y10_c02147{bottom:723.705000px;}
.yf_c02147{bottom:754.845000px;}
.ye_c02147{bottom:785.805000px;}
.yd_c02147{bottom:816.990000px;}
.yc_c02147{bottom:847.950000px;}
.yb_c02147{bottom:879.090000px;}
.ya_c02147{bottom:910.050000px;}
.y9_c02147{bottom:941.190000px;}
.y8_c02147{bottom:972.150000px;}
.y7_c02147{bottom:1003.290000px;}
.y6_c02147{bottom:1034.250000px;}
.y5_c02147{bottom:1065.420000px;}
.y1_c02147{bottom:1121.400000px;}
.h3_c02147{height:22.500000px;}
.h7_c02147{height:38.158594px;}
.h2_c02147{height:48.871406px;}
.h1_c02147{height:58.651172px;}
.h5_c02147{height:64.546875px;}
.h4_c02147{height:70.664062px;}
.h6_c02147{height:80.464922px;}
.h0_c02147{height:1188.000000px;}
.w1_c02147{width:66.636000px;}
.w0_c02147{width:918.000000px;}
.x0_c02147{left:0.000000px;}
.x3_c02147{left:16.560000px;}
.x1_c02147{left:127.656000px;}
.x4_c02147{left:180.750000px;}
.x2_c02147{left:820.950000px;}
@media print{
.v2_c02147{vertical-align:-24.298667pt;}
.v0_c02147{vertical-align:0.000000pt;}
.v1_c02147{vertical-align:29.440000pt;}
.ls4_c02147{letter-spacing:-0.128000pt;}
.ls3_c02147{letter-spacing:0.000000pt;}
.ls5_c02147{letter-spacing:0.128000pt;}
.ls2_c02147{letter-spacing:0.133333pt;}
.ls1_c02147{letter-spacing:0.320000pt;}
.ls0_c02147{letter-spacing:10.880000pt;}
.ws0_c02147{word-spacing:-15.872000pt;}
.ws1_c02147{word-spacing:-8.640000pt;}
.ws2_c02147{word-spacing:0.000000pt;}
._12_c02147{margin-left:-11.393707pt;}
._3_c02147{margin-left:-0.960000pt;}
._7_c02147{width:1.173248pt;}
._e_c02147{width:2.538752pt;}
._2_c02147{width:4.288000pt;}
._1_c02147{width:5.376000pt;}
._d_c02147{width:6.720000pt;}
._c_c02147{width:8.128000pt;}
._f_c02147{width:9.728000pt;}
._5_c02147{width:10.624000pt;}
._b_c02147{width:11.904000pt;}
._a_c02147{width:13.056000pt;}
._9_c02147{width:13.952000pt;}
._4_c02147{width:17.792000pt;}
._6_c02147{width:18.986688pt;}
._8_c02147{width:19.925248pt;}
._10_c02147{width:27.136000pt;}
._11_c02147{width:28.096000pt;}
._0_c02147{width:1334.165333pt;}
.fs4_c02147{font-size:34.560000pt;}
.fs3_c02147{font-size:42.880000pt;}
.fs0_c02147{font-size:53.120000pt;}
.fs1_c02147{font-size:58.880000pt;}
.fs2_c02147{font-size:64.000000pt;}
.y0_c02147{bottom:0.000000pt;}
.y4_c02147{bottom:4.160000pt;}
.y3_c02147{bottom:37.152000pt;}
.y2_c02147{bottom:67.072000pt;}
.y25_c02147{bottom:97.632000pt;}
.y24_c02147{bottom:112.992000pt;}
.y23_c02147{bottom:134.426667pt;}
.y22_c02147{bottom:144.506667pt;}
.y21_c02147{bottom:174.106667pt;}
.y20_c02147{bottom:201.626667pt;}
.y1f_c02147{bottom:229.306667pt;}
.y1e_c02147{bottom:256.866667pt;}
.y1d_c02147{bottom:284.546667pt;}
.y1c_c02147{bottom:312.066667pt;}
.y1b_c02147{bottom:339.746667pt;}
.y1a_c02147{bottom:367.266667pt;}
.y19_c02147{bottom:394.946667pt;}
.y18_c02147{bottom:422.466667pt;}
.y17_c02147{bottom:450.146667pt;}
.y16_c02147{bottom:477.693333pt;}
.y15_c02147{bottom:505.373333pt;}
.y14_c02147{bottom:532.893333pt;}
.y13_c02147{bottom:560.573333pt;}
.y12_c02147{bottom:588.093333pt;}
.y11_c02147{bottom:615.773333pt;}
.y10_c02147{bottom:643.293333pt;}
.yf_c02147{bottom:670.973333pt;}
.ye_c02147{bottom:698.493333pt;}
.yd_c02147{bottom:726.213333pt;}
.yc_c02147{bottom:753.733333pt;}
.yb_c02147{bottom:781.413333pt;}
.ya_c02147{bottom:808.933333pt;}
.y9_c02147{bottom:836.613333pt;}
.y8_c02147{bottom:864.133333pt;}
.y7_c02147{bottom:891.813333pt;}
.y6_c02147{bottom:919.333333pt;}
.y5_c02147{bottom:947.040000pt;}
.y1_c02147{bottom:996.800000pt;}
.h3_c02147{height:20.000000pt;}
.h7_c02147{height:33.918750pt;}
.h2_c02147{height:43.441250pt;}
.h1_c02147{height:52.134375pt;}
.h5_c02147{height:57.375000pt;}
.h4_c02147{height:62.812500pt;}
.h6_c02147{height:71.524375pt;}
.h0_c02147{height:1056.000000pt;}
.w1_c02147{width:59.232000pt;}
.w0_c02147{width:816.000000pt;}
.x0_c02147{left:0.000000pt;}
.x3_c02147{left:14.720000pt;}
.x1_c02147{left:113.472000pt;}
.x4_c02147{left:160.666667pt;}
.x2_c02147{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02148 {
    display:none;
  }
  .loading-indicator_c02148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02148 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02148 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02148" -> "#page-container .classname_c02148")
 */
.pf_c02148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02148 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02148 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02148 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02148 {overflow:visible;}
  }
}
.c_c02148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02148 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02148:after { /* webkit #35443 */
  content: '';
}
.t_c02148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02148 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02148 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02148 { /* info for Javascript */
  display:none;
}
.l_c02148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02148:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02148 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02148.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02148;src:url('chunks/assets/font_c25a9138056caa4c3c896dd0.woff2')format("woff");}.ff1_c02148{font-family:ff1_c02148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02148;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff2_c02148{font-family:ff2_c02148;line-height:0.863770;font-style:normal;font-weight: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_c02148;src:url('chunks/assets/font_c8bd2c0030857aed461d5b13.woff2')format("woff");}.ff3_c02148{font-family:ff3_c02148;line-height:1.112305;font-style:normal;font-weight: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_c02148;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02148{font-family:ff4_c02148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02148{vertical-align:0.000000px;}
.ls2_c02148{letter-spacing:0.000000px;}
.ls1_c02148{letter-spacing:0.106560px;}
.ls0_c02148{letter-spacing:0.150000px;}
.ls3_c02148{letter-spacing:0.900000px;}
.sc__c02148{text-shadow:none;}
.sc0_c02148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02148{-webkit-text-stroke:0px transparent;}
.sc0_c02148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02148{word-spacing:-18.000000px;}
.ws1_c02148{word-spacing:-14.940000px;}
.ws2_c02148{word-spacing:0.000000px;}
._14_c02148{margin-left:-8.946240px;}
._2_c02148{margin-left:-1.368000px;}
._3_c02148{width:1.296000px;}
._10_c02148{width:2.880000px;}
._6_c02148{width:4.104000px;}
._c_c02148{width:5.688000px;}
._e_c02148{width:6.984000px;}
._d_c02148{width:8.136000px;}
._11_c02148{width:9.432000px;}
._b_c02148{width:10.584000px;}
._a_c02148{width:11.808000px;}
._9_c02148{width:13.032000px;}
._7_c02148{width:14.040000px;}
._8_c02148{width:15.408000px;}
._4_c02148{width:16.848000px;}
._5_c02148{width:19.224000px;}
._1_c02148{width:30.384000px;}
._f_c02148{width:32.328000px;}
._12_c02148{width:48.240000px;}
._13_c02148{width:49.248000px;}
._0_c02148{width:1500.936000px;}
.fc1_c02148{color:rgb(192,80,77);}
.fc0_c02148{color:rgb(0,0,0);}
.fs0_c02148{font-size:59.760000px;}
.fs1_c02148{font-size:66.240000px;}
.fs2_c02148{font-size:72.000000px;}
.y0_c02148{bottom:0.000000px;}
.y4_c02148{bottom:4.680000px;}
.y3_c02148{bottom:41.796000px;}
.y2_c02148{bottom:75.456000px;}
.y27_c02148{bottom:109.836000px;}
.y26_c02148{bottom:127.116000px;}
.y25_c02148{bottom:144.396000px;}
.y24_c02148{bottom:161.670000px;}
.y23_c02148{bottom:178.950000px;}
.y22_c02148{bottom:196.050000px;}
.y21_c02148{bottom:213.330000px;}
.y20_c02148{bottom:231.510000px;}
.y1f_c02148{bottom:257.970000px;}
.y1e_c02148{bottom:288.975000px;}
.y1d_c02148{bottom:320.115000px;}
.y1c_c02148{bottom:351.075000px;}
.y1b_c02148{bottom:382.215000px;}
.y1a_c02148{bottom:413.175000px;}
.y19_c02148{bottom:444.315000px;}
.y18_c02148{bottom:475.275000px;}
.y17_c02148{bottom:506.415000px;}
.y16_c02148{bottom:537.405000px;}
.y15_c02148{bottom:568.545000px;}
.y14_c02148{bottom:599.505000px;}
.y13_c02148{bottom:630.645000px;}
.y12_c02148{bottom:661.605000px;}
.y11_c02148{bottom:692.745000px;}
.y10_c02148{bottom:723.705000px;}
.yf_c02148{bottom:754.845000px;}
.ye_c02148{bottom:785.805000px;}
.yd_c02148{bottom:816.990000px;}
.yc_c02148{bottom:847.950000px;}
.yb_c02148{bottom:879.090000px;}
.ya_c02148{bottom:910.050000px;}
.y9_c02148{bottom:941.190000px;}
.y8_c02148{bottom:972.150000px;}
.y7_c02148{bottom:1003.290000px;}
.y6_c02148{bottom:1034.250000px;}
.y5_c02148{bottom:1065.420000px;}
.y1_c02148{bottom:1121.400000px;}
.h3_c02148{height:22.500000px;}
.h2_c02148{height:48.871406px;}
.h1_c02148{height:58.651172px;}
.h5_c02148{height:60.226875px;}
.h4_c02148{height:70.664062px;}
.h0_c02148{height:1188.000000px;}
.w1_c02148{width:66.636000px;}
.w0_c02148{width:918.000000px;}
.x0_c02148{left:0.000000px;}
.x3_c02148{left:16.560000px;}
.x1_c02148{left:127.656000px;}
.x4_c02148{left:180.750000px;}
.x2_c02148{left:820.950000px;}
@media print{
.v0_c02148{vertical-align:0.000000pt;}
.ls2_c02148{letter-spacing:0.000000pt;}
.ls1_c02148{letter-spacing:0.094720pt;}
.ls0_c02148{letter-spacing:0.133333pt;}
.ls3_c02148{letter-spacing:0.800000pt;}
.ws0_c02148{word-spacing:-16.000000pt;}
.ws1_c02148{word-spacing:-13.280000pt;}
.ws2_c02148{word-spacing:0.000000pt;}
._14_c02148{margin-left:-7.952213pt;}
._2_c02148{margin-left:-1.216000pt;}
._3_c02148{width:1.152000pt;}
._10_c02148{width:2.560000pt;}
._6_c02148{width:3.648000pt;}
._c_c02148{width:5.056000pt;}
._e_c02148{width:6.208000pt;}
._d_c02148{width:7.232000pt;}
._11_c02148{width:8.384000pt;}
._b_c02148{width:9.408000pt;}
._a_c02148{width:10.496000pt;}
._9_c02148{width:11.584000pt;}
._7_c02148{width:12.480000pt;}
._8_c02148{width:13.696000pt;}
._4_c02148{width:14.976000pt;}
._5_c02148{width:17.088000pt;}
._1_c02148{width:27.008000pt;}
._f_c02148{width:28.736000pt;}
._12_c02148{width:42.880000pt;}
._13_c02148{width:43.776000pt;}
._0_c02148{width:1334.165333pt;}
.fs0_c02148{font-size:53.120000pt;}
.fs1_c02148{font-size:58.880000pt;}
.fs2_c02148{font-size:64.000000pt;}
.y0_c02148{bottom:0.000000pt;}
.y4_c02148{bottom:4.160000pt;}
.y3_c02148{bottom:37.152000pt;}
.y2_c02148{bottom:67.072000pt;}
.y27_c02148{bottom:97.632000pt;}
.y26_c02148{bottom:112.992000pt;}
.y25_c02148{bottom:128.352000pt;}
.y24_c02148{bottom:143.706667pt;}
.y23_c02148{bottom:159.066667pt;}
.y22_c02148{bottom:174.266667pt;}
.y21_c02148{bottom:189.626667pt;}
.y20_c02148{bottom:205.786667pt;}
.y1f_c02148{bottom:229.306667pt;}
.y1e_c02148{bottom:256.866667pt;}
.y1d_c02148{bottom:284.546667pt;}
.y1c_c02148{bottom:312.066667pt;}
.y1b_c02148{bottom:339.746667pt;}
.y1a_c02148{bottom:367.266667pt;}
.y19_c02148{bottom:394.946667pt;}
.y18_c02148{bottom:422.466667pt;}
.y17_c02148{bottom:450.146667pt;}
.y16_c02148{bottom:477.693333pt;}
.y15_c02148{bottom:505.373333pt;}
.y14_c02148{bottom:532.893333pt;}
.y13_c02148{bottom:560.573333pt;}
.y12_c02148{bottom:588.093333pt;}
.y11_c02148{bottom:615.773333pt;}
.y10_c02148{bottom:643.293333pt;}
.yf_c02148{bottom:670.973333pt;}
.ye_c02148{bottom:698.493333pt;}
.yd_c02148{bottom:726.213333pt;}
.yc_c02148{bottom:753.733333pt;}
.yb_c02148{bottom:781.413333pt;}
.ya_c02148{bottom:808.933333pt;}
.y9_c02148{bottom:836.613333pt;}
.y8_c02148{bottom:864.133333pt;}
.y7_c02148{bottom:891.813333pt;}
.y6_c02148{bottom:919.333333pt;}
.y5_c02148{bottom:947.040000pt;}
.y1_c02148{bottom:996.800000pt;}
.h3_c02148{height:20.000000pt;}
.h2_c02148{height:43.441250pt;}
.h1_c02148{height:52.134375pt;}
.h5_c02148{height:53.535000pt;}
.h4_c02148{height:62.812500pt;}
.h0_c02148{height:1056.000000pt;}
.w1_c02148{width:59.232000pt;}
.w0_c02148{width:816.000000pt;}
.x0_c02148{left:0.000000pt;}
.x3_c02148{left:14.720000pt;}
.x1_c02148{left:113.472000pt;}
.x4_c02148{left:160.666667pt;}
.x2_c02148{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02149 {
    display:none;
  }
  .loading-indicator_c02149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02149 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02149 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02149" -> "#page-container .classname_c02149")
 */
.pf_c02149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02149 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02149 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02149 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02149 {overflow:visible;}
  }
}
.c_c02149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02149 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02149:after { /* webkit #35443 */
  content: '';
}
.t_c02149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02149 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02149 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02149 { /* info for Javascript */
  display:none;
}
.l_c02149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02149:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02149 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02149.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02149;src:url('chunks/assets/font_d9954d64003348ff85729ef3.woff2')format("woff");}.ff1_c02149{font-family:ff1_c02149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02149;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff2_c02149{font-family:ff2_c02149;line-height:0.863770;font-style:normal;font-weight: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_c02149;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02149{font-family:ff3_c02149;line-height:1.311035;font-style:normal;font-weight: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_c02149;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff4_c02149{font-family:ff4_c02149;line-height:1.284180;font-style:normal;font-weight: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_c02149;src:url('chunks/assets/font_ebf69f51f4e7608046a8dddd.woff2')format("woff");}.ff5_c02149{font-family:ff5_c02149;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02149{vertical-align:0.000000px;}
.ls2_c02149{letter-spacing:-2.160000px;}
.ls1_c02149{letter-spacing:0.000000px;}
.ls0_c02149{letter-spacing:0.720000px;}
.sc__c02149{text-shadow:none;}
.sc0_c02149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02149{-webkit-text-stroke:0px transparent;}
.sc0_c02149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02149{word-spacing:0.000000px;}
._1_c02149{margin-left:-1.080000px;}
._3_c02149{width:1.008000px;}
._11_c02149{width:2.448000px;}
._f_c02149{width:3.816000px;}
._e_c02149{width:4.968000px;}
._10_c02149{width:6.108000px;}
._9_c02149{width:8.136000px;}
._a_c02149{width:9.648000px;}
._d_c02149{width:11.136024px;}
._7_c02149{width:12.168000px;}
._8_c02149{width:13.464000px;}
._b_c02149{width:14.472000px;}
._c_c02149{width:15.480000px;}
._5_c02149{width:23.832000px;}
._6_c02149{width:24.984000px;}
._2_c02149{width:30.240000px;}
._4_c02149{width:31.476000px;}
._0_c02149{width:1500.936000px;}
.fc1_c02149{color:rgb(192,80,77);}
.fc0_c02149{color:rgb(0,0,0);}
.fs0_c02149{font-size:59.760000px;}
.fs1_c02149{font-size:66.240000px;}
.fs2_c02149{font-size:72.000000px;}
.y0_c02149{bottom:0.000000px;}
.y4_c02149{bottom:4.680000px;}
.y3_c02149{bottom:41.796000px;}
.y2_c02149{bottom:75.456000px;}
.y25_c02149{bottom:131.976000px;}
.y24_c02149{bottom:163.110000px;}
.y23_c02149{bottom:194.070000px;}
.y22_c02149{bottom:225.210000px;}
.y21_c02149{bottom:256.170000px;}
.y20_c02149{bottom:287.355000px;}
.y1f_c02149{bottom:307.695000px;}
.y1e_c02149{bottom:326.775000px;}
.y1d_c02149{bottom:345.675000px;}
.y1c_c02149{bottom:364.575000px;}
.y1b_c02149{bottom:383.655000px;}
.y1a_c02149{bottom:412.815000px;}
.y19_c02149{bottom:444.315000px;}
.y18_c02149{bottom:475.275000px;}
.y17_c02149{bottom:506.415000px;}
.y16_c02149{bottom:537.405000px;}
.y15_c02149{bottom:568.545000px;}
.y14_c02149{bottom:599.505000px;}
.y13_c02149{bottom:630.645000px;}
.y12_c02149{bottom:661.605000px;}
.y11_c02149{bottom:692.745000px;}
.y10_c02149{bottom:723.705000px;}
.yf_c02149{bottom:754.845000px;}
.ye_c02149{bottom:785.805000px;}
.yd_c02149{bottom:816.990000px;}
.yc_c02149{bottom:847.950000px;}
.yb_c02149{bottom:879.090000px;}
.ya_c02149{bottom:910.050000px;}
.y9_c02149{bottom:941.190000px;}
.y8_c02149{bottom:972.150000px;}
.y7_c02149{bottom:1003.290000px;}
.y6_c02149{bottom:1034.250000px;}
.y5_c02149{bottom:1065.420000px;}
.y1_c02149{bottom:1121.400000px;}
.h3_c02149{height:22.500000px;}
.h2_c02149{height:48.871406px;}
.h1_c02149{height:58.651172px;}
.h6_c02149{height:65.010937px;}
.h7_c02149{height:70.628906px;}
.h4_c02149{height:70.664062px;}
.h5_c02149{height:72.562500px;}
.h0_c02149{height:1188.000000px;}
.w1_c02149{width:66.636000px;}
.w0_c02149{width:918.000000px;}
.x0_c02149{left:0.000000px;}
.x3_c02149{left:16.560000px;}
.x1_c02149{left:127.656000px;}
.x4_c02149{left:180.750000px;}
.x5_c02149{left:191.550000px;}
.x2_c02149{left:820.950000px;}
@media print{
.v0_c02149{vertical-align:0.000000pt;}
.ls2_c02149{letter-spacing:-1.920000pt;}
.ls1_c02149{letter-spacing:0.000000pt;}
.ls0_c02149{letter-spacing:0.640000pt;}
.ws0_c02149{word-spacing:0.000000pt;}
._1_c02149{margin-left:-0.960000pt;}
._3_c02149{width:0.896000pt;}
._11_c02149{width:2.176000pt;}
._f_c02149{width:3.392000pt;}
._e_c02149{width:4.416000pt;}
._10_c02149{width:5.429333pt;}
._9_c02149{width:7.232000pt;}
._a_c02149{width:8.576000pt;}
._d_c02149{width:9.898688pt;}
._7_c02149{width:10.816000pt;}
._8_c02149{width:11.968000pt;}
._b_c02149{width:12.864000pt;}
._c_c02149{width:13.760000pt;}
._5_c02149{width:21.184000pt;}
._6_c02149{width:22.208000pt;}
._2_c02149{width:26.880000pt;}
._4_c02149{width:27.978667pt;}
._0_c02149{width:1334.165333pt;}
.fs0_c02149{font-size:53.120000pt;}
.fs1_c02149{font-size:58.880000pt;}
.fs2_c02149{font-size:64.000000pt;}
.y0_c02149{bottom:0.000000pt;}
.y4_c02149{bottom:4.160000pt;}
.y3_c02149{bottom:37.152000pt;}
.y2_c02149{bottom:67.072000pt;}
.y25_c02149{bottom:117.312000pt;}
.y24_c02149{bottom:144.986667pt;}
.y23_c02149{bottom:172.506667pt;}
.y22_c02149{bottom:200.186667pt;}
.y21_c02149{bottom:227.706667pt;}
.y20_c02149{bottom:255.426667pt;}
.y1f_c02149{bottom:273.506667pt;}
.y1e_c02149{bottom:290.466667pt;}
.y1d_c02149{bottom:307.266667pt;}
.y1c_c02149{bottom:324.066667pt;}
.y1b_c02149{bottom:341.026667pt;}
.y1a_c02149{bottom:366.946667pt;}
.y19_c02149{bottom:394.946667pt;}
.y18_c02149{bottom:422.466667pt;}
.y17_c02149{bottom:450.146667pt;}
.y16_c02149{bottom:477.693333pt;}
.y15_c02149{bottom:505.373333pt;}
.y14_c02149{bottom:532.893333pt;}
.y13_c02149{bottom:560.573333pt;}
.y12_c02149{bottom:588.093333pt;}
.y11_c02149{bottom:615.773333pt;}
.y10_c02149{bottom:643.293333pt;}
.yf_c02149{bottom:670.973333pt;}
.ye_c02149{bottom:698.493333pt;}
.yd_c02149{bottom:726.213333pt;}
.yc_c02149{bottom:753.733333pt;}
.yb_c02149{bottom:781.413333pt;}
.ya_c02149{bottom:808.933333pt;}
.y9_c02149{bottom:836.613333pt;}
.y8_c02149{bottom:864.133333pt;}
.y7_c02149{bottom:891.813333pt;}
.y6_c02149{bottom:919.333333pt;}
.y5_c02149{bottom:947.040000pt;}
.y1_c02149{bottom:996.800000pt;}
.h3_c02149{height:20.000000pt;}
.h2_c02149{height:43.441250pt;}
.h1_c02149{height:52.134375pt;}
.h6_c02149{height:57.787500pt;}
.h7_c02149{height:62.781250pt;}
.h4_c02149{height:62.812500pt;}
.h5_c02149{height:64.500000pt;}
.h0_c02149{height:1056.000000pt;}
.w1_c02149{width:59.232000pt;}
.w0_c02149{width:816.000000pt;}
.x0_c02149{left:0.000000pt;}
.x3_c02149{left:14.720000pt;}
.x1_c02149{left:113.472000pt;}
.x4_c02149{left:160.666667pt;}
.x5_c02149{left:170.266667pt;}
.x2_c02149{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02150 {
    display:none;
  }
  .loading-indicator_c02150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02150 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02150 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02150" -> "#page-container .classname_c02150")
 */
.pf_c02150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02150 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02150 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02150 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02150 {overflow:visible;}
  }
}
.c_c02150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02150 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02150:after { /* webkit #35443 */
  content: '';
}
.t_c02150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02150 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02150 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02150 { /* info for Javascript */
  display:none;
}
.l_c02150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02150:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02150 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02150.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02150;src:url('chunks/assets/font_b283ab352bbb7c220614672e.woff2')format("woff");}.ff1_c02150{font-family:ff1_c02150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02150;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff2_c02150{font-family:ff2_c02150;line-height:0.863770;font-style:normal;font-weight: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_c02150;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02150{font-family:ff3_c02150;line-height:1.311035;font-style:normal;font-weight: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_c02150;src:url('chunks/assets/font_ed48e565b407f10e2b40fd83.woff2')format("woff");}.ff4_c02150{font-family:ff4_c02150;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02150{vertical-align:0.000000px;}
.ls2_c02150{letter-spacing:0.000000px;}
.ls3_c02150{letter-spacing:0.432000px;}
.ls1_c02150{letter-spacing:5.040000px;}
.ls0_c02150{letter-spacing:6.480000px;}
.sc__c02150{text-shadow:none;}
.sc0_c02150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02150{-webkit-text-stroke:0px transparent;}
.sc0_c02150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02150{word-spacing:-18.000000px;}
.ws1_c02150{word-spacing:0.000000px;}
._5_c02150{margin-left:-1.440000px;}
._2_c02150{width:1.512000px;}
._b_c02150{width:3.312000px;}
._c_c02150{width:4.620000px;}
._a_c02150{width:5.976000px;}
._9_c02150{width:7.920000px;}
._1_c02150{width:9.720000px;}
._3_c02150{width:10.872000px;}
._11_c02150{width:11.952000px;}
._6_c02150{width:14.760000px;}
._4_c02150{width:16.272000px;}
._e_c02150{width:19.080000px;}
._10_c02150{width:20.160000px;}
._7_c02150{width:22.032000px;}
._8_c02150{width:23.328000px;}
._d_c02150{width:24.984000px;}
._f_c02150{width:51.120000px;}
._0_c02150{width:1500.936000px;}
.fc1_c02150{color:rgb(192,80,77);}
.fc0_c02150{color:rgb(0,0,0);}
.fs0_c02150{font-size:59.760000px;}
.fs1_c02150{font-size:66.240000px;}
.fs2_c02150{font-size:72.000000px;}
.y0_c02150{bottom:0.000000px;}
.y4_c02150{bottom:4.680000px;}
.y3_c02150{bottom:41.796000px;}
.y2_c02150{bottom:75.456000px;}
.y22_c02150{bottom:164.910000px;}
.y21_c02150{bottom:195.870000px;}
.y20_c02150{bottom:226.830000px;}
.y1f_c02150{bottom:257.970000px;}
.y1e_c02150{bottom:288.975000px;}
.y1d_c02150{bottom:320.115000px;}
.y1c_c02150{bottom:351.075000px;}
.y1b_c02150{bottom:382.215000px;}
.y1a_c02150{bottom:413.175000px;}
.y19_c02150{bottom:444.315000px;}
.y18_c02150{bottom:475.275000px;}
.y17_c02150{bottom:506.415000px;}
.y16_c02150{bottom:537.405000px;}
.y15_c02150{bottom:568.545000px;}
.y14_c02150{bottom:599.505000px;}
.y13_c02150{bottom:630.645000px;}
.y12_c02150{bottom:661.605000px;}
.y11_c02150{bottom:692.745000px;}
.y10_c02150{bottom:723.705000px;}
.yf_c02150{bottom:754.845000px;}
.ye_c02150{bottom:785.805000px;}
.yd_c02150{bottom:816.990000px;}
.yc_c02150{bottom:847.950000px;}
.yb_c02150{bottom:879.090000px;}
.ya_c02150{bottom:910.050000px;}
.y9_c02150{bottom:941.190000px;}
.y8_c02150{bottom:972.150000px;}
.y7_c02150{bottom:1003.290000px;}
.y6_c02150{bottom:1034.250000px;}
.y5_c02150{bottom:1065.420000px;}
.y1_c02150{bottom:1121.400000px;}
.h3_c02150{height:22.500000px;}
.h2_c02150{height:48.871406px;}
.h1_c02150{height:58.651172px;}
.h6_c02150{height:64.546875px;}
.h4_c02150{height:70.664062px;}
.h5_c02150{height:72.562500px;}
.h0_c02150{height:1188.000000px;}
.w1_c02150{width:66.636000px;}
.w0_c02150{width:918.000000px;}
.x0_c02150{left:0.000000px;}
.x3_c02150{left:16.560000px;}
.x1_c02150{left:127.656000px;}
.x4_c02150{left:180.750000px;}
.x2_c02150{left:820.950000px;}
@media print{
.v0_c02150{vertical-align:0.000000pt;}
.ls2_c02150{letter-spacing:0.000000pt;}
.ls3_c02150{letter-spacing:0.384000pt;}
.ls1_c02150{letter-spacing:4.480000pt;}
.ls0_c02150{letter-spacing:5.760000pt;}
.ws0_c02150{word-spacing:-16.000000pt;}
.ws1_c02150{word-spacing:0.000000pt;}
._5_c02150{margin-left:-1.280000pt;}
._2_c02150{width:1.344000pt;}
._b_c02150{width:2.944000pt;}
._c_c02150{width:4.106667pt;}
._a_c02150{width:5.312000pt;}
._9_c02150{width:7.040000pt;}
._1_c02150{width:8.640000pt;}
._3_c02150{width:9.664000pt;}
._11_c02150{width:10.624000pt;}
._6_c02150{width:13.120000pt;}
._4_c02150{width:14.464000pt;}
._e_c02150{width:16.960000pt;}
._10_c02150{width:17.920000pt;}
._7_c02150{width:19.584000pt;}
._8_c02150{width:20.736000pt;}
._d_c02150{width:22.208000pt;}
._f_c02150{width:45.440000pt;}
._0_c02150{width:1334.165333pt;}
.fs0_c02150{font-size:53.120000pt;}
.fs1_c02150{font-size:58.880000pt;}
.fs2_c02150{font-size:64.000000pt;}
.y0_c02150{bottom:0.000000pt;}
.y4_c02150{bottom:4.160000pt;}
.y3_c02150{bottom:37.152000pt;}
.y2_c02150{bottom:67.072000pt;}
.y22_c02150{bottom:146.586667pt;}
.y21_c02150{bottom:174.106667pt;}
.y20_c02150{bottom:201.626667pt;}
.y1f_c02150{bottom:229.306667pt;}
.y1e_c02150{bottom:256.866667pt;}
.y1d_c02150{bottom:284.546667pt;}
.y1c_c02150{bottom:312.066667pt;}
.y1b_c02150{bottom:339.746667pt;}
.y1a_c02150{bottom:367.266667pt;}
.y19_c02150{bottom:394.946667pt;}
.y18_c02150{bottom:422.466667pt;}
.y17_c02150{bottom:450.146667pt;}
.y16_c02150{bottom:477.693333pt;}
.y15_c02150{bottom:505.373333pt;}
.y14_c02150{bottom:532.893333pt;}
.y13_c02150{bottom:560.573333pt;}
.y12_c02150{bottom:588.093333pt;}
.y11_c02150{bottom:615.773333pt;}
.y10_c02150{bottom:643.293333pt;}
.yf_c02150{bottom:670.973333pt;}
.ye_c02150{bottom:698.493333pt;}
.yd_c02150{bottom:726.213333pt;}
.yc_c02150{bottom:753.733333pt;}
.yb_c02150{bottom:781.413333pt;}
.ya_c02150{bottom:808.933333pt;}
.y9_c02150{bottom:836.613333pt;}
.y8_c02150{bottom:864.133333pt;}
.y7_c02150{bottom:891.813333pt;}
.y6_c02150{bottom:919.333333pt;}
.y5_c02150{bottom:947.040000pt;}
.y1_c02150{bottom:996.800000pt;}
.h3_c02150{height:20.000000pt;}
.h2_c02150{height:43.441250pt;}
.h1_c02150{height:52.134375pt;}
.h6_c02150{height:57.375000pt;}
.h4_c02150{height:62.812500pt;}
.h5_c02150{height:64.500000pt;}
.h0_c02150{height:1056.000000pt;}
.w1_c02150{width:59.232000pt;}
.w0_c02150{width:816.000000pt;}
.x0_c02150{left:0.000000pt;}
.x3_c02150{left:14.720000pt;}
.x1_c02150{left:113.472000pt;}
.x4_c02150{left:160.666667pt;}
.x2_c02150{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02151 {
    display:none;
  }
  .loading-indicator_c02151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02151 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02151 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02151" -> "#page-container .classname_c02151")
 */
.pf_c02151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02151 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02151 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02151 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02151 {overflow:visible;}
  }
}
.c_c02151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02151 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02151:after { /* webkit #35443 */
  content: '';
}
.t_c02151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02151 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02151 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02151 { /* info for Javascript */
  display:none;
}
.l_c02151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02151:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02151 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02151.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02151;src:url('chunks/assets/font_dd7a0d720ec40adb227e911a.woff2')format("woff");}.ff1_c02151{font-family:ff1_c02151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02151;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff2_c02151{font-family:ff2_c02151;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02151{vertical-align:0.000000px;}
.ls0_c02151{letter-spacing:0.000000px;}
.sc__c02151{text-shadow:none;}
.sc0_c02151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02151{-webkit-text-stroke:0px transparent;}
.sc0_c02151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02151{word-spacing:0.000000px;}
._3_c02151{margin-left:-2.160000px;}
._4_c02151{margin-left:-1.080000px;}
._5_c02151{width:1.296000px;}
._1_c02151{width:2.664000px;}
._2_c02151{width:3.960000px;}
._b_c02151{width:4.968000px;}
._a_c02151{width:9.072000px;}
._9_c02151{width:10.512000px;}
._6_c02151{width:12.816000px;}
._7_c02151{width:14.328000px;}
._8_c02151{width:26.928000px;}
._c_c02151{width:37.848024px;}
._d_c02151{width:38.952000px;}
._e_c02151{width:40.104000px;}
._0_c02151{width:1500.936000px;}
.fc1_c02151{color:rgb(192,80,77);}
.fc0_c02151{color:rgb(0,0,0);}
.fs0_c02151{font-size:59.760000px;}
.fs1_c02151{font-size:66.240000px;}
.fs2_c02151{font-size:72.000000px;}
.y0_c02151{bottom:0.000000px;}
.y4_c02151{bottom:4.680000px;}
.y3_c02151{bottom:41.796000px;}
.y2_c02151{bottom:75.456000px;}
.y15_c02151{bottom:578.805000px;}
.y14_c02151{bottom:609.945000px;}
.y13_c02151{bottom:630.825000px;}
.y12_c02151{bottom:661.605000px;}
.y11_c02151{bottom:692.745000px;}
.y10_c02151{bottom:723.705000px;}
.yf_c02151{bottom:754.845000px;}
.ye_c02151{bottom:785.805000px;}
.yd_c02151{bottom:816.990000px;}
.yc_c02151{bottom:847.950000px;}
.yb_c02151{bottom:879.090000px;}
.ya_c02151{bottom:910.050000px;}
.y9_c02151{bottom:941.190000px;}
.y8_c02151{bottom:972.150000px;}
.y7_c02151{bottom:1003.290000px;}
.y6_c02151{bottom:1034.250000px;}
.y5_c02151{bottom:1065.420000px;}
.y1_c02151{bottom:1121.400000px;}
.h3_c02151{height:22.500000px;}
.h2_c02151{height:48.871406px;}
.h1_c02151{height:58.651172px;}
.h4_c02151{height:70.664062px;}
.h0_c02151{height:1188.000000px;}
.w1_c02151{width:66.636000px;}
.w0_c02151{width:918.000000px;}
.x0_c02151{left:0.000000px;}
.x3_c02151{left:16.560000px;}
.x1_c02151{left:127.656000px;}
.x4_c02151{left:180.750000px;}
.x5_c02151{left:459.075000px;}
.x2_c02151{left:820.950000px;}
@media print{
.v0_c02151{vertical-align:0.000000pt;}
.ls0_c02151{letter-spacing:0.000000pt;}
.ws0_c02151{word-spacing:0.000000pt;}
._3_c02151{margin-left:-1.920000pt;}
._4_c02151{margin-left:-0.960000pt;}
._5_c02151{width:1.152000pt;}
._1_c02151{width:2.368000pt;}
._2_c02151{width:3.520000pt;}
._b_c02151{width:4.416000pt;}
._a_c02151{width:8.064000pt;}
._9_c02151{width:9.344000pt;}
._6_c02151{width:11.392000pt;}
._7_c02151{width:12.736000pt;}
._8_c02151{width:23.936000pt;}
._c_c02151{width:33.642688pt;}
._d_c02151{width:34.624000pt;}
._e_c02151{width:35.648000pt;}
._0_c02151{width:1334.165333pt;}
.fs0_c02151{font-size:53.120000pt;}
.fs1_c02151{font-size:58.880000pt;}
.fs2_c02151{font-size:64.000000pt;}
.y0_c02151{bottom:0.000000pt;}
.y4_c02151{bottom:4.160000pt;}
.y3_c02151{bottom:37.152000pt;}
.y2_c02151{bottom:67.072000pt;}
.y15_c02151{bottom:514.493333pt;}
.y14_c02151{bottom:542.173333pt;}
.y13_c02151{bottom:560.733333pt;}
.y12_c02151{bottom:588.093333pt;}
.y11_c02151{bottom:615.773333pt;}
.y10_c02151{bottom:643.293333pt;}
.yf_c02151{bottom:670.973333pt;}
.ye_c02151{bottom:698.493333pt;}
.yd_c02151{bottom:726.213333pt;}
.yc_c02151{bottom:753.733333pt;}
.yb_c02151{bottom:781.413333pt;}
.ya_c02151{bottom:808.933333pt;}
.y9_c02151{bottom:836.613333pt;}
.y8_c02151{bottom:864.133333pt;}
.y7_c02151{bottom:891.813333pt;}
.y6_c02151{bottom:919.333333pt;}
.y5_c02151{bottom:947.040000pt;}
.y1_c02151{bottom:996.800000pt;}
.h3_c02151{height:20.000000pt;}
.h2_c02151{height:43.441250pt;}
.h1_c02151{height:52.134375pt;}
.h4_c02151{height:62.812500pt;}
.h0_c02151{height:1056.000000pt;}
.w1_c02151{width:59.232000pt;}
.w0_c02151{width:816.000000pt;}
.x0_c02151{left:0.000000pt;}
.x3_c02151{left:14.720000pt;}
.x1_c02151{left:113.472000pt;}
.x4_c02151{left:160.666667pt;}
.x5_c02151{left:408.066667pt;}
.x2_c02151{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02152 {
    display:none;
  }
  .loading-indicator_c02152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02152 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02152 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02152" -> "#page-container .classname_c02152")
 */
.pf_c02152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02152 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02152 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02152 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02152 {overflow:visible;}
  }
}
.c_c02152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02152 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02152:after { /* webkit #35443 */
  content: '';
}
.t_c02152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02152 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02152 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02152 { /* info for Javascript */
  display:none;
}
.l_c02152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02152:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02152 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02152.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02152;src:url('chunks/assets/font_51bcda13a0cea8b1701caaf6.woff2')format("woff");}.ff1_c02152{font-family:ff1_c02152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02152;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff2_c02152{font-family:ff2_c02152;line-height:0.863770;font-style:normal;font-weight: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_c02152;src:url('chunks/assets/font_eb218d55e5a77b14f550aace.woff2')format("woff");}.ff3_c02152{font-family:ff3_c02152;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02152{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02152{vertical-align:0.000000px;}
.ls2_c02152{letter-spacing:-0.334200px;}
.ls1_c02152{letter-spacing:-0.051600px;}
.ls0_c02152{letter-spacing:0.000000px;}
.sc__c02152{text-shadow:none;}
.sc0_c02152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02152{-webkit-text-stroke:0px transparent;}
.sc0_c02152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02152{word-spacing:-15.840000px;}
.ws1_c02152{word-spacing:-15.505800px;}
.ws2_c02152{word-spacing:0.000000px;}
._3_c02152{margin-left:-2.279520px;}
._1_c02152{margin-left:-1.152000px;}
._2_c02152{width:1.008000px;}
._0_c02152{width:1500.960000px;}
.fc3_c02152{color:rgb(0,0,255);}
.fc1_c02152{color:rgb(192,80,77);}
.fc2_c02152{color:rgb(255,255,255);}
.fc0_c02152{color:rgb(0,0,0);}
.fs0_c02152{font-size:59.760000px;}
.fs3_c02152{font-size:63.360000px;}
.fs1_c02152{font-size:66.240000px;}
.fs2_c02152{font-size:72.000000px;}
.y0_c02152{bottom:0.000000px;}
.yf_c02152{bottom:3.780000px;}
.y9_c02152{bottom:3.960000px;}
.y4_c02152{bottom:4.860000px;}
.ye_c02152{bottom:22.005000px;}
.y27_c02152{bottom:22.134000px;}
.y24_c02152{bottom:22.140000px;}
.y26_c02152{bottom:40.134000px;}
.yd_c02152{bottom:40.185000px;}
.y3_c02152{bottom:52.416000px;}
.yc_c02152{bottom:58.185000px;}
.y23_c02152{bottom:58.365000px;}
.y2_c02152{bottom:75.456000px;}
.yb_c02152{bottom:76.365000px;}
.y22_c02152{bottom:94.545000px;}
.y21_c02152{bottom:112.725000px;}
.y20_c02152{bottom:130.725000px;}
.y25_c02152{bottom:135.216000px;}
.y1f_c02152{bottom:148.905000px;}
.y1e_c02152{bottom:167.085000px;}
.y1d_c02152{bottom:185.085000px;}
.y10_c02152{bottom:190.290000px;}
.y1c_c02152{bottom:203.265000px;}
.y1b_c02152{bottom:221.265000px;}
.y1a_c02152{bottom:239.475000px;}
.y19_c02152{bottom:257.655000px;}
.y18_c02152{bottom:275.655000px;}
.y17_c02152{bottom:293.835000px;}
.y16_c02152{bottom:312.015000px;}
.y15_c02152{bottom:330.015000px;}
.y14_c02152{bottom:348.195000px;}
.y13_c02152{bottom:366.195000px;}
.y12_c02152{bottom:384.375000px;}
.y11_c02152{bottom:402.555000px;}
.ya_c02152{bottom:607.785000px;}
.y8_c02152{bottom:699.090000px;}
.y7_c02152{bottom:732.570000px;}
.y6_c02152{bottom:753.450000px;}
.y5_c02152{bottom:774.150000px;}
.y1_c02152{bottom:851.400000px;}
.h5_c02152{height:18.180000px;}
.h3_c02152{height:22.680000px;}
.h2_c02152{height:48.871406px;}
.h9_c02152{height:54.360000px;}
.h1_c02152{height:58.651172px;}
.h6_c02152{height:62.184375px;}
.h4_c02152{height:70.664062px;}
.h7_c02152{height:90.576000px;}
.h8_c02152{height:416.775000px;}
.h0_c02152{height:918.000000px;}
.w1_c02152{width:66.780000px;}
.w2_c02152{width:166.890000px;}
.w4_c02152{width:307.470000px;}
.w3_c02152{width:509.655000px;}
.w0_c02152{width:1188.000000px;}
.x0_c02152{left:0.000000px;}
.xc_c02152{left:7.560000px;}
.xf_c02152{left:8.640000px;}
.x3_c02152{left:16.560000px;}
.x10_c02152{left:29.880000px;}
.xe_c02152{left:36.900000px;}
.x7_c02152{left:57.450000px;}
.x6_c02152{left:98.640000px;}
.x1_c02152{left:106.200000px;}
.xb_c02152{left:123.660000px;}
.xd_c02152{left:153.765000px;}
.x9_c02152{left:216.765000px;}
.x8_c02152{left:266.250000px;}
.x5_c02152{left:418.215000px;}
.x4_c02152{left:550.695000px;}
.xa_c02152{left:776.625000px;}
.x2_c02152{left:1101.570000px;}
@media print{
.v0_c02152{vertical-align:0.000000pt;}
.ls2_c02152{letter-spacing:-0.297067pt;}
.ls1_c02152{letter-spacing:-0.045867pt;}
.ls0_c02152{letter-spacing:0.000000pt;}
.ws0_c02152{word-spacing:-14.080000pt;}
.ws1_c02152{word-spacing:-13.782933pt;}
.ws2_c02152{word-spacing:0.000000pt;}
._3_c02152{margin-left:-2.026240pt;}
._1_c02152{margin-left:-1.024000pt;}
._2_c02152{width:0.896000pt;}
._0_c02152{width:1334.186667pt;}
.fs0_c02152{font-size:53.120000pt;}
.fs3_c02152{font-size:56.320000pt;}
.fs1_c02152{font-size:58.880000pt;}
.fs2_c02152{font-size:64.000000pt;}
.y0_c02152{bottom:0.000000pt;}
.yf_c02152{bottom:3.360000pt;}
.y9_c02152{bottom:3.520000pt;}
.y4_c02152{bottom:4.320000pt;}
.ye_c02152{bottom:19.560000pt;}
.y27_c02152{bottom:19.674667pt;}
.y24_c02152{bottom:19.680000pt;}
.y26_c02152{bottom:35.674667pt;}
.yd_c02152{bottom:35.720000pt;}
.y3_c02152{bottom:46.592000pt;}
.yc_c02152{bottom:51.720000pt;}
.y23_c02152{bottom:51.880000pt;}
.y2_c02152{bottom:67.072000pt;}
.yb_c02152{bottom:67.880000pt;}
.y22_c02152{bottom:84.040000pt;}
.y21_c02152{bottom:100.200000pt;}
.y20_c02152{bottom:116.200000pt;}
.y25_c02152{bottom:120.192000pt;}
.y1f_c02152{bottom:132.360000pt;}
.y1e_c02152{bottom:148.520000pt;}
.y1d_c02152{bottom:164.520000pt;}
.y10_c02152{bottom:169.146667pt;}
.y1c_c02152{bottom:180.680000pt;}
.y1b_c02152{bottom:196.680000pt;}
.y1a_c02152{bottom:212.866667pt;}
.y19_c02152{bottom:229.026667pt;}
.y18_c02152{bottom:245.026667pt;}
.y17_c02152{bottom:261.186667pt;}
.y16_c02152{bottom:277.346667pt;}
.y15_c02152{bottom:293.346667pt;}
.y14_c02152{bottom:309.506667pt;}
.y13_c02152{bottom:325.506667pt;}
.y12_c02152{bottom:341.666667pt;}
.y11_c02152{bottom:357.826667pt;}
.ya_c02152{bottom:540.253333pt;}
.y8_c02152{bottom:621.413333pt;}
.y7_c02152{bottom:651.173333pt;}
.y6_c02152{bottom:669.733333pt;}
.y5_c02152{bottom:688.133333pt;}
.y1_c02152{bottom:756.800000pt;}
.h5_c02152{height:16.160000pt;}
.h3_c02152{height:20.160000pt;}
.h2_c02152{height:43.441250pt;}
.h9_c02152{height:48.320000pt;}
.h1_c02152{height:52.134375pt;}
.h6_c02152{height:55.275000pt;}
.h4_c02152{height:62.812500pt;}
.h7_c02152{height:80.512000pt;}
.h8_c02152{height:370.466667pt;}
.h0_c02152{height:816.000000pt;}
.w1_c02152{width:59.360000pt;}
.w2_c02152{width:148.346667pt;}
.w4_c02152{width:273.306667pt;}
.w3_c02152{width:453.026667pt;}
.w0_c02152{width:1056.000000pt;}
.x0_c02152{left:0.000000pt;}
.xc_c02152{left:6.720000pt;}
.xf_c02152{left:7.680000pt;}
.x3_c02152{left:14.720000pt;}
.x10_c02152{left:26.560000pt;}
.xe_c02152{left:32.800000pt;}
.x7_c02152{left:51.066667pt;}
.x6_c02152{left:87.680000pt;}
.x1_c02152{left:94.400000pt;}
.xb_c02152{left:109.920000pt;}
.xd_c02152{left:136.680000pt;}
.x9_c02152{left:192.680000pt;}
.x8_c02152{left:236.666667pt;}
.x5_c02152{left:371.746667pt;}
.x4_c02152{left:489.506667pt;}
.xa_c02152{left:690.333333pt;}
.x2_c02152{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02153 {
    display:none;
  }
  .loading-indicator_c02153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02153 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02153 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02153" -> "#page-container .classname_c02153")
 */
.pf_c02153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02153 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02153 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02153 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02153 {overflow:visible;}
  }
}
.c_c02153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02153 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02153:after { /* webkit #35443 */
  content: '';
}
.t_c02153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02153 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02153 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02153 { /* info for Javascript */
  display:none;
}
.l_c02153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02153:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02153 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02153.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02153;src:url('chunks/assets/font_a3701cc1a91c46968a205f28.woff2')format("woff");}.ff1_c02153{font-family:ff1_c02153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02153;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff2_c02153{font-family:ff2_c02153;line-height:0.863770;font-style:normal;font-weight: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_c02153;src:url('chunks/assets/font_81da6d173350409d39b2792e.woff2')format("woff");}.ff3_c02153{font-family:ff3_c02153;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02153{vertical-align:0.000000px;}
.ls0_c02153{letter-spacing:0.000000px;}
.sc__c02153{text-shadow:none;}
.sc0_c02153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02153{-webkit-text-stroke:0px transparent;}
.sc0_c02153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02153{word-spacing:-15.840000px;}
.ws1_c02153{word-spacing:0.000000px;}
._2_c02153{margin-left:-2.281213px;}
._1_c02153{margin-left:-1.076993px;}
._3_c02153{width:1.204220px;}
._0_c02153{width:1500.960000px;}
.fc2_c02153{color:rgb(0,0,255);}
.fc1_c02153{color:rgb(192,80,77);}
.fc0_c02153{color:rgb(0,0,0);}
.fs0_c02153{font-size:59.760000px;}
.fs2_c02153{font-size:63.360000px;}
.fs1_c02153{font-size:66.240000px;}
.y0_c02153{bottom:0.000000px;}
.y2a_c02153{bottom:3.780000px;}
.y6_c02153{bottom:3.960000px;}
.y4_c02153{bottom:4.860000px;}
.y29_c02153{bottom:21.954000px;}
.y28_c02153{bottom:40.134000px;}
.y3_c02153{bottom:52.416000px;}
.y27_c02153{bottom:58.134000px;}
.y2_c02153{bottom:75.456000px;}
.y26_c02153{bottom:76.314000px;}
.y25_c02153{bottom:94.359000px;}
.y24_c02153{bottom:112.539000px;}
.y23_c02153{bottom:130.719000px;}
.y7_c02153{bottom:136.836000px;}
.y22_c02153{bottom:148.719000px;}
.y21_c02153{bottom:166.899000px;}
.y20_c02153{bottom:185.079000px;}
.y1f_c02153{bottom:203.079000px;}
.y1e_c02153{bottom:221.259000px;}
.y1d_c02153{bottom:239.259000px;}
.y1c_c02153{bottom:257.439000px;}
.y1b_c02153{bottom:275.619000px;}
.y1a_c02153{bottom:293.649000px;}
.y19_c02153{bottom:311.829000px;}
.y18_c02153{bottom:329.829000px;}
.y17_c02153{bottom:348.009000px;}
.y16_c02153{bottom:366.189000px;}
.y15_c02153{bottom:384.189000px;}
.y14_c02153{bottom:402.369000px;}
.y13_c02153{bottom:420.549000px;}
.y12_c02153{bottom:438.549000px;}
.y11_c02153{bottom:456.729000px;}
.y10_c02153{bottom:474.729000px;}
.yf_c02153{bottom:492.954000px;}
.ye_c02153{bottom:511.134000px;}
.yd_c02153{bottom:529.134000px;}
.yc_c02153{bottom:547.314000px;}
.yb_c02153{bottom:565.314000px;}
.ya_c02153{bottom:583.494000px;}
.y9_c02153{bottom:601.674000px;}
.y8_c02153{bottom:619.674000px;}
.y5_c02153{bottom:771.450000px;}
.y1_c02153{bottom:851.400000px;}
.h4_c02153{height:18.180000px;}
.h3_c02153{height:22.680000px;}
.h2_c02153{height:48.871406px;}
.h1_c02153{height:58.651172px;}
.h5_c02153{height:62.184375px;}
.h6_c02153{height:633.885000px;}
.h0_c02153{height:918.000000px;}
.w1_c02153{width:66.780000px;}
.w3_c02153{width:166.890000px;}
.w4_c02153{width:307.470000px;}
.w2_c02153{width:509.655000px;}
.w0_c02153{width:1188.000000px;}
.x0_c02153{left:0.000000px;}
.x5_c02153{left:7.740000px;}
.x3_c02153{left:16.560000px;}
.x9_c02153{left:77.580000px;}
.x6_c02153{left:98.640000px;}
.x1_c02153{left:106.200000px;}
.x8_c02153{left:153.765000px;}
.x4_c02153{left:266.250000px;}
.x7_c02153{left:776.625000px;}
.x2_c02153{left:1101.570000px;}
@media print{
.v0_c02153{vertical-align:0.000000pt;}
.ls0_c02153{letter-spacing:0.000000pt;}
.ws0_c02153{word-spacing:-14.080000pt;}
.ws1_c02153{word-spacing:0.000000pt;}
._2_c02153{margin-left:-2.027745pt;}
._1_c02153{margin-left:-0.957327pt;}
._3_c02153{width:1.070418pt;}
._0_c02153{width:1334.186667pt;}
.fs0_c02153{font-size:53.120000pt;}
.fs2_c02153{font-size:56.320000pt;}
.fs1_c02153{font-size:58.880000pt;}
.y0_c02153{bottom:0.000000pt;}
.y2a_c02153{bottom:3.360000pt;}
.y6_c02153{bottom:3.520000pt;}
.y4_c02153{bottom:4.320000pt;}
.y29_c02153{bottom:19.514667pt;}
.y28_c02153{bottom:35.674667pt;}
.y3_c02153{bottom:46.592000pt;}
.y27_c02153{bottom:51.674667pt;}
.y2_c02153{bottom:67.072000pt;}
.y26_c02153{bottom:67.834667pt;}
.y25_c02153{bottom:83.874667pt;}
.y24_c02153{bottom:100.034667pt;}
.y23_c02153{bottom:116.194667pt;}
.y7_c02153{bottom:121.632000pt;}
.y22_c02153{bottom:132.194667pt;}
.y21_c02153{bottom:148.354667pt;}
.y20_c02153{bottom:164.514667pt;}
.y1f_c02153{bottom:180.514667pt;}
.y1e_c02153{bottom:196.674667pt;}
.y1d_c02153{bottom:212.674667pt;}
.y1c_c02153{bottom:228.834667pt;}
.y1b_c02153{bottom:244.994667pt;}
.y1a_c02153{bottom:261.021333pt;}
.y19_c02153{bottom:277.181333pt;}
.y18_c02153{bottom:293.181333pt;}
.y17_c02153{bottom:309.341333pt;}
.y16_c02153{bottom:325.501333pt;}
.y15_c02153{bottom:341.501333pt;}
.y14_c02153{bottom:357.661333pt;}
.y13_c02153{bottom:373.821333pt;}
.y12_c02153{bottom:389.821333pt;}
.y11_c02153{bottom:405.981333pt;}
.y10_c02153{bottom:421.981333pt;}
.yf_c02153{bottom:438.181333pt;}
.ye_c02153{bottom:454.341333pt;}
.yd_c02153{bottom:470.341333pt;}
.yc_c02153{bottom:486.501333pt;}
.yb_c02153{bottom:502.501333pt;}
.ya_c02153{bottom:518.661333pt;}
.y9_c02153{bottom:534.821333pt;}
.y8_c02153{bottom:550.821333pt;}
.y5_c02153{bottom:685.733333pt;}
.y1_c02153{bottom:756.800000pt;}
.h4_c02153{height:16.160000pt;}
.h3_c02153{height:20.160000pt;}
.h2_c02153{height:43.441250pt;}
.h1_c02153{height:52.134375pt;}
.h5_c02153{height:55.275000pt;}
.h6_c02153{height:563.453333pt;}
.h0_c02153{height:816.000000pt;}
.w1_c02153{width:59.360000pt;}
.w3_c02153{width:148.346667pt;}
.w4_c02153{width:273.306667pt;}
.w2_c02153{width:453.026667pt;}
.w0_c02153{width:1056.000000pt;}
.x0_c02153{left:0.000000pt;}
.x5_c02153{left:6.880000pt;}
.x3_c02153{left:14.720000pt;}
.x9_c02153{left:68.960000pt;}
.x6_c02153{left:87.680000pt;}
.x1_c02153{left:94.400000pt;}
.x8_c02153{left:136.680000pt;}
.x4_c02153{left:236.666667pt;}
.x7_c02153{left:690.333333pt;}
.x2_c02153{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02154 {
    display:none;
  }
  .loading-indicator_c02154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02154 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02154 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02154" -> "#page-container .classname_c02154")
 */
.pf_c02154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02154 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02154 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02154 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02154 {overflow:visible;}
  }
}
.c_c02154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02154 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02154:after { /* webkit #35443 */
  content: '';
}
.t_c02154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02154 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02154 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02154 { /* info for Javascript */
  display:none;
}
.l_c02154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02154:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02154 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02154.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02154;src:url('chunks/assets/font_4743e2eaee2b760afb7b2c51.woff2')format("woff");}.ff1_c02154{font-family:ff1_c02154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02154;src:url('chunks/assets/font_eb7ce06e344ed9e8bb18a15c.woff2')format("woff");}.ff2_c02154{font-family:ff2_c02154;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02154{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02154{vertical-align:0.000000px;}
.ls1_c02154{letter-spacing:-0.334200px;}
.ls0_c02154{letter-spacing:0.000000px;}
.sc__c02154{text-shadow:none;}
.sc0_c02154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02154{-webkit-text-stroke:0px transparent;}
.sc0_c02154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02154{word-spacing:-15.840000px;}
.ws1_c02154{word-spacing:0.000000px;}
._2_c02154{margin-left:-2.487767px;}
._1_c02154{margin-left:-1.393793px;}
._3_c02154{width:1.013380px;}
._0_c02154{width:1500.960000px;}
.fc2_c02154{color:rgb(0,0,255);}
.fc1_c02154{color:rgb(192,80,77);}
.fc0_c02154{color:rgb(0,0,0);}
.fs0_c02154{font-size:59.760000px;}
.fs2_c02154{font-size:63.360000px;}
.fs1_c02154{font-size:66.240000px;}
.y0_c02154{bottom:0.000000px;}
.y15_c02154{bottom:3.960000px;}
.y4_c02154{bottom:4.860000px;}
.y22_c02154{bottom:21.954000px;}
.y14_c02154{bottom:21.960000px;}
.y21_c02154{bottom:40.134000px;}
.y13_c02154{bottom:40.140000px;}
.y18_c02154{bottom:40.170000px;}
.y1f_c02154{bottom:40.185000px;}
.y3_c02154{bottom:52.416000px;}
.y1a_c02154{bottom:58.140000px;}
.y12_c02154{bottom:58.320000px;}
.y1e_c02154{bottom:58.365000px;}
.y2_c02154{bottom:75.456000px;}
.y11_c02154{bottom:76.320000px;}
.y1d_c02154{bottom:76.365000px;}
.y10_c02154{bottom:94.500000px;}
.y1c_c02154{bottom:94.545000px;}
.yf_c02154{bottom:112.680000px;}
.ye_c02154{bottom:130.725000px;}
.y20_c02154{bottom:133.776000px;}
.yd_c02154{bottom:148.905000px;}
.yc_c02154{bottom:166.905000px;}
.yb_c02154{bottom:185.085000px;}
.y1b_c02154{bottom:188.850000px;}
.ya_c02154{bottom:203.265000px;}
.y9_c02154{bottom:221.265000px;}
.y8_c02154{bottom:239.445000px;}
.y7_c02154{bottom:257.445000px;}
.y6_c02154{bottom:275.625000px;}
.y19_c02154{bottom:298.335000px;}
.y17_c02154{bottom:389.595000px;}
.y16_c02154{bottom:444.705000px;}
.y5_c02154{bottom:499.785000px;}
.y1_c02154{bottom:851.400000px;}
.h3_c02154{height:22.680000px;}
.h2_c02154{height:48.871406px;}
.h6_c02154{height:54.360000px;}
.h7_c02154{height:54.396000px;}
.h1_c02154{height:58.651172px;}
.h5_c02154{height:62.184375px;}
.h8_c02154{height:90.540000px;}
.h9_c02154{height:108.756000px;}
.h4_c02154{height:289.830000px;}
.h0_c02154{height:918.000000px;}
.w1_c02154{width:66.780000px;}
.w3_c02154{width:166.890000px;}
.w4_c02154{width:307.470000px;}
.w2_c02154{width:509.655000px;}
.w0_c02154{width:1188.000000px;}
.x0_c02154{left:0.000000px;}
.x5_c02154{left:7.740000px;}
.x3_c02154{left:16.560000px;}
.xb_c02154{left:38.520000px;}
.x9_c02154{left:64.800000px;}
.xa_c02154{left:75.780000px;}
.xc_c02154{left:89.820000px;}
.x6_c02154{left:98.640000px;}
.x1_c02154{left:106.200000px;}
.x8_c02154{left:153.765000px;}
.x4_c02154{left:266.250000px;}
.x7_c02154{left:776.625000px;}
.x2_c02154{left:1101.570000px;}
@media print{
.v0_c02154{vertical-align:0.000000pt;}
.ls1_c02154{letter-spacing:-0.297067pt;}
.ls0_c02154{letter-spacing:0.000000pt;}
.ws0_c02154{word-spacing:-14.080000pt;}
.ws1_c02154{word-spacing:0.000000pt;}
._2_c02154{margin-left:-2.211348pt;}
._1_c02154{margin-left:-1.238927pt;}
._3_c02154{width:0.900782pt;}
._0_c02154{width:1334.186667pt;}
.fs0_c02154{font-size:53.120000pt;}
.fs2_c02154{font-size:56.320000pt;}
.fs1_c02154{font-size:58.880000pt;}
.y0_c02154{bottom:0.000000pt;}
.y15_c02154{bottom:3.520000pt;}
.y4_c02154{bottom:4.320000pt;}
.y22_c02154{bottom:19.514667pt;}
.y14_c02154{bottom:19.520000pt;}
.y21_c02154{bottom:35.674667pt;}
.y13_c02154{bottom:35.680000pt;}
.y18_c02154{bottom:35.706667pt;}
.y1f_c02154{bottom:35.720000pt;}
.y3_c02154{bottom:46.592000pt;}
.y1a_c02154{bottom:51.680000pt;}
.y12_c02154{bottom:51.840000pt;}
.y1e_c02154{bottom:51.880000pt;}
.y2_c02154{bottom:67.072000pt;}
.y11_c02154{bottom:67.840000pt;}
.y1d_c02154{bottom:67.880000pt;}
.y10_c02154{bottom:84.000000pt;}
.y1c_c02154{bottom:84.040000pt;}
.yf_c02154{bottom:100.160000pt;}
.ye_c02154{bottom:116.200000pt;}
.y20_c02154{bottom:118.912000pt;}
.yd_c02154{bottom:132.360000pt;}
.yc_c02154{bottom:148.360000pt;}
.yb_c02154{bottom:164.520000pt;}
.y1b_c02154{bottom:167.866667pt;}
.ya_c02154{bottom:180.680000pt;}
.y9_c02154{bottom:196.680000pt;}
.y8_c02154{bottom:212.840000pt;}
.y7_c02154{bottom:228.840000pt;}
.y6_c02154{bottom:245.000000pt;}
.y19_c02154{bottom:265.186667pt;}
.y17_c02154{bottom:346.306667pt;}
.y16_c02154{bottom:395.293333pt;}
.y5_c02154{bottom:444.253333pt;}
.y1_c02154{bottom:756.800000pt;}
.h3_c02154{height:20.160000pt;}
.h2_c02154{height:43.441250pt;}
.h6_c02154{height:48.320000pt;}
.h7_c02154{height:48.352000pt;}
.h1_c02154{height:52.134375pt;}
.h5_c02154{height:55.275000pt;}
.h8_c02154{height:80.480000pt;}
.h9_c02154{height:96.672000pt;}
.h4_c02154{height:257.626667pt;}
.h0_c02154{height:816.000000pt;}
.w1_c02154{width:59.360000pt;}
.w3_c02154{width:148.346667pt;}
.w4_c02154{width:273.306667pt;}
.w2_c02154{width:453.026667pt;}
.w0_c02154{width:1056.000000pt;}
.x0_c02154{left:0.000000pt;}
.x5_c02154{left:6.880000pt;}
.x3_c02154{left:14.720000pt;}
.xb_c02154{left:34.240000pt;}
.x9_c02154{left:57.600000pt;}
.xa_c02154{left:67.360000pt;}
.xc_c02154{left:79.840000pt;}
.x6_c02154{left:87.680000pt;}
.x1_c02154{left:94.400000pt;}
.x8_c02154{left:136.680000pt;}
.x4_c02154{left:236.666667pt;}
.x7_c02154{left:690.333333pt;}
.x2_c02154{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02155 {
    display:none;
  }
  .loading-indicator_c02155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02155 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02155 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02155" -> "#page-container .classname_c02155")
 */
.pf_c02155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02155 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02155 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02155 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02155 {overflow:visible;}
  }
}
.c_c02155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02155 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02155:after { /* webkit #35443 */
  content: '';
}
.t_c02155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02155 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02155 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02155 { /* info for Javascript */
  display:none;
}
.l_c02155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02155:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02155 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02155.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02155;src:url('chunks/assets/font_d492afec33507b69b2da1f32.woff2')format("woff");}.ff1_c02155{font-family:ff1_c02155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02155;src:url('chunks/assets/font_a17a95125dabf4b367b0345e.woff2')format("woff");}.ff2_c02155{font-family:ff2_c02155;line-height:0.863770;font-style:normal;font-weight: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_c02155;src:url('chunks/assets/font_581cff580871c2ce2b058a3f.woff2')format("woff");}.ff3_c02155{font-family:ff3_c02155;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02155{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02155{vertical-align:0.000000px;}
.ls0_c02155{letter-spacing:0.000000px;}
.sc__c02155{text-shadow:none;}
.sc0_c02155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02155{-webkit-text-stroke:0px transparent;}
.sc0_c02155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02155{word-spacing:-15.840000px;}
.ws1_c02155{word-spacing:0.000000px;}
._2_c02155{margin-left:-2.419073px;}
._1_c02155{margin-left:-1.140607px;}
._0_c02155{width:1500.960000px;}
.fc2_c02155{color:rgb(153,0,0);}
.fc3_c02155{color:rgb(0,0,255);}
.fc1_c02155{color:rgb(192,80,77);}
.fc0_c02155{color:rgb(0,0,0);}
.fs0_c02155{font-size:59.760000px;}
.fs2_c02155{font-size:63.360000px;}
.fs1_c02155{font-size:66.240000px;}
.y0_c02155{bottom:0.000000px;}
.yc_c02155{bottom:3.780000px;}
.y4_c02155{bottom:4.860000px;}
.y29_c02155{bottom:21.954000px;}
.yb_c02155{bottom:21.960000px;}
.y28_c02155{bottom:40.134000px;}
.ya_c02155{bottom:40.140000px;}
.y3_c02155{bottom:52.416000px;}
.y27_c02155{bottom:58.134000px;}
.y9_c02155{bottom:58.140000px;}
.y2_c02155{bottom:75.456000px;}
.y26_c02155{bottom:76.314000px;}
.y8_c02155{bottom:76.320000px;}
.y7_c02155{bottom:94.320000px;}
.y25_c02155{bottom:94.359000px;}
.y6_c02155{bottom:112.500000px;}
.y24_c02155{bottom:112.539000px;}
.y23_c02155{bottom:130.719000px;}
.yd_c02155{bottom:136.836000px;}
.y22_c02155{bottom:148.719000px;}
.y21_c02155{bottom:166.899000px;}
.y20_c02155{bottom:185.079000px;}
.y1f_c02155{bottom:203.079000px;}
.y1e_c02155{bottom:221.259000px;}
.y1d_c02155{bottom:239.259000px;}
.y1c_c02155{bottom:257.439000px;}
.y1b_c02155{bottom:275.619000px;}
.y1a_c02155{bottom:293.649000px;}
.y19_c02155{bottom:311.829000px;}
.y18_c02155{bottom:329.829000px;}
.y17_c02155{bottom:348.009000px;}
.y16_c02155{bottom:366.189000px;}
.y15_c02155{bottom:384.189000px;}
.y14_c02155{bottom:402.369000px;}
.y13_c02155{bottom:420.549000px;}
.y12_c02155{bottom:438.549000px;}
.y11_c02155{bottom:456.729000px;}
.y10_c02155{bottom:474.729000px;}
.yf_c02155{bottom:492.954000px;}
.ye_c02155{bottom:511.134000px;}
.y5_c02155{bottom:662.910000px;}
.y1_c02155{bottom:851.400000px;}
.h3_c02155{height:22.680000px;}
.h2_c02155{height:48.871406px;}
.h1_c02155{height:58.651172px;}
.h5_c02155{height:62.184375px;}
.h4_c02155{height:126.720000px;}
.h6_c02155{height:525.345000px;}
.h0_c02155{height:918.000000px;}
.w1_c02155{width:66.780000px;}
.w3_c02155{width:166.890000px;}
.w4_c02155{width:307.470000px;}
.w2_c02155{width:509.655000px;}
.w0_c02155{width:1188.000000px;}
.x0_c02155{left:0.000000px;}
.x5_c02155{left:7.740000px;}
.x3_c02155{left:16.560000px;}
.x9_c02155{left:58.320000px;}
.x6_c02155{left:98.640000px;}
.x1_c02155{left:106.200000px;}
.x8_c02155{left:153.765000px;}
.x4_c02155{left:266.250000px;}
.x7_c02155{left:776.625000px;}
.x2_c02155{left:1101.570000px;}
@media print{
.v0_c02155{vertical-align:0.000000pt;}
.ls0_c02155{letter-spacing:0.000000pt;}
.ws0_c02155{word-spacing:-14.080000pt;}
.ws1_c02155{word-spacing:0.000000pt;}
._2_c02155{margin-left:-2.150287pt;}
._1_c02155{margin-left:-1.013873pt;}
._0_c02155{width:1334.186667pt;}
.fs0_c02155{font-size:53.120000pt;}
.fs2_c02155{font-size:56.320000pt;}
.fs1_c02155{font-size:58.880000pt;}
.y0_c02155{bottom:0.000000pt;}
.yc_c02155{bottom:3.360000pt;}
.y4_c02155{bottom:4.320000pt;}
.y29_c02155{bottom:19.514667pt;}
.yb_c02155{bottom:19.520000pt;}
.y28_c02155{bottom:35.674667pt;}
.ya_c02155{bottom:35.680000pt;}
.y3_c02155{bottom:46.592000pt;}
.y27_c02155{bottom:51.674667pt;}
.y9_c02155{bottom:51.680000pt;}
.y2_c02155{bottom:67.072000pt;}
.y26_c02155{bottom:67.834667pt;}
.y8_c02155{bottom:67.840000pt;}
.y7_c02155{bottom:83.840000pt;}
.y25_c02155{bottom:83.874667pt;}
.y6_c02155{bottom:100.000000pt;}
.y24_c02155{bottom:100.034667pt;}
.y23_c02155{bottom:116.194667pt;}
.yd_c02155{bottom:121.632000pt;}
.y22_c02155{bottom:132.194667pt;}
.y21_c02155{bottom:148.354667pt;}
.y20_c02155{bottom:164.514667pt;}
.y1f_c02155{bottom:180.514667pt;}
.y1e_c02155{bottom:196.674667pt;}
.y1d_c02155{bottom:212.674667pt;}
.y1c_c02155{bottom:228.834667pt;}
.y1b_c02155{bottom:244.994667pt;}
.y1a_c02155{bottom:261.021333pt;}
.y19_c02155{bottom:277.181333pt;}
.y18_c02155{bottom:293.181333pt;}
.y17_c02155{bottom:309.341333pt;}
.y16_c02155{bottom:325.501333pt;}
.y15_c02155{bottom:341.501333pt;}
.y14_c02155{bottom:357.661333pt;}
.y13_c02155{bottom:373.821333pt;}
.y12_c02155{bottom:389.821333pt;}
.y11_c02155{bottom:405.981333pt;}
.y10_c02155{bottom:421.981333pt;}
.yf_c02155{bottom:438.181333pt;}
.ye_c02155{bottom:454.341333pt;}
.y5_c02155{bottom:589.253333pt;}
.y1_c02155{bottom:756.800000pt;}
.h3_c02155{height:20.160000pt;}
.h2_c02155{height:43.441250pt;}
.h1_c02155{height:52.134375pt;}
.h5_c02155{height:55.275000pt;}
.h4_c02155{height:112.640000pt;}
.h6_c02155{height:466.973333pt;}
.h0_c02155{height:816.000000pt;}
.w1_c02155{width:59.360000pt;}
.w3_c02155{width:148.346667pt;}
.w4_c02155{width:273.306667pt;}
.w2_c02155{width:453.026667pt;}
.w0_c02155{width:1056.000000pt;}
.x0_c02155{left:0.000000pt;}
.x5_c02155{left:6.880000pt;}
.x3_c02155{left:14.720000pt;}
.x9_c02155{left:51.840000pt;}
.x6_c02155{left:87.680000pt;}
.x1_c02155{left:94.400000pt;}
.x8_c02155{left:136.680000pt;}
.x4_c02155{left:236.666667pt;}
.x7_c02155{left:690.333333pt;}
.x2_c02155{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02156 {
    display:none;
  }
  .loading-indicator_c02156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02156 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02156 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02156" -> "#page-container .classname_c02156")
 */
.pf_c02156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02156 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02156 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02156 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02156 {overflow:visible;}
  }
}
.c_c02156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02156 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02156:after { /* webkit #35443 */
  content: '';
}
.t_c02156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02156 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02156 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02156 { /* info for Javascript */
  display:none;
}
.l_c02156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02156:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02156 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02156.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02156;src:url('chunks/assets/font_f8ecd2e060afd343e0867772.woff2')format("woff");}.ff1_c02156{font-family:ff1_c02156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02156;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff2_c02156{font-family:ff2_c02156;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02156{vertical-align:0.000000px;}
.ls0_c02156{letter-spacing:0.000000px;}
.sc__c02156{text-shadow:none;}
.sc0_c02156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02156{-webkit-text-stroke:0px transparent;}
.sc0_c02156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02156{word-spacing:0.000000px;}
._2_c02156{margin-left:-2.205020px;}
._1_c02156{margin-left:-1.076993px;}
._3_c02156{width:1.001434px;}
._0_c02156{width:1500.960000px;}
.fc1_c02156{color:rgb(192,80,77);}
.fc0_c02156{color:rgb(0,0,0);}
.fs0_c02156{font-size:59.760000px;}
.fs2_c02156{font-size:63.360000px;}
.fs1_c02156{font-size:66.240000px;}
.y0_c02156{bottom:0.000000px;}
.y29_c02156{bottom:3.960000px;}
.y4_c02156{bottom:4.860000px;}
.y28_c02156{bottom:21.954000px;}
.y27_c02156{bottom:40.134000px;}
.y3_c02156{bottom:52.416000px;}
.y26_c02156{bottom:58.134000px;}
.y2_c02156{bottom:75.456000px;}
.y25_c02156{bottom:76.314000px;}
.y24_c02156{bottom:94.539000px;}
.y23_c02156{bottom:112.539000px;}
.y22_c02156{bottom:130.719000px;}
.y5_c02156{bottom:137.556000px;}
.y21_c02156{bottom:148.719000px;}
.y20_c02156{bottom:166.899000px;}
.y1f_c02156{bottom:185.079000px;}
.y1e_c02156{bottom:203.079000px;}
.y1d_c02156{bottom:221.259000px;}
.y1c_c02156{bottom:239.439000px;}
.y1b_c02156{bottom:257.439000px;}
.y1a_c02156{bottom:275.619000px;}
.y19_c02156{bottom:293.649000px;}
.y18_c02156{bottom:311.829000px;}
.y17_c02156{bottom:330.009000px;}
.y16_c02156{bottom:348.009000px;}
.y15_c02156{bottom:366.189000px;}
.y14_c02156{bottom:384.189000px;}
.y13_c02156{bottom:402.369000px;}
.y12_c02156{bottom:420.549000px;}
.y11_c02156{bottom:438.549000px;}
.y10_c02156{bottom:456.729000px;}
.yf_c02156{bottom:474.909000px;}
.ye_c02156{bottom:492.954000px;}
.yd_c02156{bottom:511.134000px;}
.yc_c02156{bottom:529.134000px;}
.yb_c02156{bottom:547.314000px;}
.ya_c02156{bottom:565.494000px;}
.y9_c02156{bottom:583.494000px;}
.y8_c02156{bottom:601.674000px;}
.y7_c02156{bottom:619.674000px;}
.y6_c02156{bottom:637.854000px;}
.y1_c02156{bottom:851.400000px;}
.h3_c02156{height:22.680000px;}
.h2_c02156{height:48.871406px;}
.h1_c02156{height:58.651172px;}
.h5_c02156{height:62.184375px;}
.h4_c02156{height:652.065000px;}
.h0_c02156{height:918.000000px;}
.w1_c02156{width:66.780000px;}
.w2_c02156{width:509.655000px;}
.w0_c02156{width:1188.000000px;}
.x0_c02156{left:0.000000px;}
.x5_c02156{left:7.740000px;}
.x3_c02156{left:16.560000px;}
.x1_c02156{left:106.200000px;}
.x4_c02156{left:266.250000px;}
.x2_c02156{left:1101.570000px;}
@media print{
.v0_c02156{vertical-align:0.000000pt;}
.ls0_c02156{letter-spacing:0.000000pt;}
.ws0_c02156{word-spacing:0.000000pt;}
._2_c02156{margin-left:-1.960018pt;}
._1_c02156{margin-left:-0.957327pt;}
._3_c02156{width:0.890163pt;}
._0_c02156{width:1334.186667pt;}
.fs0_c02156{font-size:53.120000pt;}
.fs2_c02156{font-size:56.320000pt;}
.fs1_c02156{font-size:58.880000pt;}
.y0_c02156{bottom:0.000000pt;}
.y29_c02156{bottom:3.520000pt;}
.y4_c02156{bottom:4.320000pt;}
.y28_c02156{bottom:19.514667pt;}
.y27_c02156{bottom:35.674667pt;}
.y3_c02156{bottom:46.592000pt;}
.y26_c02156{bottom:51.674667pt;}
.y2_c02156{bottom:67.072000pt;}
.y25_c02156{bottom:67.834667pt;}
.y24_c02156{bottom:84.034667pt;}
.y23_c02156{bottom:100.034667pt;}
.y22_c02156{bottom:116.194667pt;}
.y5_c02156{bottom:122.272000pt;}
.y21_c02156{bottom:132.194667pt;}
.y20_c02156{bottom:148.354667pt;}
.y1f_c02156{bottom:164.514667pt;}
.y1e_c02156{bottom:180.514667pt;}
.y1d_c02156{bottom:196.674667pt;}
.y1c_c02156{bottom:212.834667pt;}
.y1b_c02156{bottom:228.834667pt;}
.y1a_c02156{bottom:244.994667pt;}
.y19_c02156{bottom:261.021333pt;}
.y18_c02156{bottom:277.181333pt;}
.y17_c02156{bottom:293.341333pt;}
.y16_c02156{bottom:309.341333pt;}
.y15_c02156{bottom:325.501333pt;}
.y14_c02156{bottom:341.501333pt;}
.y13_c02156{bottom:357.661333pt;}
.y12_c02156{bottom:373.821333pt;}
.y11_c02156{bottom:389.821333pt;}
.y10_c02156{bottom:405.981333pt;}
.yf_c02156{bottom:422.141333pt;}
.ye_c02156{bottom:438.181333pt;}
.yd_c02156{bottom:454.341333pt;}
.yc_c02156{bottom:470.341333pt;}
.yb_c02156{bottom:486.501333pt;}
.ya_c02156{bottom:502.661333pt;}
.y9_c02156{bottom:518.661333pt;}
.y8_c02156{bottom:534.821333pt;}
.y7_c02156{bottom:550.821333pt;}
.y6_c02156{bottom:566.981333pt;}
.y1_c02156{bottom:756.800000pt;}
.h3_c02156{height:20.160000pt;}
.h2_c02156{height:43.441250pt;}
.h1_c02156{height:52.134375pt;}
.h5_c02156{height:55.275000pt;}
.h4_c02156{height:579.613333pt;}
.h0_c02156{height:816.000000pt;}
.w1_c02156{width:59.360000pt;}
.w2_c02156{width:453.026667pt;}
.w0_c02156{width:1056.000000pt;}
.x0_c02156{left:0.000000pt;}
.x5_c02156{left:6.880000pt;}
.x3_c02156{left:14.720000pt;}
.x1_c02156{left:94.400000pt;}
.x4_c02156{left:236.666667pt;}
.x2_c02156{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02157 {
    display:none;
  }
  .loading-indicator_c02157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02157 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02157 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02157" -> "#page-container .classname_c02157")
 */
.pf_c02157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02157 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02157 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02157 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02157 {overflow:visible;}
  }
}
.c_c02157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02157 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02157:after { /* webkit #35443 */
  content: '';
}
.t_c02157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02157 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02157 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02157 { /* info for Javascript */
  display:none;
}
.l_c02157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02157:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02157 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02157.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02157;src:url('chunks/assets/font_5613047fcc170617fe583bc8.woff2')format("woff");}.ff1_c02157{font-family:ff1_c02157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02157;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff2_c02157{font-family:ff2_c02157;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02157{vertical-align:0.000000px;}
.ls1_c02157{letter-spacing:-0.166800px;}
.ls0_c02157{letter-spacing:0.000000px;}
.sc__c02157{text-shadow:none;}
.sc0_c02157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02157{-webkit-text-stroke:0px transparent;}
.sc0_c02157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02157{word-spacing:-15.840000px;}
.ws0_c02157{word-spacing:-15.673200px;}
.ws2_c02157{word-spacing:0.000000px;}
._1_c02157{margin-left:-1.445887px;}
._2_c02157{width:1.008507px;}
._0_c02157{width:1500.960000px;}
.fc2_c02157{color:rgb(0,0,255);}
.fc1_c02157{color:rgb(192,80,77);}
.fc0_c02157{color:rgb(0,0,0);}
.fs0_c02157{font-size:59.760000px;}
.fs2_c02157{font-size:63.360000px;}
.fs1_c02157{font-size:66.240000px;}
.y0_c02157{bottom:0.000000px;}
.yc_c02157{bottom:3.780000px;}
.y4_c02157{bottom:4.860000px;}
.y29_c02157{bottom:21.954000px;}
.yb_c02157{bottom:21.960000px;}
.y28_c02157{bottom:40.134000px;}
.ya_c02157{bottom:40.140000px;}
.y3_c02157{bottom:52.416000px;}
.y27_c02157{bottom:58.134000px;}
.y9_c02157{bottom:58.140000px;}
.y2_c02157{bottom:75.456000px;}
.y26_c02157{bottom:76.314000px;}
.y8_c02157{bottom:76.320000px;}
.y7_c02157{bottom:94.320000px;}
.y25_c02157{bottom:94.359000px;}
.y6_c02157{bottom:112.500000px;}
.y24_c02157{bottom:112.539000px;}
.y23_c02157{bottom:130.719000px;}
.yd_c02157{bottom:136.836000px;}
.y22_c02157{bottom:148.719000px;}
.y21_c02157{bottom:166.899000px;}
.y20_c02157{bottom:185.079000px;}
.y1f_c02157{bottom:203.079000px;}
.y1e_c02157{bottom:221.259000px;}
.y1d_c02157{bottom:239.259000px;}
.y1c_c02157{bottom:257.439000px;}
.y1b_c02157{bottom:275.619000px;}
.y1a_c02157{bottom:293.649000px;}
.y19_c02157{bottom:311.829000px;}
.y18_c02157{bottom:329.829000px;}
.y17_c02157{bottom:348.009000px;}
.y16_c02157{bottom:366.189000px;}
.y15_c02157{bottom:384.189000px;}
.y14_c02157{bottom:402.369000px;}
.y13_c02157{bottom:420.549000px;}
.y12_c02157{bottom:438.549000px;}
.y11_c02157{bottom:456.729000px;}
.y10_c02157{bottom:474.729000px;}
.yf_c02157{bottom:492.954000px;}
.ye_c02157{bottom:511.134000px;}
.y5_c02157{bottom:662.910000px;}
.y1_c02157{bottom:851.400000px;}
.h3_c02157{height:22.680000px;}
.h2_c02157{height:48.871406px;}
.h1_c02157{height:58.651172px;}
.h5_c02157{height:62.184375px;}
.h4_c02157{height:126.720000px;}
.h6_c02157{height:525.345000px;}
.h0_c02157{height:918.000000px;}
.w1_c02157{width:66.780000px;}
.w3_c02157{width:166.890000px;}
.w4_c02157{width:307.470000px;}
.w2_c02157{width:509.655000px;}
.w0_c02157{width:1188.000000px;}
.x0_c02157{left:0.000000px;}
.x5_c02157{left:7.740000px;}
.x3_c02157{left:16.560000px;}
.x9_c02157{left:48.420000px;}
.x6_c02157{left:98.640000px;}
.x1_c02157{left:106.200000px;}
.x8_c02157{left:153.765000px;}
.x4_c02157{left:266.250000px;}
.x7_c02157{left:776.625000px;}
.x2_c02157{left:1101.570000px;}
@media print{
.v0_c02157{vertical-align:0.000000pt;}
.ls1_c02157{letter-spacing:-0.148267pt;}
.ls0_c02157{letter-spacing:0.000000pt;}
.ws1_c02157{word-spacing:-14.080000pt;}
.ws0_c02157{word-spacing:-13.931733pt;}
.ws2_c02157{word-spacing:0.000000pt;}
._1_c02157{margin-left:-1.285233pt;}
._2_c02157{width:0.896451pt;}
._0_c02157{width:1334.186667pt;}
.fs0_c02157{font-size:53.120000pt;}
.fs2_c02157{font-size:56.320000pt;}
.fs1_c02157{font-size:58.880000pt;}
.y0_c02157{bottom:0.000000pt;}
.yc_c02157{bottom:3.360000pt;}
.y4_c02157{bottom:4.320000pt;}
.y29_c02157{bottom:19.514667pt;}
.yb_c02157{bottom:19.520000pt;}
.y28_c02157{bottom:35.674667pt;}
.ya_c02157{bottom:35.680000pt;}
.y3_c02157{bottom:46.592000pt;}
.y27_c02157{bottom:51.674667pt;}
.y9_c02157{bottom:51.680000pt;}
.y2_c02157{bottom:67.072000pt;}
.y26_c02157{bottom:67.834667pt;}
.y8_c02157{bottom:67.840000pt;}
.y7_c02157{bottom:83.840000pt;}
.y25_c02157{bottom:83.874667pt;}
.y6_c02157{bottom:100.000000pt;}
.y24_c02157{bottom:100.034667pt;}
.y23_c02157{bottom:116.194667pt;}
.yd_c02157{bottom:121.632000pt;}
.y22_c02157{bottom:132.194667pt;}
.y21_c02157{bottom:148.354667pt;}
.y20_c02157{bottom:164.514667pt;}
.y1f_c02157{bottom:180.514667pt;}
.y1e_c02157{bottom:196.674667pt;}
.y1d_c02157{bottom:212.674667pt;}
.y1c_c02157{bottom:228.834667pt;}
.y1b_c02157{bottom:244.994667pt;}
.y1a_c02157{bottom:261.021333pt;}
.y19_c02157{bottom:277.181333pt;}
.y18_c02157{bottom:293.181333pt;}
.y17_c02157{bottom:309.341333pt;}
.y16_c02157{bottom:325.501333pt;}
.y15_c02157{bottom:341.501333pt;}
.y14_c02157{bottom:357.661333pt;}
.y13_c02157{bottom:373.821333pt;}
.y12_c02157{bottom:389.821333pt;}
.y11_c02157{bottom:405.981333pt;}
.y10_c02157{bottom:421.981333pt;}
.yf_c02157{bottom:438.181333pt;}
.ye_c02157{bottom:454.341333pt;}
.y5_c02157{bottom:589.253333pt;}
.y1_c02157{bottom:756.800000pt;}
.h3_c02157{height:20.160000pt;}
.h2_c02157{height:43.441250pt;}
.h1_c02157{height:52.134375pt;}
.h5_c02157{height:55.275000pt;}
.h4_c02157{height:112.640000pt;}
.h6_c02157{height:466.973333pt;}
.h0_c02157{height:816.000000pt;}
.w1_c02157{width:59.360000pt;}
.w3_c02157{width:148.346667pt;}
.w4_c02157{width:273.306667pt;}
.w2_c02157{width:453.026667pt;}
.w0_c02157{width:1056.000000pt;}
.x0_c02157{left:0.000000pt;}
.x5_c02157{left:6.880000pt;}
.x3_c02157{left:14.720000pt;}
.x9_c02157{left:43.040000pt;}
.x6_c02157{left:87.680000pt;}
.x1_c02157{left:94.400000pt;}
.x8_c02157{left:136.680000pt;}
.x4_c02157{left:236.666667pt;}
.x7_c02157{left:690.333333pt;}
.x2_c02157{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02158 {
    display:none;
  }
  .loading-indicator_c02158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02158 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02158 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02158" -> "#page-container .classname_c02158")
 */
.pf_c02158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02158 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02158 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02158 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02158 {overflow:visible;}
  }
}
.c_c02158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02158 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02158:after { /* webkit #35443 */
  content: '';
}
.t_c02158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02158 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02158 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02158 { /* info for Javascript */
  display:none;
}
.l_c02158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02158:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02158 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02158.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02158;src:url('chunks/assets/font_980397ecf64e6c9387badd51.woff2')format("woff");}.ff1_c02158{font-family:ff1_c02158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02158;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff2_c02158{font-family:ff2_c02158;line-height:0.863770;font-style:normal;font-weight: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_c02158;src:url('chunks/assets/font_60d378516421cd225b95351b.woff2')format("woff");}.ff3_c02158{font-family:ff3_c02158;line-height:1.311035;font-style:normal;font-weight: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_c02158;src:url('chunks/assets/font_751a536afa1c04de76bd406d.woff2')format("woff");}.ff4_c02158{font-family:ff4_c02158;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02158{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02158{vertical-align:0.000000px;}
.ls1_c02158{letter-spacing:-0.166800px;}
.ls0_c02158{letter-spacing:0.000000px;}
.sc__c02158{text-shadow:none;}
.sc0_c02158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02158{-webkit-text-stroke:0px transparent;}
.sc0_c02158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02158{word-spacing:-15.840000px;}
.ws1_c02158{word-spacing:0.000000px;}
._2_c02158{margin-left:-2.355967px;}
._1_c02158{margin-left:-1.140607px;}
._3_c02158{width:1.142427px;}
._0_c02158{width:1500.960000px;}
.fc2_c02158{color:rgb(0,0,255);}
.fc1_c02158{color:rgb(192,80,77);}
.fc0_c02158{color:rgb(0,0,0);}
.fs0_c02158{font-size:59.760000px;}
.fs2_c02158{font-size:63.360000px;}
.fs1_c02158{font-size:66.240000px;}
.y0_c02158{bottom:0.000000px;}
.y11_c02158{bottom:3.420000px;}
.y1d_c02158{bottom:3.780000px;}
.y4_c02158{bottom:4.860000px;}
.y20_c02158{bottom:21.954000px;}
.y10_c02158{bottom:21.960000px;}
.y1f_c02158{bottom:39.954000px;}
.y1c_c02158{bottom:40.005000px;}
.yf_c02158{bottom:40.140000px;}
.y3_c02158{bottom:52.416000px;}
.ye_c02158{bottom:58.185000px;}
.y2_c02158{bottom:75.456000px;}
.yd_c02158{bottom:76.365000px;}
.yc_c02158{bottom:94.365000px;}
.yb_c02158{bottom:112.545000px;}
.ya_c02158{bottom:130.725000px;}
.y1e_c02158{bottom:136.116000px;}
.y9_c02158{bottom:148.725000px;}
.y8_c02158{bottom:166.905000px;}
.y7_c02158{bottom:184.905000px;}
.y12_c02158{bottom:191.190000px;}
.y6_c02158{bottom:203.085000px;}
.y1b_c02158{bottom:221.265000px;}
.y1a_c02158{bottom:239.295000px;}
.y19_c02158{bottom:257.475000px;}
.y18_c02158{bottom:275.475000px;}
.y17_c02158{bottom:293.655000px;}
.y16_c02158{bottom:311.835000px;}
.y15_c02158{bottom:329.835000px;}
.y14_c02158{bottom:348.015000px;}
.y13_c02158{bottom:366.195000px;}
.y5_c02158{bottom:572.325000px;}
.y1_c02158{bottom:851.400000px;}
.h3_c02158{height:22.680000px;}
.h2_c02158{height:48.871406px;}
.h9_c02158{height:54.180000px;}
.h8_c02158{height:56.801250px;}
.h1_c02158{height:58.651172px;}
.h5_c02158{height:62.184375px;}
.h6_c02158{height:63.855000px;}
.h4_c02158{height:217.290000px;}
.h7_c02158{height:380.415000px;}
.h0_c02158{height:918.000000px;}
.w1_c02158{width:66.780000px;}
.w3_c02158{width:166.890000px;}
.w4_c02158{width:307.470000px;}
.w2_c02158{width:509.655000px;}
.w0_c02158{width:1188.000000px;}
.x0_c02158{left:0.000000px;}
.x5_c02158{left:7.740000px;}
.x3_c02158{left:16.560000px;}
.x9_c02158{left:61.380000px;}
.xa_c02158{left:75.420000px;}
.x6_c02158{left:98.640000px;}
.x1_c02158{left:106.200000px;}
.x8_c02158{left:153.765000px;}
.x4_c02158{left:266.250000px;}
.x7_c02158{left:776.625000px;}
.x2_c02158{left:1101.570000px;}
@media print{
.v0_c02158{vertical-align:0.000000pt;}
.ls1_c02158{letter-spacing:-0.148267pt;}
.ls0_c02158{letter-spacing:0.000000pt;}
.ws0_c02158{word-spacing:-14.080000pt;}
.ws1_c02158{word-spacing:0.000000pt;}
._2_c02158{margin-left:-2.094193pt;}
._1_c02158{margin-left:-1.013873pt;}
._3_c02158{width:1.015491pt;}
._0_c02158{width:1334.186667pt;}
.fs0_c02158{font-size:53.120000pt;}
.fs2_c02158{font-size:56.320000pt;}
.fs1_c02158{font-size:58.880000pt;}
.y0_c02158{bottom:0.000000pt;}
.y11_c02158{bottom:3.040000pt;}
.y1d_c02158{bottom:3.360000pt;}
.y4_c02158{bottom:4.320000pt;}
.y20_c02158{bottom:19.514667pt;}
.y10_c02158{bottom:19.520000pt;}
.y1f_c02158{bottom:35.514667pt;}
.y1c_c02158{bottom:35.560000pt;}
.yf_c02158{bottom:35.680000pt;}
.y3_c02158{bottom:46.592000pt;}
.ye_c02158{bottom:51.720000pt;}
.y2_c02158{bottom:67.072000pt;}
.yd_c02158{bottom:67.880000pt;}
.yc_c02158{bottom:83.880000pt;}
.yb_c02158{bottom:100.040000pt;}
.ya_c02158{bottom:116.200000pt;}
.y1e_c02158{bottom:120.992000pt;}
.y9_c02158{bottom:132.200000pt;}
.y8_c02158{bottom:148.360000pt;}
.y7_c02158{bottom:164.360000pt;}
.y12_c02158{bottom:169.946667pt;}
.y6_c02158{bottom:180.520000pt;}
.y1b_c02158{bottom:196.680000pt;}
.y1a_c02158{bottom:212.706667pt;}
.y19_c02158{bottom:228.866667pt;}
.y18_c02158{bottom:244.866667pt;}
.y17_c02158{bottom:261.026667pt;}
.y16_c02158{bottom:277.186667pt;}
.y15_c02158{bottom:293.186667pt;}
.y14_c02158{bottom:309.346667pt;}
.y13_c02158{bottom:325.506667pt;}
.y5_c02158{bottom:508.733333pt;}
.y1_c02158{bottom:756.800000pt;}
.h3_c02158{height:20.160000pt;}
.h2_c02158{height:43.441250pt;}
.h9_c02158{height:48.160000pt;}
.h8_c02158{height:50.490000pt;}
.h1_c02158{height:52.134375pt;}
.h5_c02158{height:55.275000pt;}
.h6_c02158{height:56.760000pt;}
.h4_c02158{height:193.146667pt;}
.h7_c02158{height:338.146667pt;}
.h0_c02158{height:816.000000pt;}
.w1_c02158{width:59.360000pt;}
.w3_c02158{width:148.346667pt;}
.w4_c02158{width:273.306667pt;}
.w2_c02158{width:453.026667pt;}
.w0_c02158{width:1056.000000pt;}
.x0_c02158{left:0.000000pt;}
.x5_c02158{left:6.880000pt;}
.x3_c02158{left:14.720000pt;}
.x9_c02158{left:54.560000pt;}
.xa_c02158{left:67.040000pt;}
.x6_c02158{left:87.680000pt;}
.x1_c02158{left:94.400000pt;}
.x8_c02158{left:136.680000pt;}
.x4_c02158{left:236.666667pt;}
.x7_c02158{left:690.333333pt;}
.x2_c02158{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02159 {
    display:none;
  }
  .loading-indicator_c02159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02159 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02159 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02159" -> "#page-container .classname_c02159")
 */
.pf_c02159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02159 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02159 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02159 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02159 {overflow:visible;}
  }
}
.c_c02159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02159 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02159:after { /* webkit #35443 */
  content: '';
}
.t_c02159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02159 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02159 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02159 { /* info for Javascript */
  display:none;
}
.l_c02159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02159:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02159 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02159.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02159;src:url('chunks/assets/font_771c0e261e2c34a77e41585d.woff2')format("woff");}.ff1_c02159{font-family:ff1_c02159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02159;src:url('chunks/assets/font_a17a95125dabf4b367b0345e.woff2')format("woff");}.ff2_c02159{font-family:ff2_c02159;line-height:0.863770;font-style:normal;font-weight: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_c02159;src:url('chunks/assets/font_1a3b11ba44cef492c9d05b17.woff2')format("woff");}.ff3_c02159{font-family:ff3_c02159;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02159{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02159{vertical-align:0.000000px;}
.ls1_c02159{letter-spacing:-0.051600px;}
.ls0_c02159{letter-spacing:0.000000px;}
.sc__c02159{text-shadow:none;}
.sc0_c02159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02159{-webkit-text-stroke:0px transparent;}
.sc0_c02159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02159{word-spacing:-63.360000px;}
.ws1_c02159{word-spacing:-63.308400px;}
.ws2_c02159{word-spacing:-15.840000px;}
.ws3_c02159{word-spacing:0.000000px;}
._1_c02159{margin-left:-1.647613px;}
._2_c02159{width:1.014647px;}
._0_c02159{width:1500.960000px;}
.fc2_c02159{color:rgb(0,0,255);}
.fc1_c02159{color:rgb(192,80,77);}
.fc0_c02159{color:rgb(0,0,0);}
.fs0_c02159{font-size:59.760000px;}
.fs2_c02159{font-size:63.360000px;}
.fs1_c02159{font-size:66.240000px;}
.y0_c02159{bottom:0.000000px;}
.y2a_c02159{bottom:3.780000px;}
.y1c_c02159{bottom:3.960000px;}
.y4_c02159{bottom:4.860000px;}
.y29_c02159{bottom:21.954000px;}
.y1b_c02159{bottom:21.960000px;}
.y28_c02159{bottom:40.134000px;}
.y1a_c02159{bottom:40.140000px;}
.y3_c02159{bottom:52.416000px;}
.y27_c02159{bottom:58.134000px;}
.y19_c02159{bottom:58.170000px;}
.y2_c02159{bottom:75.456000px;}
.y26_c02159{bottom:76.314000px;}
.y18_c02159{bottom:76.350000px;}
.y25_c02159{bottom:94.359000px;}
.y17_c02159{bottom:94.530000px;}
.y16_c02159{bottom:112.530000px;}
.y24_c02159{bottom:112.539000px;}
.y15_c02159{bottom:130.710000px;}
.y23_c02159{bottom:130.719000px;}
.y1d_c02159{bottom:136.836000px;}
.y14_c02159{bottom:148.710000px;}
.y22_c02159{bottom:148.719000px;}
.y13_c02159{bottom:166.890000px;}
.y21_c02159{bottom:166.899000px;}
.y12_c02159{bottom:185.070000px;}
.y20_c02159{bottom:185.079000px;}
.y11_c02159{bottom:203.070000px;}
.y1f_c02159{bottom:203.079000px;}
.y10_c02159{bottom:221.250000px;}
.y1e_c02159{bottom:221.259000px;}
.yf_c02159{bottom:239.430000px;}
.ye_c02159{bottom:257.475000px;}
.yd_c02159{bottom:275.655000px;}
.yc_c02159{bottom:293.655000px;}
.yb_c02159{bottom:311.835000px;}
.ya_c02159{bottom:330.015000px;}
.y9_c02159{bottom:348.015000px;}
.y8_c02159{bottom:366.195000px;}
.y5_c02159{bottom:373.035000px;}
.y7_c02159{bottom:384.195000px;}
.y6_c02159{bottom:402.375000px;}
.y1_c02159{bottom:851.400000px;}
.h3_c02159{height:22.680000px;}
.h2_c02159{height:48.871406px;}
.h1_c02159{height:58.651172px;}
.h5_c02159{height:62.184375px;}
.h6_c02159{height:235.470000px;}
.h4_c02159{height:416.595000px;}
.h0_c02159{height:918.000000px;}
.w1_c02159{width:66.780000px;}
.w3_c02159{width:166.890000px;}
.w4_c02159{width:307.470000px;}
.w2_c02159{width:509.655000px;}
.w0_c02159{width:1188.000000px;}
.x0_c02159{left:0.000000px;}
.x5_c02159{left:7.740000px;}
.x3_c02159{left:16.560000px;}
.x9_c02159{left:58.860000px;}
.x6_c02159{left:98.640000px;}
.x1_c02159{left:106.200000px;}
.x8_c02159{left:153.765000px;}
.x4_c02159{left:266.250000px;}
.x7_c02159{left:776.625000px;}
.x2_c02159{left:1101.570000px;}
@media print{
.v0_c02159{vertical-align:0.000000pt;}
.ls1_c02159{letter-spacing:-0.045867pt;}
.ls0_c02159{letter-spacing:0.000000pt;}
.ws0_c02159{word-spacing:-56.320000pt;}
.ws1_c02159{word-spacing:-56.274133pt;}
.ws2_c02159{word-spacing:-14.080000pt;}
.ws3_c02159{word-spacing:0.000000pt;}
._1_c02159{margin-left:-1.464545pt;}
._2_c02159{width:0.901908pt;}
._0_c02159{width:1334.186667pt;}
.fs0_c02159{font-size:53.120000pt;}
.fs2_c02159{font-size:56.320000pt;}
.fs1_c02159{font-size:58.880000pt;}
.y0_c02159{bottom:0.000000pt;}
.y2a_c02159{bottom:3.360000pt;}
.y1c_c02159{bottom:3.520000pt;}
.y4_c02159{bottom:4.320000pt;}
.y29_c02159{bottom:19.514667pt;}
.y1b_c02159{bottom:19.520000pt;}
.y28_c02159{bottom:35.674667pt;}
.y1a_c02159{bottom:35.680000pt;}
.y3_c02159{bottom:46.592000pt;}
.y27_c02159{bottom:51.674667pt;}
.y19_c02159{bottom:51.706667pt;}
.y2_c02159{bottom:67.072000pt;}
.y26_c02159{bottom:67.834667pt;}
.y18_c02159{bottom:67.866667pt;}
.y25_c02159{bottom:83.874667pt;}
.y17_c02159{bottom:84.026667pt;}
.y16_c02159{bottom:100.026667pt;}
.y24_c02159{bottom:100.034667pt;}
.y15_c02159{bottom:116.186667pt;}
.y23_c02159{bottom:116.194667pt;}
.y1d_c02159{bottom:121.632000pt;}
.y14_c02159{bottom:132.186667pt;}
.y22_c02159{bottom:132.194667pt;}
.y13_c02159{bottom:148.346667pt;}
.y21_c02159{bottom:148.354667pt;}
.y12_c02159{bottom:164.506667pt;}
.y20_c02159{bottom:164.514667pt;}
.y11_c02159{bottom:180.506667pt;}
.y1f_c02159{bottom:180.514667pt;}
.y10_c02159{bottom:196.666667pt;}
.y1e_c02159{bottom:196.674667pt;}
.yf_c02159{bottom:212.826667pt;}
.ye_c02159{bottom:228.866667pt;}
.yd_c02159{bottom:245.026667pt;}
.yc_c02159{bottom:261.026667pt;}
.yb_c02159{bottom:277.186667pt;}
.ya_c02159{bottom:293.346667pt;}
.y9_c02159{bottom:309.346667pt;}
.y8_c02159{bottom:325.506667pt;}
.y5_c02159{bottom:331.586667pt;}
.y7_c02159{bottom:341.506667pt;}
.y6_c02159{bottom:357.666667pt;}
.y1_c02159{bottom:756.800000pt;}
.h3_c02159{height:20.160000pt;}
.h2_c02159{height:43.441250pt;}
.h1_c02159{height:52.134375pt;}
.h5_c02159{height:55.275000pt;}
.h6_c02159{height:209.306667pt;}
.h4_c02159{height:370.306667pt;}
.h0_c02159{height:816.000000pt;}
.w1_c02159{width:59.360000pt;}
.w3_c02159{width:148.346667pt;}
.w4_c02159{width:273.306667pt;}
.w2_c02159{width:453.026667pt;}
.w0_c02159{width:1056.000000pt;}
.x0_c02159{left:0.000000pt;}
.x5_c02159{left:6.880000pt;}
.x3_c02159{left:14.720000pt;}
.x9_c02159{left:52.320000pt;}
.x6_c02159{left:87.680000pt;}
.x1_c02159{left:94.400000pt;}
.x8_c02159{left:136.680000pt;}
.x4_c02159{left:236.666667pt;}
.x7_c02159{left:690.333333pt;}
.x2_c02159{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02160 {
    display:none;
  }
  .loading-indicator_c02160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02160 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02160 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02160" -> "#page-container .classname_c02160")
 */
.pf_c02160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02160 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02160 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02160 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02160 {overflow:visible;}
  }
}
.c_c02160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02160 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02160:after { /* webkit #35443 */
  content: '';
}
.t_c02160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02160 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02160 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02160 { /* info for Javascript */
  display:none;
}
.l_c02160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02160:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02160 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02160.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02160;src:url('chunks/assets/font_81235d3f3b4fd7e22eb9c529.woff2')format("woff");}.ff1_c02160{font-family:ff1_c02160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02160;src:url('chunks/assets/font_a17a95125dabf4b367b0345e.woff2')format("woff");}.ff2_c02160{font-family:ff2_c02160;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02160{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02160{vertical-align:0.000000px;}
.ls1_c02160{letter-spacing:-0.051600px;}
.ls0_c02160{letter-spacing:0.000000px;}
.sc__c02160{text-shadow:none;}
.sc0_c02160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02160{-webkit-text-stroke:0px transparent;}
.sc0_c02160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02160{word-spacing:-15.840000px;}
.ws0_c02160{word-spacing:-15.788400px;}
.ws2_c02160{word-spacing:0.000000px;}
._2_c02160{margin-left:-2.407807px;}
._1_c02160{margin-left:-1.267200px;}
._3_c02160{width:1.076993px;}
._0_c02160{width:1500.960000px;}
.fc2_c02160{color:rgb(0,0,255);}
.fc1_c02160{color:rgb(192,80,77);}
.fc0_c02160{color:rgb(0,0,0);}
.fs0_c02160{font-size:59.760000px;}
.fs2_c02160{font-size:63.360000px;}
.fs1_c02160{font-size:66.240000px;}
.y0_c02160{bottom:0.000000px;}
.y23_c02160{bottom:3.780000px;}
.y4_c02160{bottom:4.860000px;}
.y29_c02160{bottom:21.954000px;}
.y22_c02160{bottom:21.960000px;}
.y21_c02160{bottom:39.960000px;}
.y28_c02160{bottom:40.134000px;}
.y3_c02160{bottom:52.416000px;}
.y27_c02160{bottom:58.134000px;}
.y20_c02160{bottom:58.140000px;}
.y2_c02160{bottom:75.456000px;}
.y26_c02160{bottom:76.314000px;}
.y1f_c02160{bottom:76.320000px;}
.y1e_c02160{bottom:94.320000px;}
.y25_c02160{bottom:94.359000px;}
.y1d_c02160{bottom:112.500000px;}
.y1c_c02160{bottom:130.680000px;}
.y24_c02160{bottom:136.836000px;}
.y1b_c02160{bottom:148.680000px;}
.y1a_c02160{bottom:166.860000px;}
.y19_c02160{bottom:184.890000px;}
.y18_c02160{bottom:203.070000px;}
.y17_c02160{bottom:221.250000px;}
.y16_c02160{bottom:239.250000px;}
.y5_c02160{bottom:246.315000px;}
.y15_c02160{bottom:257.430000px;}
.y14_c02160{bottom:275.430000px;}
.y13_c02160{bottom:293.610000px;}
.y12_c02160{bottom:311.790000px;}
.y11_c02160{bottom:329.790000px;}
.y10_c02160{bottom:347.970000px;}
.yf_c02160{bottom:366.150000px;}
.ye_c02160{bottom:384.195000px;}
.yd_c02160{bottom:402.375000px;}
.yc_c02160{bottom:420.375000px;}
.yb_c02160{bottom:438.555000px;}
.ya_c02160{bottom:456.735000px;}
.y9_c02160{bottom:474.735000px;}
.y8_c02160{bottom:492.915000px;}
.y7_c02160{bottom:510.915000px;}
.y6_c02160{bottom:529.095000px;}
.y1_c02160{bottom:851.400000px;}
.h3_c02160{height:22.680000px;}
.h2_c02160{height:48.871406px;}
.h1_c02160{height:58.651172px;}
.h5_c02160{height:62.184375px;}
.h6_c02160{height:108.576000px;}
.h4_c02160{height:543.315000px;}
.h0_c02160{height:918.000000px;}
.w1_c02160{width:66.780000px;}
.w3_c02160{width:166.890000px;}
.w4_c02160{width:307.470000px;}
.w2_c02160{width:509.655000px;}
.w0_c02160{width:1188.000000px;}
.x0_c02160{left:0.000000px;}
.x5_c02160{left:7.740000px;}
.x3_c02160{left:16.560000px;}
.x9_c02160{left:81.900000px;}
.x6_c02160{left:98.640000px;}
.x1_c02160{left:106.200000px;}
.x8_c02160{left:153.765000px;}
.x4_c02160{left:266.250000px;}
.x7_c02160{left:776.625000px;}
.x2_c02160{left:1101.570000px;}
@media print{
.v0_c02160{vertical-align:0.000000pt;}
.ls1_c02160{letter-spacing:-0.045867pt;}
.ls0_c02160{letter-spacing:0.000000pt;}
.ws1_c02160{word-spacing:-14.080000pt;}
.ws0_c02160{word-spacing:-14.034133pt;}
.ws2_c02160{word-spacing:0.000000pt;}
._2_c02160{margin-left:-2.140273pt;}
._1_c02160{margin-left:-1.126400pt;}
._3_c02160{width:0.957327pt;}
._0_c02160{width:1334.186667pt;}
.fs0_c02160{font-size:53.120000pt;}
.fs2_c02160{font-size:56.320000pt;}
.fs1_c02160{font-size:58.880000pt;}
.y0_c02160{bottom:0.000000pt;}
.y23_c02160{bottom:3.360000pt;}
.y4_c02160{bottom:4.320000pt;}
.y29_c02160{bottom:19.514667pt;}
.y22_c02160{bottom:19.520000pt;}
.y21_c02160{bottom:35.520000pt;}
.y28_c02160{bottom:35.674667pt;}
.y3_c02160{bottom:46.592000pt;}
.y27_c02160{bottom:51.674667pt;}
.y20_c02160{bottom:51.680000pt;}
.y2_c02160{bottom:67.072000pt;}
.y26_c02160{bottom:67.834667pt;}
.y1f_c02160{bottom:67.840000pt;}
.y1e_c02160{bottom:83.840000pt;}
.y25_c02160{bottom:83.874667pt;}
.y1d_c02160{bottom:100.000000pt;}
.y1c_c02160{bottom:116.160000pt;}
.y24_c02160{bottom:121.632000pt;}
.y1b_c02160{bottom:132.160000pt;}
.y1a_c02160{bottom:148.320000pt;}
.y19_c02160{bottom:164.346667pt;}
.y18_c02160{bottom:180.506667pt;}
.y17_c02160{bottom:196.666667pt;}
.y16_c02160{bottom:212.666667pt;}
.y5_c02160{bottom:218.946667pt;}
.y15_c02160{bottom:228.826667pt;}
.y14_c02160{bottom:244.826667pt;}
.y13_c02160{bottom:260.986667pt;}
.y12_c02160{bottom:277.146667pt;}
.y11_c02160{bottom:293.146667pt;}
.y10_c02160{bottom:309.306667pt;}
.yf_c02160{bottom:325.466667pt;}
.ye_c02160{bottom:341.506667pt;}
.yd_c02160{bottom:357.666667pt;}
.yc_c02160{bottom:373.666667pt;}
.yb_c02160{bottom:389.826667pt;}
.ya_c02160{bottom:405.986667pt;}
.y9_c02160{bottom:421.986667pt;}
.y8_c02160{bottom:438.146667pt;}
.y7_c02160{bottom:454.146667pt;}
.y6_c02160{bottom:470.306667pt;}
.y1_c02160{bottom:756.800000pt;}
.h3_c02160{height:20.160000pt;}
.h2_c02160{height:43.441250pt;}
.h1_c02160{height:52.134375pt;}
.h5_c02160{height:55.275000pt;}
.h6_c02160{height:96.512000pt;}
.h4_c02160{height:482.946667pt;}
.h0_c02160{height:816.000000pt;}
.w1_c02160{width:59.360000pt;}
.w3_c02160{width:148.346667pt;}
.w4_c02160{width:273.306667pt;}
.w2_c02160{width:453.026667pt;}
.w0_c02160{width:1056.000000pt;}
.x0_c02160{left:0.000000pt;}
.x5_c02160{left:6.880000pt;}
.x3_c02160{left:14.720000pt;}
.x9_c02160{left:72.800000pt;}
.x6_c02160{left:87.680000pt;}
.x1_c02160{left:94.400000pt;}
.x8_c02160{left:136.680000pt;}
.x4_c02160{left:236.666667pt;}
.x7_c02160{left:690.333333pt;}
.x2_c02160{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02161 {
    display:none;
  }
  .loading-indicator_c02161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02161 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02161 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02161" -> "#page-container .classname_c02161")
 */
.pf_c02161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02161 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02161 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02161 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02161 {overflow:visible;}
  }
}
.c_c02161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02161 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02161:after { /* webkit #35443 */
  content: '';
}
.t_c02161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02161 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02161 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02161 { /* info for Javascript */
  display:none;
}
.l_c02161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02161:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02161 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02161.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02161;src:url('chunks/assets/font_1e53b2362e53a6ff05fbcc19.woff2')format("woff");}.ff1_c02161{font-family:ff1_c02161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02161;src:url('chunks/assets/font_065c201d143d33d2e56e9788.woff2')format("woff");}.ff2_c02161{font-family:ff2_c02161;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02161{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02161{vertical-align:0.000000px;}
.ls1_c02161{letter-spacing:-0.334200px;}
.ls0_c02161{letter-spacing:0.000000px;}
.sc__c02161{text-shadow:none;}
.sc0_c02161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02161{-webkit-text-stroke:0px transparent;}
.sc0_c02161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02161{word-spacing:-15.840000px;}
.ws1_c02161{word-spacing:0.000000px;}
._2_c02161{margin-left:-2.408440px;}
._1_c02161{margin-left:-1.076993px;}
._3_c02161{width:1.140607px;}
._0_c02161{width:1500.960000px;}
.fc2_c02161{color:rgb(0,0,255);}
.fc1_c02161{color:rgb(192,80,77);}
.fc0_c02161{color:rgb(0,0,0);}
.fs0_c02161{font-size:59.760000px;}
.fs2_c02161{font-size:63.360000px;}
.fs1_c02161{font-size:66.240000px;}
.y0_c02161{bottom:0.000000px;}
.y24_c02161{bottom:3.780000px;}
.ya_c02161{bottom:3.960000px;}
.y4_c02161{bottom:4.860000px;}
.y9_c02161{bottom:21.960000px;}
.y26_c02161{bottom:22.134000px;}
.y15_c02161{bottom:22.140000px;}
.y8_c02161{bottom:40.140000px;}
.y3_c02161{bottom:52.416000px;}
.y7_c02161{bottom:58.140000px;}
.y23_c02161{bottom:58.185000px;}
.y14_c02161{bottom:58.320000px;}
.y2_c02161{bottom:75.456000px;}
.y6_c02161{bottom:76.320000px;}
.y22_c02161{bottom:76.365000px;}
.y13_c02161{bottom:76.500000px;}
.y21_c02161{bottom:94.365000px;}
.y12_c02161{bottom:94.500000px;}
.y20_c02161{bottom:112.545000px;}
.y11_c02161{bottom:112.680000px;}
.y10_c02161{bottom:130.680000px;}
.y1f_c02161{bottom:130.725000px;}
.y25_c02161{bottom:135.216000px;}
.y1e_c02161{bottom:148.725000px;}
.yf_c02161{bottom:148.905000px;}
.y1d_c02161{bottom:166.905000px;}
.ye_c02161{bottom:167.085000px;}
.y16_c02161{bottom:172.290000px;}
.yd_c02161{bottom:185.085000px;}
.y1c_c02161{bottom:203.085000px;}
.yc_c02161{bottom:203.265000px;}
.y1b_c02161{bottom:221.265000px;}
.y1a_c02161{bottom:239.265000px;}
.y19_c02161{bottom:257.475000px;}
.y18_c02161{bottom:275.655000px;}
.y17_c02161{bottom:293.655000px;}
.yb_c02161{bottom:480.885000px;}
.y5_c02161{bottom:699.090000px;}
.y1_c02161{bottom:851.400000px;}
.h3_c02161{height:22.680000px;}
.h8_c02161{height:36.360000px;}
.h2_c02161{height:48.871406px;}
.h1_c02161{height:58.651172px;}
.h5_c02161{height:62.184375px;}
.h4_c02161{height:90.540000px;}
.h6_c02161{height:217.470000px;}
.h7_c02161{height:307.875000px;}
.h0_c02161{height:918.000000px;}
.w1_c02161{width:66.780000px;}
.w3_c02161{width:166.890000px;}
.w4_c02161{width:307.470000px;}
.w2_c02161{width:509.655000px;}
.w0_c02161{width:1188.000000px;}
.x0_c02161{left:0.000000px;}
.x5_c02161{left:7.740000px;}
.x3_c02161{left:16.560000px;}
.xa_c02161{left:25.920000px;}
.x9_c02161{left:36.000000px;}
.x6_c02161{left:98.640000px;}
.x1_c02161{left:106.200000px;}
.x8_c02161{left:153.765000px;}
.x4_c02161{left:266.250000px;}
.x7_c02161{left:776.625000px;}
.x2_c02161{left:1101.570000px;}
@media print{
.v0_c02161{vertical-align:0.000000pt;}
.ls1_c02161{letter-spacing:-0.297067pt;}
.ls0_c02161{letter-spacing:0.000000pt;}
.ws0_c02161{word-spacing:-14.080000pt;}
.ws1_c02161{word-spacing:0.000000pt;}
._2_c02161{margin-left:-2.140836pt;}
._1_c02161{margin-left:-0.957327pt;}
._3_c02161{width:1.013873pt;}
._0_c02161{width:1334.186667pt;}
.fs0_c02161{font-size:53.120000pt;}
.fs2_c02161{font-size:56.320000pt;}
.fs1_c02161{font-size:58.880000pt;}
.y0_c02161{bottom:0.000000pt;}
.y24_c02161{bottom:3.360000pt;}
.ya_c02161{bottom:3.520000pt;}
.y4_c02161{bottom:4.320000pt;}
.y9_c02161{bottom:19.520000pt;}
.y26_c02161{bottom:19.674667pt;}
.y15_c02161{bottom:19.680000pt;}
.y8_c02161{bottom:35.680000pt;}
.y3_c02161{bottom:46.592000pt;}
.y7_c02161{bottom:51.680000pt;}
.y23_c02161{bottom:51.720000pt;}
.y14_c02161{bottom:51.840000pt;}
.y2_c02161{bottom:67.072000pt;}
.y6_c02161{bottom:67.840000pt;}
.y22_c02161{bottom:67.880000pt;}
.y13_c02161{bottom:68.000000pt;}
.y21_c02161{bottom:83.880000pt;}
.y12_c02161{bottom:84.000000pt;}
.y20_c02161{bottom:100.040000pt;}
.y11_c02161{bottom:100.160000pt;}
.y10_c02161{bottom:116.160000pt;}
.y1f_c02161{bottom:116.200000pt;}
.y25_c02161{bottom:120.192000pt;}
.y1e_c02161{bottom:132.200000pt;}
.yf_c02161{bottom:132.360000pt;}
.y1d_c02161{bottom:148.360000pt;}
.ye_c02161{bottom:148.520000pt;}
.y16_c02161{bottom:153.146667pt;}
.yd_c02161{bottom:164.520000pt;}
.y1c_c02161{bottom:180.520000pt;}
.yc_c02161{bottom:180.680000pt;}
.y1b_c02161{bottom:196.680000pt;}
.y1a_c02161{bottom:212.680000pt;}
.y19_c02161{bottom:228.866667pt;}
.y18_c02161{bottom:245.026667pt;}
.y17_c02161{bottom:261.026667pt;}
.yb_c02161{bottom:427.453333pt;}
.y5_c02161{bottom:621.413333pt;}
.y1_c02161{bottom:756.800000pt;}
.h3_c02161{height:20.160000pt;}
.h8_c02161{height:32.320000pt;}
.h2_c02161{height:43.441250pt;}
.h1_c02161{height:52.134375pt;}
.h5_c02161{height:55.275000pt;}
.h4_c02161{height:80.480000pt;}
.h6_c02161{height:193.306667pt;}
.h7_c02161{height:273.666667pt;}
.h0_c02161{height:816.000000pt;}
.w1_c02161{width:59.360000pt;}
.w3_c02161{width:148.346667pt;}
.w4_c02161{width:273.306667pt;}
.w2_c02161{width:453.026667pt;}
.w0_c02161{width:1056.000000pt;}
.x0_c02161{left:0.000000pt;}
.x5_c02161{left:6.880000pt;}
.x3_c02161{left:14.720000pt;}
.xa_c02161{left:23.040000pt;}
.x9_c02161{left:32.000000pt;}
.x6_c02161{left:87.680000pt;}
.x1_c02161{left:94.400000pt;}
.x8_c02161{left:136.680000pt;}
.x4_c02161{left:236.666667pt;}
.x7_c02161{left:690.333333pt;}
.x2_c02161{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02162 {
    display:none;
  }
  .loading-indicator_c02162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02162 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02162 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02162" -> "#page-container .classname_c02162")
 */
.pf_c02162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02162 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02162 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02162 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02162 {overflow:visible;}
  }
}
.c_c02162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02162 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02162:after { /* webkit #35443 */
  content: '';
}
.t_c02162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02162 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02162 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02162 { /* info for Javascript */
  display:none;
}
.l_c02162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02162:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02162 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02162.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02162;src:url('chunks/assets/font_961f82b956d438c2548b8683.woff2')format("woff");}.ff1_c02162{font-family:ff1_c02162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02162;src:url('chunks/assets/font_d2cf9e4b58e1ab89985c0748.woff2')format("woff");}.ff2_c02162{font-family:ff2_c02162;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c02162{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c02162{vertical-align:0.000000px;}
.ls2_c02162{letter-spacing:-0.576000px;}
.ls0_c02162{letter-spacing:0.000000px;}
.ls1_c02162{letter-spacing:0.144000px;}
.sc__c02162{text-shadow:none;}
.sc0_c02162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02162{-webkit-text-stroke:0px transparent;}
.sc0_c02162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02162{word-spacing:-18.000000px;}
.ws0_c02162{word-spacing:-15.840000px;}
.ws2_c02162{word-spacing:0.000000px;}
._1_c02162{margin-left:-2.281213px;}
._2_c02162{margin-left:-1.267200px;}
._5_c02162{width:1.152000px;}
._3_c02162{width:10.920024px;}
._4_c02162{width:12.875736px;}
._7_c02162{width:148.771200px;}
._6_c02162{width:249.312000px;}
._8_c02162{width:329.023200px;}
._0_c02162{width:1500.960000px;}
.fc2_c02162{color:rgb(0,0,255);}
.fc1_c02162{color:rgb(192,80,77);}
.fc0_c02162{color:rgb(0,0,0);}
.fs0_c02162{font-size:59.760000px;}
.fs2_c02162{font-size:63.360000px;}
.fs1_c02162{font-size:66.240000px;}
.fs3_c02162{font-size:72.000000px;}
.y0_c02162{bottom:0.000000px;}
.y6_c02162{bottom:3.960000px;}
.y4_c02162{bottom:4.860000px;}
.y13_c02162{bottom:22.140000px;}
.y12_c02162{bottom:40.140000px;}
.y3_c02162{bottom:52.416000px;}
.y11_c02162{bottom:58.320000px;}
.y2_c02162{bottom:75.456000px;}
.y10_c02162{bottom:76.320000px;}
.yf_c02162{bottom:94.545000px;}
.ye_c02162{bottom:112.725000px;}
.yd_c02162{bottom:130.725000px;}
.yc_c02162{bottom:148.905000px;}
.yb_c02162{bottom:166.905000px;}
.ya_c02162{bottom:185.085000px;}
.y9_c02162{bottom:203.265000px;}
.y8_c02162{bottom:221.265000px;}
.y1a_c02162{bottom:383.655000px;}
.y19_c02162{bottom:414.615000px;}
.y18_c02162{bottom:435.525000px;}
.y17_c02162{bottom:456.225000px;}
.y16_c02162{bottom:476.925000px;}
.y15_c02162{bottom:497.625000px;}
.y14_c02162{bottom:518.325000px;}
.y7_c02162{bottom:535.245000px;}
.y5_c02162{bottom:771.450000px;}
.y1_c02162{bottom:851.400000px;}
.h4_c02162{height:18.180000px;}
.h3_c02162{height:22.680000px;}
.h2_c02162{height:48.871406px;}
.h1_c02162{height:58.651172px;}
.h5_c02162{height:62.184375px;}
.h7_c02162{height:70.664062px;}
.h6_c02162{height:235.470000px;}
.h0_c02162{height:918.000000px;}
.w1_c02162{width:66.780000px;}
.w4_c02162{width:166.890000px;}
.w3_c02162{width:307.470000px;}
.w2_c02162{width:509.655000px;}
.w0_c02162{width:1188.000000px;}
.x0_c02162{left:0.000000px;}
.x5_c02162{left:7.740000px;}
.x7_c02162{left:9.720000px;}
.x3_c02162{left:16.560000px;}
.xa_c02162{left:17.820000px;}
.x8_c02162{left:98.640000px;}
.x1_c02162{left:106.200000px;}
.x9_c02162{left:153.765000px;}
.xb_c02162{left:159.330000px;}
.x4_c02162{left:266.250000px;}
.x6_c02162{left:776.625000px;}
.x2_c02162{left:1101.570000px;}
@media print{
.v0_c02162{vertical-align:0.000000pt;}
.ls2_c02162{letter-spacing:-0.512000pt;}
.ls0_c02162{letter-spacing:0.000000pt;}
.ls1_c02162{letter-spacing:0.128000pt;}
.ws1_c02162{word-spacing:-16.000000pt;}
.ws0_c02162{word-spacing:-14.080000pt;}
.ws2_c02162{word-spacing:0.000000pt;}
._1_c02162{margin-left:-2.027745pt;}
._2_c02162{margin-left:-1.126400pt;}
._5_c02162{width:1.024000pt;}
._3_c02162{width:9.706688pt;}
._4_c02162{width:11.445099pt;}
._7_c02162{width:132.241067pt;}
._6_c02162{width:221.610667pt;}
._8_c02162{width:292.465067pt;}
._0_c02162{width:1334.186667pt;}
.fs0_c02162{font-size:53.120000pt;}
.fs2_c02162{font-size:56.320000pt;}
.fs1_c02162{font-size:58.880000pt;}
.fs3_c02162{font-size:64.000000pt;}
.y0_c02162{bottom:0.000000pt;}
.y6_c02162{bottom:3.520000pt;}
.y4_c02162{bottom:4.320000pt;}
.y13_c02162{bottom:19.680000pt;}
.y12_c02162{bottom:35.680000pt;}
.y3_c02162{bottom:46.592000pt;}
.y11_c02162{bottom:51.840000pt;}
.y2_c02162{bottom:67.072000pt;}
.y10_c02162{bottom:67.840000pt;}
.yf_c02162{bottom:84.040000pt;}
.ye_c02162{bottom:100.200000pt;}
.yd_c02162{bottom:116.200000pt;}
.yc_c02162{bottom:132.360000pt;}
.yb_c02162{bottom:148.360000pt;}
.ya_c02162{bottom:164.520000pt;}
.y9_c02162{bottom:180.680000pt;}
.y8_c02162{bottom:196.680000pt;}
.y1a_c02162{bottom:341.026667pt;}
.y19_c02162{bottom:368.546667pt;}
.y18_c02162{bottom:387.133333pt;}
.y17_c02162{bottom:405.533333pt;}
.y16_c02162{bottom:423.933333pt;}
.y15_c02162{bottom:442.333333pt;}
.y14_c02162{bottom:460.733333pt;}
.y7_c02162{bottom:475.773333pt;}
.y5_c02162{bottom:685.733333pt;}
.y1_c02162{bottom:756.800000pt;}
.h4_c02162{height:16.160000pt;}
.h3_c02162{height:20.160000pt;}
.h2_c02162{height:43.441250pt;}
.h1_c02162{height:52.134375pt;}
.h5_c02162{height:55.275000pt;}
.h7_c02162{height:62.812500pt;}
.h6_c02162{height:209.306667pt;}
.h0_c02162{height:816.000000pt;}
.w1_c02162{width:59.360000pt;}
.w4_c02162{width:148.346667pt;}
.w3_c02162{width:273.306667pt;}
.w2_c02162{width:453.026667pt;}
.w0_c02162{width:1056.000000pt;}
.x0_c02162{left:0.000000pt;}
.x5_c02162{left:6.880000pt;}
.x7_c02162{left:8.640000pt;}
.x3_c02162{left:14.720000pt;}
.xa_c02162{left:15.840000pt;}
.x8_c02162{left:87.680000pt;}
.x1_c02162{left:94.400000pt;}
.x9_c02162{left:136.680000pt;}
.xb_c02162{left:141.626667pt;}
.x4_c02162{left:236.666667pt;}
.x6_c02162{left:690.333333pt;}
.x2_c02162{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02163 {
    display:none;
  }
  .loading-indicator_c02163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02163 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02163 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02163" -> "#page-container .classname_c02163")
 */
.pf_c02163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02163 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02163 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02163 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02163 {overflow:visible;}
  }
}
.c_c02163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02163 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02163:after { /* webkit #35443 */
  content: '';
}
.t_c02163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02163 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02163 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02163 { /* info for Javascript */
  display:none;
}
.l_c02163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02163:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02163 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02163.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02163;src:url('chunks/assets/font_1dd14e20e3212c29d0f9c856.woff2')format("woff");}.ff1_c02163{font-family:ff1_c02163;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02163;src:url('chunks/assets/font_25100dfa2babb77f2f599a7e.woff2')format("woff");}.ff2_c02163{font-family:ff2_c02163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02163{vertical-align:0.000000px;}
.ls0_c02163{letter-spacing:0.000000px;}
.sc__c02163{text-shadow:none;}
.sc0_c02163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02163{-webkit-text-stroke:0px transparent;}
.sc0_c02163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02163{word-spacing:0.000000px;}
._0_c02163{margin-left:-1.202400px;}
.fc1_c02163{color:rgb(192,80,77);}
.fc0_c02163{color:rgb(0,0,0);}
.fs0_c02163{font-size:66.240000px;}
.fs1_c02163{font-size:120.240000px;}
.y0_c02163{bottom:0.000000px;}
.y3_c02163{bottom:4.680000px;}
.y2_c02163{bottom:41.796000px;}
.y1_c02163{bottom:75.456000px;}
.y1c_c02163{bottom:135.756000px;}
.y1b_c02163{bottom:179.310000px;}
.y1a_c02163{bottom:222.690000px;}
.y19_c02163{bottom:266.250000px;}
.y18_c02163{bottom:309.855000px;}
.y17_c02163{bottom:353.235000px;}
.y16_c02163{bottom:396.795000px;}
.y15_c02163{bottom:440.355000px;}
.y14_c02163{bottom:483.735000px;}
.y13_c02163{bottom:527.295000px;}
.y12_c02163{bottom:570.705000px;}
.y11_c02163{bottom:605.265000px;}
.y10_c02163{bottom:639.825000px;}
.yf_c02163{bottom:674.205000px;}
.ye_c02163{bottom:708.765000px;}
.yd_c02163{bottom:743.325000px;}
.yc_c02163{bottom:777.705000px;}
.yb_c02163{bottom:812.310000px;}
.ya_c02163{bottom:846.870000px;}
.y9_c02163{bottom:881.250000px;}
.y8_c02163{bottom:915.810000px;}
.y7_c02163{bottom:950.370000px;}
.y6_c02163{bottom:984.750000px;}
.y5_c02163{bottom:1019.310000px;}
.y4_c02163{bottom:1053.870000px;}
.h2_c02163{height:22.500000px;}
.h1_c02163{height:48.871406px;}
.h3_c02163{height:121.179375px;}
.h0_c02163{height:1188.000000px;}
.w1_c02163{width:66.636000px;}
.w0_c02163{width:918.000000px;}
.x0_c02163{left:0.000000px;}
.x3_c02163{left:16.560000px;}
.x1_c02163{left:127.656000px;}
.x5_c02163{left:387.075000px;}
.x6_c02163{left:398.775000px;}
.x4_c02163{left:469.695000px;}
.x2_c02163{left:820.950000px;}
@media print{
.v0_c02163{vertical-align:0.000000pt;}
.ls0_c02163{letter-spacing:0.000000pt;}
.ws0_c02163{word-spacing:0.000000pt;}
._0_c02163{margin-left:-1.068800pt;}
.fs0_c02163{font-size:58.880000pt;}
.fs1_c02163{font-size:106.880000pt;}
.y0_c02163{bottom:0.000000pt;}
.y3_c02163{bottom:4.160000pt;}
.y2_c02163{bottom:37.152000pt;}
.y1_c02163{bottom:67.072000pt;}
.y1c_c02163{bottom:120.672000pt;}
.y1b_c02163{bottom:159.386667pt;}
.y1a_c02163{bottom:197.946667pt;}
.y19_c02163{bottom:236.666667pt;}
.y18_c02163{bottom:275.426667pt;}
.y17_c02163{bottom:313.986667pt;}
.y16_c02163{bottom:352.706667pt;}
.y15_c02163{bottom:391.426667pt;}
.y14_c02163{bottom:429.986667pt;}
.y13_c02163{bottom:468.706667pt;}
.y12_c02163{bottom:507.293333pt;}
.y11_c02163{bottom:538.013333pt;}
.y10_c02163{bottom:568.733333pt;}
.yf_c02163{bottom:599.293333pt;}
.ye_c02163{bottom:630.013333pt;}
.yd_c02163{bottom:660.733333pt;}
.yc_c02163{bottom:691.293333pt;}
.yb_c02163{bottom:722.053333pt;}
.ya_c02163{bottom:752.773333pt;}
.y9_c02163{bottom:783.333333pt;}
.y8_c02163{bottom:814.053333pt;}
.y7_c02163{bottom:844.773333pt;}
.y6_c02163{bottom:875.333333pt;}
.y5_c02163{bottom:906.053333pt;}
.y4_c02163{bottom:936.773333pt;}
.h2_c02163{height:20.000000pt;}
.h1_c02163{height:43.441250pt;}
.h3_c02163{height:107.715000pt;}
.h0_c02163{height:1056.000000pt;}
.w1_c02163{width:59.232000pt;}
.w0_c02163{width:816.000000pt;}
.x0_c02163{left:0.000000pt;}
.x3_c02163{left:14.720000pt;}
.x1_c02163{left:113.472000pt;}
.x5_c02163{left:344.066667pt;}
.x6_c02163{left:354.466667pt;}
.x4_c02163{left:417.506667pt;}
.x2_c02163{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02164 {
    display:none;
  }
  .loading-indicator_c02164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02164 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02164 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02164" -> "#page-container .classname_c02164")
 */
.pf_c02164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02164 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02164 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02164 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02164 {overflow:visible;}
  }
}
.c_c02164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02164 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02164:after { /* webkit #35443 */
  content: '';
}
.t_c02164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02164 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02164 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02164 { /* info for Javascript */
  display:none;
}
.l_c02164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02164:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02164 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02164.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02164;src:url('chunks/assets/font_4d9c6e373a25db728f6c6fca.woff2')format("woff");}.ff1_c02164{font-family:ff1_c02164;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02164;src:url('chunks/assets/font_396ba848f1fd32d05664f024.woff2')format("woff");}.ff2_c02164{font-family:ff2_c02164;line-height:1.311035;font-style:normal;font-weight: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_c02164;src:url('chunks/assets/font_df4d26c17bd15538f7cfa4d7.woff2')format("woff");}.ff3_c02164{font-family:ff3_c02164;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;}
.m0_c02164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02164{vertical-align:0.000000px;}
.ls1_c02164{letter-spacing:-0.018600px;}
.ls0_c02164{letter-spacing:0.000000px;}
.sc__c02164{text-shadow:none;}
.sc0_c02164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02164{-webkit-text-stroke:0px transparent;}
.sc0_c02164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02164{word-spacing:0.000000px;}
._4_c02164{margin-left:-1.224000px;}
._0_c02164{width:1.120848px;}
._1_c02164{width:2.314606px;}
._2_c02164{width:3.816000px;}
._3_c02164{width:4.824000px;}
._8_c02164{width:5.832000px;}
._7_c02164{width:6.984000px;}
._6_c02164{width:8.064000px;}
._e_c02164{width:10.080000px;}
._f_c02164{width:11.736000px;}
._5_c02164{width:13.464000px;}
._10_c02164{width:19.152000px;}
._d_c02164{width:22.104000px;}
._9_c02164{width:24.120000px;}
._c_c02164{width:26.136000px;}
._a_c02164{width:59.544000px;}
._b_c02164{width:61.248000px;}
.fc1_c02164{color:rgb(192,80,77);}
.fc2_c02164{color:rgb(17,17,17);}
.fc0_c02164{color:rgb(0,0,0);}
.fs0_c02164{font-size:66.240000px;}
.fs2_c02164{font-size:72.000000px;}
.fs1_c02164{font-size:95.760000px;}
.y0_c02164{bottom:0.000000px;}
.y3_c02164{bottom:4.680000px;}
.y2_c02164{bottom:41.796000px;}
.y1_c02164{bottom:75.456000px;}
.y22_c02164{bottom:147.636000px;}
.y21_c02164{bottom:178.590000px;}
.y20_c02164{bottom:209.730000px;}
.y1f_c02164{bottom:240.690000px;}
.y1e_c02164{bottom:271.875000px;}
.y1d_c02164{bottom:302.835000px;}
.y1c_c02164{bottom:333.975000px;}
.y1b_c02164{bottom:364.935000px;}
.y1a_c02164{bottom:396.075000px;}
.y19_c02164{bottom:427.035000px;}
.y18_c02164{bottom:458.175000px;}
.y17_c02164{bottom:489.135000px;}
.y16_c02164{bottom:520.275000px;}
.y15_c02164{bottom:551.265000px;}
.y14_c02164{bottom:582.225000px;}
.y13_c02164{bottom:613.365000px;}
.y12_c02164{bottom:644.325000px;}
.y11_c02164{bottom:675.465000px;}
.y10_c02164{bottom:706.425000px;}
.yf_c02164{bottom:737.565000px;}
.ye_c02164{bottom:768.525000px;}
.yd_c02164{bottom:799.710000px;}
.yc_c02164{bottom:830.670000px;}
.yb_c02164{bottom:861.810000px;}
.ya_c02164{bottom:892.770000px;}
.y9_c02164{bottom:923.910000px;}
.y8_c02164{bottom:954.510000px;}
.y7_c02164{bottom:976.650000px;}
.y6_c02164{bottom:1004.190000px;}
.y5_c02164{bottom:1031.730000px;}
.y4_c02164{bottom:1059.480000px;}
.h2_c02164{height:22.500000px;}
.h1_c02164{height:48.871406px;}
.h5_c02164{height:70.664062px;}
.h4_c02164{height:72.562500px;}
.h3_c02164{height:96.508125px;}
.h0_c02164{height:1188.000000px;}
.w1_c02164{width:66.636000px;}
.w0_c02164{width:918.000000px;}
.x0_c02164{left:0.000000px;}
.x3_c02164{left:16.560000px;}
.x1_c02164{left:127.656000px;}
.x8_c02164{left:163.650000px;}
.x6_c02164{left:169.410000px;}
.x5_c02164{left:171.390000px;}
.x7_c02164{left:180.750000px;}
.x9_c02164{left:187.050000px;}
.x4_c02164{left:195.330000px;}
.x2_c02164{left:820.950000px;}
@media print{
.v0_c02164{vertical-align:0.000000pt;}
.ls1_c02164{letter-spacing:-0.016533pt;}
.ls0_c02164{letter-spacing:0.000000pt;}
.ws0_c02164{word-spacing:0.000000pt;}
._4_c02164{margin-left:-1.088000pt;}
._0_c02164{width:0.996310pt;}
._1_c02164{width:2.057428pt;}
._2_c02164{width:3.392000pt;}
._3_c02164{width:4.288000pt;}
._8_c02164{width:5.184000pt;}
._7_c02164{width:6.208000pt;}
._6_c02164{width:7.168000pt;}
._e_c02164{width:8.960000pt;}
._f_c02164{width:10.432000pt;}
._5_c02164{width:11.968000pt;}
._10_c02164{width:17.024000pt;}
._d_c02164{width:19.648000pt;}
._9_c02164{width:21.440000pt;}
._c_c02164{width:23.232000pt;}
._a_c02164{width:52.928000pt;}
._b_c02164{width:54.442667pt;}
.fs0_c02164{font-size:58.880000pt;}
.fs2_c02164{font-size:64.000000pt;}
.fs1_c02164{font-size:85.120000pt;}
.y0_c02164{bottom:0.000000pt;}
.y3_c02164{bottom:4.160000pt;}
.y2_c02164{bottom:37.152000pt;}
.y1_c02164{bottom:67.072000pt;}
.y22_c02164{bottom:131.232000pt;}
.y21_c02164{bottom:158.746667pt;}
.y20_c02164{bottom:186.426667pt;}
.y1f_c02164{bottom:213.946667pt;}
.y1e_c02164{bottom:241.666667pt;}
.y1d_c02164{bottom:269.186667pt;}
.y1c_c02164{bottom:296.866667pt;}
.y1b_c02164{bottom:324.386667pt;}
.y1a_c02164{bottom:352.066667pt;}
.y19_c02164{bottom:379.586667pt;}
.y18_c02164{bottom:407.266667pt;}
.y17_c02164{bottom:434.786667pt;}
.y16_c02164{bottom:462.466667pt;}
.y15_c02164{bottom:490.013333pt;}
.y14_c02164{bottom:517.533333pt;}
.y13_c02164{bottom:545.213333pt;}
.y12_c02164{bottom:572.733333pt;}
.y11_c02164{bottom:600.413333pt;}
.y10_c02164{bottom:627.933333pt;}
.yf_c02164{bottom:655.613333pt;}
.ye_c02164{bottom:683.133333pt;}
.yd_c02164{bottom:710.853333pt;}
.yc_c02164{bottom:738.373333pt;}
.yb_c02164{bottom:766.053333pt;}
.ya_c02164{bottom:793.573333pt;}
.y9_c02164{bottom:821.253333pt;}
.y8_c02164{bottom:848.453333pt;}
.y7_c02164{bottom:868.133333pt;}
.y6_c02164{bottom:892.613333pt;}
.y5_c02164{bottom:917.093333pt;}
.y4_c02164{bottom:941.760000pt;}
.h2_c02164{height:20.000000pt;}
.h1_c02164{height:43.441250pt;}
.h5_c02164{height:62.812500pt;}
.h4_c02164{height:64.500000pt;}
.h3_c02164{height:85.785000pt;}
.h0_c02164{height:1056.000000pt;}
.w1_c02164{width:59.232000pt;}
.w0_c02164{width:816.000000pt;}
.x0_c02164{left:0.000000pt;}
.x3_c02164{left:14.720000pt;}
.x1_c02164{left:113.472000pt;}
.x8_c02164{left:145.466667pt;}
.x6_c02164{left:150.586667pt;}
.x5_c02164{left:152.346667pt;}
.x7_c02164{left:160.666667pt;}
.x9_c02164{left:166.266667pt;}
.x4_c02164{left:173.626667pt;}
.x2_c02164{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02165 {
    display:none;
  }
  .loading-indicator_c02165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02165 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02165 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02165" -> "#page-container .classname_c02165")
 */
.pf_c02165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02165 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02165 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02165 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02165 {overflow:visible;}
  }
}
.c_c02165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02165 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02165:after { /* webkit #35443 */
  content: '';
}
.t_c02165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02165 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02165 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02165 { /* info for Javascript */
  display:none;
}
.l_c02165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02165:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02165 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02165.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02165;src:url('chunks/assets/font_76a6f2e67be8565a80a8e862.woff2')format("woff");}.ff1_c02165{font-family:ff1_c02165;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02165;src:url('chunks/assets/font_b2dbcaff26498cd1165322c0.woff2')format("woff");}.ff2_c02165{font-family:ff2_c02165;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:ff3_c02165;src:url('chunks/assets/font_2d49db61dfed08b12fd98b7a.woff2')format("woff");}.ff3_c02165{font-family:ff3_c02165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02165{vertical-align:0.000000px;}
.ls0_c02165{letter-spacing:0.000000px;}
.sc__c02165{text-shadow:none;}
.sc0_c02165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02165{-webkit-text-stroke:0px transparent;}
.sc0_c02165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02165{word-spacing:0.000000px;}
._1_c02165{margin-left:-1.008000px;}
._0_c02165{width:1.152000px;}
._2_c02165{width:2.808000px;}
._3_c02165{width:5.040000px;}
._4_c02165{width:6.480000px;}
._5_c02165{width:7.740000px;}
._8_c02165{width:9.756000px;}
._6_c02165{width:13.320000px;}
._7_c02165{width:14.400000px;}
.fc1_c02165{color:rgb(192,80,77);}
.fc3_c02165{color:rgb(255,255,255);}
.fc2_c02165{color:rgb(17,17,17);}
.fc0_c02165{color:rgb(0,0,0);}
.fs0_c02165{font-size:66.240000px;}
.fs1_c02165{font-size:72.000000px;}
.y0_c02165{bottom:0.000000px;}
.y1b_c02165{bottom:4.140000px;}
.yb_c02165{bottom:4.320000px;}
.yd_c02165{bottom:4.500000px;}
.y3_c02165{bottom:4.680000px;}
.y2_c02165{bottom:41.796000px;}
.y1_c02165{bottom:75.456000px;}
.y2c_c02165{bottom:121.716000px;}
.y2b_c02165{bottom:152.850000px;}
.y2a_c02165{bottom:183.810000px;}
.y29_c02165{bottom:214.950000px;}
.y28_c02165{bottom:245.910000px;}
.y27_c02165{bottom:277.095000px;}
.y26_c02165{bottom:308.055000px;}
.y25_c02165{bottom:339.195000px;}
.y24_c02165{bottom:370.155000px;}
.y23_c02165{bottom:401.295000px;}
.y22_c02165{bottom:432.255000px;}
.y21_c02165{bottom:463.395000px;}
.y20_c02165{bottom:494.355000px;}
.y1f_c02165{bottom:515.235000px;}
.y1e_c02165{bottom:535.965000px;}
.y1d_c02165{bottom:556.665000px;}
.y1c_c02165{bottom:577.365000px;}
.y1a_c02165{bottom:594.285000px;}
.y19_c02165{bottom:615.705000px;}
.y18_c02165{bottom:637.305000px;}
.y17_c02165{bottom:658.725000px;}
.y16_c02165{bottom:680.145000px;}
.y15_c02165{bottom:701.565000px;}
.y14_c02165{bottom:722.985000px;}
.y13_c02165{bottom:744.405000px;}
.y12_c02165{bottom:766.005000px;}
.y11_c02165{bottom:787.425000px;}
.y10_c02165{bottom:808.890000px;}
.yf_c02165{bottom:830.310000px;}
.ye_c02165{bottom:851.730000px;}
.yc_c02165{bottom:873.150000px;}
.ya_c02165{bottom:894.750000px;}
.y9_c02165{bottom:930.750000px;}
.y8_c02165{bottom:951.630000px;}
.y7_c02165{bottom:972.330000px;}
.y6_c02165{bottom:1003.290000px;}
.y5_c02165{bottom:1034.250000px;}
.y4_c02165{bottom:1065.420000px;}
.h4_c02165{height:20.520000px;}
.h5_c02165{height:20.700000px;}
.h6_c02165{height:20.736000px;}
.h2_c02165{height:22.500000px;}
.h1_c02165{height:48.871406px;}
.h3_c02165{height:70.664062px;}
.h7_c02165{height:72.562500px;}
.h0_c02165{height:1188.000000px;}
.w1_c02165{width:66.636000px;}
.w2_c02165{width:308.370000px;}
.w3_c02165{width:309.855000px;}
.w0_c02165{width:918.000000px;}
.x0_c02165{left:0.000000px;}
.x3_c02165{left:16.560000px;}
.xa_c02165{left:84.450000px;}
.x10_c02165{left:113.220000px;}
.x11_c02165{left:116.280000px;}
.x12_c02165{left:120.465000px;}
.x13_c02165{left:122.805000px;}
.xc_c02165{left:126.225000px;}
.x1_c02165{left:127.656000px;}
.x9_c02165{left:131.265000px;}
.xe_c02165{left:133.245000px;}
.xd_c02165{left:135.225000px;}
.xf_c02165{left:136.845000px;}
.x14_c02165{left:145.830000px;}
.xb_c02165{left:150.330000px;}
.x8_c02165{left:179.310000px;}
.x4_c02165{left:187.050000px;}
.x6_c02165{left:307.515000px;}
.x5_c02165{left:444.675000px;}
.x7_c02165{left:488.775000px;}
.x2_c02165{left:820.950000px;}
@media print{
.v0_c02165{vertical-align:0.000000pt;}
.ls0_c02165{letter-spacing:0.000000pt;}
.ws0_c02165{word-spacing:0.000000pt;}
._1_c02165{margin-left:-0.896000pt;}
._0_c02165{width:1.024000pt;}
._2_c02165{width:2.496000pt;}
._3_c02165{width:4.480000pt;}
._4_c02165{width:5.760000pt;}
._5_c02165{width:6.880000pt;}
._8_c02165{width:8.672000pt;}
._6_c02165{width:11.840000pt;}
._7_c02165{width:12.800000pt;}
.fs0_c02165{font-size:58.880000pt;}
.fs1_c02165{font-size:64.000000pt;}
.y0_c02165{bottom:0.000000pt;}
.y1b_c02165{bottom:3.680000pt;}
.yb_c02165{bottom:3.840000pt;}
.yd_c02165{bottom:4.000000pt;}
.y3_c02165{bottom:4.160000pt;}
.y2_c02165{bottom:37.152000pt;}
.y1_c02165{bottom:67.072000pt;}
.y2c_c02165{bottom:108.192000pt;}
.y2b_c02165{bottom:135.866667pt;}
.y2a_c02165{bottom:163.386667pt;}
.y29_c02165{bottom:191.066667pt;}
.y28_c02165{bottom:218.586667pt;}
.y27_c02165{bottom:246.306667pt;}
.y26_c02165{bottom:273.826667pt;}
.y25_c02165{bottom:301.506667pt;}
.y24_c02165{bottom:329.026667pt;}
.y23_c02165{bottom:356.706667pt;}
.y22_c02165{bottom:384.226667pt;}
.y21_c02165{bottom:411.906667pt;}
.y20_c02165{bottom:439.426667pt;}
.y1f_c02165{bottom:457.986667pt;}
.y1e_c02165{bottom:476.413333pt;}
.y1d_c02165{bottom:494.813333pt;}
.y1c_c02165{bottom:513.213333pt;}
.y1a_c02165{bottom:528.253333pt;}
.y19_c02165{bottom:547.293333pt;}
.y18_c02165{bottom:566.493333pt;}
.y17_c02165{bottom:585.533333pt;}
.y16_c02165{bottom:604.573333pt;}
.y15_c02165{bottom:623.613333pt;}
.y14_c02165{bottom:642.653333pt;}
.y13_c02165{bottom:661.693333pt;}
.y12_c02165{bottom:680.893333pt;}
.y11_c02165{bottom:699.933333pt;}
.y10_c02165{bottom:719.013333pt;}
.yf_c02165{bottom:738.053333pt;}
.ye_c02165{bottom:757.093333pt;}
.yc_c02165{bottom:776.133333pt;}
.ya_c02165{bottom:795.333333pt;}
.y9_c02165{bottom:827.333333pt;}
.y8_c02165{bottom:845.893333pt;}
.y7_c02165{bottom:864.293333pt;}
.y6_c02165{bottom:891.813333pt;}
.y5_c02165{bottom:919.333333pt;}
.y4_c02165{bottom:947.040000pt;}
.h4_c02165{height:18.240000pt;}
.h5_c02165{height:18.400000pt;}
.h6_c02165{height:18.432000pt;}
.h2_c02165{height:20.000000pt;}
.h1_c02165{height:43.441250pt;}
.h3_c02165{height:62.812500pt;}
.h7_c02165{height:64.500000pt;}
.h0_c02165{height:1056.000000pt;}
.w1_c02165{width:59.232000pt;}
.w2_c02165{width:274.106667pt;}
.w3_c02165{width:275.426667pt;}
.w0_c02165{width:816.000000pt;}
.x0_c02165{left:0.000000pt;}
.x3_c02165{left:14.720000pt;}
.xa_c02165{left:75.066667pt;}
.x10_c02165{left:100.640000pt;}
.x11_c02165{left:103.360000pt;}
.x12_c02165{left:107.080000pt;}
.x13_c02165{left:109.160000pt;}
.xc_c02165{left:112.200000pt;}
.x1_c02165{left:113.472000pt;}
.x9_c02165{left:116.680000pt;}
.xe_c02165{left:118.440000pt;}
.xd_c02165{left:120.200000pt;}
.xf_c02165{left:121.640000pt;}
.x14_c02165{left:129.626667pt;}
.xb_c02165{left:133.626667pt;}
.x8_c02165{left:159.386667pt;}
.x4_c02165{left:166.266667pt;}
.x6_c02165{left:273.346667pt;}
.x5_c02165{left:395.266667pt;}
.x7_c02165{left:434.466667pt;}
.x2_c02165{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02166 {
    display:none;
  }
  .loading-indicator_c02166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02166 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02166 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02166" -> "#page-container .classname_c02166")
 */
.pf_c02166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02166 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02166 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02166 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02166 {overflow:visible;}
  }
}
.c_c02166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02166 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02166:after { /* webkit #35443 */
  content: '';
}
.t_c02166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02166 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02166 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02166 { /* info for Javascript */
  display:none;
}
.l_c02166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02166:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02166 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02166.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02166;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02166{font-family:ff1_c02166;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02166;src:url('chunks/assets/font_5baf14e21473b0dda6ba5b46.woff2')format("woff");}.ff2_c02166{font-family:ff2_c02166;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;}
.m0_c02166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02166{vertical-align:0.000000px;}
.ls0_c02166{letter-spacing:0.000000px;}
.sc__c02166{text-shadow:none;}
.sc0_c02166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02166{-webkit-text-stroke:0px transparent;}
.sc0_c02166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02166{word-spacing:0.000000px;}
._9_c02166{margin-left:-2.304000px;}
._2_c02166{margin-left:-1.080000px;}
._3_c02166{width:1.080000px;}
._0_c02166{width:2.160000px;}
._1_c02166{width:3.528000px;}
._4_c02166{width:5.400000px;}
._10_c02166{width:6.480000px;}
._6_c02166{width:7.488000px;}
._5_c02166{width:8.568000px;}
._b_c02166{width:10.440000px;}
._7_c02166{width:13.464000px;}
._8_c02166{width:14.904000px;}
._f_c02166{width:21.816000px;}
._c_c02166{width:23.616000px;}
._a_c02166{width:24.768000px;}
._d_c02166{width:25.776000px;}
._e_c02166{width:27.288000px;}
.fc1_c02166{color:rgb(192,80,77);}
.fc2_c02166{color:rgb(17,17,17);}
.fc0_c02166{color:rgb(0,0,0);}
.fs0_c02166{font-size:66.240000px;}
.fs1_c02166{font-size:72.000000px;}
.y0_c02166{bottom:0.000000px;}
.y3_c02166{bottom:4.680000px;}
.y2_c02166{bottom:41.796000px;}
.y1_c02166{bottom:75.456000px;}
.y21_c02166{bottom:164.910000px;}
.y20_c02166{bottom:195.870000px;}
.y1f_c02166{bottom:226.830000px;}
.y1e_c02166{bottom:257.970000px;}
.y1d_c02166{bottom:288.975000px;}
.y1c_c02166{bottom:320.115000px;}
.y1b_c02166{bottom:351.075000px;}
.y1a_c02166{bottom:382.215000px;}
.y19_c02166{bottom:413.175000px;}
.y18_c02166{bottom:444.315000px;}
.y17_c02166{bottom:475.275000px;}
.y16_c02166{bottom:506.415000px;}
.y15_c02166{bottom:537.405000px;}
.y14_c02166{bottom:568.545000px;}
.y13_c02166{bottom:599.505000px;}
.y12_c02166{bottom:630.645000px;}
.y11_c02166{bottom:661.605000px;}
.y10_c02166{bottom:692.745000px;}
.yf_c02166{bottom:723.705000px;}
.ye_c02166{bottom:754.845000px;}
.yd_c02166{bottom:785.805000px;}
.yc_c02166{bottom:816.990000px;}
.yb_c02166{bottom:847.950000px;}
.ya_c02166{bottom:879.090000px;}
.y9_c02166{bottom:910.050000px;}
.y8_c02166{bottom:941.190000px;}
.y7_c02166{bottom:972.150000px;}
.y6_c02166{bottom:1003.290000px;}
.y5_c02166{bottom:1034.250000px;}
.y4_c02166{bottom:1065.420000px;}
.h2_c02166{height:22.500000px;}
.h1_c02166{height:48.871406px;}
.h3_c02166{height:70.664062px;}
.h0_c02166{height:1188.000000px;}
.w1_c02166{width:66.636000px;}
.w0_c02166{width:918.000000px;}
.x0_c02166{left:0.000000px;}
.x3_c02166{left:16.560000px;}
.x1_c02166{left:127.656000px;}
.x4_c02166{left:187.050000px;}
.x2_c02166{left:820.950000px;}
@media print{
.v0_c02166{vertical-align:0.000000pt;}
.ls0_c02166{letter-spacing:0.000000pt;}
.ws0_c02166{word-spacing:0.000000pt;}
._9_c02166{margin-left:-2.048000pt;}
._2_c02166{margin-left:-0.960000pt;}
._3_c02166{width:0.960000pt;}
._0_c02166{width:1.920000pt;}
._1_c02166{width:3.136000pt;}
._4_c02166{width:4.800000pt;}
._10_c02166{width:5.760000pt;}
._6_c02166{width:6.656000pt;}
._5_c02166{width:7.616000pt;}
._b_c02166{width:9.280000pt;}
._7_c02166{width:11.968000pt;}
._8_c02166{width:13.248000pt;}
._f_c02166{width:19.392000pt;}
._c_c02166{width:20.992000pt;}
._a_c02166{width:22.016000pt;}
._d_c02166{width:22.912000pt;}
._e_c02166{width:24.256000pt;}
.fs0_c02166{font-size:58.880000pt;}
.fs1_c02166{font-size:64.000000pt;}
.y0_c02166{bottom:0.000000pt;}
.y3_c02166{bottom:4.160000pt;}
.y2_c02166{bottom:37.152000pt;}
.y1_c02166{bottom:67.072000pt;}
.y21_c02166{bottom:146.586667pt;}
.y20_c02166{bottom:174.106667pt;}
.y1f_c02166{bottom:201.626667pt;}
.y1e_c02166{bottom:229.306667pt;}
.y1d_c02166{bottom:256.866667pt;}
.y1c_c02166{bottom:284.546667pt;}
.y1b_c02166{bottom:312.066667pt;}
.y1a_c02166{bottom:339.746667pt;}
.y19_c02166{bottom:367.266667pt;}
.y18_c02166{bottom:394.946667pt;}
.y17_c02166{bottom:422.466667pt;}
.y16_c02166{bottom:450.146667pt;}
.y15_c02166{bottom:477.693333pt;}
.y14_c02166{bottom:505.373333pt;}
.y13_c02166{bottom:532.893333pt;}
.y12_c02166{bottom:560.573333pt;}
.y11_c02166{bottom:588.093333pt;}
.y10_c02166{bottom:615.773333pt;}
.yf_c02166{bottom:643.293333pt;}
.ye_c02166{bottom:670.973333pt;}
.yd_c02166{bottom:698.493333pt;}
.yc_c02166{bottom:726.213333pt;}
.yb_c02166{bottom:753.733333pt;}
.ya_c02166{bottom:781.413333pt;}
.y9_c02166{bottom:808.933333pt;}
.y8_c02166{bottom:836.613333pt;}
.y7_c02166{bottom:864.133333pt;}
.y6_c02166{bottom:891.813333pt;}
.y5_c02166{bottom:919.333333pt;}
.y4_c02166{bottom:947.040000pt;}
.h2_c02166{height:20.000000pt;}
.h1_c02166{height:43.441250pt;}
.h3_c02166{height:62.812500pt;}
.h0_c02166{height:1056.000000pt;}
.w1_c02166{width:59.232000pt;}
.w0_c02166{width:816.000000pt;}
.x0_c02166{left:0.000000pt;}
.x3_c02166{left:14.720000pt;}
.x1_c02166{left:113.472000pt;}
.x4_c02166{left:166.266667pt;}
.x2_c02166{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02167 {
    display:none;
  }
  .loading-indicator_c02167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02167 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02167 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02167" -> "#page-container .classname_c02167")
 */
.pf_c02167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02167 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02167 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02167 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02167 {overflow:visible;}
  }
}
.c_c02167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02167 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02167:after { /* webkit #35443 */
  content: '';
}
.t_c02167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02167 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02167 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02167 { /* info for Javascript */
  display:none;
}
.l_c02167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02167:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02167 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02167.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02167;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02167{font-family:ff1_c02167;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02167;src:url('chunks/assets/font_798a2bfdfe77a6a116398e74.woff2')format("woff");}.ff2_c02167{font-family:ff2_c02167;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;}
.m0_c02167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02167{vertical-align:0.000000px;}
.ls0_c02167{letter-spacing:0.000000px;}
.sc__c02167{text-shadow:none;}
.sc0_c02167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02167{-webkit-text-stroke:0px transparent;}
.sc0_c02167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02167{word-spacing:0.000000px;}
._1_c02167{margin-left:-1.080000px;}
._2_c02167{width:1.296000px;}
._8_c02167{width:5.040000px;}
._9_c02167{width:6.048000px;}
._a_c02167{width:8.064000px;}
._0_c02167{width:9.288000px;}
._3_c02167{width:10.308000px;}
._7_c02167{width:11.568000px;}
._6_c02167{width:12.840000px;}
._4_c02167{width:25.920000px;}
._5_c02167{width:27.288000px;}
.fc1_c02167{color:rgb(192,80,77);}
.fc0_c02167{color:rgb(0,0,0);}
.fs0_c02167{font-size:66.240000px;}
.fs1_c02167{font-size:72.000000px;}
.y0_c02167{bottom:0.000000px;}
.y3_c02167{bottom:4.680000px;}
.y2_c02167{bottom:41.796000px;}
.y1_c02167{bottom:75.456000px;}
.ye_c02167{bottom:754.845000px;}
.yd_c02167{bottom:785.805000px;}
.yc_c02167{bottom:816.990000px;}
.yb_c02167{bottom:847.950000px;}
.ya_c02167{bottom:879.090000px;}
.y9_c02167{bottom:910.050000px;}
.y8_c02167{bottom:941.190000px;}
.y7_c02167{bottom:972.150000px;}
.y6_c02167{bottom:1003.290000px;}
.y5_c02167{bottom:1034.250000px;}
.y4_c02167{bottom:1065.420000px;}
.h2_c02167{height:22.500000px;}
.h1_c02167{height:48.871406px;}
.h3_c02167{height:70.664062px;}
.h0_c02167{height:1188.000000px;}
.w1_c02167{width:66.636000px;}
.w0_c02167{width:918.000000px;}
.x0_c02167{left:0.000000px;}
.x3_c02167{left:16.560000px;}
.x1_c02167{left:127.656000px;}
.x4_c02167{left:187.050000px;}
.x2_c02167{left:820.950000px;}
@media print{
.v0_c02167{vertical-align:0.000000pt;}
.ls0_c02167{letter-spacing:0.000000pt;}
.ws0_c02167{word-spacing:0.000000pt;}
._1_c02167{margin-left:-0.960000pt;}
._2_c02167{width:1.152000pt;}
._8_c02167{width:4.480000pt;}
._9_c02167{width:5.376000pt;}
._a_c02167{width:7.168000pt;}
._0_c02167{width:8.256000pt;}
._3_c02167{width:9.162667pt;}
._7_c02167{width:10.282667pt;}
._6_c02167{width:11.413333pt;}
._4_c02167{width:23.040000pt;}
._5_c02167{width:24.256000pt;}
.fs0_c02167{font-size:58.880000pt;}
.fs1_c02167{font-size:64.000000pt;}
.y0_c02167{bottom:0.000000pt;}
.y3_c02167{bottom:4.160000pt;}
.y2_c02167{bottom:37.152000pt;}
.y1_c02167{bottom:67.072000pt;}
.ye_c02167{bottom:670.973333pt;}
.yd_c02167{bottom:698.493333pt;}
.yc_c02167{bottom:726.213333pt;}
.yb_c02167{bottom:753.733333pt;}
.ya_c02167{bottom:781.413333pt;}
.y9_c02167{bottom:808.933333pt;}
.y8_c02167{bottom:836.613333pt;}
.y7_c02167{bottom:864.133333pt;}
.y6_c02167{bottom:891.813333pt;}
.y5_c02167{bottom:919.333333pt;}
.y4_c02167{bottom:947.040000pt;}
.h2_c02167{height:20.000000pt;}
.h1_c02167{height:43.441250pt;}
.h3_c02167{height:62.812500pt;}
.h0_c02167{height:1056.000000pt;}
.w1_c02167{width:59.232000pt;}
.w0_c02167{width:816.000000pt;}
.x0_c02167{left:0.000000pt;}
.x3_c02167{left:14.720000pt;}
.x1_c02167{left:113.472000pt;}
.x4_c02167{left:166.266667pt;}
.x2_c02167{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02168 {
    display:none;
  }
  .loading-indicator_c02168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02168 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02168 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02168" -> "#page-container .classname_c02168")
 */
.pf_c02168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02168 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02168 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02168 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02168 {overflow:visible;}
  }
}
.c_c02168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02168 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02168:after { /* webkit #35443 */
  content: '';
}
.t_c02168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02168 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02168 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02168 { /* info for Javascript */
  display:none;
}
.l_c02168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02168:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02168 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02168.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02168;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02168{font-family:ff1_c02168;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02168;src:url('chunks/assets/font_06b2b7e728d3e6547a618358.woff2')format("woff");}.ff2_c02168{font-family:ff2_c02168;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:ff3_c02168;src:url('chunks/assets/font_0fd395cc50f3c328b12e3778.woff2')format("woff");}.ff3_c02168{font-family:ff3_c02168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02168{vertical-align:0.000000px;}
.ls0_c02168{letter-spacing:0.000000px;}
.sc__c02168{text-shadow:none;}
.sc0_c02168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02168{-webkit-text-stroke:0px transparent;}
.sc0_c02168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02168{word-spacing:0.000000px;}
._0_c02168{margin-left:-1.008000px;}
._1_c02168{width:1.092000px;}
._4_c02168{width:4.680000px;}
._2_c02168{width:5.688000px;}
._3_c02168{width:6.984000px;}
.fc1_c02168{color:rgb(192,80,77);}
.fc3_c02168{color:rgb(255,255,255);}
.fc2_c02168{color:rgb(17,17,17);}
.fc0_c02168{color:rgb(0,0,0);}
.fs0_c02168{font-size:66.240000px;}
.fs1_c02168{font-size:72.000000px;}
.y0_c02168{bottom:0.000000px;}
.y2b_c02168{bottom:4.140000px;}
.y20_c02168{bottom:4.320000px;}
.y8_c02168{bottom:4.500000px;}
.y12_c02168{bottom:4.545000px;}
.y3_c02168{bottom:4.680000px;}
.y2_c02168{bottom:41.796000px;}
.y1_c02168{bottom:75.456000px;}
.y30_c02168{bottom:201.630000px;}
.y2f_c02168{bottom:222.330000px;}
.y2e_c02168{bottom:243.030000px;}
.y2d_c02168{bottom:263.730000px;}
.y2c_c02168{bottom:284.475000px;}
.y2a_c02168{bottom:301.395000px;}
.y29_c02168{bottom:322.815000px;}
.y28_c02168{bottom:344.235000px;}
.y27_c02168{bottom:365.655000px;}
.y26_c02168{bottom:387.255000px;}
.y25_c02168{bottom:408.675000px;}
.y24_c02168{bottom:430.095000px;}
.y23_c02168{bottom:451.515000px;}
.y22_c02168{bottom:472.935000px;}
.y21_c02168{bottom:494.355000px;}
.y1f_c02168{bottom:515.955000px;}
.y1e_c02168{bottom:537.405000px;}
.y1d_c02168{bottom:558.825000px;}
.y1c_c02168{bottom:580.245000px;}
.y1b_c02168{bottom:601.665000px;}
.y1a_c02168{bottom:623.085000px;}
.y19_c02168{bottom:644.505000px;}
.y18_c02168{bottom:666.105000px;}
.y17_c02168{bottom:687.525000px;}
.y16_c02168{bottom:708.945000px;}
.y15_c02168{bottom:730.365000px;}
.y14_c02168{bottom:751.785000px;}
.y13_c02168{bottom:773.205000px;}
.y11_c02168{bottom:794.805000px;}
.y10_c02168{bottom:816.270000px;}
.yf_c02168{bottom:837.690000px;}
.ye_c02168{bottom:859.110000px;}
.yd_c02168{bottom:880.530000px;}
.yc_c02168{bottom:901.950000px;}
.yb_c02168{bottom:923.370000px;}
.ya_c02168{bottom:944.970000px;}
.y9_c02168{bottom:966.390000px;}
.y7_c02168{bottom:987.810000px;}
.y6_c02168{bottom:1023.990000px;}
.y5_c02168{bottom:1044.870000px;}
.y4_c02168{bottom:1065.600000px;}
.h6_c02168{height:20.556000px;}
.h4_c02168{height:20.700000px;}
.h5_c02168{height:20.736000px;}
.h2_c02168{height:22.500000px;}
.h1_c02168{height:48.871406px;}
.h3_c02168{height:70.664062px;}
.h7_c02168{height:72.562500px;}
.h0_c02168{height:1188.000000px;}
.w1_c02168{width:66.636000px;}
.w2_c02168{width:308.370000px;}
.w3_c02168{width:309.855000px;}
.w0_c02168{width:918.000000px;}
.x0_c02168{left:0.000000px;}
.x3_c02168{left:16.560000px;}
.x13_c02168{left:62.100000px;}
.x12_c02168{left:73.980000px;}
.x9_c02168{left:84.450000px;}
.xd_c02168{left:106.740000px;}
.x15_c02168{left:111.060000px;}
.x11_c02168{left:114.660000px;}
.xa_c02168{left:116.280000px;}
.x17_c02168{left:119.745000px;}
.xf_c02168{left:122.805000px;}
.xe_c02168{left:125.685000px;}
.x1_c02168{left:127.656000px;}
.xc_c02168{left:130.185000px;}
.x8_c02168{left:131.805000px;}
.x14_c02168{left:133.785000px;}
.x16_c02168{left:135.225000px;}
.x10_c02168{left:137.205000px;}
.x18_c02168{left:145.830000px;}
.xb_c02168{left:150.330000px;}
.x7_c02168{left:179.310000px;}
.x19_c02168{left:187.050000px;}
.x5_c02168{left:288.570000px;}
.x4_c02168{left:444.675000px;}
.x6_c02168{left:488.775000px;}
.x2_c02168{left:820.950000px;}
@media print{
.v0_c02168{vertical-align:0.000000pt;}
.ls0_c02168{letter-spacing:0.000000pt;}
.ws0_c02168{word-spacing:0.000000pt;}
._0_c02168{margin-left:-0.896000pt;}
._1_c02168{width:0.970667pt;}
._4_c02168{width:4.160000pt;}
._2_c02168{width:5.056000pt;}
._3_c02168{width:6.208000pt;}
.fs0_c02168{font-size:58.880000pt;}
.fs1_c02168{font-size:64.000000pt;}
.y0_c02168{bottom:0.000000pt;}
.y2b_c02168{bottom:3.680000pt;}
.y20_c02168{bottom:3.840000pt;}
.y8_c02168{bottom:4.000000pt;}
.y12_c02168{bottom:4.040000pt;}
.y3_c02168{bottom:4.160000pt;}
.y2_c02168{bottom:37.152000pt;}
.y1_c02168{bottom:67.072000pt;}
.y30_c02168{bottom:179.226667pt;}
.y2f_c02168{bottom:197.626667pt;}
.y2e_c02168{bottom:216.026667pt;}
.y2d_c02168{bottom:234.426667pt;}
.y2c_c02168{bottom:252.866667pt;}
.y2a_c02168{bottom:267.906667pt;}
.y29_c02168{bottom:286.946667pt;}
.y28_c02168{bottom:305.986667pt;}
.y27_c02168{bottom:325.026667pt;}
.y26_c02168{bottom:344.226667pt;}
.y25_c02168{bottom:363.266667pt;}
.y24_c02168{bottom:382.306667pt;}
.y23_c02168{bottom:401.346667pt;}
.y22_c02168{bottom:420.386667pt;}
.y21_c02168{bottom:439.426667pt;}
.y1f_c02168{bottom:458.626667pt;}
.y1e_c02168{bottom:477.693333pt;}
.y1d_c02168{bottom:496.733333pt;}
.y1c_c02168{bottom:515.773333pt;}
.y1b_c02168{bottom:534.813333pt;}
.y1a_c02168{bottom:553.853333pt;}
.y19_c02168{bottom:572.893333pt;}
.y18_c02168{bottom:592.093333pt;}
.y17_c02168{bottom:611.133333pt;}
.y16_c02168{bottom:630.173333pt;}
.y15_c02168{bottom:649.213333pt;}
.y14_c02168{bottom:668.253333pt;}
.y13_c02168{bottom:687.293333pt;}
.y11_c02168{bottom:706.493333pt;}
.y10_c02168{bottom:725.573333pt;}
.yf_c02168{bottom:744.613333pt;}
.ye_c02168{bottom:763.653333pt;}
.yd_c02168{bottom:782.693333pt;}
.yc_c02168{bottom:801.733333pt;}
.yb_c02168{bottom:820.773333pt;}
.ya_c02168{bottom:839.973333pt;}
.y9_c02168{bottom:859.013333pt;}
.y7_c02168{bottom:878.053333pt;}
.y6_c02168{bottom:910.213333pt;}
.y5_c02168{bottom:928.773333pt;}
.y4_c02168{bottom:947.200000pt;}
.h6_c02168{height:18.272000pt;}
.h4_c02168{height:18.400000pt;}
.h5_c02168{height:18.432000pt;}
.h2_c02168{height:20.000000pt;}
.h1_c02168{height:43.441250pt;}
.h3_c02168{height:62.812500pt;}
.h7_c02168{height:64.500000pt;}
.h0_c02168{height:1056.000000pt;}
.w1_c02168{width:59.232000pt;}
.w2_c02168{width:274.106667pt;}
.w3_c02168{width:275.426667pt;}
.w0_c02168{width:816.000000pt;}
.x0_c02168{left:0.000000pt;}
.x3_c02168{left:14.720000pt;}
.x13_c02168{left:55.200000pt;}
.x12_c02168{left:65.760000pt;}
.x9_c02168{left:75.066667pt;}
.xd_c02168{left:94.880000pt;}
.x15_c02168{left:98.720000pt;}
.x11_c02168{left:101.920000pt;}
.xa_c02168{left:103.360000pt;}
.x17_c02168{left:106.440000pt;}
.xf_c02168{left:109.160000pt;}
.xe_c02168{left:111.720000pt;}
.x1_c02168{left:113.472000pt;}
.xc_c02168{left:115.720000pt;}
.x8_c02168{left:117.160000pt;}
.x14_c02168{left:118.920000pt;}
.x16_c02168{left:120.200000pt;}
.x10_c02168{left:121.960000pt;}
.x18_c02168{left:129.626667pt;}
.xb_c02168{left:133.626667pt;}
.x7_c02168{left:159.386667pt;}
.x19_c02168{left:166.266667pt;}
.x5_c02168{left:256.506667pt;}
.x4_c02168{left:395.266667pt;}
.x6_c02168{left:434.466667pt;}
.x2_c02168{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02169 {
    display:none;
  }
  .loading-indicator_c02169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02169 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02169 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02169" -> "#page-container .classname_c02169")
 */
.pf_c02169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02169 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02169 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02169 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02169 {overflow:visible;}
  }
}
.c_c02169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02169 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02169:after { /* webkit #35443 */
  content: '';
}
.t_c02169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02169 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02169 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02169 { /* info for Javascript */
  display:none;
}
.l_c02169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02169:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02169 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02169.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02169;src:url('chunks/assets/font_a17a95125dabf4b367b0345e.woff2')format("woff");}.ff1_c02169{font-family:ff1_c02169;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02169;src:url('chunks/assets/font_9ef79305f31b72ac97d2496d.woff2')format("woff");}.ff2_c02169{font-family:ff2_c02169;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:ff3_c02169;src:url('chunks/assets/font_bba18ffa7572fe0a5cb98c69.woff2')format("woff");}.ff3_c02169{font-family:ff3_c02169;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02169{vertical-align:0.000000px;}
.ls1_c02169{letter-spacing:-0.216000px;}
.ls0_c02169{letter-spacing:0.000000px;}
.sc__c02169{text-shadow:none;}
.sc0_c02169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02169{-webkit-text-stroke:0px transparent;}
.sc0_c02169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02169{word-spacing:-17.784000px;}
.ws1_c02169{word-spacing:0.000000px;}
._f_c02169{margin-left:-2.088000px;}
._2_c02169{margin-left:-1.008000px;}
._3_c02169{width:1.440000px;}
._9_c02169{width:3.168000px;}
._a_c02169{width:4.320000px;}
._7_c02169{width:5.688000px;}
._5_c02169{width:6.696000px;}
._6_c02169{width:8.064000px;}
._10_c02169{width:9.144000px;}
._d_c02169{width:10.800000px;}
._e_c02169{width:12.528000px;}
._8_c02169{width:13.608000px;}
._4_c02169{width:15.264000px;}
._11_c02169{width:16.848000px;}
._0_c02169{width:19.944000px;}
._1_c02169{width:20.952000px;}
._b_c02169{width:28.008000px;}
._c_c02169{width:31.608000px;}
.fc1_c02169{color:rgb(192,80,77);}
.fc2_c02169{color:rgb(17,17,17);}
.fc0_c02169{color:rgb(0,0,0);}
.fs0_c02169{font-size:66.240000px;}
.fs1_c02169{font-size:72.000000px;}
.y0_c02169{bottom:0.000000px;}
.y3_c02169{bottom:4.680000px;}
.y2_c02169{bottom:41.796000px;}
.y1_c02169{bottom:75.456000px;}
.y22_c02169{bottom:133.776000px;}
.y21_c02169{bottom:164.910000px;}
.y20_c02169{bottom:195.870000px;}
.y1f_c02169{bottom:226.830000px;}
.y1e_c02169{bottom:257.970000px;}
.y1d_c02169{bottom:288.975000px;}
.y1c_c02169{bottom:320.115000px;}
.y1b_c02169{bottom:351.075000px;}
.y1a_c02169{bottom:382.215000px;}
.y19_c02169{bottom:413.175000px;}
.y18_c02169{bottom:444.315000px;}
.y17_c02169{bottom:475.275000px;}
.y16_c02169{bottom:506.415000px;}
.y15_c02169{bottom:537.405000px;}
.y14_c02169{bottom:568.545000px;}
.y13_c02169{bottom:599.505000px;}
.y12_c02169{bottom:630.645000px;}
.y11_c02169{bottom:661.605000px;}
.y10_c02169{bottom:692.745000px;}
.yf_c02169{bottom:723.705000px;}
.ye_c02169{bottom:754.845000px;}
.yd_c02169{bottom:785.805000px;}
.yc_c02169{bottom:816.990000px;}
.yb_c02169{bottom:847.950000px;}
.ya_c02169{bottom:879.090000px;}
.y9_c02169{bottom:910.050000px;}
.y8_c02169{bottom:941.190000px;}
.y7_c02169{bottom:972.150000px;}
.y6_c02169{bottom:1003.290000px;}
.y5_c02169{bottom:1034.250000px;}
.y4_c02169{bottom:1065.420000px;}
.h2_c02169{height:22.500000px;}
.h1_c02169{height:48.871406px;}
.h4_c02169{height:64.546875px;}
.h3_c02169{height:70.664062px;}
.h0_c02169{height:1188.000000px;}
.w1_c02169{width:66.636000px;}
.w0_c02169{width:918.000000px;}
.x0_c02169{left:0.000000px;}
.x3_c02169{left:16.560000px;}
.x1_c02169{left:127.656000px;}
.x4_c02169{left:180.750000px;}
.x5_c02169{left:187.050000px;}
.x2_c02169{left:820.950000px;}
@media print{
.v0_c02169{vertical-align:0.000000pt;}
.ls1_c02169{letter-spacing:-0.192000pt;}
.ls0_c02169{letter-spacing:0.000000pt;}
.ws0_c02169{word-spacing:-15.808000pt;}
.ws1_c02169{word-spacing:0.000000pt;}
._f_c02169{margin-left:-1.856000pt;}
._2_c02169{margin-left:-0.896000pt;}
._3_c02169{width:1.280000pt;}
._9_c02169{width:2.816000pt;}
._a_c02169{width:3.840000pt;}
._7_c02169{width:5.056000pt;}
._5_c02169{width:5.952000pt;}
._6_c02169{width:7.168000pt;}
._10_c02169{width:8.128000pt;}
._d_c02169{width:9.600000pt;}
._e_c02169{width:11.136000pt;}
._8_c02169{width:12.096000pt;}
._4_c02169{width:13.568000pt;}
._11_c02169{width:14.976000pt;}
._0_c02169{width:17.728000pt;}
._1_c02169{width:18.624000pt;}
._b_c02169{width:24.896000pt;}
._c_c02169{width:28.096000pt;}
.fs0_c02169{font-size:58.880000pt;}
.fs1_c02169{font-size:64.000000pt;}
.y0_c02169{bottom:0.000000pt;}
.y3_c02169{bottom:4.160000pt;}
.y2_c02169{bottom:37.152000pt;}
.y1_c02169{bottom:67.072000pt;}
.y22_c02169{bottom:118.912000pt;}
.y21_c02169{bottom:146.586667pt;}
.y20_c02169{bottom:174.106667pt;}
.y1f_c02169{bottom:201.626667pt;}
.y1e_c02169{bottom:229.306667pt;}
.y1d_c02169{bottom:256.866667pt;}
.y1c_c02169{bottom:284.546667pt;}
.y1b_c02169{bottom:312.066667pt;}
.y1a_c02169{bottom:339.746667pt;}
.y19_c02169{bottom:367.266667pt;}
.y18_c02169{bottom:394.946667pt;}
.y17_c02169{bottom:422.466667pt;}
.y16_c02169{bottom:450.146667pt;}
.y15_c02169{bottom:477.693333pt;}
.y14_c02169{bottom:505.373333pt;}
.y13_c02169{bottom:532.893333pt;}
.y12_c02169{bottom:560.573333pt;}
.y11_c02169{bottom:588.093333pt;}
.y10_c02169{bottom:615.773333pt;}
.yf_c02169{bottom:643.293333pt;}
.ye_c02169{bottom:670.973333pt;}
.yd_c02169{bottom:698.493333pt;}
.yc_c02169{bottom:726.213333pt;}
.yb_c02169{bottom:753.733333pt;}
.ya_c02169{bottom:781.413333pt;}
.y9_c02169{bottom:808.933333pt;}
.y8_c02169{bottom:836.613333pt;}
.y7_c02169{bottom:864.133333pt;}
.y6_c02169{bottom:891.813333pt;}
.y5_c02169{bottom:919.333333pt;}
.y4_c02169{bottom:947.040000pt;}
.h2_c02169{height:20.000000pt;}
.h1_c02169{height:43.441250pt;}
.h4_c02169{height:57.375000pt;}
.h3_c02169{height:62.812500pt;}
.h0_c02169{height:1056.000000pt;}
.w1_c02169{width:59.232000pt;}
.w0_c02169{width:816.000000pt;}
.x0_c02169{left:0.000000pt;}
.x3_c02169{left:14.720000pt;}
.x1_c02169{left:113.472000pt;}
.x4_c02169{left:160.666667pt;}
.x5_c02169{left:166.266667pt;}
.x2_c02169{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02170 {
    display:none;
  }
  .loading-indicator_c02170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02170 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02170 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02170" -> "#page-container .classname_c02170")
 */
.pf_c02170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02170 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02170 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02170 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02170 {overflow:visible;}
  }
}
.c_c02170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02170 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02170:after { /* webkit #35443 */
  content: '';
}
.t_c02170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02170 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02170 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02170 { /* info for Javascript */
  display:none;
}
.l_c02170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02170:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02170 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02170.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02170;src:url('chunks/assets/font_76a6f2e67be8565a80a8e862.woff2')format("woff");}.ff1_c02170{font-family:ff1_c02170;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02170;src:url('chunks/assets/font_7e7b1cd9b9aec60c33592ee9.woff2')format("woff");}.ff2_c02170{font-family:ff2_c02170;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:ff3_c02170;src:url('chunks/assets/font_823b02e54d1c8590ea3a59cc.woff2')format("woff");}.ff3_c02170{font-family:ff3_c02170;line-height:1.112305;font-style:normal;font-weight: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_c02170;src:url('chunks/assets/font_5fb9e7cd4ddbff4fee2ec6ef.woff2')format("woff");}.ff4_c02170{font-family:ff4_c02170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02170{vertical-align:0.000000px;}
.ls0_c02170{letter-spacing:0.000000px;}
.sc__c02170{text-shadow:none;}
.sc0_c02170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02170{-webkit-text-stroke:0px transparent;}
.sc0_c02170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02170{word-spacing:0.000000px;}
._6_c02170{margin-left:-1.224000px;}
._4_c02170{width:1.296000px;}
._f_c02170{width:2.736000px;}
._7_c02170{width:4.392000px;}
._0_c02170{width:5.544000px;}
._1_c02170{width:6.624000px;}
._5_c02170{width:8.136000px;}
._a_c02170{width:9.216000px;}
._8_c02170{width:11.160000px;}
._9_c02170{width:12.168000px;}
._10_c02170{width:13.392000px;}
._e_c02170{width:15.480000px;}
._d_c02170{width:16.488000px;}
._11_c02170{width:19.296000px;}
._2_c02170{width:20.520000px;}
._3_c02170{width:21.672000px;}
._b_c02170{width:29.304000px;}
._c_c02170{width:30.384000px;}
.fc1_c02170{color:rgb(192,80,77);}
.fc2_c02170{color:rgb(17,17,17);}
.fc0_c02170{color:rgb(0,0,0);}
.fs0_c02170{font-size:66.240000px;}
.fs1_c02170{font-size:72.000000px;}
.y0_c02170{bottom:0.000000px;}
.y3_c02170{bottom:4.680000px;}
.y2_c02170{bottom:41.796000px;}
.y1_c02170{bottom:75.456000px;}
.y22_c02170{bottom:133.776000px;}
.y21_c02170{bottom:164.910000px;}
.y20_c02170{bottom:195.870000px;}
.y1f_c02170{bottom:226.830000px;}
.y1e_c02170{bottom:257.970000px;}
.y1d_c02170{bottom:288.975000px;}
.y1c_c02170{bottom:320.115000px;}
.y1b_c02170{bottom:351.075000px;}
.y1a_c02170{bottom:382.215000px;}
.y19_c02170{bottom:413.175000px;}
.y18_c02170{bottom:444.315000px;}
.y17_c02170{bottom:475.275000px;}
.y16_c02170{bottom:506.415000px;}
.y15_c02170{bottom:537.405000px;}
.y14_c02170{bottom:568.545000px;}
.y13_c02170{bottom:599.505000px;}
.y12_c02170{bottom:630.645000px;}
.y11_c02170{bottom:661.605000px;}
.y10_c02170{bottom:692.745000px;}
.yf_c02170{bottom:723.705000px;}
.ye_c02170{bottom:754.845000px;}
.yd_c02170{bottom:785.805000px;}
.yc_c02170{bottom:816.990000px;}
.yb_c02170{bottom:847.950000px;}
.ya_c02170{bottom:879.090000px;}
.y9_c02170{bottom:910.050000px;}
.y8_c02170{bottom:941.190000px;}
.y7_c02170{bottom:972.150000px;}
.y6_c02170{bottom:1003.290000px;}
.y5_c02170{bottom:1034.250000px;}
.y4_c02170{bottom:1065.420000px;}
.h2_c02170{height:22.500000px;}
.h1_c02170{height:48.871406px;}
.h4_c02170{height:64.546875px;}
.h3_c02170{height:70.664062px;}
.h0_c02170{height:1188.000000px;}
.w1_c02170{width:66.636000px;}
.w0_c02170{width:918.000000px;}
.x0_c02170{left:0.000000px;}
.x3_c02170{left:16.560000px;}
.x1_c02170{left:127.656000px;}
.x4_c02170{left:187.050000px;}
.x2_c02170{left:820.950000px;}
@media print{
.v0_c02170{vertical-align:0.000000pt;}
.ls0_c02170{letter-spacing:0.000000pt;}
.ws0_c02170{word-spacing:0.000000pt;}
._6_c02170{margin-left:-1.088000pt;}
._4_c02170{width:1.152000pt;}
._f_c02170{width:2.432000pt;}
._7_c02170{width:3.904000pt;}
._0_c02170{width:4.928000pt;}
._1_c02170{width:5.888000pt;}
._5_c02170{width:7.232000pt;}
._a_c02170{width:8.192000pt;}
._8_c02170{width:9.920000pt;}
._9_c02170{width:10.816000pt;}
._10_c02170{width:11.904000pt;}
._e_c02170{width:13.760000pt;}
._d_c02170{width:14.656000pt;}
._11_c02170{width:17.152000pt;}
._2_c02170{width:18.240000pt;}
._3_c02170{width:19.264000pt;}
._b_c02170{width:26.048000pt;}
._c_c02170{width:27.008000pt;}
.fs0_c02170{font-size:58.880000pt;}
.fs1_c02170{font-size:64.000000pt;}
.y0_c02170{bottom:0.000000pt;}
.y3_c02170{bottom:4.160000pt;}
.y2_c02170{bottom:37.152000pt;}
.y1_c02170{bottom:67.072000pt;}
.y22_c02170{bottom:118.912000pt;}
.y21_c02170{bottom:146.586667pt;}
.y20_c02170{bottom:174.106667pt;}
.y1f_c02170{bottom:201.626667pt;}
.y1e_c02170{bottom:229.306667pt;}
.y1d_c02170{bottom:256.866667pt;}
.y1c_c02170{bottom:284.546667pt;}
.y1b_c02170{bottom:312.066667pt;}
.y1a_c02170{bottom:339.746667pt;}
.y19_c02170{bottom:367.266667pt;}
.y18_c02170{bottom:394.946667pt;}
.y17_c02170{bottom:422.466667pt;}
.y16_c02170{bottom:450.146667pt;}
.y15_c02170{bottom:477.693333pt;}
.y14_c02170{bottom:505.373333pt;}
.y13_c02170{bottom:532.893333pt;}
.y12_c02170{bottom:560.573333pt;}
.y11_c02170{bottom:588.093333pt;}
.y10_c02170{bottom:615.773333pt;}
.yf_c02170{bottom:643.293333pt;}
.ye_c02170{bottom:670.973333pt;}
.yd_c02170{bottom:698.493333pt;}
.yc_c02170{bottom:726.213333pt;}
.yb_c02170{bottom:753.733333pt;}
.ya_c02170{bottom:781.413333pt;}
.y9_c02170{bottom:808.933333pt;}
.y8_c02170{bottom:836.613333pt;}
.y7_c02170{bottom:864.133333pt;}
.y6_c02170{bottom:891.813333pt;}
.y5_c02170{bottom:919.333333pt;}
.y4_c02170{bottom:947.040000pt;}
.h2_c02170{height:20.000000pt;}
.h1_c02170{height:43.441250pt;}
.h4_c02170{height:57.375000pt;}
.h3_c02170{height:62.812500pt;}
.h0_c02170{height:1056.000000pt;}
.w1_c02170{width:59.232000pt;}
.w0_c02170{width:816.000000pt;}
.x0_c02170{left:0.000000pt;}
.x3_c02170{left:14.720000pt;}
.x1_c02170{left:113.472000pt;}
.x4_c02170{left:166.266667pt;}
.x2_c02170{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02171 {
    display:none;
  }
  .loading-indicator_c02171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02171 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02171 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02171" -> "#page-container .classname_c02171")
 */
.pf_c02171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02171 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02171 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02171 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02171 {overflow:visible;}
  }
}
.c_c02171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02171 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02171:after { /* webkit #35443 */
  content: '';
}
.t_c02171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02171 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02171 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02171 { /* info for Javascript */
  display:none;
}
.l_c02171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02171:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02171 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02171.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02171;src:url('chunks/assets/font_76a6f2e67be8565a80a8e862.woff2')format("woff");}.ff1_c02171{font-family:ff1_c02171;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02171;src:url('chunks/assets/font_bef174fdba3d1dfab9f74ddc.woff2')format("woff");}.ff2_c02171{font-family:ff2_c02171;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:ff3_c02171;src:url('chunks/assets/font_7f60ac72384c0fd8a0fdb1c5.woff2')format("woff");}.ff3_c02171{font-family:ff3_c02171;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02171{vertical-align:0.000000px;}
.ls0_c02171{letter-spacing:0.000000px;}
.sc__c02171{text-shadow:none;}
.sc0_c02171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02171{-webkit-text-stroke:0px transparent;}
.sc0_c02171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02171{word-spacing:0.000000px;}
._5_c02171{margin-left:-1.584000px;}
._2_c02171{width:1.080000px;}
._8_c02171{width:2.736000px;}
._9_c02171{width:3.816000px;}
._10_c02171{width:5.112000px;}
._a_c02171{width:6.120000px;}
._b_c02171{width:7.272000px;}
._3_c02171{width:8.424000px;}
._4_c02171{width:9.792000px;}
._c_c02171{width:10.944000px;}
._d_c02171{width:12.288000px;}
._15_c02171{width:13.392000px;}
._0_c02171{width:15.840000px;}
._1_c02171{width:16.848000px;}
._e_c02171{width:19.296000px;}
._f_c02171{width:20.460000px;}
._11_c02171{width:21.612000px;}
._14_c02171{width:23.424000px;}
._6_c02171{width:27.000000px;}
._7_c02171{width:28.008000px;}
._12_c02171{width:49.032000px;}
._13_c02171{width:50.328000px;}
.fc1_c02171{color:rgb(192,80,77);}
.fc0_c02171{color:rgb(0,0,0);}
.fs0_c02171{font-size:66.240000px;}
.fs1_c02171{font-size:72.000000px;}
.y0_c02171{bottom:0.000000px;}
.y3_c02171{bottom:4.680000px;}
.y2_c02171{bottom:41.796000px;}
.y1_c02171{bottom:75.456000px;}
.y21_c02171{bottom:164.910000px;}
.y20_c02171{bottom:195.870000px;}
.y1f_c02171{bottom:226.830000px;}
.y1e_c02171{bottom:257.970000px;}
.y1d_c02171{bottom:288.975000px;}
.y1c_c02171{bottom:320.115000px;}
.y1b_c02171{bottom:351.075000px;}
.y1a_c02171{bottom:382.215000px;}
.y19_c02171{bottom:413.175000px;}
.y18_c02171{bottom:444.315000px;}
.y17_c02171{bottom:475.275000px;}
.y16_c02171{bottom:506.415000px;}
.y15_c02171{bottom:537.405000px;}
.y14_c02171{bottom:568.545000px;}
.y13_c02171{bottom:599.505000px;}
.y12_c02171{bottom:630.645000px;}
.y11_c02171{bottom:661.605000px;}
.y10_c02171{bottom:692.745000px;}
.yf_c02171{bottom:723.705000px;}
.ye_c02171{bottom:754.845000px;}
.yd_c02171{bottom:785.805000px;}
.yc_c02171{bottom:816.990000px;}
.yb_c02171{bottom:847.950000px;}
.ya_c02171{bottom:879.090000px;}
.y9_c02171{bottom:910.050000px;}
.y8_c02171{bottom:941.190000px;}
.y7_c02171{bottom:972.150000px;}
.y6_c02171{bottom:1003.290000px;}
.y5_c02171{bottom:1034.250000px;}
.y4_c02171{bottom:1065.420000px;}
.h2_c02171{height:22.500000px;}
.h1_c02171{height:48.871406px;}
.h4_c02171{height:64.546875px;}
.h3_c02171{height:70.664062px;}
.h0_c02171{height:1188.000000px;}
.w1_c02171{width:66.636000px;}
.w0_c02171{width:918.000000px;}
.x0_c02171{left:0.000000px;}
.x3_c02171{left:16.560000px;}
.x1_c02171{left:127.656000px;}
.x4_c02171{left:187.050000px;}
.x2_c02171{left:820.950000px;}
@media print{
.v0_c02171{vertical-align:0.000000pt;}
.ls0_c02171{letter-spacing:0.000000pt;}
.ws0_c02171{word-spacing:0.000000pt;}
._5_c02171{margin-left:-1.408000pt;}
._2_c02171{width:0.960000pt;}
._8_c02171{width:2.432000pt;}
._9_c02171{width:3.392000pt;}
._10_c02171{width:4.544000pt;}
._a_c02171{width:5.440000pt;}
._b_c02171{width:6.464000pt;}
._3_c02171{width:7.488000pt;}
._4_c02171{width:8.704000pt;}
._c_c02171{width:9.728000pt;}
._d_c02171{width:10.922667pt;}
._15_c02171{width:11.904000pt;}
._0_c02171{width:14.080000pt;}
._1_c02171{width:14.976000pt;}
._e_c02171{width:17.152000pt;}
._f_c02171{width:18.186667pt;}
._11_c02171{width:19.210667pt;}
._14_c02171{width:20.821333pt;}
._6_c02171{width:24.000000pt;}
._7_c02171{width:24.896000pt;}
._12_c02171{width:43.584000pt;}
._13_c02171{width:44.736000pt;}
.fs0_c02171{font-size:58.880000pt;}
.fs1_c02171{font-size:64.000000pt;}
.y0_c02171{bottom:0.000000pt;}
.y3_c02171{bottom:4.160000pt;}
.y2_c02171{bottom:37.152000pt;}
.y1_c02171{bottom:67.072000pt;}
.y21_c02171{bottom:146.586667pt;}
.y20_c02171{bottom:174.106667pt;}
.y1f_c02171{bottom:201.626667pt;}
.y1e_c02171{bottom:229.306667pt;}
.y1d_c02171{bottom:256.866667pt;}
.y1c_c02171{bottom:284.546667pt;}
.y1b_c02171{bottom:312.066667pt;}
.y1a_c02171{bottom:339.746667pt;}
.y19_c02171{bottom:367.266667pt;}
.y18_c02171{bottom:394.946667pt;}
.y17_c02171{bottom:422.466667pt;}
.y16_c02171{bottom:450.146667pt;}
.y15_c02171{bottom:477.693333pt;}
.y14_c02171{bottom:505.373333pt;}
.y13_c02171{bottom:532.893333pt;}
.y12_c02171{bottom:560.573333pt;}
.y11_c02171{bottom:588.093333pt;}
.y10_c02171{bottom:615.773333pt;}
.yf_c02171{bottom:643.293333pt;}
.ye_c02171{bottom:670.973333pt;}
.yd_c02171{bottom:698.493333pt;}
.yc_c02171{bottom:726.213333pt;}
.yb_c02171{bottom:753.733333pt;}
.ya_c02171{bottom:781.413333pt;}
.y9_c02171{bottom:808.933333pt;}
.y8_c02171{bottom:836.613333pt;}
.y7_c02171{bottom:864.133333pt;}
.y6_c02171{bottom:891.813333pt;}
.y5_c02171{bottom:919.333333pt;}
.y4_c02171{bottom:947.040000pt;}
.h2_c02171{height:20.000000pt;}
.h1_c02171{height:43.441250pt;}
.h4_c02171{height:57.375000pt;}
.h3_c02171{height:62.812500pt;}
.h0_c02171{height:1056.000000pt;}
.w1_c02171{width:59.232000pt;}
.w0_c02171{width:816.000000pt;}
.x0_c02171{left:0.000000pt;}
.x3_c02171{left:14.720000pt;}
.x1_c02171{left:113.472000pt;}
.x4_c02171{left:166.266667pt;}
.x2_c02171{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02172 {
    display:none;
  }
  .loading-indicator_c02172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02172 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02172 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02172" -> "#page-container .classname_c02172")
 */
.pf_c02172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02172 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02172 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02172 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02172 {overflow:visible;}
  }
}
.c_c02172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02172 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02172:after { /* webkit #35443 */
  content: '';
}
.t_c02172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02172 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02172 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02172 { /* info for Javascript */
  display:none;
}
.l_c02172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02172:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02172 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02172.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02172;src:url('chunks/assets/font_a8e35df905bc46b67323d5c2.woff2')format("woff");}.ff1_c02172{font-family:ff1_c02172;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02172;src:url('chunks/assets/font_0c7e28ca9763b1c24d100b0c.woff2')format("woff");}.ff2_c02172{font-family:ff2_c02172;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:ff3_c02172;src:url('chunks/assets/font_0bc5a894019265356c5ab914.woff2')format("woff");}.ff3_c02172{font-family:ff3_c02172;line-height:1.112305;font-style:normal;font-weight: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_c02172;src:url('chunks/assets/font_2d49db61dfed08b12fd98b7a.woff2')format("woff");}.ff4_c02172{font-family:ff4_c02172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02172{vertical-align:0.000000px;}
.ls0_c02172{letter-spacing:0.000000px;}
.sc__c02172{text-shadow:none;}
.sc0_c02172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02172{-webkit-text-stroke:0px transparent;}
.sc0_c02172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02172{word-spacing:0.000000px;}
._9_c02172{margin-left:-2.160000px;}
._1_c02172{margin-left:-1.140000px;}
._3_c02172{width:1.296000px;}
._6_c02172{width:2.352000px;}
._c_c02172{width:3.528000px;}
._d_c02172{width:4.824000px;}
._4_c02172{width:6.552000px;}
._5_c02172{width:7.848000px;}
._e_c02172{width:9.216000px;}
._7_c02172{width:12.816000px;}
._8_c02172{width:13.872000px;}
._2_c02172{width:15.840000px;}
._0_c02172{width:16.992000px;}
._a_c02172{width:28.152000px;}
._b_c02172{width:29.160000px;}
.fc1_c02172{color:rgb(192,80,77);}
.fc3_c02172{color:rgb(255,255,255);}
.fc2_c02172{color:rgb(17,17,17);}
.fc0_c02172{color:rgb(0,0,0);}
.fs0_c02172{font-size:66.240000px;}
.fs1_c02172{font-size:72.000000px;}
.y0_c02172{bottom:0.000000px;}
.y1d_c02172{bottom:4.140000px;}
.y12_c02172{bottom:4.500000px;}
.y3_c02172{bottom:4.680000px;}
.y18_c02172{bottom:25.200000px;}
.y2_c02172{bottom:41.796000px;}
.y1_c02172{bottom:75.456000px;}
.y2a_c02172{bottom:115.236000px;}
.y29_c02172{bottom:146.196000px;}
.y28_c02172{bottom:177.330000px;}
.y27_c02172{bottom:208.290000px;}
.y26_c02172{bottom:239.430000px;}
.y25_c02172{bottom:270.390000px;}
.y24_c02172{bottom:301.575000px;}
.y23_c02172{bottom:332.535000px;}
.y22_c02172{bottom:363.675000px;}
.y21_c02172{bottom:384.555000px;}
.y20_c02172{bottom:405.255000px;}
.y1f_c02172{bottom:425.955000px;}
.y1e_c02172{bottom:446.655000px;}
.y1c_c02172{bottom:463.575000px;}
.y1b_c02172{bottom:484.995000px;}
.y1a_c02172{bottom:506.415000px;}
.y19_c02172{bottom:527.835000px;}
.y17_c02172{bottom:549.285000px;}
.y16_c02172{bottom:591.405000px;}
.y15_c02172{bottom:613.005000px;}
.y14_c02172{bottom:634.425000px;}
.y13_c02172{bottom:655.845000px;}
.y11_c02172{bottom:677.265000px;}
.y10_c02172{bottom:713.445000px;}
.yf_c02172{bottom:734.325000px;}
.ye_c02172{bottom:755.025000px;}
.yd_c02172{bottom:785.805000px;}
.yc_c02172{bottom:816.990000px;}
.yb_c02172{bottom:847.950000px;}
.ya_c02172{bottom:879.090000px;}
.y9_c02172{bottom:910.050000px;}
.y8_c02172{bottom:941.190000px;}
.y7_c02172{bottom:972.150000px;}
.y6_c02172{bottom:1003.290000px;}
.y5_c02172{bottom:1034.250000px;}
.y4_c02172{bottom:1065.420000px;}
.h5_c02172{height:20.700000px;}
.h7_c02172{height:20.736000px;}
.h2_c02172{height:22.500000px;}
.h6_c02172{height:41.400000px;}
.h1_c02172{height:48.871406px;}
.h4_c02172{height:64.546875px;}
.h3_c02172{height:70.664062px;}
.h8_c02172{height:72.562500px;}
.h0_c02172{height:1188.000000px;}
.w1_c02172{width:66.636000px;}
.w3_c02172{width:307.875000px;}
.w2_c02172{width:310.350000px;}
.w0_c02172{width:918.000000px;}
.x0_c02172{left:0.000000px;}
.x3_c02172{left:16.560000px;}
.x15_c02172{left:50.940000px;}
.x13_c02172{left:53.640000px;}
.xc_c02172{left:83.370000px;}
.xf_c02172{left:89.460000px;}
.x14_c02172{left:97.560000px;}
.x12_c02172{left:100.440000px;}
.xd_c02172{left:102.420000px;}
.x16_c02172{left:104.940000px;}
.x10_c02172{left:107.460000px;}
.x18_c02172{left:123.705000px;}
.x1_c02172{left:127.656000px;}
.xa_c02172{left:131.085000px;}
.x17_c02172{left:135.225000px;}
.xe_c02172{left:144.930000px;}
.x11_c02172{left:149.430000px;}
.x5_c02172{left:154.650000px;}
.x9_c02172{left:179.310000px;}
.x19_c02172{left:180.750000px;}
.x4_c02172{left:187.050000px;}
.x7_c02172{left:265.890000px;}
.x6_c02172{left:428.475000px;}
.x8_c02172{left:472.575000px;}
.xb_c02172{left:490.395000px;}
.x2_c02172{left:820.950000px;}
@media print{
.v0_c02172{vertical-align:0.000000pt;}
.ls0_c02172{letter-spacing:0.000000pt;}
.ws0_c02172{word-spacing:0.000000pt;}
._9_c02172{margin-left:-1.920000pt;}
._1_c02172{margin-left:-1.013333pt;}
._3_c02172{width:1.152000pt;}
._6_c02172{width:2.090667pt;}
._c_c02172{width:3.136000pt;}
._d_c02172{width:4.288000pt;}
._4_c02172{width:5.824000pt;}
._5_c02172{width:6.976000pt;}
._e_c02172{width:8.192000pt;}
._7_c02172{width:11.392000pt;}
._8_c02172{width:12.330667pt;}
._2_c02172{width:14.080000pt;}
._0_c02172{width:15.104000pt;}
._a_c02172{width:25.024000pt;}
._b_c02172{width:25.920000pt;}
.fs0_c02172{font-size:58.880000pt;}
.fs1_c02172{font-size:64.000000pt;}
.y0_c02172{bottom:0.000000pt;}
.y1d_c02172{bottom:3.680000pt;}
.y12_c02172{bottom:4.000000pt;}
.y3_c02172{bottom:4.160000pt;}
.y18_c02172{bottom:22.400000pt;}
.y2_c02172{bottom:37.152000pt;}
.y1_c02172{bottom:67.072000pt;}
.y2a_c02172{bottom:102.432000pt;}
.y29_c02172{bottom:129.952000pt;}
.y28_c02172{bottom:157.626667pt;}
.y27_c02172{bottom:185.146667pt;}
.y26_c02172{bottom:212.826667pt;}
.y25_c02172{bottom:240.346667pt;}
.y24_c02172{bottom:268.066667pt;}
.y23_c02172{bottom:295.586667pt;}
.y22_c02172{bottom:323.266667pt;}
.y21_c02172{bottom:341.826667pt;}
.y20_c02172{bottom:360.226667pt;}
.y1f_c02172{bottom:378.626667pt;}
.y1e_c02172{bottom:397.026667pt;}
.y1c_c02172{bottom:412.066667pt;}
.y1b_c02172{bottom:431.106667pt;}
.y1a_c02172{bottom:450.146667pt;}
.y19_c02172{bottom:469.186667pt;}
.y17_c02172{bottom:488.253333pt;}
.y16_c02172{bottom:525.693333pt;}
.y15_c02172{bottom:544.893333pt;}
.y14_c02172{bottom:563.933333pt;}
.y13_c02172{bottom:582.973333pt;}
.y11_c02172{bottom:602.013333pt;}
.y10_c02172{bottom:634.173333pt;}
.yf_c02172{bottom:652.733333pt;}
.ye_c02172{bottom:671.133333pt;}
.yd_c02172{bottom:698.493333pt;}
.yc_c02172{bottom:726.213333pt;}
.yb_c02172{bottom:753.733333pt;}
.ya_c02172{bottom:781.413333pt;}
.y9_c02172{bottom:808.933333pt;}
.y8_c02172{bottom:836.613333pt;}
.y7_c02172{bottom:864.133333pt;}
.y6_c02172{bottom:891.813333pt;}
.y5_c02172{bottom:919.333333pt;}
.y4_c02172{bottom:947.040000pt;}
.h5_c02172{height:18.400000pt;}
.h7_c02172{height:18.432000pt;}
.h2_c02172{height:20.000000pt;}
.h6_c02172{height:36.800000pt;}
.h1_c02172{height:43.441250pt;}
.h4_c02172{height:57.375000pt;}
.h3_c02172{height:62.812500pt;}
.h8_c02172{height:64.500000pt;}
.h0_c02172{height:1056.000000pt;}
.w1_c02172{width:59.232000pt;}
.w3_c02172{width:273.666667pt;}
.w2_c02172{width:275.866667pt;}
.w0_c02172{width:816.000000pt;}
.x0_c02172{left:0.000000pt;}
.x3_c02172{left:14.720000pt;}
.x15_c02172{left:45.280000pt;}
.x13_c02172{left:47.680000pt;}
.xc_c02172{left:74.106667pt;}
.xf_c02172{left:79.520000pt;}
.x14_c02172{left:86.720000pt;}
.x12_c02172{left:89.280000pt;}
.xd_c02172{left:91.040000pt;}
.x16_c02172{left:93.280000pt;}
.x10_c02172{left:95.520000pt;}
.x18_c02172{left:109.960000pt;}
.x1_c02172{left:113.472000pt;}
.xa_c02172{left:116.520000pt;}
.x17_c02172{left:120.200000pt;}
.xe_c02172{left:128.826667pt;}
.x11_c02172{left:132.826667pt;}
.x5_c02172{left:137.466667pt;}
.x9_c02172{left:159.386667pt;}
.x19_c02172{left:160.666667pt;}
.x4_c02172{left:166.266667pt;}
.x7_c02172{left:236.346667pt;}
.x6_c02172{left:380.866667pt;}
.x8_c02172{left:420.066667pt;}
.xb_c02172{left:435.906667pt;}
.x2_c02172{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02173 {
    display:none;
  }
  .loading-indicator_c02173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02173 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02173 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02173" -> "#page-container .classname_c02173")
 */
.pf_c02173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02173 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02173 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02173 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02173 {overflow:visible;}
  }
}
.c_c02173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02173 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02173:after { /* webkit #35443 */
  content: '';
}
.t_c02173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02173 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02173 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02173 { /* info for Javascript */
  display:none;
}
.l_c02173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02173:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02173 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02173.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02173;src:url('chunks/assets/font_9acf688b132cc43148b971e0.woff2')format("woff");}.ff1_c02173{font-family:ff1_c02173;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02173;src:url('chunks/assets/font_17d95f12e5286b63c9e1a2a8.woff2')format("woff");}.ff2_c02173{font-family:ff2_c02173;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;}
.m0_c02173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02173{vertical-align:0.000000px;}
.ls0_c02173{letter-spacing:0.000000px;}
.sc__c02173{text-shadow:none;}
.sc0_c02173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02173{-webkit-text-stroke:0px transparent;}
.sc0_c02173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02173{word-spacing:-18.000000px;}
.ws1_c02173{word-spacing:0.000000px;}
._12_c02173{margin-left:-2.376000px;}
._4_c02173{margin-left:-1.044000px;}
._0_c02173{width:1.224000px;}
._c_c02173{width:2.424000px;}
._5_c02173{width:3.672000px;}
._6_c02173{width:5.256000px;}
._1_c02173{width:8.280000px;}
._b_c02173{width:9.396000px;}
._11_c02173{width:12.312000px;}
._9_c02173{width:13.536000px;}
._a_c02173{width:14.544000px;}
._10_c02173{width:16.632000px;}
._14_c02173{width:19.872000px;}
._e_c02173{width:22.392000px;}
._f_c02173{width:23.688000px;}
._13_c02173{width:25.992000px;}
._8_c02173{width:27.000000px;}
._7_c02173{width:28.188000px;}
._d_c02173{width:30.816000px;}
._2_c02173{width:34.416000px;}
._3_c02173{width:36.144000px;}
.fc1_c02173{color:rgb(192,80,77);}
.fc2_c02173{color:rgb(17,17,17);}
.fc0_c02173{color:rgb(0,0,0);}
.fs0_c02173{font-size:66.240000px;}
.fs1_c02173{font-size:72.000000px;}
.y0_c02173{bottom:0.000000px;}
.y3_c02173{bottom:4.680000px;}
.y2_c02173{bottom:41.796000px;}
.y1_c02173{bottom:75.456000px;}
.y22_c02173{bottom:133.776000px;}
.y21_c02173{bottom:164.910000px;}
.y20_c02173{bottom:195.870000px;}
.y1f_c02173{bottom:226.830000px;}
.y1e_c02173{bottom:257.970000px;}
.y1d_c02173{bottom:288.975000px;}
.y1c_c02173{bottom:320.115000px;}
.y1b_c02173{bottom:351.075000px;}
.y1a_c02173{bottom:382.215000px;}
.y19_c02173{bottom:413.175000px;}
.y18_c02173{bottom:444.315000px;}
.y17_c02173{bottom:475.275000px;}
.y16_c02173{bottom:506.415000px;}
.y15_c02173{bottom:537.405000px;}
.y14_c02173{bottom:568.545000px;}
.y13_c02173{bottom:599.505000px;}
.y12_c02173{bottom:630.645000px;}
.y11_c02173{bottom:661.605000px;}
.y10_c02173{bottom:692.745000px;}
.yf_c02173{bottom:723.705000px;}
.ye_c02173{bottom:754.845000px;}
.yd_c02173{bottom:785.805000px;}
.yc_c02173{bottom:816.990000px;}
.yb_c02173{bottom:847.950000px;}
.ya_c02173{bottom:879.090000px;}
.y9_c02173{bottom:910.050000px;}
.y8_c02173{bottom:941.190000px;}
.y7_c02173{bottom:972.150000px;}
.y6_c02173{bottom:1003.290000px;}
.y5_c02173{bottom:1034.250000px;}
.y4_c02173{bottom:1065.420000px;}
.h2_c02173{height:22.500000px;}
.h1_c02173{height:48.871406px;}
.h3_c02173{height:70.664062px;}
.h0_c02173{height:1188.000000px;}
.w1_c02173{width:66.636000px;}
.w0_c02173{width:918.000000px;}
.x0_c02173{left:0.000000px;}
.x3_c02173{left:16.560000px;}
.x1_c02173{left:127.656000px;}
.x4_c02173{left:187.050000px;}
.x2_c02173{left:820.950000px;}
@media print{
.v0_c02173{vertical-align:0.000000pt;}
.ls0_c02173{letter-spacing:0.000000pt;}
.ws0_c02173{word-spacing:-16.000000pt;}
.ws1_c02173{word-spacing:0.000000pt;}
._12_c02173{margin-left:-2.112000pt;}
._4_c02173{margin-left:-0.928000pt;}
._0_c02173{width:1.088000pt;}
._c_c02173{width:2.154667pt;}
._5_c02173{width:3.264000pt;}
._6_c02173{width:4.672000pt;}
._1_c02173{width:7.360000pt;}
._b_c02173{width:8.352000pt;}
._11_c02173{width:10.944000pt;}
._9_c02173{width:12.032000pt;}
._a_c02173{width:12.928000pt;}
._10_c02173{width:14.784000pt;}
._14_c02173{width:17.664000pt;}
._e_c02173{width:19.904000pt;}
._f_c02173{width:21.056000pt;}
._13_c02173{width:23.104000pt;}
._8_c02173{width:24.000000pt;}
._7_c02173{width:25.056000pt;}
._d_c02173{width:27.392000pt;}
._2_c02173{width:30.592000pt;}
._3_c02173{width:32.128000pt;}
.fs0_c02173{font-size:58.880000pt;}
.fs1_c02173{font-size:64.000000pt;}
.y0_c02173{bottom:0.000000pt;}
.y3_c02173{bottom:4.160000pt;}
.y2_c02173{bottom:37.152000pt;}
.y1_c02173{bottom:67.072000pt;}
.y22_c02173{bottom:118.912000pt;}
.y21_c02173{bottom:146.586667pt;}
.y20_c02173{bottom:174.106667pt;}
.y1f_c02173{bottom:201.626667pt;}
.y1e_c02173{bottom:229.306667pt;}
.y1d_c02173{bottom:256.866667pt;}
.y1c_c02173{bottom:284.546667pt;}
.y1b_c02173{bottom:312.066667pt;}
.y1a_c02173{bottom:339.746667pt;}
.y19_c02173{bottom:367.266667pt;}
.y18_c02173{bottom:394.946667pt;}
.y17_c02173{bottom:422.466667pt;}
.y16_c02173{bottom:450.146667pt;}
.y15_c02173{bottom:477.693333pt;}
.y14_c02173{bottom:505.373333pt;}
.y13_c02173{bottom:532.893333pt;}
.y12_c02173{bottom:560.573333pt;}
.y11_c02173{bottom:588.093333pt;}
.y10_c02173{bottom:615.773333pt;}
.yf_c02173{bottom:643.293333pt;}
.ye_c02173{bottom:670.973333pt;}
.yd_c02173{bottom:698.493333pt;}
.yc_c02173{bottom:726.213333pt;}
.yb_c02173{bottom:753.733333pt;}
.ya_c02173{bottom:781.413333pt;}
.y9_c02173{bottom:808.933333pt;}
.y8_c02173{bottom:836.613333pt;}
.y7_c02173{bottom:864.133333pt;}
.y6_c02173{bottom:891.813333pt;}
.y5_c02173{bottom:919.333333pt;}
.y4_c02173{bottom:947.040000pt;}
.h2_c02173{height:20.000000pt;}
.h1_c02173{height:43.441250pt;}
.h3_c02173{height:62.812500pt;}
.h0_c02173{height:1056.000000pt;}
.w1_c02173{width:59.232000pt;}
.w0_c02173{width:816.000000pt;}
.x0_c02173{left:0.000000pt;}
.x3_c02173{left:14.720000pt;}
.x1_c02173{left:113.472000pt;}
.x4_c02173{left:166.266667pt;}
.x2_c02173{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02174 {
    display:none;
  }
  .loading-indicator_c02174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02174 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02174 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02174" -> "#page-container .classname_c02174")
 */
.pf_c02174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02174 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02174 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02174 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02174 {overflow:visible;}
  }
}
.c_c02174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02174 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02174:after { /* webkit #35443 */
  content: '';
}
.t_c02174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02174 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02174 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02174 { /* info for Javascript */
  display:none;
}
.l_c02174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02174:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02174 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02174.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02174;src:url('chunks/assets/font_83cc0f0b7843b669b8ab5ada.woff2')format("woff");}.ff1_c02174{font-family:ff1_c02174;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02174;src:url('chunks/assets/font_dd240ebebec1b89f5b72019a.woff2')format("woff");}.ff2_c02174{font-family:ff2_c02174;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:ff3_c02174;src:url('chunks/assets/font_ab47d2e5a712cb46f35afc77.woff2')format("woff");}.ff3_c02174{font-family:ff3_c02174;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02174{vertical-align:0.000000px;}
.ls1_c02174{letter-spacing:-0.072000px;}
.ls0_c02174{letter-spacing:0.000000px;}
.sc__c02174{text-shadow:none;}
.sc0_c02174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02174{-webkit-text-stroke:0px transparent;}
.sc0_c02174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02174{word-spacing:-17.928000px;}
.ws1_c02174{word-spacing:0.000000px;}
._1_c02174{margin-left:-1.656000px;}
._0_c02174{width:1.044000px;}
._6_c02174{width:2.376000px;}
._7_c02174{width:3.456000px;}
._8_c02174{width:5.436000px;}
._10_c02174{width:7.200000px;}
._b_c02174{width:8.424000px;}
._c_c02174{width:9.576000px;}
._4_c02174{width:11.592000px;}
._5_c02174{width:12.708000px;}
._9_c02174{width:13.824000px;}
._a_c02174{width:15.192000px;}
._12_c02174{width:16.920000px;}
._2_c02174{width:19.944000px;}
._3_c02174{width:20.952000px;}
._e_c02174{width:23.220000px;}
._d_c02174{width:24.336000px;}
._f_c02174{width:25.500000px;}
._11_c02174{width:35.856000px;}
.fc1_c02174{color:rgb(192,80,77);}
.fc2_c02174{color:rgb(17,17,17);}
.fc0_c02174{color:rgb(0,0,0);}
.fs0_c02174{font-size:66.240000px;}
.fs1_c02174{font-size:72.000000px;}
.y0_c02174{bottom:0.000000px;}
.y3_c02174{bottom:4.680000px;}
.y2_c02174{bottom:41.796000px;}
.y1_c02174{bottom:75.456000px;}
.y21_c02174{bottom:164.910000px;}
.y20_c02174{bottom:195.870000px;}
.y1f_c02174{bottom:226.830000px;}
.y1e_c02174{bottom:257.970000px;}
.y1d_c02174{bottom:288.975000px;}
.y1c_c02174{bottom:320.115000px;}
.y1b_c02174{bottom:351.075000px;}
.y1a_c02174{bottom:382.215000px;}
.y19_c02174{bottom:413.175000px;}
.y18_c02174{bottom:444.315000px;}
.y17_c02174{bottom:475.275000px;}
.y16_c02174{bottom:506.415000px;}
.y15_c02174{bottom:537.405000px;}
.y14_c02174{bottom:568.545000px;}
.y13_c02174{bottom:599.505000px;}
.y12_c02174{bottom:630.645000px;}
.y11_c02174{bottom:661.605000px;}
.y10_c02174{bottom:692.745000px;}
.yf_c02174{bottom:723.705000px;}
.ye_c02174{bottom:754.845000px;}
.yd_c02174{bottom:785.805000px;}
.yc_c02174{bottom:816.990000px;}
.yb_c02174{bottom:847.950000px;}
.ya_c02174{bottom:879.090000px;}
.y9_c02174{bottom:910.050000px;}
.y8_c02174{bottom:941.190000px;}
.y7_c02174{bottom:972.150000px;}
.y6_c02174{bottom:1003.290000px;}
.y5_c02174{bottom:1034.250000px;}
.y4_c02174{bottom:1065.420000px;}
.h2_c02174{height:22.500000px;}
.h1_c02174{height:48.871406px;}
.h4_c02174{height:64.546875px;}
.h3_c02174{height:70.664062px;}
.h0_c02174{height:1188.000000px;}
.w1_c02174{width:66.636000px;}
.w0_c02174{width:918.000000px;}
.x0_c02174{left:0.000000px;}
.x3_c02174{left:16.560000px;}
.x1_c02174{left:127.656000px;}
.x4_c02174{left:187.050000px;}
.x2_c02174{left:820.950000px;}
@media print{
.v0_c02174{vertical-align:0.000000pt;}
.ls1_c02174{letter-spacing:-0.064000pt;}
.ls0_c02174{letter-spacing:0.000000pt;}
.ws0_c02174{word-spacing:-15.936000pt;}
.ws1_c02174{word-spacing:0.000000pt;}
._1_c02174{margin-left:-1.472000pt;}
._0_c02174{width:0.928000pt;}
._6_c02174{width:2.112000pt;}
._7_c02174{width:3.072000pt;}
._8_c02174{width:4.832000pt;}
._10_c02174{width:6.400000pt;}
._b_c02174{width:7.488000pt;}
._c_c02174{width:8.512000pt;}
._4_c02174{width:10.304000pt;}
._5_c02174{width:11.296000pt;}
._9_c02174{width:12.288000pt;}
._a_c02174{width:13.504000pt;}
._12_c02174{width:15.040000pt;}
._2_c02174{width:17.728000pt;}
._3_c02174{width:18.624000pt;}
._e_c02174{width:20.640000pt;}
._d_c02174{width:21.632000pt;}
._f_c02174{width:22.666667pt;}
._11_c02174{width:31.872000pt;}
.fs0_c02174{font-size:58.880000pt;}
.fs1_c02174{font-size:64.000000pt;}
.y0_c02174{bottom:0.000000pt;}
.y3_c02174{bottom:4.160000pt;}
.y2_c02174{bottom:37.152000pt;}
.y1_c02174{bottom:67.072000pt;}
.y21_c02174{bottom:146.586667pt;}
.y20_c02174{bottom:174.106667pt;}
.y1f_c02174{bottom:201.626667pt;}
.y1e_c02174{bottom:229.306667pt;}
.y1d_c02174{bottom:256.866667pt;}
.y1c_c02174{bottom:284.546667pt;}
.y1b_c02174{bottom:312.066667pt;}
.y1a_c02174{bottom:339.746667pt;}
.y19_c02174{bottom:367.266667pt;}
.y18_c02174{bottom:394.946667pt;}
.y17_c02174{bottom:422.466667pt;}
.y16_c02174{bottom:450.146667pt;}
.y15_c02174{bottom:477.693333pt;}
.y14_c02174{bottom:505.373333pt;}
.y13_c02174{bottom:532.893333pt;}
.y12_c02174{bottom:560.573333pt;}
.y11_c02174{bottom:588.093333pt;}
.y10_c02174{bottom:615.773333pt;}
.yf_c02174{bottom:643.293333pt;}
.ye_c02174{bottom:670.973333pt;}
.yd_c02174{bottom:698.493333pt;}
.yc_c02174{bottom:726.213333pt;}
.yb_c02174{bottom:753.733333pt;}
.ya_c02174{bottom:781.413333pt;}
.y9_c02174{bottom:808.933333pt;}
.y8_c02174{bottom:836.613333pt;}
.y7_c02174{bottom:864.133333pt;}
.y6_c02174{bottom:891.813333pt;}
.y5_c02174{bottom:919.333333pt;}
.y4_c02174{bottom:947.040000pt;}
.h2_c02174{height:20.000000pt;}
.h1_c02174{height:43.441250pt;}
.h4_c02174{height:57.375000pt;}
.h3_c02174{height:62.812500pt;}
.h0_c02174{height:1056.000000pt;}
.w1_c02174{width:59.232000pt;}
.w0_c02174{width:816.000000pt;}
.x0_c02174{left:0.000000pt;}
.x3_c02174{left:14.720000pt;}
.x1_c02174{left:113.472000pt;}
.x4_c02174{left:166.266667pt;}
.x2_c02174{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02175 {
    display:none;
  }
  .loading-indicator_c02175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02175 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02175 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02175" -> "#page-container .classname_c02175")
 */
.pf_c02175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02175 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02175 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02175 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02175 {overflow:visible;}
  }
}
.c_c02175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02175 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02175:after { /* webkit #35443 */
  content: '';
}
.t_c02175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02175 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02175 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02175 { /* info for Javascript */
  display:none;
}
.l_c02175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02175:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02175 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02175.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02175;src:url('chunks/assets/font_f41a402c08bc8c547bbbd41c.woff2')format("woff");}.ff1_c02175{font-family:ff1_c02175;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02175;src:url('chunks/assets/font_51365a5e11c8cfa78027e653.woff2')format("woff");}.ff2_c02175{font-family:ff2_c02175;line-height:1.112305;font-style:normal;font-weight: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_c02175;src:url('chunks/assets/font_309bd270f793ebeee9d32b12.woff2')format("woff");}.ff3_c02175{font-family:ff3_c02175;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;}
.m0_c02175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02175{vertical-align:0.000000px;}
.ls1_c02175{letter-spacing:0.000000px;}
.ls0_c02175{letter-spacing:14.400000px;}
.sc__c02175{text-shadow:none;}
.sc0_c02175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02175{-webkit-text-stroke:0px transparent;}
.sc0_c02175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02175{word-spacing:-18.000000px;}
.ws1_c02175{word-spacing:0.000000px;}
._3_c02175{margin-left:-1.080000px;}
._1_c02175{width:1.008000px;}
._5_c02175{width:2.160000px;}
._0_c02175{width:3.528000px;}
._2_c02175{width:4.608000px;}
._4_c02175{width:5.688000px;}
._f_c02175{width:6.780000px;}
._16_c02175{width:9.072000px;}
._15_c02175{width:10.152000px;}
._c_c02175{width:11.304000px;}
._8_c02175{width:13.032000px;}
._6_c02175{width:14.256000px;}
._7_c02175{width:15.564000px;}
._11_c02175{width:20.952000px;}
._12_c02175{width:22.500000px;}
._10_c02175{width:26.424000px;}
._9_c02175{width:28.224000px;}
._a_c02175{width:29.232000px;}
._b_c02175{width:30.504000px;}
._d_c02175{width:36.504000px;}
._e_c02175{width:37.656000px;}
._13_c02175{width:39.960000px;}
._14_c02175{width:41.256000px;}
.fc1_c02175{color:rgb(192,80,77);}
.fc2_c02175{color:rgb(17,17,17);}
.fc0_c02175{color:rgb(0,0,0);}
.fs0_c02175{font-size:66.240000px;}
.fs1_c02175{font-size:72.000000px;}
.y0_c02175{bottom:0.000000px;}
.y3_c02175{bottom:4.680000px;}
.y2_c02175{bottom:41.796000px;}
.y1_c02175{bottom:75.456000px;}
.y22_c02175{bottom:133.776000px;}
.y21_c02175{bottom:164.910000px;}
.y20_c02175{bottom:195.870000px;}
.y1f_c02175{bottom:226.830000px;}
.y1e_c02175{bottom:257.970000px;}
.y1d_c02175{bottom:288.975000px;}
.y1c_c02175{bottom:320.115000px;}
.y1b_c02175{bottom:351.075000px;}
.y1a_c02175{bottom:382.215000px;}
.y19_c02175{bottom:413.175000px;}
.y18_c02175{bottom:444.315000px;}
.y17_c02175{bottom:475.275000px;}
.y16_c02175{bottom:506.415000px;}
.y15_c02175{bottom:537.405000px;}
.y14_c02175{bottom:568.545000px;}
.y13_c02175{bottom:599.505000px;}
.y12_c02175{bottom:630.645000px;}
.y11_c02175{bottom:661.605000px;}
.y10_c02175{bottom:692.745000px;}
.yf_c02175{bottom:723.705000px;}
.ye_c02175{bottom:754.845000px;}
.yd_c02175{bottom:785.805000px;}
.yc_c02175{bottom:816.990000px;}
.yb_c02175{bottom:847.950000px;}
.ya_c02175{bottom:879.090000px;}
.y9_c02175{bottom:910.050000px;}
.y8_c02175{bottom:941.190000px;}
.y7_c02175{bottom:972.150000px;}
.y6_c02175{bottom:1003.290000px;}
.y5_c02175{bottom:1034.250000px;}
.y4_c02175{bottom:1065.420000px;}
.h2_c02175{height:22.500000px;}
.h1_c02175{height:48.871406px;}
.h3_c02175{height:64.546875px;}
.h4_c02175{height:70.664062px;}
.h0_c02175{height:1188.000000px;}
.w1_c02175{width:66.636000px;}
.w0_c02175{width:918.000000px;}
.x0_c02175{left:0.000000px;}
.x3_c02175{left:16.560000px;}
.x1_c02175{left:127.656000px;}
.x4_c02175{left:187.050000px;}
.x2_c02175{left:820.950000px;}
@media print{
.v0_c02175{vertical-align:0.000000pt;}
.ls1_c02175{letter-spacing:0.000000pt;}
.ls0_c02175{letter-spacing:12.800000pt;}
.ws0_c02175{word-spacing:-16.000000pt;}
.ws1_c02175{word-spacing:0.000000pt;}
._3_c02175{margin-left:-0.960000pt;}
._1_c02175{width:0.896000pt;}
._5_c02175{width:1.920000pt;}
._0_c02175{width:3.136000pt;}
._2_c02175{width:4.096000pt;}
._4_c02175{width:5.056000pt;}
._f_c02175{width:6.026667pt;}
._16_c02175{width:8.064000pt;}
._15_c02175{width:9.024000pt;}
._c_c02175{width:10.048000pt;}
._8_c02175{width:11.584000pt;}
._6_c02175{width:12.672000pt;}
._7_c02175{width:13.834667pt;}
._11_c02175{width:18.624000pt;}
._12_c02175{width:20.000000pt;}
._10_c02175{width:23.488000pt;}
._9_c02175{width:25.088000pt;}
._a_c02175{width:25.984000pt;}
._b_c02175{width:27.114667pt;}
._d_c02175{width:32.448000pt;}
._e_c02175{width:33.472000pt;}
._13_c02175{width:35.520000pt;}
._14_c02175{width:36.672000pt;}
.fs0_c02175{font-size:58.880000pt;}
.fs1_c02175{font-size:64.000000pt;}
.y0_c02175{bottom:0.000000pt;}
.y3_c02175{bottom:4.160000pt;}
.y2_c02175{bottom:37.152000pt;}
.y1_c02175{bottom:67.072000pt;}
.y22_c02175{bottom:118.912000pt;}
.y21_c02175{bottom:146.586667pt;}
.y20_c02175{bottom:174.106667pt;}
.y1f_c02175{bottom:201.626667pt;}
.y1e_c02175{bottom:229.306667pt;}
.y1d_c02175{bottom:256.866667pt;}
.y1c_c02175{bottom:284.546667pt;}
.y1b_c02175{bottom:312.066667pt;}
.y1a_c02175{bottom:339.746667pt;}
.y19_c02175{bottom:367.266667pt;}
.y18_c02175{bottom:394.946667pt;}
.y17_c02175{bottom:422.466667pt;}
.y16_c02175{bottom:450.146667pt;}
.y15_c02175{bottom:477.693333pt;}
.y14_c02175{bottom:505.373333pt;}
.y13_c02175{bottom:532.893333pt;}
.y12_c02175{bottom:560.573333pt;}
.y11_c02175{bottom:588.093333pt;}
.y10_c02175{bottom:615.773333pt;}
.yf_c02175{bottom:643.293333pt;}
.ye_c02175{bottom:670.973333pt;}
.yd_c02175{bottom:698.493333pt;}
.yc_c02175{bottom:726.213333pt;}
.yb_c02175{bottom:753.733333pt;}
.ya_c02175{bottom:781.413333pt;}
.y9_c02175{bottom:808.933333pt;}
.y8_c02175{bottom:836.613333pt;}
.y7_c02175{bottom:864.133333pt;}
.y6_c02175{bottom:891.813333pt;}
.y5_c02175{bottom:919.333333pt;}
.y4_c02175{bottom:947.040000pt;}
.h2_c02175{height:20.000000pt;}
.h1_c02175{height:43.441250pt;}
.h3_c02175{height:57.375000pt;}
.h4_c02175{height:62.812500pt;}
.h0_c02175{height:1056.000000pt;}
.w1_c02175{width:59.232000pt;}
.w0_c02175{width:816.000000pt;}
.x0_c02175{left:0.000000pt;}
.x3_c02175{left:14.720000pt;}
.x1_c02175{left:113.472000pt;}
.x4_c02175{left:166.266667pt;}
.x2_c02175{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02176 {
    display:none;
  }
  .loading-indicator_c02176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02176 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02176 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02176" -> "#page-container .classname_c02176")
 */
.pf_c02176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02176 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02176 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02176 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02176 {overflow:visible;}
  }
}
.c_c02176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02176 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02176:after { /* webkit #35443 */
  content: '';
}
.t_c02176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02176 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02176 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02176 { /* info for Javascript */
  display:none;
}
.l_c02176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02176:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02176 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02176.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02176;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02176{font-family:ff1_c02176;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02176;src:url('chunks/assets/font_c7d7196683906cd3e2d5a5cb.woff2')format("woff");}.ff2_c02176{font-family:ff2_c02176;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:ff3_c02176;src:url('chunks/assets/font_6c20592ad5b5ef00c0990551.woff2')format("woff");}.ff3_c02176{font-family:ff3_c02176;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02176{vertical-align:0.000000px;}
.ls0_c02176{letter-spacing:0.000000px;}
.sc__c02176{text-shadow:none;}
.sc0_c02176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02176{-webkit-text-stroke:0px transparent;}
.sc0_c02176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02176{word-spacing:0.000000px;}
._5_c02176{margin-left:-2.160000px;}
._4_c02176{margin-left:-1.080000px;}
._2_c02176{width:1.008000px;}
._0_c02176{width:2.016000px;}
._1_c02176{width:3.168000px;}
._18_c02176{width:4.392000px;}
._9_c02176{width:5.400000px;}
._a_c02176{width:6.696000px;}
._15_c02176{width:8.496000px;}
._f_c02176{width:9.504000px;}
._10_c02176{width:10.656000px;}
._7_c02176{width:12.024000px;}
._8_c02176{width:13.248000px;}
._3_c02176{width:15.624000px;}
._6_c02176{width:16.992000px;}
._17_c02176{width:19.080000px;}
._b_c02176{width:22.608000px;}
._c_c02176{width:23.616000px;}
._16_c02176{width:25.200000px;}
._13_c02176{width:26.352000px;}
._14_c02176{width:27.504000px;}
._11_c02176{width:41.256000px;}
._12_c02176{width:42.696000px;}
._d_c02176{width:45.144000px;}
._e_c02176{width:46.152000px;}
.fc1_c02176{color:rgb(192,80,77);}
.fc0_c02176{color:rgb(0,0,0);}
.fs0_c02176{font-size:66.240000px;}
.fs1_c02176{font-size:72.000000px;}
.y0_c02176{bottom:0.000000px;}
.y3_c02176{bottom:4.680000px;}
.y2_c02176{bottom:41.796000px;}
.y1_c02176{bottom:75.456000px;}
.y21_c02176{bottom:164.910000px;}
.y20_c02176{bottom:195.870000px;}
.y1f_c02176{bottom:226.830000px;}
.y1e_c02176{bottom:257.970000px;}
.y1d_c02176{bottom:288.975000px;}
.y1c_c02176{bottom:320.115000px;}
.y1b_c02176{bottom:351.075000px;}
.y1a_c02176{bottom:382.215000px;}
.y19_c02176{bottom:413.175000px;}
.y18_c02176{bottom:444.315000px;}
.y17_c02176{bottom:475.275000px;}
.y16_c02176{bottom:506.415000px;}
.y15_c02176{bottom:537.405000px;}
.y14_c02176{bottom:568.545000px;}
.y13_c02176{bottom:599.505000px;}
.y12_c02176{bottom:630.645000px;}
.y11_c02176{bottom:661.605000px;}
.y10_c02176{bottom:692.745000px;}
.yf_c02176{bottom:723.705000px;}
.ye_c02176{bottom:754.845000px;}
.yd_c02176{bottom:785.805000px;}
.yc_c02176{bottom:816.990000px;}
.yb_c02176{bottom:847.950000px;}
.ya_c02176{bottom:879.090000px;}
.y9_c02176{bottom:910.050000px;}
.y8_c02176{bottom:941.190000px;}
.y7_c02176{bottom:972.150000px;}
.y6_c02176{bottom:1003.290000px;}
.y5_c02176{bottom:1034.250000px;}
.y4_c02176{bottom:1065.420000px;}
.h2_c02176{height:22.500000px;}
.h1_c02176{height:48.871406px;}
.h3_c02176{height:70.664062px;}
.h0_c02176{height:1188.000000px;}
.w1_c02176{width:66.636000px;}
.w0_c02176{width:918.000000px;}
.x0_c02176{left:0.000000px;}
.x3_c02176{left:16.560000px;}
.x1_c02176{left:127.656000px;}
.x4_c02176{left:187.050000px;}
.x2_c02176{left:820.950000px;}
@media print{
.v0_c02176{vertical-align:0.000000pt;}
.ls0_c02176{letter-spacing:0.000000pt;}
.ws0_c02176{word-spacing:0.000000pt;}
._5_c02176{margin-left:-1.920000pt;}
._4_c02176{margin-left:-0.960000pt;}
._2_c02176{width:0.896000pt;}
._0_c02176{width:1.792000pt;}
._1_c02176{width:2.816000pt;}
._18_c02176{width:3.904000pt;}
._9_c02176{width:4.800000pt;}
._a_c02176{width:5.952000pt;}
._15_c02176{width:7.552000pt;}
._f_c02176{width:8.448000pt;}
._10_c02176{width:9.472000pt;}
._7_c02176{width:10.688000pt;}
._8_c02176{width:11.776000pt;}
._3_c02176{width:13.888000pt;}
._6_c02176{width:15.104000pt;}
._17_c02176{width:16.960000pt;}
._b_c02176{width:20.096000pt;}
._c_c02176{width:20.992000pt;}
._16_c02176{width:22.400000pt;}
._13_c02176{width:23.424000pt;}
._14_c02176{width:24.448000pt;}
._11_c02176{width:36.672000pt;}
._12_c02176{width:37.952000pt;}
._d_c02176{width:40.128000pt;}
._e_c02176{width:41.024000pt;}
.fs0_c02176{font-size:58.880000pt;}
.fs1_c02176{font-size:64.000000pt;}
.y0_c02176{bottom:0.000000pt;}
.y3_c02176{bottom:4.160000pt;}
.y2_c02176{bottom:37.152000pt;}
.y1_c02176{bottom:67.072000pt;}
.y21_c02176{bottom:146.586667pt;}
.y20_c02176{bottom:174.106667pt;}
.y1f_c02176{bottom:201.626667pt;}
.y1e_c02176{bottom:229.306667pt;}
.y1d_c02176{bottom:256.866667pt;}
.y1c_c02176{bottom:284.546667pt;}
.y1b_c02176{bottom:312.066667pt;}
.y1a_c02176{bottom:339.746667pt;}
.y19_c02176{bottom:367.266667pt;}
.y18_c02176{bottom:394.946667pt;}
.y17_c02176{bottom:422.466667pt;}
.y16_c02176{bottom:450.146667pt;}
.y15_c02176{bottom:477.693333pt;}
.y14_c02176{bottom:505.373333pt;}
.y13_c02176{bottom:532.893333pt;}
.y12_c02176{bottom:560.573333pt;}
.y11_c02176{bottom:588.093333pt;}
.y10_c02176{bottom:615.773333pt;}
.yf_c02176{bottom:643.293333pt;}
.ye_c02176{bottom:670.973333pt;}
.yd_c02176{bottom:698.493333pt;}
.yc_c02176{bottom:726.213333pt;}
.yb_c02176{bottom:753.733333pt;}
.ya_c02176{bottom:781.413333pt;}
.y9_c02176{bottom:808.933333pt;}
.y8_c02176{bottom:836.613333pt;}
.y7_c02176{bottom:864.133333pt;}
.y6_c02176{bottom:891.813333pt;}
.y5_c02176{bottom:919.333333pt;}
.y4_c02176{bottom:947.040000pt;}
.h2_c02176{height:20.000000pt;}
.h1_c02176{height:43.441250pt;}
.h3_c02176{height:62.812500pt;}
.h0_c02176{height:1056.000000pt;}
.w1_c02176{width:59.232000pt;}
.w0_c02176{width:816.000000pt;}
.x0_c02176{left:0.000000pt;}
.x3_c02176{left:14.720000pt;}
.x1_c02176{left:113.472000pt;}
.x4_c02176{left:166.266667pt;}
.x2_c02176{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02177 {
    display:none;
  }
  .loading-indicator_c02177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02177 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02177 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02177" -> "#page-container .classname_c02177")
 */
.pf_c02177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02177 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02177 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02177 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02177 {overflow:visible;}
  }
}
.c_c02177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02177 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02177:after { /* webkit #35443 */
  content: '';
}
.t_c02177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02177 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02177 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02177 { /* info for Javascript */
  display:none;
}
.l_c02177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02177:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02177 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02177.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02177;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02177{font-family:ff1_c02177;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02177;src:url('chunks/assets/font_bf452af3c5a14a8801d0bbbe.woff2')format("woff");}.ff2_c02177{font-family:ff2_c02177;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:ff3_c02177;src:url('chunks/assets/font_9b57f066b62ac0589b9cdac6.woff2')format("woff");}.ff3_c02177{font-family:ff3_c02177;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02177{vertical-align:0.000000px;}
.ls0_c02177{letter-spacing:0.000000px;}
.sc__c02177{text-shadow:none;}
.sc0_c02177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02177{-webkit-text-stroke:0px transparent;}
.sc0_c02177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02177{word-spacing:0.000000px;}
._7_c02177{margin-left:-2.220000px;}
._1_c02177{margin-left:-1.008000px;}
._3_c02177{width:1.224000px;}
._2_c02177{width:3.024000px;}
._4_c02177{width:4.464000px;}
._9_c02177{width:5.544000px;}
._0_c02177{width:7.776000px;}
._a_c02177{width:8.964000px;}
._b_c02177{width:10.800000px;}
._c_c02177{width:12.744000px;}
._f_c02177{width:15.768000px;}
._10_c02177{width:16.848000px;}
._8_c02177{width:19.296000px;}
._5_c02177{width:21.240000px;}
._6_c02177{width:22.680000px;}
._d_c02177{width:24.264000px;}
._e_c02177{width:30.096000px;}
._11_c02177{width:38.232000px;}
._12_c02177{width:39.744000px;}
.fc1_c02177{color:rgb(192,80,77);}
.fc0_c02177{color:rgb(0,0,0);}
.fs0_c02177{font-size:66.240000px;}
.fs1_c02177{font-size:72.000000px;}
.y0_c02177{bottom:0.000000px;}
.y3_c02177{bottom:4.680000px;}
.y2_c02177{bottom:41.796000px;}
.y1_c02177{bottom:75.456000px;}
.y21_c02177{bottom:164.910000px;}
.y20_c02177{bottom:195.870000px;}
.y1f_c02177{bottom:226.830000px;}
.y1e_c02177{bottom:257.970000px;}
.y1d_c02177{bottom:288.975000px;}
.y1c_c02177{bottom:320.115000px;}
.y1b_c02177{bottom:351.075000px;}
.y1a_c02177{bottom:382.215000px;}
.y19_c02177{bottom:413.175000px;}
.y18_c02177{bottom:444.315000px;}
.y17_c02177{bottom:475.275000px;}
.y16_c02177{bottom:506.415000px;}
.y15_c02177{bottom:537.405000px;}
.y14_c02177{bottom:568.545000px;}
.y13_c02177{bottom:599.505000px;}
.y12_c02177{bottom:630.645000px;}
.y11_c02177{bottom:661.605000px;}
.y10_c02177{bottom:692.745000px;}
.yf_c02177{bottom:723.705000px;}
.ye_c02177{bottom:754.845000px;}
.yd_c02177{bottom:785.805000px;}
.yc_c02177{bottom:816.990000px;}
.yb_c02177{bottom:847.950000px;}
.ya_c02177{bottom:879.090000px;}
.y9_c02177{bottom:910.050000px;}
.y8_c02177{bottom:941.190000px;}
.y7_c02177{bottom:972.150000px;}
.y6_c02177{bottom:1003.290000px;}
.y5_c02177{bottom:1034.250000px;}
.y4_c02177{bottom:1065.420000px;}
.h2_c02177{height:22.500000px;}
.h1_c02177{height:48.871406px;}
.h4_c02177{height:64.546875px;}
.h3_c02177{height:70.664062px;}
.h0_c02177{height:1188.000000px;}
.w1_c02177{width:66.636000px;}
.w0_c02177{width:918.000000px;}
.x0_c02177{left:0.000000px;}
.x3_c02177{left:16.560000px;}
.x1_c02177{left:127.656000px;}
.x4_c02177{left:187.050000px;}
.x2_c02177{left:820.950000px;}
@media print{
.v0_c02177{vertical-align:0.000000pt;}
.ls0_c02177{letter-spacing:0.000000pt;}
.ws0_c02177{word-spacing:0.000000pt;}
._7_c02177{margin-left:-1.973333pt;}
._1_c02177{margin-left:-0.896000pt;}
._3_c02177{width:1.088000pt;}
._2_c02177{width:2.688000pt;}
._4_c02177{width:3.968000pt;}
._9_c02177{width:4.928000pt;}
._0_c02177{width:6.912000pt;}
._a_c02177{width:7.968000pt;}
._b_c02177{width:9.600000pt;}
._c_c02177{width:11.328000pt;}
._f_c02177{width:14.016000pt;}
._10_c02177{width:14.976000pt;}
._8_c02177{width:17.152000pt;}
._5_c02177{width:18.880000pt;}
._6_c02177{width:20.160000pt;}
._d_c02177{width:21.568000pt;}
._e_c02177{width:26.752000pt;}
._11_c02177{width:33.984000pt;}
._12_c02177{width:35.328000pt;}
.fs0_c02177{font-size:58.880000pt;}
.fs1_c02177{font-size:64.000000pt;}
.y0_c02177{bottom:0.000000pt;}
.y3_c02177{bottom:4.160000pt;}
.y2_c02177{bottom:37.152000pt;}
.y1_c02177{bottom:67.072000pt;}
.y21_c02177{bottom:146.586667pt;}
.y20_c02177{bottom:174.106667pt;}
.y1f_c02177{bottom:201.626667pt;}
.y1e_c02177{bottom:229.306667pt;}
.y1d_c02177{bottom:256.866667pt;}
.y1c_c02177{bottom:284.546667pt;}
.y1b_c02177{bottom:312.066667pt;}
.y1a_c02177{bottom:339.746667pt;}
.y19_c02177{bottom:367.266667pt;}
.y18_c02177{bottom:394.946667pt;}
.y17_c02177{bottom:422.466667pt;}
.y16_c02177{bottom:450.146667pt;}
.y15_c02177{bottom:477.693333pt;}
.y14_c02177{bottom:505.373333pt;}
.y13_c02177{bottom:532.893333pt;}
.y12_c02177{bottom:560.573333pt;}
.y11_c02177{bottom:588.093333pt;}
.y10_c02177{bottom:615.773333pt;}
.yf_c02177{bottom:643.293333pt;}
.ye_c02177{bottom:670.973333pt;}
.yd_c02177{bottom:698.493333pt;}
.yc_c02177{bottom:726.213333pt;}
.yb_c02177{bottom:753.733333pt;}
.ya_c02177{bottom:781.413333pt;}
.y9_c02177{bottom:808.933333pt;}
.y8_c02177{bottom:836.613333pt;}
.y7_c02177{bottom:864.133333pt;}
.y6_c02177{bottom:891.813333pt;}
.y5_c02177{bottom:919.333333pt;}
.y4_c02177{bottom:947.040000pt;}
.h2_c02177{height:20.000000pt;}
.h1_c02177{height:43.441250pt;}
.h4_c02177{height:57.375000pt;}
.h3_c02177{height:62.812500pt;}
.h0_c02177{height:1056.000000pt;}
.w1_c02177{width:59.232000pt;}
.w0_c02177{width:816.000000pt;}
.x0_c02177{left:0.000000pt;}
.x3_c02177{left:14.720000pt;}
.x1_c02177{left:113.472000pt;}
.x4_c02177{left:166.266667pt;}
.x2_c02177{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02178 {
    display:none;
  }
  .loading-indicator_c02178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02178 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02178 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02178" -> "#page-container .classname_c02178")
 */
.pf_c02178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02178 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02178 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02178 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02178 {overflow:visible;}
  }
}
.c_c02178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02178 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02178:after { /* webkit #35443 */
  content: '';
}
.t_c02178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02178 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02178 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02178 { /* info for Javascript */
  display:none;
}
.l_c02178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02178:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02178 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02178.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02178;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02178{font-family:ff1_c02178;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02178;src:url('chunks/assets/font_41630191966e5a8e4de2e128.woff2')format("woff");}.ff2_c02178{font-family:ff2_c02178;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:ff3_c02178;src:url('chunks/assets/font_611276e502fcff769ef11bc4.woff2')format("woff");}.ff3_c02178{font-family:ff3_c02178;line-height:1.112305;font-style:normal;font-weight: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_c02178;src:url('chunks/assets/font_2d04e5d93e32d63ed81e7ff1.woff2')format("woff");}.ff4_c02178{font-family:ff4_c02178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02178{vertical-align:0.000000px;}
.ls0_c02178{letter-spacing:0.000000px;}
.sc__c02178{text-shadow:none;}
.sc0_c02178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02178{-webkit-text-stroke:0px transparent;}
.sc0_c02178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02178{word-spacing:0.000000px;}
._4_c02178{margin-left:-2.160000px;}
._5_c02178{margin-left:-1.008000px;}
._2_c02178{width:1.152000px;}
._7_c02178{width:2.880000px;}
._0_c02178{width:4.464000px;}
._1_c02178{width:5.544000px;}
._6_c02178{width:7.128000px;}
._8_c02178{width:8.136000px;}
._9_c02178{width:9.720000px;}
._3_c02178{width:19.440000px;}
.fc1_c02178{color:rgb(192,80,77);}
.fc2_c02178{color:rgb(17,17,17);}
.fc0_c02178{color:rgb(0,0,0);}
.fs0_c02178{font-size:66.240000px;}
.fs1_c02178{font-size:72.000000px;}
.y0_c02178{bottom:0.000000px;}
.y3_c02178{bottom:4.680000px;}
.y2_c02178{bottom:41.796000px;}
.y1_c02178{bottom:75.456000px;}
.y18_c02178{bottom:444.315000px;}
.y17_c02178{bottom:475.275000px;}
.y16_c02178{bottom:506.415000px;}
.y15_c02178{bottom:537.405000px;}
.y14_c02178{bottom:568.545000px;}
.y13_c02178{bottom:599.505000px;}
.y12_c02178{bottom:630.645000px;}
.y11_c02178{bottom:661.605000px;}
.y10_c02178{bottom:692.745000px;}
.yf_c02178{bottom:723.705000px;}
.ye_c02178{bottom:754.845000px;}
.yd_c02178{bottom:785.805000px;}
.yc_c02178{bottom:816.990000px;}
.yb_c02178{bottom:847.950000px;}
.ya_c02178{bottom:879.090000px;}
.y9_c02178{bottom:910.050000px;}
.y8_c02178{bottom:941.190000px;}
.y7_c02178{bottom:972.150000px;}
.y6_c02178{bottom:1003.290000px;}
.y5_c02178{bottom:1034.250000px;}
.y4_c02178{bottom:1065.420000px;}
.h2_c02178{height:22.500000px;}
.h1_c02178{height:48.871406px;}
.h4_c02178{height:64.546875px;}
.h3_c02178{height:70.664062px;}
.h0_c02178{height:1188.000000px;}
.w1_c02178{width:66.636000px;}
.w0_c02178{width:918.000000px;}
.x0_c02178{left:0.000000px;}
.x3_c02178{left:16.560000px;}
.x1_c02178{left:127.656000px;}
.x4_c02178{left:187.050000px;}
.x2_c02178{left:820.950000px;}
@media print{
.v0_c02178{vertical-align:0.000000pt;}
.ls0_c02178{letter-spacing:0.000000pt;}
.ws0_c02178{word-spacing:0.000000pt;}
._4_c02178{margin-left:-1.920000pt;}
._5_c02178{margin-left:-0.896000pt;}
._2_c02178{width:1.024000pt;}
._7_c02178{width:2.560000pt;}
._0_c02178{width:3.968000pt;}
._1_c02178{width:4.928000pt;}
._6_c02178{width:6.336000pt;}
._8_c02178{width:7.232000pt;}
._9_c02178{width:8.640000pt;}
._3_c02178{width:17.280000pt;}
.fs0_c02178{font-size:58.880000pt;}
.fs1_c02178{font-size:64.000000pt;}
.y0_c02178{bottom:0.000000pt;}
.y3_c02178{bottom:4.160000pt;}
.y2_c02178{bottom:37.152000pt;}
.y1_c02178{bottom:67.072000pt;}
.y18_c02178{bottom:394.946667pt;}
.y17_c02178{bottom:422.466667pt;}
.y16_c02178{bottom:450.146667pt;}
.y15_c02178{bottom:477.693333pt;}
.y14_c02178{bottom:505.373333pt;}
.y13_c02178{bottom:532.893333pt;}
.y12_c02178{bottom:560.573333pt;}
.y11_c02178{bottom:588.093333pt;}
.y10_c02178{bottom:615.773333pt;}
.yf_c02178{bottom:643.293333pt;}
.ye_c02178{bottom:670.973333pt;}
.yd_c02178{bottom:698.493333pt;}
.yc_c02178{bottom:726.213333pt;}
.yb_c02178{bottom:753.733333pt;}
.ya_c02178{bottom:781.413333pt;}
.y9_c02178{bottom:808.933333pt;}
.y8_c02178{bottom:836.613333pt;}
.y7_c02178{bottom:864.133333pt;}
.y6_c02178{bottom:891.813333pt;}
.y5_c02178{bottom:919.333333pt;}
.y4_c02178{bottom:947.040000pt;}
.h2_c02178{height:20.000000pt;}
.h1_c02178{height:43.441250pt;}
.h4_c02178{height:57.375000pt;}
.h3_c02178{height:62.812500pt;}
.h0_c02178{height:1056.000000pt;}
.w1_c02178{width:59.232000pt;}
.w0_c02178{width:816.000000pt;}
.x0_c02178{left:0.000000pt;}
.x3_c02178{left:14.720000pt;}
.x1_c02178{left:113.472000pt;}
.x4_c02178{left:166.266667pt;}
.x2_c02178{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02179 {
    display:none;
  }
  .loading-indicator_c02179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02179 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02179 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02179" -> "#page-container .classname_c02179")
 */
.pf_c02179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02179 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02179 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02179 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02179 {overflow:visible;}
  }
}
.c_c02179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02179 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02179:after { /* webkit #35443 */
  content: '';
}
.t_c02179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02179 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02179 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02179 { /* info for Javascript */
  display:none;
}
.l_c02179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02179:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02179 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02179.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02179;src:url('chunks/assets/font_065c201d143d33d2e56e9788.woff2')format("woff");}.ff1_c02179{font-family:ff1_c02179;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02179;src:url('chunks/assets/font_46033eba4963db68863b8960.woff2')format("woff");}.ff2_c02179{font-family:ff2_c02179;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:ff3_c02179;src:url('chunks/assets/font_f0eeb0b46e5043f58d83492d.woff2')format("woff");}.ff3_c02179{font-family:ff3_c02179;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02179{vertical-align:0.000000px;}
.ls0_c02179{letter-spacing:0.000000px;}
.sc__c02179{text-shadow:none;}
.sc0_c02179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02179{-webkit-text-stroke:0px transparent;}
.sc0_c02179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02179{word-spacing:0.000000px;}
._0_c02179{margin-left:-1.080000px;}
._1_c02179{width:1.092000px;}
._5_c02179{width:3.096000px;}
._4_c02179{width:4.104000px;}
._9_c02179{width:5.172000px;}
._b_c02179{width:6.696000px;}
._2_c02179{width:7.704000px;}
._3_c02179{width:8.712000px;}
._e_c02179{width:10.344000px;}
._c_c02179{width:12.960000px;}
._d_c02179{width:14.316000px;}
._6_c02179{width:15.336000px;}
._7_c02179{width:16.884000px;}
._f_c02179{width:23.040000px;}
._a_c02179{width:33.624000px;}
._8_c02179{width:35.064000px;}
.fc1_c02179{color:rgb(192,80,77);}
.fc3_c02179{color:rgb(255,255,255);}
.fc2_c02179{color:rgb(17,17,17);}
.fc0_c02179{color:rgb(0,0,0);}
.fs0_c02179{font-size:66.240000px;}
.fs1_c02179{font-size:72.000000px;}
.y0_c02179{bottom:0.000000px;}
.ya_c02179{bottom:4.500000px;}
.y3_c02179{bottom:4.680000px;}
.y8_c02179{bottom:8.640000px;}
.y2_c02179{bottom:41.796000px;}
.y1_c02179{bottom:75.456000px;}
.y29_c02179{bottom:132.516000px;}
.y28_c02179{bottom:163.470000px;}
.y27_c02179{bottom:194.430000px;}
.y26_c02179{bottom:225.570000px;}
.y25_c02179{bottom:256.530000px;}
.y24_c02179{bottom:287.715000px;}
.y23_c02179{bottom:318.675000px;}
.y22_c02179{bottom:349.815000px;}
.y21_c02179{bottom:380.775000px;}
.y20_c02179{bottom:411.915000px;}
.y1f_c02179{bottom:442.875000px;}
.y1e_c02179{bottom:474.015000px;}
.y1d_c02179{bottom:504.975000px;}
.y1c_c02179{bottom:536.145000px;}
.y1b_c02179{bottom:567.105000px;}
.y1a_c02179{bottom:598.245000px;}
.y19_c02179{bottom:629.205000px;}
.y18_c02179{bottom:660.345000px;}
.y17_c02179{bottom:691.305000px;}
.y16_c02179{bottom:722.445000px;}
.y15_c02179{bottom:743.325000px;}
.y14_c02179{bottom:764.025000px;}
.y13_c02179{bottom:784.725000px;}
.y12_c02179{bottom:805.470000px;}
.y11_c02179{bottom:822.390000px;}
.y10_c02179{bottom:843.810000px;}
.yf_c02179{bottom:865.230000px;}
.ye_c02179{bottom:886.650000px;}
.yd_c02179{bottom:908.070000px;}
.yc_c02179{bottom:929.670000px;}
.yb_c02179{bottom:951.090000px;}
.y9_c02179{bottom:972.510000px;}
.y7_c02179{bottom:993.930000px;}
.y6_c02179{bottom:1024.170000px;}
.y5_c02179{bottom:1044.870000px;}
.y4_c02179{bottom:1065.600000px;}
.h5_c02179{height:20.700000px;}
.h2_c02179{height:22.500000px;}
.h4_c02179{height:24.840000px;}
.h1_c02179{height:48.871406px;}
.h6_c02179{height:64.546875px;}
.h3_c02179{height:70.664062px;}
.h0_c02179{height:1188.000000px;}
.w1_c02179{width:66.636000px;}
.w3_c02179{width:169.410000px;}
.w2_c02179{width:437.115000px;}
.w0_c02179{width:918.000000px;}
.x0_c02179{left:0.000000px;}
.x9_c02179{left:14.220000px;}
.x3_c02179{left:16.560000px;}
.xb_c02179{left:75.645000px;}
.xd_c02179{left:80.145000px;}
.x1_c02179{left:127.656000px;}
.xc_c02179{left:154.845000px;}
.xa_c02179{left:160.785000px;}
.xe_c02179{left:167.265000px;}
.xf_c02179{left:173.205000px;}
.x6_c02179{left:179.310000px;}
.x13_c02179{left:180.750000px;}
.x10_c02179{left:183.465000px;}
.x12_c02179{left:187.050000px;}
.x7_c02179{left:190.485000px;}
.x11_c02179{left:198.585000px;}
.x5_c02179{left:238.890000px;}
.x4_c02179{left:414.975000px;}
.x8_c02179{left:617.145000px;}
.x2_c02179{left:820.950000px;}
@media print{
.v0_c02179{vertical-align:0.000000pt;}
.ls0_c02179{letter-spacing:0.000000pt;}
.ws0_c02179{word-spacing:0.000000pt;}
._0_c02179{margin-left:-0.960000pt;}
._1_c02179{width:0.970667pt;}
._5_c02179{width:2.752000pt;}
._4_c02179{width:3.648000pt;}
._9_c02179{width:4.597333pt;}
._b_c02179{width:5.952000pt;}
._2_c02179{width:6.848000pt;}
._3_c02179{width:7.744000pt;}
._e_c02179{width:9.194667pt;}
._c_c02179{width:11.520000pt;}
._d_c02179{width:12.725333pt;}
._6_c02179{width:13.632000pt;}
._7_c02179{width:15.008000pt;}
._f_c02179{width:20.480000pt;}
._a_c02179{width:29.888000pt;}
._8_c02179{width:31.168000pt;}
.fs0_c02179{font-size:58.880000pt;}
.fs1_c02179{font-size:64.000000pt;}
.y0_c02179{bottom:0.000000pt;}
.ya_c02179{bottom:4.000000pt;}
.y3_c02179{bottom:4.160000pt;}
.y8_c02179{bottom:7.680000pt;}
.y2_c02179{bottom:37.152000pt;}
.y1_c02179{bottom:67.072000pt;}
.y29_c02179{bottom:117.792000pt;}
.y28_c02179{bottom:145.306667pt;}
.y27_c02179{bottom:172.826667pt;}
.y26_c02179{bottom:200.506667pt;}
.y25_c02179{bottom:228.026667pt;}
.y24_c02179{bottom:255.746667pt;}
.y23_c02179{bottom:283.266667pt;}
.y22_c02179{bottom:310.946667pt;}
.y21_c02179{bottom:338.466667pt;}
.y20_c02179{bottom:366.146667pt;}
.y1f_c02179{bottom:393.666667pt;}
.y1e_c02179{bottom:421.346667pt;}
.y1d_c02179{bottom:448.866667pt;}
.y1c_c02179{bottom:476.573333pt;}
.y1b_c02179{bottom:504.093333pt;}
.y1a_c02179{bottom:531.773333pt;}
.y19_c02179{bottom:559.293333pt;}
.y18_c02179{bottom:586.973333pt;}
.y17_c02179{bottom:614.493333pt;}
.y16_c02179{bottom:642.173333pt;}
.y15_c02179{bottom:660.733333pt;}
.y14_c02179{bottom:679.133333pt;}
.y13_c02179{bottom:697.533333pt;}
.y12_c02179{bottom:715.973333pt;}
.y11_c02179{bottom:731.013333pt;}
.y10_c02179{bottom:750.053333pt;}
.yf_c02179{bottom:769.093333pt;}
.ye_c02179{bottom:788.133333pt;}
.yd_c02179{bottom:807.173333pt;}
.yc_c02179{bottom:826.373333pt;}
.yb_c02179{bottom:845.413333pt;}
.y9_c02179{bottom:864.453333pt;}
.y7_c02179{bottom:883.493333pt;}
.y6_c02179{bottom:910.373333pt;}
.y5_c02179{bottom:928.773333pt;}
.y4_c02179{bottom:947.200000pt;}
.h5_c02179{height:18.400000pt;}
.h2_c02179{height:20.000000pt;}
.h4_c02179{height:22.080000pt;}
.h1_c02179{height:43.441250pt;}
.h6_c02179{height:57.375000pt;}
.h3_c02179{height:62.812500pt;}
.h0_c02179{height:1056.000000pt;}
.w1_c02179{width:59.232000pt;}
.w3_c02179{width:150.586667pt;}
.w2_c02179{width:388.546667pt;}
.w0_c02179{width:816.000000pt;}
.x0_c02179{left:0.000000pt;}
.x9_c02179{left:12.640000pt;}
.x3_c02179{left:14.720000pt;}
.xb_c02179{left:67.240000pt;}
.xd_c02179{left:71.240000pt;}
.x1_c02179{left:113.472000pt;}
.xc_c02179{left:137.640000pt;}
.xa_c02179{left:142.920000pt;}
.xe_c02179{left:148.680000pt;}
.xf_c02179{left:153.960000pt;}
.x6_c02179{left:159.386667pt;}
.x13_c02179{left:160.666667pt;}
.x10_c02179{left:163.080000pt;}
.x12_c02179{left:166.266667pt;}
.x7_c02179{left:169.320000pt;}
.x11_c02179{left:176.520000pt;}
.x5_c02179{left:212.346667pt;}
.x4_c02179{left:368.866667pt;}
.x8_c02179{left:548.573333pt;}
.x2_c02179{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02180 {
    display:none;
  }
  .loading-indicator_c02180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02180 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02180 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02180" -> "#page-container .classname_c02180")
 */
.pf_c02180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02180 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02180 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02180 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02180 {overflow:visible;}
  }
}
.c_c02180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02180 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02180:after { /* webkit #35443 */
  content: '';
}
.t_c02180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02180 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02180 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02180 { /* info for Javascript */
  display:none;
}
.l_c02180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02180:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02180 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02180.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02180;src:url('chunks/assets/font_76a6f2e67be8565a80a8e862.woff2')format("woff");}.ff1_c02180{font-family:ff1_c02180;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02180;src:url('chunks/assets/font_1d7ad21fe09373c74ee6fd5c.woff2')format("woff");}.ff2_c02180{font-family:ff2_c02180;line-height:1.112305;font-style:normal;font-weight: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_c02180;src:url('chunks/assets/font_0d058c6814d5dcceee8c3bb6.woff2')format("woff");}.ff3_c02180{font-family:ff3_c02180;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_c02180;src:url('chunks/assets/font_24b6ab512d7711bfbcd92c83.woff2')format("woff");}.ff4_c02180{font-family:ff4_c02180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02180{vertical-align:0.000000px;}
.ls0_c02180{letter-spacing:0.000000px;}
.sc__c02180{text-shadow:none;}
.sc0_c02180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02180{-webkit-text-stroke:0px transparent;}
.sc0_c02180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02180{word-spacing:0.000000px;}
._1_c02180{margin-left:-1.224000px;}
._4_c02180{width:1.008000px;}
._5_c02180{width:2.088000px;}
._6_c02180{width:3.456000px;}
._7_c02180{width:4.968000px;}
._2_c02180{width:6.048000px;}
._0_c02180{width:7.128000px;}
._3_c02180{width:8.712000px;}
._8_c02180{width:10.224000px;}
._9_c02180{width:16.992000px;}
._a_c02180{width:43.128000px;}
._b_c02180{width:44.208000px;}
.fc1_c02180{color:rgb(192,80,77);}
.fc3_c02180{color:rgb(255,255,255);}
.fc2_c02180{color:rgb(17,17,17);}
.fc0_c02180{color:rgb(0,0,0);}
.fs0_c02180{font-size:66.240000px;}
.fs1_c02180{font-size:72.000000px;}
.y0_c02180{bottom:0.000000px;}
.y15_c02180{bottom:4.140000px;}
.y12_c02180{bottom:4.500000px;}
.y3_c02180{bottom:4.680000px;}
.y13_c02180{bottom:5.040000px;}
.y10_c02180{bottom:5.400000px;}
.y1c_c02180{bottom:24.840000px;}
.y1b_c02180{bottom:25.200000px;}
.yf_c02180{bottom:26.100000px;}
.y2_c02180{bottom:41.796000px;}
.y1_c02180{bottom:75.456000px;}
.y2d_c02180{bottom:135.216000px;}
.y2c_c02180{bottom:166.170000px;}
.y2b_c02180{bottom:197.130000px;}
.y2a_c02180{bottom:228.270000px;}
.y29_c02180{bottom:259.230000px;}
.y28_c02180{bottom:290.415000px;}
.y27_c02180{bottom:321.375000px;}
.y26_c02180{bottom:352.515000px;}
.y25_c02180{bottom:383.475000px;}
.y24_c02180{bottom:414.615000px;}
.y23_c02180{bottom:435.495000px;}
.y22_c02180{bottom:456.195000px;}
.y21_c02180{bottom:476.895000px;}
.y20_c02180{bottom:497.595000px;}
.y1f_c02180{bottom:514.515000px;}
.y1e_c02180{bottom:535.965000px;}
.y1d_c02180{bottom:557.385000px;}
.y1a_c02180{bottom:599.505000px;}
.y19_c02180{bottom:641.805000px;}
.y18_c02180{bottom:663.225000px;}
.y17_c02180{bottom:684.645000px;}
.y16_c02180{bottom:706.065000px;}
.y14_c02180{bottom:727.485000px;}
.ye_c02180{bottom:748.905000px;}
.y11_c02180{bottom:770.505000px;}
.yd_c02180{bottom:806.550000px;}
.yc_c02180{bottom:827.430000px;}
.yb_c02180{bottom:848.130000px;}
.ya_c02180{bottom:879.090000px;}
.y9_c02180{bottom:910.050000px;}
.y8_c02180{bottom:941.190000px;}
.y7_c02180{bottom:972.150000px;}
.y6_c02180{bottom:1003.290000px;}
.y5_c02180{bottom:1034.250000px;}
.y4_c02180{bottom:1065.420000px;}
.h6_c02180{height:20.700000px;}
.h9_c02180{height:20.736000px;}
.h2_c02180{height:22.500000px;}
.h8_c02180{height:41.400000px;}
.h5_c02180{height:42.300000px;}
.h1_c02180{height:48.871406px;}
.h3_c02180{height:64.546875px;}
.h4_c02180{height:70.664062px;}
.h7_c02180{height:72.562500px;}
.h0_c02180{height:1188.000000px;}
.w1_c02180{width:66.636000px;}
.w4_c02180{width:85.320000px;}
.w5_c02180{width:94.896000px;}
.w6_c02180{width:105.660000px;}
.w2_c02180{width:235.110000px;}
.w3_c02180{width:296.895000px;}
.w0_c02180{width:918.000000px;}
.x0_c02180{left:0.000000px;}
.x10_c02180{left:11.160000px;}
.x3_c02180{left:16.560000px;}
.x11_c02180{left:18.360000px;}
.x13_c02180{left:20.340000px;}
.x15_c02180{left:23.040000px;}
.x19_c02180{left:33.660000px;}
.x18_c02180{left:38.520000px;}
.xf_c02180{left:42.660000px;}
.x17_c02180{left:48.240000px;}
.x1f_c02180{left:49.860000px;}
.x1a_c02180{left:51.840000px;}
.x1e_c02180{left:59.940000px;}
.x1c_c02180{left:62.820000px;}
.x16_c02180{left:64.800000px;}
.x1d_c02180{left:67.320000px;}
.x1b_c02180{left:69.840000px;}
.x20_c02180{left:83.340000px;}
.x22_c02180{left:86.040000px;}
.xb_c02180{left:93.420000px;}
.x21_c02180{left:97.560000px;}
.xd_c02180{left:111.090000px;}
.xa_c02180{left:117.585000px;}
.x1_c02180{left:127.656000px;}
.x8_c02180{left:154.650000px;}
.x9_c02180{left:179.310000px;}
.x4_c02180{left:180.750000px;}
.x23_c02180{left:187.050000px;}
.x7_c02180{left:213.330000px;}
.xc_c02180{left:415.155000px;}
.x6_c02180{left:428.475000px;}
.x5_c02180{left:472.575000px;}
.x12_c02180{left:510.765000px;}
.x14_c02180{left:617.145000px;}
.xe_c02180{left:712.950000px;}
.x2_c02180{left:820.950000px;}
@media print{
.v0_c02180{vertical-align:0.000000pt;}
.ls0_c02180{letter-spacing:0.000000pt;}
.ws0_c02180{word-spacing:0.000000pt;}
._1_c02180{margin-left:-1.088000pt;}
._4_c02180{width:0.896000pt;}
._5_c02180{width:1.856000pt;}
._6_c02180{width:3.072000pt;}
._7_c02180{width:4.416000pt;}
._2_c02180{width:5.376000pt;}
._0_c02180{width:6.336000pt;}
._3_c02180{width:7.744000pt;}
._8_c02180{width:9.088000pt;}
._9_c02180{width:15.104000pt;}
._a_c02180{width:38.336000pt;}
._b_c02180{width:39.296000pt;}
.fs0_c02180{font-size:58.880000pt;}
.fs1_c02180{font-size:64.000000pt;}
.y0_c02180{bottom:0.000000pt;}
.y15_c02180{bottom:3.680000pt;}
.y12_c02180{bottom:4.000000pt;}
.y3_c02180{bottom:4.160000pt;}
.y13_c02180{bottom:4.480000pt;}
.y10_c02180{bottom:4.800000pt;}
.y1c_c02180{bottom:22.080000pt;}
.y1b_c02180{bottom:22.400000pt;}
.yf_c02180{bottom:23.200000pt;}
.y2_c02180{bottom:37.152000pt;}
.y1_c02180{bottom:67.072000pt;}
.y2d_c02180{bottom:120.192000pt;}
.y2c_c02180{bottom:147.706667pt;}
.y2b_c02180{bottom:175.226667pt;}
.y2a_c02180{bottom:202.906667pt;}
.y29_c02180{bottom:230.426667pt;}
.y28_c02180{bottom:258.146667pt;}
.y27_c02180{bottom:285.666667pt;}
.y26_c02180{bottom:313.346667pt;}
.y25_c02180{bottom:340.866667pt;}
.y24_c02180{bottom:368.546667pt;}
.y23_c02180{bottom:387.106667pt;}
.y22_c02180{bottom:405.506667pt;}
.y21_c02180{bottom:423.906667pt;}
.y20_c02180{bottom:442.306667pt;}
.y1f_c02180{bottom:457.346667pt;}
.y1e_c02180{bottom:476.413333pt;}
.y1d_c02180{bottom:495.453333pt;}
.y1a_c02180{bottom:532.893333pt;}
.y19_c02180{bottom:570.493333pt;}
.y18_c02180{bottom:589.533333pt;}
.y17_c02180{bottom:608.573333pt;}
.y16_c02180{bottom:627.613333pt;}
.y14_c02180{bottom:646.653333pt;}
.ye_c02180{bottom:665.693333pt;}
.y11_c02180{bottom:684.893333pt;}
.yd_c02180{bottom:716.933333pt;}
.yc_c02180{bottom:735.493333pt;}
.yb_c02180{bottom:753.893333pt;}
.ya_c02180{bottom:781.413333pt;}
.y9_c02180{bottom:808.933333pt;}
.y8_c02180{bottom:836.613333pt;}
.y7_c02180{bottom:864.133333pt;}
.y6_c02180{bottom:891.813333pt;}
.y5_c02180{bottom:919.333333pt;}
.y4_c02180{bottom:947.040000pt;}
.h6_c02180{height:18.400000pt;}
.h9_c02180{height:18.432000pt;}
.h2_c02180{height:20.000000pt;}
.h8_c02180{height:36.800000pt;}
.h5_c02180{height:37.600000pt;}
.h1_c02180{height:43.441250pt;}
.h3_c02180{height:57.375000pt;}
.h4_c02180{height:62.812500pt;}
.h7_c02180{height:64.500000pt;}
.h0_c02180{height:1056.000000pt;}
.w1_c02180{width:59.232000pt;}
.w4_c02180{width:75.840000pt;}
.w5_c02180{width:84.352000pt;}
.w6_c02180{width:93.920000pt;}
.w2_c02180{width:208.986667pt;}
.w3_c02180{width:263.906667pt;}
.w0_c02180{width:816.000000pt;}
.x0_c02180{left:0.000000pt;}
.x10_c02180{left:9.920000pt;}
.x3_c02180{left:14.720000pt;}
.x11_c02180{left:16.320000pt;}
.x13_c02180{left:18.080000pt;}
.x15_c02180{left:20.480000pt;}
.x19_c02180{left:29.920000pt;}
.x18_c02180{left:34.240000pt;}
.xf_c02180{left:37.920000pt;}
.x17_c02180{left:42.880000pt;}
.x1f_c02180{left:44.320000pt;}
.x1a_c02180{left:46.080000pt;}
.x1e_c02180{left:53.280000pt;}
.x1c_c02180{left:55.840000pt;}
.x16_c02180{left:57.600000pt;}
.x1d_c02180{left:59.840000pt;}
.x1b_c02180{left:62.080000pt;}
.x20_c02180{left:74.080000pt;}
.x22_c02180{left:76.480000pt;}
.xb_c02180{left:83.040000pt;}
.x21_c02180{left:86.720000pt;}
.xd_c02180{left:98.746667pt;}
.xa_c02180{left:104.520000pt;}
.x1_c02180{left:113.472000pt;}
.x8_c02180{left:137.466667pt;}
.x9_c02180{left:159.386667pt;}
.x4_c02180{left:160.666667pt;}
.x23_c02180{left:166.266667pt;}
.x7_c02180{left:189.626667pt;}
.xc_c02180{left:369.026667pt;}
.x6_c02180{left:380.866667pt;}
.x5_c02180{left:420.066667pt;}
.x12_c02180{left:454.013333pt;}
.x14_c02180{left:548.573333pt;}
.xe_c02180{left:633.733333pt;}
.x2_c02180{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02181 {
    display:none;
  }
  .loading-indicator_c02181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02181 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02181 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02181" -> "#page-container .classname_c02181")
 */
.pf_c02181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02181 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02181 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02181 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02181 {overflow:visible;}
  }
}
.c_c02181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02181 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02181:after { /* webkit #35443 */
  content: '';
}
.t_c02181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02181 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02181 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02181 { /* info for Javascript */
  display:none;
}
.l_c02181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02181:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02181 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02181.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02181;src:url('chunks/assets/font_f41a402c08bc8c547bbbd41c.woff2')format("woff");}.ff1_c02181{font-family:ff1_c02181;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02181;src:url('chunks/assets/font_749f713845c0f220dab47640.woff2')format("woff");}.ff2_c02181{font-family:ff2_c02181;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:ff3_c02181;src:url('chunks/assets/font_1bb57e23d01cb7002e0b7f8f.woff2')format("woff");}.ff3_c02181{font-family:ff3_c02181;line-height:1.311035;font-style:normal;font-weight: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_c02181;src:url('chunks/assets/font_e487e90d67a7146b75733811.woff2')format("woff");}.ff4_c02181{font-family:ff4_c02181;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02181{vertical-align:0.000000px;}
.ls0_c02181{letter-spacing:0.000000px;}
.sc__c02181{text-shadow:none;}
.sc0_c02181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02181{-webkit-text-stroke:0px transparent;}
.sc0_c02181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02181{word-spacing:0.000000px;}
._1_c02181{margin-left:-1.080000px;}
._0_c02181{width:1.008000px;}
._2_c02181{width:2.520000px;}
._6_c02181{width:3.672000px;}
._3_c02181{width:5.616000px;}
._4_c02181{width:6.984000px;}
._7_c02181{width:19.080000px;}
._5_c02181{width:25.560000px;}
._c_c02181{width:30.240000px;}
._b_c02181{width:31.392000px;}
._8_c02181{width:32.976000px;}
._9_c02181{width:36.216000px;}
._a_c02181{width:37.296000px;}
.fc1_c02181{color:rgb(192,80,77);}
.fc3_c02181{color:rgb(255,255,255);}
.fc2_c02181{color:rgb(17,17,17);}
.fc0_c02181{color:rgb(0,0,0);}
.fs0_c02181{font-size:66.240000px;}
.fs1_c02181{font-size:72.000000px;}
.y0_c02181{bottom:0.000000px;}
.y12_c02181{bottom:4.140000px;}
.yf_c02181{bottom:4.500000px;}
.y3_c02181{bottom:4.680000px;}
.y10_c02181{bottom:5.040000px;}
.yd_c02181{bottom:5.400000px;}
.y19_c02181{bottom:24.840000px;}
.y18_c02181{bottom:25.200000px;}
.yc_c02181{bottom:26.100000px;}
.y2_c02181{bottom:41.796000px;}
.y1_c02181{bottom:75.456000px;}
.y2c_c02181{bottom:197.130000px;}
.y2b_c02181{bottom:228.270000px;}
.y2a_c02181{bottom:259.230000px;}
.y29_c02181{bottom:290.415000px;}
.y28_c02181{bottom:321.375000px;}
.y27_c02181{bottom:352.515000px;}
.y26_c02181{bottom:383.475000px;}
.y25_c02181{bottom:414.615000px;}
.y24_c02181{bottom:445.575000px;}
.y23_c02181{bottom:476.715000px;}
.y22_c02181{bottom:507.675000px;}
.y21_c02181{bottom:538.845000px;}
.y20_c02181{bottom:559.725000px;}
.y1f_c02181{bottom:580.425000px;}
.y1e_c02181{bottom:601.125000px;}
.y1d_c02181{bottom:621.825000px;}
.y1c_c02181{bottom:638.745000px;}
.y1b_c02181{bottom:660.165000px;}
.y1a_c02181{bottom:681.585000px;}
.y17_c02181{bottom:703.005000px;}
.y16_c02181{bottom:745.305000px;}
.y15_c02181{bottom:766.725000px;}
.y14_c02181{bottom:788.145000px;}
.y13_c02181{bottom:809.610000px;}
.y11_c02181{bottom:831.030000px;}
.yb_c02181{bottom:852.450000px;}
.ye_c02181{bottom:874.050000px;}
.ya_c02181{bottom:910.050000px;}
.y9_c02181{bottom:930.930000px;}
.y8_c02181{bottom:951.630000px;}
.y7_c02181{bottom:972.330000px;}
.y6_c02181{bottom:1003.290000px;}
.y5_c02181{bottom:1034.250000px;}
.y4_c02181{bottom:1065.420000px;}
.h5_c02181{height:20.700000px;}
.h7_c02181{height:20.736000px;}
.h2_c02181{height:22.500000px;}
.h8_c02181{height:41.400000px;}
.h4_c02181{height:42.300000px;}
.h1_c02181{height:48.871406px;}
.h9_c02181{height:64.546875px;}
.h3_c02181{height:70.664062px;}
.h6_c02181{height:72.562500px;}
.h0_c02181{height:1188.000000px;}
.w1_c02181{width:66.636000px;}
.w4_c02181{width:79.020000px;}
.w7_c02181{width:92.016000px;}
.w5_c02181{width:94.356000px;}
.w6_c02181{width:96.120000px;}
.w2_c02181{width:254.550000px;}
.w3_c02181{width:283.935000px;}
.w0_c02181{width:918.000000px;}
.x0_c02181{left:0.000000px;}
.xf_c02181{left:7.920000px;}
.x12_c02181{left:15.480000px;}
.x3_c02181{left:16.560000px;}
.x10_c02181{left:18.180000px;}
.x14_c02181{left:21.420000px;}
.x21_c02181{left:23.040000px;}
.x1d_c02181{left:25.740000px;}
.x18_c02181{left:34.920000px;}
.xe_c02181{left:39.420000px;}
.x17_c02181{left:41.400000px;}
.x16_c02181{left:42.660000px;}
.x20_c02181{left:45.900000px;}
.x1f_c02181{left:47.160000px;}
.x19_c02181{left:61.560000px;}
.x1e_c02181{left:69.660000px;}
.x1b_c02181{left:72.540000px;}
.x15_c02181{left:74.520000px;}
.x1c_c02181{left:77.040000px;}
.x1a_c02181{left:79.560000px;}
.x23_c02181{left:95.760000px;}
.xa_c02181{left:103.140000px;}
.xc_c02181{left:104.430000px;}
.x22_c02181{left:107.280000px;}
.x1_c02181{left:127.656000px;}
.x9_c02181{left:179.310000px;}
.x4_c02181{left:187.050000px;}
.x7_c02181{left:285.330000px;}
.x8_c02181{left:351.795000px;}
.xb_c02181{left:434.595000px;}
.x6_c02181{left:444.675000px;}
.x5_c02181{left:488.775000px;}
.x11_c02181{left:529.665000px;}
.x13_c02181{left:626.505000px;}
.xd_c02181{left:719.250000px;}
.x2_c02181{left:820.950000px;}
@media print{
.v0_c02181{vertical-align:0.000000pt;}
.ls0_c02181{letter-spacing:0.000000pt;}
.ws0_c02181{word-spacing:0.000000pt;}
._1_c02181{margin-left:-0.960000pt;}
._0_c02181{width:0.896000pt;}
._2_c02181{width:2.240000pt;}
._6_c02181{width:3.264000pt;}
._3_c02181{width:4.992000pt;}
._4_c02181{width:6.208000pt;}
._7_c02181{width:16.960000pt;}
._5_c02181{width:22.720000pt;}
._c_c02181{width:26.880000pt;}
._b_c02181{width:27.904000pt;}
._8_c02181{width:29.312000pt;}
._9_c02181{width:32.192000pt;}
._a_c02181{width:33.152000pt;}
.fs0_c02181{font-size:58.880000pt;}
.fs1_c02181{font-size:64.000000pt;}
.y0_c02181{bottom:0.000000pt;}
.y12_c02181{bottom:3.680000pt;}
.yf_c02181{bottom:4.000000pt;}
.y3_c02181{bottom:4.160000pt;}
.y10_c02181{bottom:4.480000pt;}
.yd_c02181{bottom:4.800000pt;}
.y19_c02181{bottom:22.080000pt;}
.y18_c02181{bottom:22.400000pt;}
.yc_c02181{bottom:23.200000pt;}
.y2_c02181{bottom:37.152000pt;}
.y1_c02181{bottom:67.072000pt;}
.y2c_c02181{bottom:175.226667pt;}
.y2b_c02181{bottom:202.906667pt;}
.y2a_c02181{bottom:230.426667pt;}
.y29_c02181{bottom:258.146667pt;}
.y28_c02181{bottom:285.666667pt;}
.y27_c02181{bottom:313.346667pt;}
.y26_c02181{bottom:340.866667pt;}
.y25_c02181{bottom:368.546667pt;}
.y24_c02181{bottom:396.066667pt;}
.y23_c02181{bottom:423.746667pt;}
.y22_c02181{bottom:451.266667pt;}
.y21_c02181{bottom:478.973333pt;}
.y20_c02181{bottom:497.533333pt;}
.y1f_c02181{bottom:515.933333pt;}
.y1e_c02181{bottom:534.333333pt;}
.y1d_c02181{bottom:552.733333pt;}
.y1c_c02181{bottom:567.773333pt;}
.y1b_c02181{bottom:586.813333pt;}
.y1a_c02181{bottom:605.853333pt;}
.y17_c02181{bottom:624.893333pt;}
.y16_c02181{bottom:662.493333pt;}
.y15_c02181{bottom:681.533333pt;}
.y14_c02181{bottom:700.573333pt;}
.y13_c02181{bottom:719.653333pt;}
.y11_c02181{bottom:738.693333pt;}
.yb_c02181{bottom:757.733333pt;}
.ye_c02181{bottom:776.933333pt;}
.ya_c02181{bottom:808.933333pt;}
.y9_c02181{bottom:827.493333pt;}
.y8_c02181{bottom:845.893333pt;}
.y7_c02181{bottom:864.293333pt;}
.y6_c02181{bottom:891.813333pt;}
.y5_c02181{bottom:919.333333pt;}
.y4_c02181{bottom:947.040000pt;}
.h5_c02181{height:18.400000pt;}
.h7_c02181{height:18.432000pt;}
.h2_c02181{height:20.000000pt;}
.h8_c02181{height:36.800000pt;}
.h4_c02181{height:37.600000pt;}
.h1_c02181{height:43.441250pt;}
.h9_c02181{height:57.375000pt;}
.h3_c02181{height:62.812500pt;}
.h6_c02181{height:64.500000pt;}
.h0_c02181{height:1056.000000pt;}
.w1_c02181{width:59.232000pt;}
.w4_c02181{width:70.240000pt;}
.w7_c02181{width:81.792000pt;}
.w5_c02181{width:83.872000pt;}
.w6_c02181{width:85.440000pt;}
.w2_c02181{width:226.266667pt;}
.w3_c02181{width:252.386667pt;}
.w0_c02181{width:816.000000pt;}
.x0_c02181{left:0.000000pt;}
.xf_c02181{left:7.040000pt;}
.x12_c02181{left:13.760000pt;}
.x3_c02181{left:14.720000pt;}
.x10_c02181{left:16.160000pt;}
.x14_c02181{left:19.040000pt;}
.x21_c02181{left:20.480000pt;}
.x1d_c02181{left:22.880000pt;}
.x18_c02181{left:31.040000pt;}
.xe_c02181{left:35.040000pt;}
.x17_c02181{left:36.800000pt;}
.x16_c02181{left:37.920000pt;}
.x20_c02181{left:40.800000pt;}
.x1f_c02181{left:41.920000pt;}
.x19_c02181{left:54.720000pt;}
.x1e_c02181{left:61.920000pt;}
.x1b_c02181{left:64.480000pt;}
.x15_c02181{left:66.240000pt;}
.x1c_c02181{left:68.480000pt;}
.x1a_c02181{left:70.720000pt;}
.x23_c02181{left:85.120000pt;}
.xa_c02181{left:91.680000pt;}
.xc_c02181{left:92.826667pt;}
.x22_c02181{left:95.360000pt;}
.x1_c02181{left:113.472000pt;}
.x9_c02181{left:159.386667pt;}
.x4_c02181{left:166.266667pt;}
.x7_c02181{left:253.626667pt;}
.x8_c02181{left:312.706667pt;}
.xb_c02181{left:386.306667pt;}
.x6_c02181{left:395.266667pt;}
.x5_c02181{left:434.466667pt;}
.x11_c02181{left:470.813333pt;}
.x13_c02181{left:556.893333pt;}
.xd_c02181{left:639.333333pt;}
.x2_c02181{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02182 {
    display:none;
  }
  .loading-indicator_c02182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02182 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02182 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02182" -> "#page-container .classname_c02182")
 */
.pf_c02182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02182 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02182 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02182 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02182 {overflow:visible;}
  }
}
.c_c02182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02182 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02182:after { /* webkit #35443 */
  content: '';
}
.t_c02182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02182 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02182 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02182 { /* info for Javascript */
  display:none;
}
.l_c02182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02182:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02182 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02182.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02182;src:url('chunks/assets/font_f41a402c08bc8c547bbbd41c.woff2')format("woff");}.ff1_c02182{font-family:ff1_c02182;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02182;src:url('chunks/assets/font_67ef0065c17967221c6d5dda.woff2')format("woff");}.ff2_c02182{font-family:ff2_c02182;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:ff3_c02182;src:url('chunks/assets/font_93c4939501fc11b5a27fee10.woff2')format("woff");}.ff3_c02182{font-family:ff3_c02182;line-height:1.311035;font-style:normal;font-weight: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_c02182;src:url('chunks/assets/font_84c7261097ae1dc361c21c5d.woff2')format("woff");}.ff4_c02182{font-family:ff4_c02182;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02182{vertical-align:0.000000px;}
.ls1_c02182{letter-spacing:0.000000px;}
.ls0_c02182{letter-spacing:23.040000px;}
.sc__c02182{text-shadow:none;}
.sc0_c02182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02182{-webkit-text-stroke:0px transparent;}
.sc0_c02182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02182{word-spacing:0.000000px;}
._0_c02182{margin-left:-1.152000px;}
._1_c02182{width:1.008000px;}
._2_c02182{width:2.520000px;}
._a_c02182{width:3.744000px;}
._5_c02182{width:4.968000px;}
._3_c02182{width:7.056000px;}
._4_c02182{width:8.424000px;}
._6_c02182{width:10.224000px;}
._7_c02182{width:11.664000px;}
._8_c02182{width:13.680000px;}
._9_c02182{width:14.760000px;}
._b_c02182{width:22.320000px;}
._c_c02182{width:23.544000px;}
._e_c02182{width:35.712000px;}
._d_c02182{width:37.080000px;}
._10_c02182{width:63.072000px;}
._f_c02182{width:64.440000px;}
.fc1_c02182{color:rgb(192,80,77);}
.fc3_c02182{color:rgb(255,255,255);}
.fc2_c02182{color:rgb(17,17,17);}
.fc0_c02182{color:rgb(0,0,0);}
.fs0_c02182{font-size:66.240000px;}
.fs1_c02182{font-size:72.000000px;}
.y0_c02182{bottom:0.000000px;}
.yf_c02182{bottom:4.140000px;}
.yc_c02182{bottom:4.500000px;}
.y3_c02182{bottom:4.680000px;}
.yd_c02182{bottom:4.860000px;}
.ya_c02182{bottom:5.220000px;}
.y16_c02182{bottom:24.840000px;}
.y15_c02182{bottom:25.200000px;}
.y9_c02182{bottom:25.920000px;}
.y2_c02182{bottom:41.796000px;}
.y1_c02182{bottom:75.456000px;}
.y29_c02182{bottom:290.415000px;}
.y28_c02182{bottom:321.375000px;}
.y27_c02182{bottom:352.515000px;}
.y26_c02182{bottom:383.475000px;}
.y25_c02182{bottom:414.615000px;}
.y24_c02182{bottom:445.575000px;}
.y23_c02182{bottom:476.715000px;}
.y22_c02182{bottom:507.675000px;}
.y21_c02182{bottom:538.845000px;}
.y20_c02182{bottom:569.805000px;}
.y1f_c02182{bottom:600.945000px;}
.y1e_c02182{bottom:631.905000px;}
.y1d_c02182{bottom:652.785000px;}
.y1c_c02182{bottom:673.485000px;}
.y1b_c02182{bottom:694.185000px;}
.y1a_c02182{bottom:714.885000px;}
.y19_c02182{bottom:731.805000px;}
.y18_c02182{bottom:753.405000px;}
.y17_c02182{bottom:774.825000px;}
.y14_c02182{bottom:796.290000px;}
.y13_c02182{bottom:838.410000px;}
.y12_c02182{bottom:859.830000px;}
.y11_c02182{bottom:881.250000px;}
.y10_c02182{bottom:902.670000px;}
.ye_c02182{bottom:924.270000px;}
.y8_c02182{bottom:945.690000px;}
.yb_c02182{bottom:967.110000px;}
.y7_c02182{bottom:1003.290000px;}
.y6_c02182{bottom:1024.170000px;}
.y5_c02182{bottom:1044.870000px;}
.y4_c02182{bottom:1065.600000px;}
.h5_c02182{height:20.700000px;}
.h8_c02182{height:20.736000px;}
.h2_c02182{height:22.500000px;}
.h7_c02182{height:41.400000px;}
.h4_c02182{height:42.120000px;}
.h1_c02182{height:48.871406px;}
.h9_c02182{height:64.546875px;}
.h3_c02182{height:70.664062px;}
.h6_c02182{height:72.562500px;}
.h0_c02182{height:1188.000000px;}
.w1_c02182{width:66.636000px;}
.w4_c02182{width:79.020000px;}
.w7_c02182{width:92.016000px;}
.w5_c02182{width:94.356000px;}
.w6_c02182{width:96.120000px;}
.w2_c02182{width:254.550000px;}
.w3_c02182{width:283.935000px;}
.w0_c02182{width:918.000000px;}
.x0_c02182{left:0.000000px;}
.xe_c02182{left:7.920000px;}
.x11_c02182{left:15.480000px;}
.x3_c02182{left:16.560000px;}
.xf_c02182{left:18.180000px;}
.x13_c02182{left:21.420000px;}
.x20_c02182{left:23.040000px;}
.x1c_c02182{left:25.740000px;}
.x17_c02182{left:34.920000px;}
.xd_c02182{left:39.420000px;}
.x16_c02182{left:41.400000px;}
.x15_c02182{left:42.660000px;}
.x1f_c02182{left:45.900000px;}
.x1e_c02182{left:47.160000px;}
.x18_c02182{left:61.560000px;}
.x1d_c02182{left:69.660000px;}
.x1a_c02182{left:72.540000px;}
.x14_c02182{left:74.520000px;}
.x1b_c02182{left:77.040000px;}
.x19_c02182{left:79.560000px;}
.x22_c02182{left:95.760000px;}
.x9_c02182{left:103.140000px;}
.xb_c02182{left:104.430000px;}
.x21_c02182{left:107.280000px;}
.x1_c02182{left:127.656000px;}
.x8_c02182{left:179.310000px;}
.x23_c02182{left:187.050000px;}
.x5_c02182{left:299.235000px;}
.x6_c02182{left:351.795000px;}
.xa_c02182{left:434.595000px;}
.x4_c02182{left:444.675000px;}
.x7_c02182{left:488.775000px;}
.x10_c02182{left:529.665000px;}
.x12_c02182{left:626.505000px;}
.xc_c02182{left:719.250000px;}
.x2_c02182{left:820.950000px;}
@media print{
.v0_c02182{vertical-align:0.000000pt;}
.ls1_c02182{letter-spacing:0.000000pt;}
.ls0_c02182{letter-spacing:20.480000pt;}
.ws0_c02182{word-spacing:0.000000pt;}
._0_c02182{margin-left:-1.024000pt;}
._1_c02182{width:0.896000pt;}
._2_c02182{width:2.240000pt;}
._a_c02182{width:3.328000pt;}
._5_c02182{width:4.416000pt;}
._3_c02182{width:6.272000pt;}
._4_c02182{width:7.488000pt;}
._6_c02182{width:9.088000pt;}
._7_c02182{width:10.368000pt;}
._8_c02182{width:12.160000pt;}
._9_c02182{width:13.120000pt;}
._b_c02182{width:19.840000pt;}
._c_c02182{width:20.928000pt;}
._e_c02182{width:31.744000pt;}
._d_c02182{width:32.960000pt;}
._10_c02182{width:56.064000pt;}
._f_c02182{width:57.280000pt;}
.fs0_c02182{font-size:58.880000pt;}
.fs1_c02182{font-size:64.000000pt;}
.y0_c02182{bottom:0.000000pt;}
.yf_c02182{bottom:3.680000pt;}
.yc_c02182{bottom:4.000000pt;}
.y3_c02182{bottom:4.160000pt;}
.yd_c02182{bottom:4.320000pt;}
.ya_c02182{bottom:4.640000pt;}
.y16_c02182{bottom:22.080000pt;}
.y15_c02182{bottom:22.400000pt;}
.y9_c02182{bottom:23.040000pt;}
.y2_c02182{bottom:37.152000pt;}
.y1_c02182{bottom:67.072000pt;}
.y29_c02182{bottom:258.146667pt;}
.y28_c02182{bottom:285.666667pt;}
.y27_c02182{bottom:313.346667pt;}
.y26_c02182{bottom:340.866667pt;}
.y25_c02182{bottom:368.546667pt;}
.y24_c02182{bottom:396.066667pt;}
.y23_c02182{bottom:423.746667pt;}
.y22_c02182{bottom:451.266667pt;}
.y21_c02182{bottom:478.973333pt;}
.y20_c02182{bottom:506.493333pt;}
.y1f_c02182{bottom:534.173333pt;}
.y1e_c02182{bottom:561.693333pt;}
.y1d_c02182{bottom:580.253333pt;}
.y1c_c02182{bottom:598.653333pt;}
.y1b_c02182{bottom:617.053333pt;}
.y1a_c02182{bottom:635.453333pt;}
.y19_c02182{bottom:650.493333pt;}
.y18_c02182{bottom:669.693333pt;}
.y17_c02182{bottom:688.733333pt;}
.y14_c02182{bottom:707.813333pt;}
.y13_c02182{bottom:745.253333pt;}
.y12_c02182{bottom:764.293333pt;}
.y11_c02182{bottom:783.333333pt;}
.y10_c02182{bottom:802.373333pt;}
.ye_c02182{bottom:821.573333pt;}
.y8_c02182{bottom:840.613333pt;}
.yb_c02182{bottom:859.653333pt;}
.y7_c02182{bottom:891.813333pt;}
.y6_c02182{bottom:910.373333pt;}
.y5_c02182{bottom:928.773333pt;}
.y4_c02182{bottom:947.200000pt;}
.h5_c02182{height:18.400000pt;}
.h8_c02182{height:18.432000pt;}
.h2_c02182{height:20.000000pt;}
.h7_c02182{height:36.800000pt;}
.h4_c02182{height:37.440000pt;}
.h1_c02182{height:43.441250pt;}
.h9_c02182{height:57.375000pt;}
.h3_c02182{height:62.812500pt;}
.h6_c02182{height:64.500000pt;}
.h0_c02182{height:1056.000000pt;}
.w1_c02182{width:59.232000pt;}
.w4_c02182{width:70.240000pt;}
.w7_c02182{width:81.792000pt;}
.w5_c02182{width:83.872000pt;}
.w6_c02182{width:85.440000pt;}
.w2_c02182{width:226.266667pt;}
.w3_c02182{width:252.386667pt;}
.w0_c02182{width:816.000000pt;}
.x0_c02182{left:0.000000pt;}
.xe_c02182{left:7.040000pt;}
.x11_c02182{left:13.760000pt;}
.x3_c02182{left:14.720000pt;}
.xf_c02182{left:16.160000pt;}
.x13_c02182{left:19.040000pt;}
.x20_c02182{left:20.480000pt;}
.x1c_c02182{left:22.880000pt;}
.x17_c02182{left:31.040000pt;}
.xd_c02182{left:35.040000pt;}
.x16_c02182{left:36.800000pt;}
.x15_c02182{left:37.920000pt;}
.x1f_c02182{left:40.800000pt;}
.x1e_c02182{left:41.920000pt;}
.x18_c02182{left:54.720000pt;}
.x1d_c02182{left:61.920000pt;}
.x1a_c02182{left:64.480000pt;}
.x14_c02182{left:66.240000pt;}
.x1b_c02182{left:68.480000pt;}
.x19_c02182{left:70.720000pt;}
.x22_c02182{left:85.120000pt;}
.x9_c02182{left:91.680000pt;}
.xb_c02182{left:92.826667pt;}
.x21_c02182{left:95.360000pt;}
.x1_c02182{left:113.472000pt;}
.x8_c02182{left:159.386667pt;}
.x23_c02182{left:166.266667pt;}
.x5_c02182{left:265.986667pt;}
.x6_c02182{left:312.706667pt;}
.xa_c02182{left:386.306667pt;}
.x4_c02182{left:395.266667pt;}
.x7_c02182{left:434.466667pt;}
.x10_c02182{left:470.813333pt;}
.x12_c02182{left:556.893333pt;}
.xc_c02182{left:639.333333pt;}
.x2_c02182{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02183 {
    display:none;
  }
  .loading-indicator_c02183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02183 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02183 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02183" -> "#page-container .classname_c02183")
 */
.pf_c02183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02183 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02183 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02183 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02183 {overflow:visible;}
  }
}
.c_c02183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02183 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02183:after { /* webkit #35443 */
  content: '';
}
.t_c02183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02183 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02183 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02183 { /* info for Javascript */
  display:none;
}
.l_c02183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02183:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02183 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02183.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02183;src:url('chunks/assets/font_aa02cf162a03ab649ce04ae6.woff2')format("woff");}.ff1_c02183{font-family:ff1_c02183;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02183;src:url('chunks/assets/font_62cb685cb119576dfdf40d11.woff2')format("woff");}.ff2_c02183{font-family:ff2_c02183;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:ff3_c02183;src:url('chunks/assets/font_a6a6483f602bb3df41283727.woff2')format("woff");}.ff3_c02183{font-family:ff3_c02183;line-height:1.311035;font-style:normal;font-weight: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_c02183;src:url('chunks/assets/font_d7a71b6fd3b85c7984892231.woff2')format("woff");}.ff4_c02183{font-family:ff4_c02183;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02183{vertical-align:0.000000px;}
.ls1_c02183{letter-spacing:-0.288000px;}
.ls0_c02183{letter-spacing:0.000000px;}
.sc__c02183{text-shadow:none;}
.sc0_c02183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02183{-webkit-text-stroke:0px transparent;}
.sc0_c02183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02183{word-spacing:-17.712000px;}
.ws1_c02183{word-spacing:0.000000px;}
._0_c02183{margin-left:-1.152000px;}
._1_c02183{width:1.488000px;}
._d_c02183{width:3.192000px;}
._8_c02183{width:5.760000px;}
._5_c02183{width:6.984000px;}
._a_c02183{width:8.160000px;}
._9_c02183{width:9.432000px;}
._2_c02183{width:11.376000px;}
._3_c02183{width:12.744000px;}
._4_c02183{width:13.824000px;}
._b_c02183{width:19.224000px;}
._c_c02183{width:20.880000px;}
._7_c02183{width:30.888000px;}
._6_c02183{width:32.184000px;}
.fc1_c02183{color:rgb(192,80,77);}
.fc3_c02183{color:rgb(255,255,255);}
.fc2_c02183{color:rgb(17,17,17);}
.fc0_c02183{color:rgb(0,0,0);}
.fs0_c02183{font-size:66.240000px;}
.fs1_c02183{font-size:72.000000px;}
.y0_c02183{bottom:0.000000px;}
.yf_c02183{bottom:4.140000px;}
.yc_c02183{bottom:4.500000px;}
.y3_c02183{bottom:4.680000px;}
.yd_c02183{bottom:4.860000px;}
.ya_c02183{bottom:5.220000px;}
.y16_c02183{bottom:24.840000px;}
.y15_c02183{bottom:25.200000px;}
.y9_c02183{bottom:25.920000px;}
.y2_c02183{bottom:41.796000px;}
.y1_c02183{bottom:75.456000px;}
.y2e_c02183{bottom:135.216000px;}
.y2d_c02183{bottom:166.170000px;}
.y2c_c02183{bottom:197.130000px;}
.y2b_c02183{bottom:228.270000px;}
.y2a_c02183{bottom:259.230000px;}
.y29_c02183{bottom:290.415000px;}
.y28_c02183{bottom:321.375000px;}
.y27_c02183{bottom:352.515000px;}
.y26_c02183{bottom:383.475000px;}
.y25_c02183{bottom:414.615000px;}
.y24_c02183{bottom:445.575000px;}
.y23_c02183{bottom:476.715000px;}
.y22_c02183{bottom:507.675000px;}
.y21_c02183{bottom:538.845000px;}
.y20_c02183{bottom:569.805000px;}
.y1f_c02183{bottom:600.945000px;}
.y1e_c02183{bottom:631.905000px;}
.y1d_c02183{bottom:652.785000px;}
.y1c_c02183{bottom:673.485000px;}
.y1b_c02183{bottom:694.185000px;}
.y1a_c02183{bottom:714.885000px;}
.y19_c02183{bottom:731.805000px;}
.y18_c02183{bottom:753.405000px;}
.y17_c02183{bottom:774.825000px;}
.y14_c02183{bottom:796.290000px;}
.y13_c02183{bottom:838.410000px;}
.y12_c02183{bottom:859.830000px;}
.y11_c02183{bottom:881.250000px;}
.y10_c02183{bottom:902.670000px;}
.ye_c02183{bottom:924.270000px;}
.y8_c02183{bottom:945.690000px;}
.yb_c02183{bottom:967.110000px;}
.y7_c02183{bottom:1003.290000px;}
.y6_c02183{bottom:1024.170000px;}
.y5_c02183{bottom:1044.870000px;}
.y4_c02183{bottom:1065.600000px;}
.h5_c02183{height:20.700000px;}
.h8_c02183{height:20.736000px;}
.h2_c02183{height:22.500000px;}
.h7_c02183{height:41.400000px;}
.h4_c02183{height:42.120000px;}
.h1_c02183{height:48.871406px;}
.h9_c02183{height:64.546875px;}
.h3_c02183{height:70.664062px;}
.h6_c02183{height:72.562500px;}
.h0_c02183{height:1188.000000px;}
.w1_c02183{width:66.636000px;}
.w4_c02183{width:79.020000px;}
.w7_c02183{width:92.016000px;}
.w5_c02183{width:94.356000px;}
.w6_c02183{width:96.120000px;}
.w2_c02183{width:254.550000px;}
.w3_c02183{width:283.935000px;}
.w0_c02183{width:918.000000px;}
.x0_c02183{left:0.000000px;}
.xe_c02183{left:7.920000px;}
.x11_c02183{left:15.480000px;}
.x3_c02183{left:16.560000px;}
.xf_c02183{left:18.180000px;}
.x13_c02183{left:21.420000px;}
.x20_c02183{left:23.040000px;}
.x1c_c02183{left:25.740000px;}
.x17_c02183{left:34.920000px;}
.xd_c02183{left:39.420000px;}
.x16_c02183{left:41.400000px;}
.x15_c02183{left:42.660000px;}
.x1f_c02183{left:45.900000px;}
.x1e_c02183{left:47.160000px;}
.x18_c02183{left:61.560000px;}
.x1d_c02183{left:69.660000px;}
.x1a_c02183{left:72.540000px;}
.x14_c02183{left:74.520000px;}
.x1b_c02183{left:77.040000px;}
.x19_c02183{left:79.560000px;}
.x22_c02183{left:95.760000px;}
.x9_c02183{left:103.140000px;}
.xb_c02183{left:104.430000px;}
.x21_c02183{left:107.280000px;}
.x1_c02183{left:127.656000px;}
.x8_c02183{left:179.310000px;}
.x23_c02183{left:187.050000px;}
.x5_c02183{left:275.790000px;}
.x6_c02183{left:351.795000px;}
.xa_c02183{left:434.595000px;}
.x4_c02183{left:444.675000px;}
.x7_c02183{left:488.775000px;}
.x10_c02183{left:529.665000px;}
.x12_c02183{left:626.505000px;}
.xc_c02183{left:719.250000px;}
.x2_c02183{left:820.950000px;}
@media print{
.v0_c02183{vertical-align:0.000000pt;}
.ls1_c02183{letter-spacing:-0.256000pt;}
.ls0_c02183{letter-spacing:0.000000pt;}
.ws0_c02183{word-spacing:-15.744000pt;}
.ws1_c02183{word-spacing:0.000000pt;}
._0_c02183{margin-left:-1.024000pt;}
._1_c02183{width:1.322667pt;}
._d_c02183{width:2.837333pt;}
._8_c02183{width:5.120000pt;}
._5_c02183{width:6.208000pt;}
._a_c02183{width:7.253333pt;}
._9_c02183{width:8.384000pt;}
._2_c02183{width:10.112000pt;}
._3_c02183{width:11.328000pt;}
._4_c02183{width:12.288000pt;}
._b_c02183{width:17.088000pt;}
._c_c02183{width:18.560000pt;}
._7_c02183{width:27.456000pt;}
._6_c02183{width:28.608000pt;}
.fs0_c02183{font-size:58.880000pt;}
.fs1_c02183{font-size:64.000000pt;}
.y0_c02183{bottom:0.000000pt;}
.yf_c02183{bottom:3.680000pt;}
.yc_c02183{bottom:4.000000pt;}
.y3_c02183{bottom:4.160000pt;}
.yd_c02183{bottom:4.320000pt;}
.ya_c02183{bottom:4.640000pt;}
.y16_c02183{bottom:22.080000pt;}
.y15_c02183{bottom:22.400000pt;}
.y9_c02183{bottom:23.040000pt;}
.y2_c02183{bottom:37.152000pt;}
.y1_c02183{bottom:67.072000pt;}
.y2e_c02183{bottom:120.192000pt;}
.y2d_c02183{bottom:147.706667pt;}
.y2c_c02183{bottom:175.226667pt;}
.y2b_c02183{bottom:202.906667pt;}
.y2a_c02183{bottom:230.426667pt;}
.y29_c02183{bottom:258.146667pt;}
.y28_c02183{bottom:285.666667pt;}
.y27_c02183{bottom:313.346667pt;}
.y26_c02183{bottom:340.866667pt;}
.y25_c02183{bottom:368.546667pt;}
.y24_c02183{bottom:396.066667pt;}
.y23_c02183{bottom:423.746667pt;}
.y22_c02183{bottom:451.266667pt;}
.y21_c02183{bottom:478.973333pt;}
.y20_c02183{bottom:506.493333pt;}
.y1f_c02183{bottom:534.173333pt;}
.y1e_c02183{bottom:561.693333pt;}
.y1d_c02183{bottom:580.253333pt;}
.y1c_c02183{bottom:598.653333pt;}
.y1b_c02183{bottom:617.053333pt;}
.y1a_c02183{bottom:635.453333pt;}
.y19_c02183{bottom:650.493333pt;}
.y18_c02183{bottom:669.693333pt;}
.y17_c02183{bottom:688.733333pt;}
.y14_c02183{bottom:707.813333pt;}
.y13_c02183{bottom:745.253333pt;}
.y12_c02183{bottom:764.293333pt;}
.y11_c02183{bottom:783.333333pt;}
.y10_c02183{bottom:802.373333pt;}
.ye_c02183{bottom:821.573333pt;}
.y8_c02183{bottom:840.613333pt;}
.yb_c02183{bottom:859.653333pt;}
.y7_c02183{bottom:891.813333pt;}
.y6_c02183{bottom:910.373333pt;}
.y5_c02183{bottom:928.773333pt;}
.y4_c02183{bottom:947.200000pt;}
.h5_c02183{height:18.400000pt;}
.h8_c02183{height:18.432000pt;}
.h2_c02183{height:20.000000pt;}
.h7_c02183{height:36.800000pt;}
.h4_c02183{height:37.440000pt;}
.h1_c02183{height:43.441250pt;}
.h9_c02183{height:57.375000pt;}
.h3_c02183{height:62.812500pt;}
.h6_c02183{height:64.500000pt;}
.h0_c02183{height:1056.000000pt;}
.w1_c02183{width:59.232000pt;}
.w4_c02183{width:70.240000pt;}
.w7_c02183{width:81.792000pt;}
.w5_c02183{width:83.872000pt;}
.w6_c02183{width:85.440000pt;}
.w2_c02183{width:226.266667pt;}
.w3_c02183{width:252.386667pt;}
.w0_c02183{width:816.000000pt;}
.x0_c02183{left:0.000000pt;}
.xe_c02183{left:7.040000pt;}
.x11_c02183{left:13.760000pt;}
.x3_c02183{left:14.720000pt;}
.xf_c02183{left:16.160000pt;}
.x13_c02183{left:19.040000pt;}
.x20_c02183{left:20.480000pt;}
.x1c_c02183{left:22.880000pt;}
.x17_c02183{left:31.040000pt;}
.xd_c02183{left:35.040000pt;}
.x16_c02183{left:36.800000pt;}
.x15_c02183{left:37.920000pt;}
.x1f_c02183{left:40.800000pt;}
.x1e_c02183{left:41.920000pt;}
.x18_c02183{left:54.720000pt;}
.x1d_c02183{left:61.920000pt;}
.x1a_c02183{left:64.480000pt;}
.x14_c02183{left:66.240000pt;}
.x1b_c02183{left:68.480000pt;}
.x19_c02183{left:70.720000pt;}
.x22_c02183{left:85.120000pt;}
.x9_c02183{left:91.680000pt;}
.xb_c02183{left:92.826667pt;}
.x21_c02183{left:95.360000pt;}
.x1_c02183{left:113.472000pt;}
.x8_c02183{left:159.386667pt;}
.x23_c02183{left:166.266667pt;}
.x5_c02183{left:245.146667pt;}
.x6_c02183{left:312.706667pt;}
.xa_c02183{left:386.306667pt;}
.x4_c02183{left:395.266667pt;}
.x7_c02183{left:434.466667pt;}
.x10_c02183{left:470.813333pt;}
.x12_c02183{left:556.893333pt;}
.xc_c02183{left:639.333333pt;}
.x2_c02183{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02184 {
    display:none;
  }
  .loading-indicator_c02184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02184 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02184 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02184" -> "#page-container .classname_c02184")
 */
.pf_c02184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02184 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02184 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02184 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02184 {overflow:visible;}
  }
}
.c_c02184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02184 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02184:after { /* webkit #35443 */
  content: '';
}
.t_c02184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02184 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02184 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02184 { /* info for Javascript */
  display:none;
}
.l_c02184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02184:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02184 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02184.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02184;src:url('chunks/assets/font_8c119315a33ce4ab23a4626a.woff2')format("woff");}.ff1_c02184{font-family:ff1_c02184;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02184;src:url('chunks/assets/font_adc615edab53597b65daf367.woff2')format("woff");}.ff2_c02184{font-family:ff2_c02184;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:ff3_c02184;src:url('chunks/assets/font_a6a6483f602bb3df41283727.woff2')format("woff");}.ff3_c02184{font-family:ff3_c02184;line-height:1.311035;font-style:normal;font-weight: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_c02184;src:url('chunks/assets/font_5833ed83873d4bf4500d3848.woff2')format("woff");}.ff4_c02184{font-family:ff4_c02184;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02184{vertical-align:0.000000px;}
.ls0_c02184{letter-spacing:0.000000px;}
.sc__c02184{text-shadow:none;}
.sc0_c02184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02184{-webkit-text-stroke:0px transparent;}
.sc0_c02184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02184{word-spacing:0.000000px;}
._0_c02184{margin-left:-1.152000px;}
._1_c02184{width:1.332000px;}
._2_c02184{width:2.916000px;}
._5_c02184{width:4.608000px;}
._3_c02184{width:5.616000px;}
._4_c02184{width:6.732000px;}
._b_c02184{width:12.600000px;}
._9_c02184{width:14.040000px;}
._a_c02184{width:15.120000px;}
._c_c02184{width:16.848000px;}
._6_c02184{width:34.920000px;}
._7_c02184{width:36.000000px;}
._8_c02184{width:37.740000px;}
.fc1_c02184{color:rgb(192,80,77);}
.fc3_c02184{color:rgb(255,255,255);}
.fc2_c02184{color:rgb(17,17,17);}
.fc0_c02184{color:rgb(0,0,0);}
.fs0_c02184{font-size:66.240000px;}
.fs1_c02184{font-size:72.000000px;}
.y0_c02184{bottom:0.000000px;}
.yf_c02184{bottom:4.140000px;}
.yc_c02184{bottom:4.500000px;}
.y3_c02184{bottom:4.680000px;}
.yd_c02184{bottom:4.860000px;}
.ya_c02184{bottom:5.220000px;}
.y16_c02184{bottom:24.840000px;}
.y15_c02184{bottom:25.200000px;}
.y9_c02184{bottom:25.920000px;}
.y2_c02184{bottom:41.796000px;}
.y1_c02184{bottom:75.456000px;}
.y2b_c02184{bottom:228.270000px;}
.y2a_c02184{bottom:259.230000px;}
.y29_c02184{bottom:290.415000px;}
.y28_c02184{bottom:321.375000px;}
.y27_c02184{bottom:352.515000px;}
.y26_c02184{bottom:383.475000px;}
.y25_c02184{bottom:414.615000px;}
.y24_c02184{bottom:445.575000px;}
.y23_c02184{bottom:476.715000px;}
.y22_c02184{bottom:507.675000px;}
.y21_c02184{bottom:538.845000px;}
.y20_c02184{bottom:569.805000px;}
.y1f_c02184{bottom:600.945000px;}
.y1e_c02184{bottom:631.905000px;}
.y1d_c02184{bottom:652.785000px;}
.y1c_c02184{bottom:673.485000px;}
.y1b_c02184{bottom:694.185000px;}
.y1a_c02184{bottom:714.885000px;}
.y19_c02184{bottom:731.805000px;}
.y18_c02184{bottom:753.405000px;}
.y17_c02184{bottom:774.825000px;}
.y14_c02184{bottom:796.290000px;}
.y13_c02184{bottom:838.410000px;}
.y12_c02184{bottom:859.830000px;}
.y11_c02184{bottom:881.250000px;}
.y10_c02184{bottom:902.670000px;}
.ye_c02184{bottom:924.270000px;}
.y8_c02184{bottom:945.690000px;}
.yb_c02184{bottom:967.110000px;}
.y7_c02184{bottom:1003.290000px;}
.y6_c02184{bottom:1024.170000px;}
.y5_c02184{bottom:1044.870000px;}
.y4_c02184{bottom:1065.600000px;}
.h5_c02184{height:20.700000px;}
.h8_c02184{height:20.736000px;}
.h2_c02184{height:22.500000px;}
.h7_c02184{height:41.400000px;}
.h4_c02184{height:42.120000px;}
.h1_c02184{height:48.871406px;}
.h9_c02184{height:64.546875px;}
.h3_c02184{height:70.664062px;}
.h6_c02184{height:72.562500px;}
.h0_c02184{height:1188.000000px;}
.w1_c02184{width:66.636000px;}
.w4_c02184{width:79.020000px;}
.w7_c02184{width:92.016000px;}
.w5_c02184{width:94.356000px;}
.w6_c02184{width:96.120000px;}
.w2_c02184{width:254.550000px;}
.w3_c02184{width:283.935000px;}
.w0_c02184{width:918.000000px;}
.x0_c02184{left:0.000000px;}
.xe_c02184{left:7.920000px;}
.x11_c02184{left:15.480000px;}
.x3_c02184{left:16.560000px;}
.xf_c02184{left:18.180000px;}
.x13_c02184{left:21.420000px;}
.x20_c02184{left:23.040000px;}
.x1c_c02184{left:25.740000px;}
.x17_c02184{left:34.920000px;}
.xd_c02184{left:39.420000px;}
.x16_c02184{left:41.400000px;}
.x15_c02184{left:42.660000px;}
.x1f_c02184{left:45.900000px;}
.x1e_c02184{left:47.160000px;}
.x18_c02184{left:61.560000px;}
.x1d_c02184{left:69.660000px;}
.x1a_c02184{left:72.540000px;}
.x14_c02184{left:74.520000px;}
.x1b_c02184{left:77.040000px;}
.x19_c02184{left:79.560000px;}
.x22_c02184{left:95.760000px;}
.x9_c02184{left:103.140000px;}
.xb_c02184{left:104.430000px;}
.x21_c02184{left:107.280000px;}
.x1_c02184{left:127.656000px;}
.x8_c02184{left:179.310000px;}
.x23_c02184{left:187.050000px;}
.x5_c02184{left:296.355000px;}
.x6_c02184{left:351.795000px;}
.xa_c02184{left:434.595000px;}
.x4_c02184{left:444.675000px;}
.x7_c02184{left:488.775000px;}
.x10_c02184{left:529.665000px;}
.x12_c02184{left:626.505000px;}
.xc_c02184{left:719.250000px;}
.x2_c02184{left:820.950000px;}
@media print{
.v0_c02184{vertical-align:0.000000pt;}
.ls0_c02184{letter-spacing:0.000000pt;}
.ws0_c02184{word-spacing:0.000000pt;}
._0_c02184{margin-left:-1.024000pt;}
._1_c02184{width:1.184000pt;}
._2_c02184{width:2.592000pt;}
._5_c02184{width:4.096000pt;}
._3_c02184{width:4.992000pt;}
._4_c02184{width:5.984000pt;}
._b_c02184{width:11.200000pt;}
._9_c02184{width:12.480000pt;}
._a_c02184{width:13.440000pt;}
._c_c02184{width:14.976000pt;}
._6_c02184{width:31.040000pt;}
._7_c02184{width:32.000000pt;}
._8_c02184{width:33.546667pt;}
.fs0_c02184{font-size:58.880000pt;}
.fs1_c02184{font-size:64.000000pt;}
.y0_c02184{bottom:0.000000pt;}
.yf_c02184{bottom:3.680000pt;}
.yc_c02184{bottom:4.000000pt;}
.y3_c02184{bottom:4.160000pt;}
.yd_c02184{bottom:4.320000pt;}
.ya_c02184{bottom:4.640000pt;}
.y16_c02184{bottom:22.080000pt;}
.y15_c02184{bottom:22.400000pt;}
.y9_c02184{bottom:23.040000pt;}
.y2_c02184{bottom:37.152000pt;}
.y1_c02184{bottom:67.072000pt;}
.y2b_c02184{bottom:202.906667pt;}
.y2a_c02184{bottom:230.426667pt;}
.y29_c02184{bottom:258.146667pt;}
.y28_c02184{bottom:285.666667pt;}
.y27_c02184{bottom:313.346667pt;}
.y26_c02184{bottom:340.866667pt;}
.y25_c02184{bottom:368.546667pt;}
.y24_c02184{bottom:396.066667pt;}
.y23_c02184{bottom:423.746667pt;}
.y22_c02184{bottom:451.266667pt;}
.y21_c02184{bottom:478.973333pt;}
.y20_c02184{bottom:506.493333pt;}
.y1f_c02184{bottom:534.173333pt;}
.y1e_c02184{bottom:561.693333pt;}
.y1d_c02184{bottom:580.253333pt;}
.y1c_c02184{bottom:598.653333pt;}
.y1b_c02184{bottom:617.053333pt;}
.y1a_c02184{bottom:635.453333pt;}
.y19_c02184{bottom:650.493333pt;}
.y18_c02184{bottom:669.693333pt;}
.y17_c02184{bottom:688.733333pt;}
.y14_c02184{bottom:707.813333pt;}
.y13_c02184{bottom:745.253333pt;}
.y12_c02184{bottom:764.293333pt;}
.y11_c02184{bottom:783.333333pt;}
.y10_c02184{bottom:802.373333pt;}
.ye_c02184{bottom:821.573333pt;}
.y8_c02184{bottom:840.613333pt;}
.yb_c02184{bottom:859.653333pt;}
.y7_c02184{bottom:891.813333pt;}
.y6_c02184{bottom:910.373333pt;}
.y5_c02184{bottom:928.773333pt;}
.y4_c02184{bottom:947.200000pt;}
.h5_c02184{height:18.400000pt;}
.h8_c02184{height:18.432000pt;}
.h2_c02184{height:20.000000pt;}
.h7_c02184{height:36.800000pt;}
.h4_c02184{height:37.440000pt;}
.h1_c02184{height:43.441250pt;}
.h9_c02184{height:57.375000pt;}
.h3_c02184{height:62.812500pt;}
.h6_c02184{height:64.500000pt;}
.h0_c02184{height:1056.000000pt;}
.w1_c02184{width:59.232000pt;}
.w4_c02184{width:70.240000pt;}
.w7_c02184{width:81.792000pt;}
.w5_c02184{width:83.872000pt;}
.w6_c02184{width:85.440000pt;}
.w2_c02184{width:226.266667pt;}
.w3_c02184{width:252.386667pt;}
.w0_c02184{width:816.000000pt;}
.x0_c02184{left:0.000000pt;}
.xe_c02184{left:7.040000pt;}
.x11_c02184{left:13.760000pt;}
.x3_c02184{left:14.720000pt;}
.xf_c02184{left:16.160000pt;}
.x13_c02184{left:19.040000pt;}
.x20_c02184{left:20.480000pt;}
.x1c_c02184{left:22.880000pt;}
.x17_c02184{left:31.040000pt;}
.xd_c02184{left:35.040000pt;}
.x16_c02184{left:36.800000pt;}
.x15_c02184{left:37.920000pt;}
.x1f_c02184{left:40.800000pt;}
.x1e_c02184{left:41.920000pt;}
.x18_c02184{left:54.720000pt;}
.x1d_c02184{left:61.920000pt;}
.x1a_c02184{left:64.480000pt;}
.x14_c02184{left:66.240000pt;}
.x1b_c02184{left:68.480000pt;}
.x19_c02184{left:70.720000pt;}
.x22_c02184{left:85.120000pt;}
.x9_c02184{left:91.680000pt;}
.xb_c02184{left:92.826667pt;}
.x21_c02184{left:95.360000pt;}
.x1_c02184{left:113.472000pt;}
.x8_c02184{left:159.386667pt;}
.x23_c02184{left:166.266667pt;}
.x5_c02184{left:263.426667pt;}
.x6_c02184{left:312.706667pt;}
.xa_c02184{left:386.306667pt;}
.x4_c02184{left:395.266667pt;}
.x7_c02184{left:434.466667pt;}
.x10_c02184{left:470.813333pt;}
.x12_c02184{left:556.893333pt;}
.xc_c02184{left:639.333333pt;}
.x2_c02184{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02185 {
    display:none;
  }
  .loading-indicator_c02185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02185 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02185 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02185" -> "#page-container .classname_c02185")
 */
.pf_c02185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02185 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02185 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02185 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02185 {overflow:visible;}
  }
}
.c_c02185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02185 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02185:after { /* webkit #35443 */
  content: '';
}
.t_c02185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02185 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02185 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02185 { /* info for Javascript */
  display:none;
}
.l_c02185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02185:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02185 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02185.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02185;src:url('chunks/assets/font_6923c60fe20a4699f3d9d299.woff2')format("woff");}.ff1_c02185{font-family:ff1_c02185;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02185;src:url('chunks/assets/font_a3278484cde90c4394253288.woff2')format("woff");}.ff2_c02185{font-family:ff2_c02185;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:ff3_c02185;src:url('chunks/assets/font_d1f28da9018f2e453a1d6f08.woff2')format("woff");}.ff3_c02185{font-family:ff3_c02185;line-height:1.311035;font-style:normal;font-weight: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_c02185;src:url('chunks/assets/font_aabb629146b3a3cc663269da.woff2')format("woff");}.ff4_c02185{font-family:ff4_c02185;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02185{vertical-align:0.000000px;}
.ls0_c02185{letter-spacing:0.000000px;}
.sc__c02185{text-shadow:none;}
.sc0_c02185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02185{-webkit-text-stroke:0px transparent;}
.sc0_c02185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02185{word-spacing:0.000000px;}
._0_c02185{margin-left:-1.368000px;}
._1_c02185{width:1.056000px;}
._2_c02185{width:2.184000px;}
._3_c02185{width:4.176000px;}
._4_c02185{width:5.424000px;}
._7_c02185{width:7.236000px;}
._6_c02185{width:8.496000px;}
._8_c02185{width:13.104000px;}
._9_c02185{width:15.120000px;}
._5_c02185{width:16.488000px;}
._a_c02185{width:20.520000px;}
._b_c02185{width:21.600000px;}
.fc1_c02185{color:rgb(192,80,77);}
.fc3_c02185{color:rgb(255,255,255);}
.fc2_c02185{color:rgb(17,17,17);}
.fc0_c02185{color:rgb(0,0,0);}
.fs0_c02185{font-size:66.240000px;}
.fs1_c02185{font-size:72.000000px;}
.y0_c02185{bottom:0.000000px;}
.yf_c02185{bottom:4.140000px;}
.yc_c02185{bottom:4.500000px;}
.y3_c02185{bottom:4.680000px;}
.yd_c02185{bottom:4.860000px;}
.ya_c02185{bottom:5.220000px;}
.y16_c02185{bottom:24.840000px;}
.y15_c02185{bottom:25.200000px;}
.y9_c02185{bottom:25.920000px;}
.y2_c02185{bottom:41.796000px;}
.y1_c02185{bottom:75.456000px;}
.y2b_c02185{bottom:228.270000px;}
.y2a_c02185{bottom:259.230000px;}
.y29_c02185{bottom:290.415000px;}
.y28_c02185{bottom:321.375000px;}
.y27_c02185{bottom:352.515000px;}
.y26_c02185{bottom:383.475000px;}
.y25_c02185{bottom:414.615000px;}
.y24_c02185{bottom:445.575000px;}
.y23_c02185{bottom:476.715000px;}
.y22_c02185{bottom:507.675000px;}
.y21_c02185{bottom:538.845000px;}
.y20_c02185{bottom:569.805000px;}
.y1f_c02185{bottom:600.945000px;}
.y1e_c02185{bottom:631.905000px;}
.y1d_c02185{bottom:652.785000px;}
.y1c_c02185{bottom:673.485000px;}
.y1b_c02185{bottom:694.185000px;}
.y1a_c02185{bottom:714.885000px;}
.y19_c02185{bottom:731.805000px;}
.y18_c02185{bottom:753.405000px;}
.y17_c02185{bottom:774.825000px;}
.y14_c02185{bottom:796.290000px;}
.y13_c02185{bottom:838.410000px;}
.y12_c02185{bottom:859.830000px;}
.y11_c02185{bottom:881.250000px;}
.y10_c02185{bottom:902.670000px;}
.ye_c02185{bottom:924.270000px;}
.y8_c02185{bottom:945.690000px;}
.yb_c02185{bottom:967.110000px;}
.y7_c02185{bottom:1003.290000px;}
.y6_c02185{bottom:1024.170000px;}
.y5_c02185{bottom:1044.870000px;}
.y4_c02185{bottom:1065.600000px;}
.h5_c02185{height:20.700000px;}
.h8_c02185{height:20.736000px;}
.h2_c02185{height:22.500000px;}
.h7_c02185{height:41.400000px;}
.h4_c02185{height:42.120000px;}
.h1_c02185{height:48.871406px;}
.h9_c02185{height:64.546875px;}
.h3_c02185{height:70.664062px;}
.h6_c02185{height:72.562500px;}
.h0_c02185{height:1188.000000px;}
.w1_c02185{width:66.636000px;}
.w4_c02185{width:79.020000px;}
.w7_c02185{width:92.016000px;}
.w5_c02185{width:94.356000px;}
.w6_c02185{width:96.120000px;}
.w2_c02185{width:254.550000px;}
.w3_c02185{width:283.935000px;}
.w0_c02185{width:918.000000px;}
.x0_c02185{left:0.000000px;}
.xe_c02185{left:7.920000px;}
.x11_c02185{left:15.480000px;}
.x3_c02185{left:16.560000px;}
.xf_c02185{left:18.180000px;}
.x13_c02185{left:21.420000px;}
.x20_c02185{left:23.040000px;}
.x1c_c02185{left:25.740000px;}
.x17_c02185{left:34.920000px;}
.xd_c02185{left:39.420000px;}
.x16_c02185{left:41.400000px;}
.x15_c02185{left:42.660000px;}
.x1f_c02185{left:45.900000px;}
.x1e_c02185{left:47.160000px;}
.x18_c02185{left:61.560000px;}
.x1d_c02185{left:69.660000px;}
.x1a_c02185{left:72.540000px;}
.x14_c02185{left:74.520000px;}
.x1b_c02185{left:77.040000px;}
.x19_c02185{left:79.560000px;}
.x22_c02185{left:95.760000px;}
.x9_c02185{left:103.140000px;}
.xb_c02185{left:104.430000px;}
.x21_c02185{left:107.280000px;}
.x1_c02185{left:127.656000px;}
.x8_c02185{left:179.310000px;}
.x23_c02185{left:187.050000px;}
.x5_c02185{left:294.690000px;}
.x6_c02185{left:351.795000px;}
.xa_c02185{left:434.595000px;}
.x4_c02185{left:444.675000px;}
.x7_c02185{left:488.775000px;}
.x10_c02185{left:529.665000px;}
.x12_c02185{left:626.505000px;}
.xc_c02185{left:719.250000px;}
.x2_c02185{left:820.950000px;}
@media print{
.v0_c02185{vertical-align:0.000000pt;}
.ls0_c02185{letter-spacing:0.000000pt;}
.ws0_c02185{word-spacing:0.000000pt;}
._0_c02185{margin-left:-1.216000pt;}
._1_c02185{width:0.938667pt;}
._2_c02185{width:1.941333pt;}
._3_c02185{width:3.712000pt;}
._4_c02185{width:4.821333pt;}
._7_c02185{width:6.432000pt;}
._6_c02185{width:7.552000pt;}
._8_c02185{width:11.648000pt;}
._9_c02185{width:13.440000pt;}
._5_c02185{width:14.656000pt;}
._a_c02185{width:18.240000pt;}
._b_c02185{width:19.200000pt;}
.fs0_c02185{font-size:58.880000pt;}
.fs1_c02185{font-size:64.000000pt;}
.y0_c02185{bottom:0.000000pt;}
.yf_c02185{bottom:3.680000pt;}
.yc_c02185{bottom:4.000000pt;}
.y3_c02185{bottom:4.160000pt;}
.yd_c02185{bottom:4.320000pt;}
.ya_c02185{bottom:4.640000pt;}
.y16_c02185{bottom:22.080000pt;}
.y15_c02185{bottom:22.400000pt;}
.y9_c02185{bottom:23.040000pt;}
.y2_c02185{bottom:37.152000pt;}
.y1_c02185{bottom:67.072000pt;}
.y2b_c02185{bottom:202.906667pt;}
.y2a_c02185{bottom:230.426667pt;}
.y29_c02185{bottom:258.146667pt;}
.y28_c02185{bottom:285.666667pt;}
.y27_c02185{bottom:313.346667pt;}
.y26_c02185{bottom:340.866667pt;}
.y25_c02185{bottom:368.546667pt;}
.y24_c02185{bottom:396.066667pt;}
.y23_c02185{bottom:423.746667pt;}
.y22_c02185{bottom:451.266667pt;}
.y21_c02185{bottom:478.973333pt;}
.y20_c02185{bottom:506.493333pt;}
.y1f_c02185{bottom:534.173333pt;}
.y1e_c02185{bottom:561.693333pt;}
.y1d_c02185{bottom:580.253333pt;}
.y1c_c02185{bottom:598.653333pt;}
.y1b_c02185{bottom:617.053333pt;}
.y1a_c02185{bottom:635.453333pt;}
.y19_c02185{bottom:650.493333pt;}
.y18_c02185{bottom:669.693333pt;}
.y17_c02185{bottom:688.733333pt;}
.y14_c02185{bottom:707.813333pt;}
.y13_c02185{bottom:745.253333pt;}
.y12_c02185{bottom:764.293333pt;}
.y11_c02185{bottom:783.333333pt;}
.y10_c02185{bottom:802.373333pt;}
.ye_c02185{bottom:821.573333pt;}
.y8_c02185{bottom:840.613333pt;}
.yb_c02185{bottom:859.653333pt;}
.y7_c02185{bottom:891.813333pt;}
.y6_c02185{bottom:910.373333pt;}
.y5_c02185{bottom:928.773333pt;}
.y4_c02185{bottom:947.200000pt;}
.h5_c02185{height:18.400000pt;}
.h8_c02185{height:18.432000pt;}
.h2_c02185{height:20.000000pt;}
.h7_c02185{height:36.800000pt;}
.h4_c02185{height:37.440000pt;}
.h1_c02185{height:43.441250pt;}
.h9_c02185{height:57.375000pt;}
.h3_c02185{height:62.812500pt;}
.h6_c02185{height:64.500000pt;}
.h0_c02185{height:1056.000000pt;}
.w1_c02185{width:59.232000pt;}
.w4_c02185{width:70.240000pt;}
.w7_c02185{width:81.792000pt;}
.w5_c02185{width:83.872000pt;}
.w6_c02185{width:85.440000pt;}
.w2_c02185{width:226.266667pt;}
.w3_c02185{width:252.386667pt;}
.w0_c02185{width:816.000000pt;}
.x0_c02185{left:0.000000pt;}
.xe_c02185{left:7.040000pt;}
.x11_c02185{left:13.760000pt;}
.x3_c02185{left:14.720000pt;}
.xf_c02185{left:16.160000pt;}
.x13_c02185{left:19.040000pt;}
.x20_c02185{left:20.480000pt;}
.x1c_c02185{left:22.880000pt;}
.x17_c02185{left:31.040000pt;}
.xd_c02185{left:35.040000pt;}
.x16_c02185{left:36.800000pt;}
.x15_c02185{left:37.920000pt;}
.x1f_c02185{left:40.800000pt;}
.x1e_c02185{left:41.920000pt;}
.x18_c02185{left:54.720000pt;}
.x1d_c02185{left:61.920000pt;}
.x1a_c02185{left:64.480000pt;}
.x14_c02185{left:66.240000pt;}
.x1b_c02185{left:68.480000pt;}
.x19_c02185{left:70.720000pt;}
.x22_c02185{left:85.120000pt;}
.x9_c02185{left:91.680000pt;}
.xb_c02185{left:92.826667pt;}
.x21_c02185{left:95.360000pt;}
.x1_c02185{left:113.472000pt;}
.x8_c02185{left:159.386667pt;}
.x23_c02185{left:166.266667pt;}
.x5_c02185{left:261.946667pt;}
.x6_c02185{left:312.706667pt;}
.xa_c02185{left:386.306667pt;}
.x4_c02185{left:395.266667pt;}
.x7_c02185{left:434.466667pt;}
.x10_c02185{left:470.813333pt;}
.x12_c02185{left:556.893333pt;}
.xc_c02185{left:639.333333pt;}
.x2_c02185{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02186 {
    display:none;
  }
  .loading-indicator_c02186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02186 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02186 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02186" -> "#page-container .classname_c02186")
 */
.pf_c02186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02186 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02186 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02186 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02186 {overflow:visible;}
  }
}
.c_c02186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02186 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02186:after { /* webkit #35443 */
  content: '';
}
.t_c02186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02186 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02186 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02186 { /* info for Javascript */
  display:none;
}
.l_c02186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02186:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02186 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02186.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02186;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02186{font-family:ff1_c02186;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02186;src:url('chunks/assets/font_9d6387f7eef813e4adf8698b.woff2')format("woff");}.ff2_c02186{font-family:ff2_c02186;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:ff3_c02186;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02186{font-family:ff3_c02186;line-height:1.311035;font-style:normal;font-weight: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_c02186;src:url('chunks/assets/font_0ed5e009cbdb5fd9286b1fd1.woff2')format("woff");}.ff4_c02186{font-family:ff4_c02186;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02186{vertical-align:0.000000px;}
.ls0_c02186{letter-spacing:0.000000px;}
.sc__c02186{text-shadow:none;}
.sc0_c02186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02186{-webkit-text-stroke:0px transparent;}
.sc0_c02186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02186{word-spacing:0.000000px;}
._0_c02186{margin-left:-1.368000px;}
._1_c02186{width:1.056000px;}
._2_c02186{width:2.184000px;}
._3_c02186{width:3.216000px;}
._4_c02186{width:4.968000px;}
._c_c02186{width:6.132000px;}
._7_c02186{width:7.272000px;}
._a_c02186{width:10.584000px;}
._b_c02186{width:12.672000px;}
._8_c02186{width:14.760000px;}
._9_c02186{width:15.768000px;}
._6_c02186{width:19.116000px;}
._5_c02186{width:20.232000px;}
.fc1_c02186{color:rgb(192,80,77);}
.fc3_c02186{color:rgb(255,255,255);}
.fc2_c02186{color:rgb(17,17,17);}
.fc0_c02186{color:rgb(0,0,0);}
.fs0_c02186{font-size:66.240000px;}
.fs1_c02186{font-size:72.000000px;}
.y0_c02186{bottom:0.000000px;}
.yf_c02186{bottom:4.140000px;}
.yc_c02186{bottom:4.500000px;}
.y3_c02186{bottom:4.680000px;}
.yd_c02186{bottom:4.860000px;}
.ya_c02186{bottom:5.220000px;}
.y16_c02186{bottom:24.840000px;}
.y15_c02186{bottom:25.200000px;}
.y9_c02186{bottom:25.920000px;}
.y2_c02186{bottom:41.796000px;}
.y1_c02186{bottom:75.456000px;}
.y2a_c02186{bottom:259.230000px;}
.y29_c02186{bottom:290.415000px;}
.y28_c02186{bottom:321.375000px;}
.y27_c02186{bottom:352.515000px;}
.y26_c02186{bottom:383.475000px;}
.y25_c02186{bottom:414.615000px;}
.y24_c02186{bottom:445.575000px;}
.y23_c02186{bottom:476.715000px;}
.y22_c02186{bottom:507.675000px;}
.y21_c02186{bottom:538.845000px;}
.y20_c02186{bottom:569.805000px;}
.y1f_c02186{bottom:600.945000px;}
.y1e_c02186{bottom:631.905000px;}
.y1d_c02186{bottom:652.785000px;}
.y1c_c02186{bottom:673.485000px;}
.y1b_c02186{bottom:694.185000px;}
.y1a_c02186{bottom:714.885000px;}
.y19_c02186{bottom:731.805000px;}
.y18_c02186{bottom:753.405000px;}
.y17_c02186{bottom:774.825000px;}
.y14_c02186{bottom:796.290000px;}
.y13_c02186{bottom:838.410000px;}
.y12_c02186{bottom:859.830000px;}
.y11_c02186{bottom:881.250000px;}
.y10_c02186{bottom:902.670000px;}
.ye_c02186{bottom:924.270000px;}
.y8_c02186{bottom:945.690000px;}
.yb_c02186{bottom:967.110000px;}
.y7_c02186{bottom:1003.290000px;}
.y6_c02186{bottom:1024.170000px;}
.y5_c02186{bottom:1044.870000px;}
.y4_c02186{bottom:1065.600000px;}
.h5_c02186{height:20.700000px;}
.h8_c02186{height:20.736000px;}
.h2_c02186{height:22.500000px;}
.h7_c02186{height:41.400000px;}
.h4_c02186{height:42.120000px;}
.h1_c02186{height:48.871406px;}
.h9_c02186{height:64.546875px;}
.h3_c02186{height:70.664062px;}
.h6_c02186{height:72.562500px;}
.h0_c02186{height:1188.000000px;}
.w1_c02186{width:66.636000px;}
.w4_c02186{width:79.020000px;}
.w7_c02186{width:92.016000px;}
.w5_c02186{width:94.356000px;}
.w6_c02186{width:96.120000px;}
.w2_c02186{width:254.550000px;}
.w3_c02186{width:283.935000px;}
.w0_c02186{width:918.000000px;}
.x0_c02186{left:0.000000px;}
.xe_c02186{left:7.920000px;}
.x11_c02186{left:15.480000px;}
.x3_c02186{left:16.560000px;}
.xf_c02186{left:18.180000px;}
.x13_c02186{left:21.420000px;}
.x20_c02186{left:23.040000px;}
.x1c_c02186{left:25.740000px;}
.x17_c02186{left:34.920000px;}
.xd_c02186{left:39.420000px;}
.x16_c02186{left:41.400000px;}
.x15_c02186{left:42.660000px;}
.x1f_c02186{left:45.900000px;}
.x1e_c02186{left:47.160000px;}
.x18_c02186{left:61.560000px;}
.x1d_c02186{left:69.660000px;}
.x1a_c02186{left:72.540000px;}
.x14_c02186{left:74.520000px;}
.x1b_c02186{left:77.040000px;}
.x19_c02186{left:79.560000px;}
.x22_c02186{left:95.760000px;}
.x9_c02186{left:103.140000px;}
.xb_c02186{left:104.430000px;}
.x21_c02186{left:107.280000px;}
.x1_c02186{left:127.656000px;}
.x8_c02186{left:179.310000px;}
.x23_c02186{left:187.050000px;}
.x5_c02186{left:291.810000px;}
.x6_c02186{left:351.795000px;}
.xa_c02186{left:434.595000px;}
.x4_c02186{left:444.675000px;}
.x7_c02186{left:488.775000px;}
.x10_c02186{left:529.665000px;}
.x12_c02186{left:626.505000px;}
.xc_c02186{left:719.250000px;}
.x2_c02186{left:820.950000px;}
@media print{
.v0_c02186{vertical-align:0.000000pt;}
.ls0_c02186{letter-spacing:0.000000pt;}
.ws0_c02186{word-spacing:0.000000pt;}
._0_c02186{margin-left:-1.216000pt;}
._1_c02186{width:0.938667pt;}
._2_c02186{width:1.941333pt;}
._3_c02186{width:2.858667pt;}
._4_c02186{width:4.416000pt;}
._c_c02186{width:5.450667pt;}
._7_c02186{width:6.464000pt;}
._a_c02186{width:9.408000pt;}
._b_c02186{width:11.264000pt;}
._8_c02186{width:13.120000pt;}
._9_c02186{width:14.016000pt;}
._6_c02186{width:16.992000pt;}
._5_c02186{width:17.984000pt;}
.fs0_c02186{font-size:58.880000pt;}
.fs1_c02186{font-size:64.000000pt;}
.y0_c02186{bottom:0.000000pt;}
.yf_c02186{bottom:3.680000pt;}
.yc_c02186{bottom:4.000000pt;}
.y3_c02186{bottom:4.160000pt;}
.yd_c02186{bottom:4.320000pt;}
.ya_c02186{bottom:4.640000pt;}
.y16_c02186{bottom:22.080000pt;}
.y15_c02186{bottom:22.400000pt;}
.y9_c02186{bottom:23.040000pt;}
.y2_c02186{bottom:37.152000pt;}
.y1_c02186{bottom:67.072000pt;}
.y2a_c02186{bottom:230.426667pt;}
.y29_c02186{bottom:258.146667pt;}
.y28_c02186{bottom:285.666667pt;}
.y27_c02186{bottom:313.346667pt;}
.y26_c02186{bottom:340.866667pt;}
.y25_c02186{bottom:368.546667pt;}
.y24_c02186{bottom:396.066667pt;}
.y23_c02186{bottom:423.746667pt;}
.y22_c02186{bottom:451.266667pt;}
.y21_c02186{bottom:478.973333pt;}
.y20_c02186{bottom:506.493333pt;}
.y1f_c02186{bottom:534.173333pt;}
.y1e_c02186{bottom:561.693333pt;}
.y1d_c02186{bottom:580.253333pt;}
.y1c_c02186{bottom:598.653333pt;}
.y1b_c02186{bottom:617.053333pt;}
.y1a_c02186{bottom:635.453333pt;}
.y19_c02186{bottom:650.493333pt;}
.y18_c02186{bottom:669.693333pt;}
.y17_c02186{bottom:688.733333pt;}
.y14_c02186{bottom:707.813333pt;}
.y13_c02186{bottom:745.253333pt;}
.y12_c02186{bottom:764.293333pt;}
.y11_c02186{bottom:783.333333pt;}
.y10_c02186{bottom:802.373333pt;}
.ye_c02186{bottom:821.573333pt;}
.y8_c02186{bottom:840.613333pt;}
.yb_c02186{bottom:859.653333pt;}
.y7_c02186{bottom:891.813333pt;}
.y6_c02186{bottom:910.373333pt;}
.y5_c02186{bottom:928.773333pt;}
.y4_c02186{bottom:947.200000pt;}
.h5_c02186{height:18.400000pt;}
.h8_c02186{height:18.432000pt;}
.h2_c02186{height:20.000000pt;}
.h7_c02186{height:36.800000pt;}
.h4_c02186{height:37.440000pt;}
.h1_c02186{height:43.441250pt;}
.h9_c02186{height:57.375000pt;}
.h3_c02186{height:62.812500pt;}
.h6_c02186{height:64.500000pt;}
.h0_c02186{height:1056.000000pt;}
.w1_c02186{width:59.232000pt;}
.w4_c02186{width:70.240000pt;}
.w7_c02186{width:81.792000pt;}
.w5_c02186{width:83.872000pt;}
.w6_c02186{width:85.440000pt;}
.w2_c02186{width:226.266667pt;}
.w3_c02186{width:252.386667pt;}
.w0_c02186{width:816.000000pt;}
.x0_c02186{left:0.000000pt;}
.xe_c02186{left:7.040000pt;}
.x11_c02186{left:13.760000pt;}
.x3_c02186{left:14.720000pt;}
.xf_c02186{left:16.160000pt;}
.x13_c02186{left:19.040000pt;}
.x20_c02186{left:20.480000pt;}
.x1c_c02186{left:22.880000pt;}
.x17_c02186{left:31.040000pt;}
.xd_c02186{left:35.040000pt;}
.x16_c02186{left:36.800000pt;}
.x15_c02186{left:37.920000pt;}
.x1f_c02186{left:40.800000pt;}
.x1e_c02186{left:41.920000pt;}
.x18_c02186{left:54.720000pt;}
.x1d_c02186{left:61.920000pt;}
.x1a_c02186{left:64.480000pt;}
.x14_c02186{left:66.240000pt;}
.x1b_c02186{left:68.480000pt;}
.x19_c02186{left:70.720000pt;}
.x22_c02186{left:85.120000pt;}
.x9_c02186{left:91.680000pt;}
.xb_c02186{left:92.826667pt;}
.x21_c02186{left:95.360000pt;}
.x1_c02186{left:113.472000pt;}
.x8_c02186{left:159.386667pt;}
.x23_c02186{left:166.266667pt;}
.x5_c02186{left:259.386667pt;}
.x6_c02186{left:312.706667pt;}
.xa_c02186{left:386.306667pt;}
.x4_c02186{left:395.266667pt;}
.x7_c02186{left:434.466667pt;}
.x10_c02186{left:470.813333pt;}
.x12_c02186{left:556.893333pt;}
.xc_c02186{left:639.333333pt;}
.x2_c02186{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02187 {
    display:none;
  }
  .loading-indicator_c02187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02187 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02187 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02187" -> "#page-container .classname_c02187")
 */
.pf_c02187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02187 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02187 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02187 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02187 {overflow:visible;}
  }
}
.c_c02187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02187 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02187:after { /* webkit #35443 */
  content: '';
}
.t_c02187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02187 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02187 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02187 { /* info for Javascript */
  display:none;
}
.l_c02187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02187:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02187 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02187.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02187;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02187{font-family:ff1_c02187;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02187;src:url('chunks/assets/font_ebff3e1a82732f85997adb59.woff2')format("woff");}.ff2_c02187{font-family:ff2_c02187;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:ff3_c02187;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02187{font-family:ff3_c02187;line-height:1.311035;font-style:normal;font-weight: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_c02187;src:url('chunks/assets/font_9b2e47597809d155862bb579.woff2')format("woff");}.ff4_c02187{font-family:ff4_c02187;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02187{vertical-align:0.000000px;}
.ls0_c02187{letter-spacing:0.000000px;}
.sc__c02187{text-shadow:none;}
.sc0_c02187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02187{-webkit-text-stroke:0px transparent;}
.sc0_c02187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02187{word-spacing:0.000000px;}
._0_c02187{margin-left:-1.152000px;}
._1_c02187{width:1.704000px;}
._2_c02187{width:2.832000px;}
._6_c02187{width:4.968000px;}
._3_c02187{width:8.496000px;}
._5_c02187{width:9.504000px;}
._4_c02187{width:10.584000px;}
._7_c02187{width:11.592000px;}
._8_c02187{width:22.176000px;}
._9_c02187{width:23.760000px;}
._a_c02187{width:32.760000px;}
._b_c02187{width:33.984000px;}
.fc1_c02187{color:rgb(192,80,77);}
.fc3_c02187{color:rgb(255,255,255);}
.fc2_c02187{color:rgb(17,17,17);}
.fc0_c02187{color:rgb(0,0,0);}
.fs0_c02187{font-size:66.240000px;}
.fs1_c02187{font-size:72.000000px;}
.y0_c02187{bottom:0.000000px;}
.yf_c02187{bottom:4.140000px;}
.yc_c02187{bottom:4.500000px;}
.y3_c02187{bottom:4.680000px;}
.yd_c02187{bottom:4.860000px;}
.ya_c02187{bottom:5.220000px;}
.y16_c02187{bottom:24.840000px;}
.y15_c02187{bottom:25.200000px;}
.y9_c02187{bottom:25.920000px;}
.y2_c02187{bottom:41.796000px;}
.y1_c02187{bottom:75.456000px;}
.y28_c02187{bottom:321.375000px;}
.y27_c02187{bottom:352.515000px;}
.y26_c02187{bottom:383.475000px;}
.y25_c02187{bottom:414.615000px;}
.y24_c02187{bottom:445.575000px;}
.y23_c02187{bottom:476.715000px;}
.y22_c02187{bottom:507.675000px;}
.y21_c02187{bottom:538.845000px;}
.y20_c02187{bottom:569.805000px;}
.y1f_c02187{bottom:600.945000px;}
.y1e_c02187{bottom:631.905000px;}
.y1d_c02187{bottom:652.785000px;}
.y1c_c02187{bottom:673.485000px;}
.y1b_c02187{bottom:694.185000px;}
.y1a_c02187{bottom:714.885000px;}
.y19_c02187{bottom:731.805000px;}
.y18_c02187{bottom:753.405000px;}
.y17_c02187{bottom:774.825000px;}
.y14_c02187{bottom:796.290000px;}
.y13_c02187{bottom:838.410000px;}
.y12_c02187{bottom:859.830000px;}
.y11_c02187{bottom:881.250000px;}
.y10_c02187{bottom:902.670000px;}
.ye_c02187{bottom:924.270000px;}
.y8_c02187{bottom:945.690000px;}
.yb_c02187{bottom:967.110000px;}
.y7_c02187{bottom:1003.290000px;}
.y6_c02187{bottom:1024.170000px;}
.y5_c02187{bottom:1044.870000px;}
.y4_c02187{bottom:1065.600000px;}
.h5_c02187{height:20.700000px;}
.h8_c02187{height:20.736000px;}
.h2_c02187{height:22.500000px;}
.h7_c02187{height:41.400000px;}
.h4_c02187{height:42.120000px;}
.h1_c02187{height:48.871406px;}
.h9_c02187{height:64.546875px;}
.h3_c02187{height:70.664062px;}
.h6_c02187{height:72.562500px;}
.h0_c02187{height:1188.000000px;}
.w1_c02187{width:66.636000px;}
.w4_c02187{width:79.020000px;}
.w7_c02187{width:92.016000px;}
.w5_c02187{width:94.356000px;}
.w6_c02187{width:96.120000px;}
.w2_c02187{width:254.550000px;}
.w3_c02187{width:283.935000px;}
.w0_c02187{width:918.000000px;}
.x0_c02187{left:0.000000px;}
.xe_c02187{left:7.920000px;}
.x11_c02187{left:15.480000px;}
.x3_c02187{left:16.560000px;}
.xf_c02187{left:18.180000px;}
.x13_c02187{left:21.420000px;}
.x20_c02187{left:23.040000px;}
.x1c_c02187{left:25.740000px;}
.x17_c02187{left:34.920000px;}
.xd_c02187{left:39.420000px;}
.x16_c02187{left:41.400000px;}
.x15_c02187{left:42.660000px;}
.x1f_c02187{left:45.900000px;}
.x1e_c02187{left:47.160000px;}
.x18_c02187{left:61.560000px;}
.x1d_c02187{left:69.660000px;}
.x1a_c02187{left:72.540000px;}
.x14_c02187{left:74.520000px;}
.x1b_c02187{left:77.040000px;}
.x19_c02187{left:79.560000px;}
.x22_c02187{left:95.760000px;}
.x9_c02187{left:103.140000px;}
.xb_c02187{left:104.430000px;}
.x21_c02187{left:107.280000px;}
.x1_c02187{left:127.656000px;}
.x8_c02187{left:179.310000px;}
.x23_c02187{left:187.050000px;}
.x5_c02187{left:301.755000px;}
.x6_c02187{left:351.795000px;}
.xa_c02187{left:434.595000px;}
.x4_c02187{left:444.675000px;}
.x7_c02187{left:488.775000px;}
.x10_c02187{left:529.665000px;}
.x12_c02187{left:626.505000px;}
.xc_c02187{left:719.250000px;}
.x2_c02187{left:820.950000px;}
@media print{
.v0_c02187{vertical-align:0.000000pt;}
.ls0_c02187{letter-spacing:0.000000pt;}
.ws0_c02187{word-spacing:0.000000pt;}
._0_c02187{margin-left:-1.024000pt;}
._1_c02187{width:1.514667pt;}
._2_c02187{width:2.517333pt;}
._6_c02187{width:4.416000pt;}
._3_c02187{width:7.552000pt;}
._5_c02187{width:8.448000pt;}
._4_c02187{width:9.408000pt;}
._7_c02187{width:10.304000pt;}
._8_c02187{width:19.712000pt;}
._9_c02187{width:21.120000pt;}
._a_c02187{width:29.120000pt;}
._b_c02187{width:30.208000pt;}
.fs0_c02187{font-size:58.880000pt;}
.fs1_c02187{font-size:64.000000pt;}
.y0_c02187{bottom:0.000000pt;}
.yf_c02187{bottom:3.680000pt;}
.yc_c02187{bottom:4.000000pt;}
.y3_c02187{bottom:4.160000pt;}
.yd_c02187{bottom:4.320000pt;}
.ya_c02187{bottom:4.640000pt;}
.y16_c02187{bottom:22.080000pt;}
.y15_c02187{bottom:22.400000pt;}
.y9_c02187{bottom:23.040000pt;}
.y2_c02187{bottom:37.152000pt;}
.y1_c02187{bottom:67.072000pt;}
.y28_c02187{bottom:285.666667pt;}
.y27_c02187{bottom:313.346667pt;}
.y26_c02187{bottom:340.866667pt;}
.y25_c02187{bottom:368.546667pt;}
.y24_c02187{bottom:396.066667pt;}
.y23_c02187{bottom:423.746667pt;}
.y22_c02187{bottom:451.266667pt;}
.y21_c02187{bottom:478.973333pt;}
.y20_c02187{bottom:506.493333pt;}
.y1f_c02187{bottom:534.173333pt;}
.y1e_c02187{bottom:561.693333pt;}
.y1d_c02187{bottom:580.253333pt;}
.y1c_c02187{bottom:598.653333pt;}
.y1b_c02187{bottom:617.053333pt;}
.y1a_c02187{bottom:635.453333pt;}
.y19_c02187{bottom:650.493333pt;}
.y18_c02187{bottom:669.693333pt;}
.y17_c02187{bottom:688.733333pt;}
.y14_c02187{bottom:707.813333pt;}
.y13_c02187{bottom:745.253333pt;}
.y12_c02187{bottom:764.293333pt;}
.y11_c02187{bottom:783.333333pt;}
.y10_c02187{bottom:802.373333pt;}
.ye_c02187{bottom:821.573333pt;}
.y8_c02187{bottom:840.613333pt;}
.yb_c02187{bottom:859.653333pt;}
.y7_c02187{bottom:891.813333pt;}
.y6_c02187{bottom:910.373333pt;}
.y5_c02187{bottom:928.773333pt;}
.y4_c02187{bottom:947.200000pt;}
.h5_c02187{height:18.400000pt;}
.h8_c02187{height:18.432000pt;}
.h2_c02187{height:20.000000pt;}
.h7_c02187{height:36.800000pt;}
.h4_c02187{height:37.440000pt;}
.h1_c02187{height:43.441250pt;}
.h9_c02187{height:57.375000pt;}
.h3_c02187{height:62.812500pt;}
.h6_c02187{height:64.500000pt;}
.h0_c02187{height:1056.000000pt;}
.w1_c02187{width:59.232000pt;}
.w4_c02187{width:70.240000pt;}
.w7_c02187{width:81.792000pt;}
.w5_c02187{width:83.872000pt;}
.w6_c02187{width:85.440000pt;}
.w2_c02187{width:226.266667pt;}
.w3_c02187{width:252.386667pt;}
.w0_c02187{width:816.000000pt;}
.x0_c02187{left:0.000000pt;}
.xe_c02187{left:7.040000pt;}
.x11_c02187{left:13.760000pt;}
.x3_c02187{left:14.720000pt;}
.xf_c02187{left:16.160000pt;}
.x13_c02187{left:19.040000pt;}
.x20_c02187{left:20.480000pt;}
.x1c_c02187{left:22.880000pt;}
.x17_c02187{left:31.040000pt;}
.xd_c02187{left:35.040000pt;}
.x16_c02187{left:36.800000pt;}
.x15_c02187{left:37.920000pt;}
.x1f_c02187{left:40.800000pt;}
.x1e_c02187{left:41.920000pt;}
.x18_c02187{left:54.720000pt;}
.x1d_c02187{left:61.920000pt;}
.x1a_c02187{left:64.480000pt;}
.x14_c02187{left:66.240000pt;}
.x1b_c02187{left:68.480000pt;}
.x19_c02187{left:70.720000pt;}
.x22_c02187{left:85.120000pt;}
.x9_c02187{left:91.680000pt;}
.xb_c02187{left:92.826667pt;}
.x21_c02187{left:95.360000pt;}
.x1_c02187{left:113.472000pt;}
.x8_c02187{left:159.386667pt;}
.x23_c02187{left:166.266667pt;}
.x5_c02187{left:268.226667pt;}
.x6_c02187{left:312.706667pt;}
.xa_c02187{left:386.306667pt;}
.x4_c02187{left:395.266667pt;}
.x7_c02187{left:434.466667pt;}
.x10_c02187{left:470.813333pt;}
.x12_c02187{left:556.893333pt;}
.xc_c02187{left:639.333333pt;}
.x2_c02187{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02188 {
    display:none;
  }
  .loading-indicator_c02188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02188 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02188 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02188" -> "#page-container .classname_c02188")
 */
.pf_c02188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02188 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02188 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02188 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02188 {overflow:visible;}
  }
}
.c_c02188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02188 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02188:after { /* webkit #35443 */
  content: '';
}
.t_c02188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02188 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02188 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02188 { /* info for Javascript */
  display:none;
}
.l_c02188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02188:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02188 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02188.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02188;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02188{font-family:ff1_c02188;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02188;src:url('chunks/assets/font_b1dfb9d6badf606fd19c0497.woff2')format("woff");}.ff2_c02188{font-family:ff2_c02188;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:ff3_c02188;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02188{font-family:ff3_c02188;line-height:1.311035;font-style:normal;font-weight: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_c02188;src:url('chunks/assets/font_4c870e232a11869ed97077b5.woff2')format("woff");}.ff4_c02188{font-family:ff4_c02188;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02188{vertical-align:0.000000px;}
.ls0_c02188{letter-spacing:0.000000px;}
.sc__c02188{text-shadow:none;}
.sc0_c02188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02188{-webkit-text-stroke:0px transparent;}
.sc0_c02188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02188{word-spacing:0.000000px;}
._0_c02188{margin-left:-1.152000px;}
._1_c02188{width:1.200000px;}
._2_c02188{width:2.376000px;}
._3_c02188{width:4.176000px;}
._4_c02188{width:5.688000px;}
._5_c02188{width:12.168000px;}
._6_c02188{width:14.400000px;}
._7_c02188{width:15.480000px;}
.fc1_c02188{color:rgb(192,80,77);}
.fc3_c02188{color:rgb(255,255,255);}
.fc2_c02188{color:rgb(17,17,17);}
.fc0_c02188{color:rgb(0,0,0);}
.fs0_c02188{font-size:66.240000px;}
.fs1_c02188{font-size:72.000000px;}
.y0_c02188{bottom:0.000000px;}
.yf_c02188{bottom:4.140000px;}
.yc_c02188{bottom:4.500000px;}
.y3_c02188{bottom:4.680000px;}
.yd_c02188{bottom:4.860000px;}
.ya_c02188{bottom:5.220000px;}
.y16_c02188{bottom:24.840000px;}
.y15_c02188{bottom:25.200000px;}
.y9_c02188{bottom:25.920000px;}
.y2_c02188{bottom:41.796000px;}
.y1_c02188{bottom:75.456000px;}
.y27_c02188{bottom:331.815000px;}
.y26_c02188{bottom:362.775000px;}
.y25_c02188{bottom:393.915000px;}
.y24_c02188{bottom:424.875000px;}
.y23_c02188{bottom:456.015000px;}
.y22_c02188{bottom:486.975000px;}
.y21_c02188{bottom:518.115000px;}
.y20_c02188{bottom:549.105000px;}
.y1f_c02188{bottom:580.245000px;}
.y1e_c02188{bottom:611.205000px;}
.y1d_c02188{bottom:632.085000px;}
.y1c_c02188{bottom:652.785000px;}
.y1b_c02188{bottom:673.485000px;}
.y1a_c02188{bottom:694.185000px;}
.y19_c02188{bottom:711.105000px;}
.y18_c02188{bottom:732.705000px;}
.y17_c02188{bottom:754.125000px;}
.y14_c02188{bottom:796.290000px;}
.y13_c02188{bottom:838.410000px;}
.y12_c02188{bottom:859.830000px;}
.y11_c02188{bottom:881.250000px;}
.y10_c02188{bottom:902.670000px;}
.ye_c02188{bottom:924.270000px;}
.y8_c02188{bottom:945.690000px;}
.yb_c02188{bottom:967.110000px;}
.y7_c02188{bottom:1003.290000px;}
.y6_c02188{bottom:1024.170000px;}
.y5_c02188{bottom:1044.870000px;}
.y4_c02188{bottom:1065.600000px;}
.h5_c02188{height:20.700000px;}
.h2_c02188{height:22.500000px;}
.h7_c02188{height:41.400000px;}
.h8_c02188{height:41.436000px;}
.h4_c02188{height:42.120000px;}
.h1_c02188{height:48.871406px;}
.h9_c02188{height:64.546875px;}
.h3_c02188{height:70.664062px;}
.h6_c02188{height:72.562500px;}
.h0_c02188{height:1188.000000px;}
.w1_c02188{width:66.636000px;}
.w4_c02188{width:79.020000px;}
.w7_c02188{width:92.016000px;}
.w5_c02188{width:94.356000px;}
.w6_c02188{width:96.120000px;}
.w2_c02188{width:254.550000px;}
.w3_c02188{width:283.935000px;}
.w0_c02188{width:918.000000px;}
.x0_c02188{left:0.000000px;}
.xe_c02188{left:7.920000px;}
.x11_c02188{left:15.480000px;}
.x3_c02188{left:16.560000px;}
.xf_c02188{left:18.180000px;}
.x13_c02188{left:21.420000px;}
.x20_c02188{left:23.040000px;}
.x1c_c02188{left:25.740000px;}
.x17_c02188{left:34.920000px;}
.xd_c02188{left:39.420000px;}
.x16_c02188{left:41.400000px;}
.x15_c02188{left:42.660000px;}
.x1f_c02188{left:45.900000px;}
.x1e_c02188{left:47.160000px;}
.x18_c02188{left:61.560000px;}
.x1d_c02188{left:69.660000px;}
.x1a_c02188{left:72.540000px;}
.x14_c02188{left:74.520000px;}
.x1b_c02188{left:77.040000px;}
.x19_c02188{left:79.560000px;}
.x22_c02188{left:95.760000px;}
.x9_c02188{left:103.140000px;}
.xb_c02188{left:104.430000px;}
.x21_c02188{left:107.280000px;}
.x1_c02188{left:127.656000px;}
.x8_c02188{left:179.310000px;}
.x23_c02188{left:187.050000px;}
.x6_c02188{left:277.770000px;}
.x5_c02188{left:368.715000px;}
.xa_c02188{left:434.595000px;}
.x4_c02188{left:444.675000px;}
.x7_c02188{left:488.775000px;}
.x10_c02188{left:529.665000px;}
.x12_c02188{left:626.505000px;}
.xc_c02188{left:719.250000px;}
.x2_c02188{left:820.950000px;}
@media print{
.v0_c02188{vertical-align:0.000000pt;}
.ls0_c02188{letter-spacing:0.000000pt;}
.ws0_c02188{word-spacing:0.000000pt;}
._0_c02188{margin-left:-1.024000pt;}
._1_c02188{width:1.066667pt;}
._2_c02188{width:2.112000pt;}
._3_c02188{width:3.712000pt;}
._4_c02188{width:5.056000pt;}
._5_c02188{width:10.816000pt;}
._6_c02188{width:12.800000pt;}
._7_c02188{width:13.760000pt;}
.fs0_c02188{font-size:58.880000pt;}
.fs1_c02188{font-size:64.000000pt;}
.y0_c02188{bottom:0.000000pt;}
.yf_c02188{bottom:3.680000pt;}
.yc_c02188{bottom:4.000000pt;}
.y3_c02188{bottom:4.160000pt;}
.yd_c02188{bottom:4.320000pt;}
.ya_c02188{bottom:4.640000pt;}
.y16_c02188{bottom:22.080000pt;}
.y15_c02188{bottom:22.400000pt;}
.y9_c02188{bottom:23.040000pt;}
.y2_c02188{bottom:37.152000pt;}
.y1_c02188{bottom:67.072000pt;}
.y27_c02188{bottom:294.946667pt;}
.y26_c02188{bottom:322.466667pt;}
.y25_c02188{bottom:350.146667pt;}
.y24_c02188{bottom:377.666667pt;}
.y23_c02188{bottom:405.346667pt;}
.y22_c02188{bottom:432.866667pt;}
.y21_c02188{bottom:460.546667pt;}
.y20_c02188{bottom:488.093333pt;}
.y1f_c02188{bottom:515.773333pt;}
.y1e_c02188{bottom:543.293333pt;}
.y1d_c02188{bottom:561.853333pt;}
.y1c_c02188{bottom:580.253333pt;}
.y1b_c02188{bottom:598.653333pt;}
.y1a_c02188{bottom:617.053333pt;}
.y19_c02188{bottom:632.093333pt;}
.y18_c02188{bottom:651.293333pt;}
.y17_c02188{bottom:670.333333pt;}
.y14_c02188{bottom:707.813333pt;}
.y13_c02188{bottom:745.253333pt;}
.y12_c02188{bottom:764.293333pt;}
.y11_c02188{bottom:783.333333pt;}
.y10_c02188{bottom:802.373333pt;}
.ye_c02188{bottom:821.573333pt;}
.y8_c02188{bottom:840.613333pt;}
.yb_c02188{bottom:859.653333pt;}
.y7_c02188{bottom:891.813333pt;}
.y6_c02188{bottom:910.373333pt;}
.y5_c02188{bottom:928.773333pt;}
.y4_c02188{bottom:947.200000pt;}
.h5_c02188{height:18.400000pt;}
.h2_c02188{height:20.000000pt;}
.h7_c02188{height:36.800000pt;}
.h8_c02188{height:36.832000pt;}
.h4_c02188{height:37.440000pt;}
.h1_c02188{height:43.441250pt;}
.h9_c02188{height:57.375000pt;}
.h3_c02188{height:62.812500pt;}
.h6_c02188{height:64.500000pt;}
.h0_c02188{height:1056.000000pt;}
.w1_c02188{width:59.232000pt;}
.w4_c02188{width:70.240000pt;}
.w7_c02188{width:81.792000pt;}
.w5_c02188{width:83.872000pt;}
.w6_c02188{width:85.440000pt;}
.w2_c02188{width:226.266667pt;}
.w3_c02188{width:252.386667pt;}
.w0_c02188{width:816.000000pt;}
.x0_c02188{left:0.000000pt;}
.xe_c02188{left:7.040000pt;}
.x11_c02188{left:13.760000pt;}
.x3_c02188{left:14.720000pt;}
.xf_c02188{left:16.160000pt;}
.x13_c02188{left:19.040000pt;}
.x20_c02188{left:20.480000pt;}
.x1c_c02188{left:22.880000pt;}
.x17_c02188{left:31.040000pt;}
.xd_c02188{left:35.040000pt;}
.x16_c02188{left:36.800000pt;}
.x15_c02188{left:37.920000pt;}
.x1f_c02188{left:40.800000pt;}
.x1e_c02188{left:41.920000pt;}
.x18_c02188{left:54.720000pt;}
.x1d_c02188{left:61.920000pt;}
.x1a_c02188{left:64.480000pt;}
.x14_c02188{left:66.240000pt;}
.x1b_c02188{left:68.480000pt;}
.x19_c02188{left:70.720000pt;}
.x22_c02188{left:85.120000pt;}
.x9_c02188{left:91.680000pt;}
.xb_c02188{left:92.826667pt;}
.x21_c02188{left:95.360000pt;}
.x1_c02188{left:113.472000pt;}
.x8_c02188{left:159.386667pt;}
.x23_c02188{left:166.266667pt;}
.x6_c02188{left:246.906667pt;}
.x5_c02188{left:327.746667pt;}
.xa_c02188{left:386.306667pt;}
.x4_c02188{left:395.266667pt;}
.x7_c02188{left:434.466667pt;}
.x10_c02188{left:470.813333pt;}
.x12_c02188{left:556.893333pt;}
.xc_c02188{left:639.333333pt;}
.x2_c02188{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02189 {
    display:none;
  }
  .loading-indicator_c02189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02189 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02189 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02189" -> "#page-container .classname_c02189")
 */
.pf_c02189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02189 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02189 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02189 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02189 {overflow:visible;}
  }
}
.c_c02189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02189 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02189:after { /* webkit #35443 */
  content: '';
}
.t_c02189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02189 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02189 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02189 { /* info for Javascript */
  display:none;
}
.l_c02189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02189:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02189 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02189.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02189;src:url('chunks/assets/font_d2cf9e4b58e1ab89985c0748.woff2')format("woff");}.ff1_c02189{font-family:ff1_c02189;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02189;src:url('chunks/assets/font_cc96a512edae313d047b1c45.woff2')format("woff");}.ff2_c02189{font-family:ff2_c02189;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:ff3_c02189;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02189{font-family:ff3_c02189;line-height:1.311035;font-style:normal;font-weight: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_c02189;src:url('chunks/assets/font_8410759dfdf7e8f1e34bf72d.woff2')format("woff");}.ff4_c02189{font-family:ff4_c02189;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02189{vertical-align:0.000000px;}
.ls1_c02189{letter-spacing:-0.288000px;}
.ls0_c02189{letter-spacing:0.000000px;}
.sc__c02189{text-shadow:none;}
.sc0_c02189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02189{-webkit-text-stroke:0px transparent;}
.sc0_c02189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02189{word-spacing:0.000000px;}
._0_c02189{margin-left:-1.152000px;}
._1_c02189{width:1.344000px;}
._2_c02189{width:2.856000px;}
._5_c02189{width:4.608000px;}
._3_c02189{width:5.616000px;}
._4_c02189{width:6.984000px;}
._6_c02189{width:9.000000px;}
._9_c02189{width:12.888000px;}
._7_c02189{width:32.760000px;}
._8_c02189{width:33.984000px;}
.fc1_c02189{color:rgb(192,80,77);}
.fc3_c02189{color:rgb(255,255,255);}
.fc2_c02189{color:rgb(17,17,17);}
.fc0_c02189{color:rgb(0,0,0);}
.fs0_c02189{font-size:66.240000px;}
.fs1_c02189{font-size:72.000000px;}
.y0_c02189{bottom:0.000000px;}
.yf_c02189{bottom:4.140000px;}
.yc_c02189{bottom:4.500000px;}
.y3_c02189{bottom:4.680000px;}
.yd_c02189{bottom:4.860000px;}
.ya_c02189{bottom:5.220000px;}
.y16_c02189{bottom:24.840000px;}
.y15_c02189{bottom:25.200000px;}
.y9_c02189{bottom:25.920000px;}
.y2_c02189{bottom:41.796000px;}
.y1_c02189{bottom:75.456000px;}
.y28_c02189{bottom:321.375000px;}
.y27_c02189{bottom:352.515000px;}
.y26_c02189{bottom:383.475000px;}
.y25_c02189{bottom:414.615000px;}
.y24_c02189{bottom:445.575000px;}
.y23_c02189{bottom:476.715000px;}
.y22_c02189{bottom:507.675000px;}
.y21_c02189{bottom:538.845000px;}
.y20_c02189{bottom:569.805000px;}
.y1f_c02189{bottom:600.945000px;}
.y1e_c02189{bottom:631.905000px;}
.y1d_c02189{bottom:652.785000px;}
.y1c_c02189{bottom:673.485000px;}
.y1b_c02189{bottom:694.185000px;}
.y1a_c02189{bottom:714.885000px;}
.y19_c02189{bottom:731.805000px;}
.y18_c02189{bottom:753.405000px;}
.y17_c02189{bottom:774.825000px;}
.y14_c02189{bottom:796.290000px;}
.y13_c02189{bottom:838.410000px;}
.y12_c02189{bottom:859.830000px;}
.y11_c02189{bottom:881.250000px;}
.y10_c02189{bottom:902.670000px;}
.ye_c02189{bottom:924.270000px;}
.y8_c02189{bottom:945.690000px;}
.yb_c02189{bottom:967.110000px;}
.y7_c02189{bottom:1003.290000px;}
.y6_c02189{bottom:1024.170000px;}
.y5_c02189{bottom:1044.870000px;}
.y4_c02189{bottom:1065.600000px;}
.h5_c02189{height:20.700000px;}
.h8_c02189{height:20.736000px;}
.h2_c02189{height:22.500000px;}
.h7_c02189{height:41.400000px;}
.h4_c02189{height:42.120000px;}
.h1_c02189{height:48.871406px;}
.h9_c02189{height:64.546875px;}
.h3_c02189{height:70.664062px;}
.h6_c02189{height:72.562500px;}
.h0_c02189{height:1188.000000px;}
.w1_c02189{width:66.636000px;}
.w4_c02189{width:79.020000px;}
.w7_c02189{width:92.016000px;}
.w5_c02189{width:94.356000px;}
.w6_c02189{width:96.120000px;}
.w2_c02189{width:254.550000px;}
.w3_c02189{width:283.935000px;}
.w0_c02189{width:918.000000px;}
.x0_c02189{left:0.000000px;}
.xe_c02189{left:7.920000px;}
.x11_c02189{left:15.480000px;}
.x3_c02189{left:16.560000px;}
.xf_c02189{left:18.180000px;}
.x13_c02189{left:21.420000px;}
.x20_c02189{left:23.040000px;}
.x1c_c02189{left:25.740000px;}
.x17_c02189{left:34.920000px;}
.xd_c02189{left:39.420000px;}
.x16_c02189{left:41.400000px;}
.x15_c02189{left:42.660000px;}
.x1f_c02189{left:45.900000px;}
.x1e_c02189{left:47.160000px;}
.x18_c02189{left:61.560000px;}
.x1d_c02189{left:69.660000px;}
.x1a_c02189{left:72.540000px;}
.x14_c02189{left:74.520000px;}
.x1b_c02189{left:77.040000px;}
.x19_c02189{left:79.560000px;}
.x22_c02189{left:95.760000px;}
.x9_c02189{left:103.140000px;}
.xb_c02189{left:104.430000px;}
.x21_c02189{left:107.280000px;}
.x1_c02189{left:127.656000px;}
.x8_c02189{left:179.310000px;}
.x23_c02189{left:187.050000px;}
.x5_c02189{left:296.715000px;}
.x6_c02189{left:351.795000px;}
.xa_c02189{left:434.595000px;}
.x4_c02189{left:444.675000px;}
.x7_c02189{left:488.775000px;}
.x10_c02189{left:529.665000px;}
.x12_c02189{left:626.505000px;}
.xc_c02189{left:719.250000px;}
.x2_c02189{left:820.950000px;}
@media print{
.v0_c02189{vertical-align:0.000000pt;}
.ls1_c02189{letter-spacing:-0.256000pt;}
.ls0_c02189{letter-spacing:0.000000pt;}
.ws0_c02189{word-spacing:0.000000pt;}
._0_c02189{margin-left:-1.024000pt;}
._1_c02189{width:1.194667pt;}
._2_c02189{width:2.538667pt;}
._5_c02189{width:4.096000pt;}
._3_c02189{width:4.992000pt;}
._4_c02189{width:6.208000pt;}
._6_c02189{width:8.000000pt;}
._9_c02189{width:11.456000pt;}
._7_c02189{width:29.120000pt;}
._8_c02189{width:30.208000pt;}
.fs0_c02189{font-size:58.880000pt;}
.fs1_c02189{font-size:64.000000pt;}
.y0_c02189{bottom:0.000000pt;}
.yf_c02189{bottom:3.680000pt;}
.yc_c02189{bottom:4.000000pt;}
.y3_c02189{bottom:4.160000pt;}
.yd_c02189{bottom:4.320000pt;}
.ya_c02189{bottom:4.640000pt;}
.y16_c02189{bottom:22.080000pt;}
.y15_c02189{bottom:22.400000pt;}
.y9_c02189{bottom:23.040000pt;}
.y2_c02189{bottom:37.152000pt;}
.y1_c02189{bottom:67.072000pt;}
.y28_c02189{bottom:285.666667pt;}
.y27_c02189{bottom:313.346667pt;}
.y26_c02189{bottom:340.866667pt;}
.y25_c02189{bottom:368.546667pt;}
.y24_c02189{bottom:396.066667pt;}
.y23_c02189{bottom:423.746667pt;}
.y22_c02189{bottom:451.266667pt;}
.y21_c02189{bottom:478.973333pt;}
.y20_c02189{bottom:506.493333pt;}
.y1f_c02189{bottom:534.173333pt;}
.y1e_c02189{bottom:561.693333pt;}
.y1d_c02189{bottom:580.253333pt;}
.y1c_c02189{bottom:598.653333pt;}
.y1b_c02189{bottom:617.053333pt;}
.y1a_c02189{bottom:635.453333pt;}
.y19_c02189{bottom:650.493333pt;}
.y18_c02189{bottom:669.693333pt;}
.y17_c02189{bottom:688.733333pt;}
.y14_c02189{bottom:707.813333pt;}
.y13_c02189{bottom:745.253333pt;}
.y12_c02189{bottom:764.293333pt;}
.y11_c02189{bottom:783.333333pt;}
.y10_c02189{bottom:802.373333pt;}
.ye_c02189{bottom:821.573333pt;}
.y8_c02189{bottom:840.613333pt;}
.yb_c02189{bottom:859.653333pt;}
.y7_c02189{bottom:891.813333pt;}
.y6_c02189{bottom:910.373333pt;}
.y5_c02189{bottom:928.773333pt;}
.y4_c02189{bottom:947.200000pt;}
.h5_c02189{height:18.400000pt;}
.h8_c02189{height:18.432000pt;}
.h2_c02189{height:20.000000pt;}
.h7_c02189{height:36.800000pt;}
.h4_c02189{height:37.440000pt;}
.h1_c02189{height:43.441250pt;}
.h9_c02189{height:57.375000pt;}
.h3_c02189{height:62.812500pt;}
.h6_c02189{height:64.500000pt;}
.h0_c02189{height:1056.000000pt;}
.w1_c02189{width:59.232000pt;}
.w4_c02189{width:70.240000pt;}
.w7_c02189{width:81.792000pt;}
.w5_c02189{width:83.872000pt;}
.w6_c02189{width:85.440000pt;}
.w2_c02189{width:226.266667pt;}
.w3_c02189{width:252.386667pt;}
.w0_c02189{width:816.000000pt;}
.x0_c02189{left:0.000000pt;}
.xe_c02189{left:7.040000pt;}
.x11_c02189{left:13.760000pt;}
.x3_c02189{left:14.720000pt;}
.xf_c02189{left:16.160000pt;}
.x13_c02189{left:19.040000pt;}
.x20_c02189{left:20.480000pt;}
.x1c_c02189{left:22.880000pt;}
.x17_c02189{left:31.040000pt;}
.xd_c02189{left:35.040000pt;}
.x16_c02189{left:36.800000pt;}
.x15_c02189{left:37.920000pt;}
.x1f_c02189{left:40.800000pt;}
.x1e_c02189{left:41.920000pt;}
.x18_c02189{left:54.720000pt;}
.x1d_c02189{left:61.920000pt;}
.x1a_c02189{left:64.480000pt;}
.x14_c02189{left:66.240000pt;}
.x1b_c02189{left:68.480000pt;}
.x19_c02189{left:70.720000pt;}
.x22_c02189{left:85.120000pt;}
.x9_c02189{left:91.680000pt;}
.xb_c02189{left:92.826667pt;}
.x21_c02189{left:95.360000pt;}
.x1_c02189{left:113.472000pt;}
.x8_c02189{left:159.386667pt;}
.x23_c02189{left:166.266667pt;}
.x5_c02189{left:263.746667pt;}
.x6_c02189{left:312.706667pt;}
.xa_c02189{left:386.306667pt;}
.x4_c02189{left:395.266667pt;}
.x7_c02189{left:434.466667pt;}
.x10_c02189{left:470.813333pt;}
.x12_c02189{left:556.893333pt;}
.xc_c02189{left:639.333333pt;}
.x2_c02189{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02190 {
    display:none;
  }
  .loading-indicator_c02190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02190 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02190 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02190" -> "#page-container .classname_c02190")
 */
.pf_c02190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02190 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02190 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02190 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02190 {overflow:visible;}
  }
}
.c_c02190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02190 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02190:after { /* webkit #35443 */
  content: '';
}
.t_c02190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02190 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02190 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02190 { /* info for Javascript */
  display:none;
}
.l_c02190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02190:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02190 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02190.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02190;src:url('chunks/assets/font_a8e35df905bc46b67323d5c2.woff2')format("woff");}.ff1_c02190{font-family:ff1_c02190;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02190;src:url('chunks/assets/font_b1057ec311e8766ef018bf50.woff2')format("woff");}.ff2_c02190{font-family:ff2_c02190;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:ff3_c02190;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff3_c02190{font-family:ff3_c02190;line-height:1.311035;font-style:normal;font-weight: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_c02190;src:url('chunks/assets/font_80284182d324fc198b26fda4.woff2')format("woff");}.ff4_c02190{font-family:ff4_c02190;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02190{vertical-align:0.000000px;}
.ls1_c02190{letter-spacing:-0.288000px;}
.ls0_c02190{letter-spacing:0.000000px;}
.sc__c02190{text-shadow:none;}
.sc0_c02190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02190{-webkit-text-stroke:0px transparent;}
.sc0_c02190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02190{word-spacing:-18.000000px;}
.ws0_c02190{word-spacing:-17.712000px;}
.ws2_c02190{word-spacing:0.000000px;}
._0_c02190{margin-left:-1.152000px;}
._1_c02190{width:1.704000px;}
._2_c02190{width:2.760000px;}
._5_c02190{width:4.968000px;}
._7_c02190{width:7.992000px;}
._6_c02190{width:9.288000px;}
._3_c02190{width:11.376000px;}
._4_c02190{width:12.744000px;}
.fc1_c02190{color:rgb(192,80,77);}
.fc3_c02190{color:rgb(255,255,255);}
.fc2_c02190{color:rgb(17,17,17);}
.fc0_c02190{color:rgb(0,0,0);}
.fs0_c02190{font-size:66.240000px;}
.fs1_c02190{font-size:72.000000px;}
.y0_c02190{bottom:0.000000px;}
.yf_c02190{bottom:4.140000px;}
.yc_c02190{bottom:4.500000px;}
.y3_c02190{bottom:4.680000px;}
.yd_c02190{bottom:4.860000px;}
.ya_c02190{bottom:5.220000px;}
.y16_c02190{bottom:24.840000px;}
.y15_c02190{bottom:25.200000px;}
.y9_c02190{bottom:25.920000px;}
.y2_c02190{bottom:41.796000px;}
.y1_c02190{bottom:75.456000px;}
.y28_c02190{bottom:321.375000px;}
.y27_c02190{bottom:352.515000px;}
.y26_c02190{bottom:383.475000px;}
.y25_c02190{bottom:414.615000px;}
.y24_c02190{bottom:445.575000px;}
.y23_c02190{bottom:476.715000px;}
.y22_c02190{bottom:507.675000px;}
.y21_c02190{bottom:538.845000px;}
.y20_c02190{bottom:569.805000px;}
.y1f_c02190{bottom:600.945000px;}
.y1e_c02190{bottom:631.905000px;}
.y1d_c02190{bottom:652.785000px;}
.y1c_c02190{bottom:673.485000px;}
.y1b_c02190{bottom:694.185000px;}
.y1a_c02190{bottom:714.885000px;}
.y19_c02190{bottom:731.805000px;}
.y18_c02190{bottom:753.405000px;}
.y17_c02190{bottom:774.825000px;}
.y14_c02190{bottom:796.290000px;}
.y13_c02190{bottom:838.410000px;}
.y12_c02190{bottom:859.830000px;}
.y11_c02190{bottom:881.250000px;}
.y10_c02190{bottom:902.670000px;}
.ye_c02190{bottom:924.270000px;}
.y8_c02190{bottom:945.690000px;}
.yb_c02190{bottom:967.110000px;}
.y7_c02190{bottom:1003.290000px;}
.y6_c02190{bottom:1024.170000px;}
.y5_c02190{bottom:1044.870000px;}
.y4_c02190{bottom:1065.600000px;}
.h5_c02190{height:20.700000px;}
.h8_c02190{height:20.736000px;}
.h2_c02190{height:22.500000px;}
.h7_c02190{height:41.400000px;}
.h4_c02190{height:42.120000px;}
.h1_c02190{height:48.871406px;}
.h9_c02190{height:64.546875px;}
.h3_c02190{height:70.664062px;}
.h6_c02190{height:72.562500px;}
.h0_c02190{height:1188.000000px;}
.w1_c02190{width:66.636000px;}
.w4_c02190{width:79.020000px;}
.w7_c02190{width:92.016000px;}
.w5_c02190{width:94.356000px;}
.w6_c02190{width:96.120000px;}
.w2_c02190{width:254.550000px;}
.w3_c02190{width:283.935000px;}
.w0_c02190{width:918.000000px;}
.x0_c02190{left:0.000000px;}
.xe_c02190{left:7.920000px;}
.x11_c02190{left:15.480000px;}
.x3_c02190{left:16.560000px;}
.xf_c02190{left:18.180000px;}
.x13_c02190{left:21.420000px;}
.x20_c02190{left:23.040000px;}
.x1c_c02190{left:25.740000px;}
.x17_c02190{left:34.920000px;}
.xd_c02190{left:39.420000px;}
.x16_c02190{left:41.400000px;}
.x15_c02190{left:42.660000px;}
.x1f_c02190{left:45.900000px;}
.x1e_c02190{left:47.160000px;}
.x18_c02190{left:61.560000px;}
.x1d_c02190{left:69.660000px;}
.x1a_c02190{left:72.540000px;}
.x14_c02190{left:74.520000px;}
.x1b_c02190{left:77.040000px;}
.x19_c02190{left:79.560000px;}
.x22_c02190{left:95.760000px;}
.x9_c02190{left:103.140000px;}
.xb_c02190{left:104.430000px;}
.x21_c02190{left:107.280000px;}
.x1_c02190{left:127.656000px;}
.x8_c02190{left:179.310000px;}
.x23_c02190{left:187.050000px;}
.x5_c02190{left:306.255000px;}
.x6_c02190{left:351.795000px;}
.xa_c02190{left:434.595000px;}
.x4_c02190{left:444.675000px;}
.x7_c02190{left:488.775000px;}
.x10_c02190{left:529.665000px;}
.x12_c02190{left:626.505000px;}
.xc_c02190{left:719.250000px;}
.x2_c02190{left:820.950000px;}
@media print{
.v0_c02190{vertical-align:0.000000pt;}
.ls1_c02190{letter-spacing:-0.256000pt;}
.ls0_c02190{letter-spacing:0.000000pt;}
.ws1_c02190{word-spacing:-16.000000pt;}
.ws0_c02190{word-spacing:-15.744000pt;}
.ws2_c02190{word-spacing:0.000000pt;}
._0_c02190{margin-left:-1.024000pt;}
._1_c02190{width:1.514667pt;}
._2_c02190{width:2.453333pt;}
._5_c02190{width:4.416000pt;}
._7_c02190{width:7.104000pt;}
._6_c02190{width:8.256000pt;}
._3_c02190{width:10.112000pt;}
._4_c02190{width:11.328000pt;}
.fs0_c02190{font-size:58.880000pt;}
.fs1_c02190{font-size:64.000000pt;}
.y0_c02190{bottom:0.000000pt;}
.yf_c02190{bottom:3.680000pt;}
.yc_c02190{bottom:4.000000pt;}
.y3_c02190{bottom:4.160000pt;}
.yd_c02190{bottom:4.320000pt;}
.ya_c02190{bottom:4.640000pt;}
.y16_c02190{bottom:22.080000pt;}
.y15_c02190{bottom:22.400000pt;}
.y9_c02190{bottom:23.040000pt;}
.y2_c02190{bottom:37.152000pt;}
.y1_c02190{bottom:67.072000pt;}
.y28_c02190{bottom:285.666667pt;}
.y27_c02190{bottom:313.346667pt;}
.y26_c02190{bottom:340.866667pt;}
.y25_c02190{bottom:368.546667pt;}
.y24_c02190{bottom:396.066667pt;}
.y23_c02190{bottom:423.746667pt;}
.y22_c02190{bottom:451.266667pt;}
.y21_c02190{bottom:478.973333pt;}
.y20_c02190{bottom:506.493333pt;}
.y1f_c02190{bottom:534.173333pt;}
.y1e_c02190{bottom:561.693333pt;}
.y1d_c02190{bottom:580.253333pt;}
.y1c_c02190{bottom:598.653333pt;}
.y1b_c02190{bottom:617.053333pt;}
.y1a_c02190{bottom:635.453333pt;}
.y19_c02190{bottom:650.493333pt;}
.y18_c02190{bottom:669.693333pt;}
.y17_c02190{bottom:688.733333pt;}
.y14_c02190{bottom:707.813333pt;}
.y13_c02190{bottom:745.253333pt;}
.y12_c02190{bottom:764.293333pt;}
.y11_c02190{bottom:783.333333pt;}
.y10_c02190{bottom:802.373333pt;}
.ye_c02190{bottom:821.573333pt;}
.y8_c02190{bottom:840.613333pt;}
.yb_c02190{bottom:859.653333pt;}
.y7_c02190{bottom:891.813333pt;}
.y6_c02190{bottom:910.373333pt;}
.y5_c02190{bottom:928.773333pt;}
.y4_c02190{bottom:947.200000pt;}
.h5_c02190{height:18.400000pt;}
.h8_c02190{height:18.432000pt;}
.h2_c02190{height:20.000000pt;}
.h7_c02190{height:36.800000pt;}
.h4_c02190{height:37.440000pt;}
.h1_c02190{height:43.441250pt;}
.h9_c02190{height:57.375000pt;}
.h3_c02190{height:62.812500pt;}
.h6_c02190{height:64.500000pt;}
.h0_c02190{height:1056.000000pt;}
.w1_c02190{width:59.232000pt;}
.w4_c02190{width:70.240000pt;}
.w7_c02190{width:81.792000pt;}
.w5_c02190{width:83.872000pt;}
.w6_c02190{width:85.440000pt;}
.w2_c02190{width:226.266667pt;}
.w3_c02190{width:252.386667pt;}
.w0_c02190{width:816.000000pt;}
.x0_c02190{left:0.000000pt;}
.xe_c02190{left:7.040000pt;}
.x11_c02190{left:13.760000pt;}
.x3_c02190{left:14.720000pt;}
.xf_c02190{left:16.160000pt;}
.x13_c02190{left:19.040000pt;}
.x20_c02190{left:20.480000pt;}
.x1c_c02190{left:22.880000pt;}
.x17_c02190{left:31.040000pt;}
.xd_c02190{left:35.040000pt;}
.x16_c02190{left:36.800000pt;}
.x15_c02190{left:37.920000pt;}
.x1f_c02190{left:40.800000pt;}
.x1e_c02190{left:41.920000pt;}
.x18_c02190{left:54.720000pt;}
.x1d_c02190{left:61.920000pt;}
.x1a_c02190{left:64.480000pt;}
.x14_c02190{left:66.240000pt;}
.x1b_c02190{left:68.480000pt;}
.x19_c02190{left:70.720000pt;}
.x22_c02190{left:85.120000pt;}
.x9_c02190{left:91.680000pt;}
.xb_c02190{left:92.826667pt;}
.x21_c02190{left:95.360000pt;}
.x1_c02190{left:113.472000pt;}
.x8_c02190{left:159.386667pt;}
.x23_c02190{left:166.266667pt;}
.x5_c02190{left:272.226667pt;}
.x6_c02190{left:312.706667pt;}
.xa_c02190{left:386.306667pt;}
.x4_c02190{left:395.266667pt;}
.x7_c02190{left:434.466667pt;}
.x10_c02190{left:470.813333pt;}
.x12_c02190{left:556.893333pt;}
.xc_c02190{left:639.333333pt;}
.x2_c02190{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02191 {
    display:none;
  }
  .loading-indicator_c02191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02191 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02191 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02191" -> "#page-container .classname_c02191")
 */
.pf_c02191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02191 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02191 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02191 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02191 {overflow:visible;}
  }
}
.c_c02191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02191 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02191:after { /* webkit #35443 */
  content: '';
}
.t_c02191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02191 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02191 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02191 { /* info for Javascript */
  display:none;
}
.l_c02191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02191:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02191 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02191.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02191;src:url('chunks/assets/font_f41a402c08bc8c547bbbd41c.woff2')format("woff");}.ff1_c02191{font-family:ff1_c02191;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02191;src:url('chunks/assets/font_d17082632a6a782e79fb1232.woff2')format("woff");}.ff2_c02191{font-family:ff2_c02191;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:ff3_c02191;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02191{font-family:ff3_c02191;line-height:1.311035;font-style:normal;font-weight: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_c02191;src:url('chunks/assets/font_8191ec34bd8d6c70c9407847.woff2')format("woff");}.ff4_c02191{font-family:ff4_c02191;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02191{vertical-align:0.000000px;}
.ls0_c02191{letter-spacing:0.000000px;}
.sc__c02191{text-shadow:none;}
.sc0_c02191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02191{-webkit-text-stroke:0px transparent;}
.sc0_c02191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02191{word-spacing:-18.000000px;}
.ws1_c02191{word-spacing:0.000000px;}
._0_c02191{margin-left:-1.152000px;}
._1_c02191{width:1.560000px;}
._4_c02191{width:3.240000px;}
._3_c02191{width:4.968000px;}
._2_c02191{width:7.056000px;}
._7_c02191{width:19.008000px;}
._8_c02191{width:20.136000px;}
._5_c02191{width:23.400000px;}
._6_c02191{width:24.504000px;}
._9_c02191{width:26.784000px;}
._a_c02191{width:27.936000px;}
._b_c02191{width:30.024000px;}
.fc1_c02191{color:rgb(192,80,77);}
.fc3_c02191{color:rgb(255,255,255);}
.fc2_c02191{color:rgb(17,17,17);}
.fc0_c02191{color:rgb(0,0,0);}
.fs0_c02191{font-size:66.240000px;}
.fs1_c02191{font-size:72.000000px;}
.y0_c02191{bottom:0.000000px;}
.yf_c02191{bottom:4.140000px;}
.yc_c02191{bottom:4.500000px;}
.y3_c02191{bottom:4.680000px;}
.yd_c02191{bottom:4.860000px;}
.ya_c02191{bottom:5.220000px;}
.y16_c02191{bottom:24.840000px;}
.y15_c02191{bottom:25.200000px;}
.y9_c02191{bottom:25.920000px;}
.y2_c02191{bottom:41.796000px;}
.y1_c02191{bottom:75.456000px;}
.y29_c02191{bottom:290.415000px;}
.y28_c02191{bottom:321.375000px;}
.y27_c02191{bottom:352.515000px;}
.y26_c02191{bottom:383.475000px;}
.y25_c02191{bottom:414.615000px;}
.y24_c02191{bottom:445.575000px;}
.y23_c02191{bottom:476.715000px;}
.y22_c02191{bottom:507.675000px;}
.y21_c02191{bottom:538.845000px;}
.y20_c02191{bottom:569.805000px;}
.y1f_c02191{bottom:600.945000px;}
.y1e_c02191{bottom:631.905000px;}
.y1d_c02191{bottom:652.785000px;}
.y1c_c02191{bottom:673.485000px;}
.y1b_c02191{bottom:694.185000px;}
.y1a_c02191{bottom:714.885000px;}
.y19_c02191{bottom:731.805000px;}
.y18_c02191{bottom:753.405000px;}
.y17_c02191{bottom:774.825000px;}
.y14_c02191{bottom:796.290000px;}
.y13_c02191{bottom:838.410000px;}
.y12_c02191{bottom:859.830000px;}
.y11_c02191{bottom:881.250000px;}
.y10_c02191{bottom:902.670000px;}
.ye_c02191{bottom:924.270000px;}
.y8_c02191{bottom:945.690000px;}
.yb_c02191{bottom:967.110000px;}
.y7_c02191{bottom:1003.290000px;}
.y6_c02191{bottom:1024.170000px;}
.y5_c02191{bottom:1044.870000px;}
.y4_c02191{bottom:1065.600000px;}
.h5_c02191{height:20.700000px;}
.h8_c02191{height:20.736000px;}
.h2_c02191{height:22.500000px;}
.h7_c02191{height:41.400000px;}
.h4_c02191{height:42.120000px;}
.h1_c02191{height:48.871406px;}
.h9_c02191{height:64.546875px;}
.h3_c02191{height:70.664062px;}
.h6_c02191{height:72.562500px;}
.h0_c02191{height:1188.000000px;}
.w1_c02191{width:66.636000px;}
.w4_c02191{width:79.020000px;}
.w7_c02191{width:92.016000px;}
.w5_c02191{width:94.356000px;}
.w6_c02191{width:96.120000px;}
.w2_c02191{width:254.550000px;}
.w3_c02191{width:283.935000px;}
.w0_c02191{width:918.000000px;}
.x0_c02191{left:0.000000px;}
.xe_c02191{left:7.920000px;}
.x11_c02191{left:15.480000px;}
.x3_c02191{left:16.560000px;}
.xf_c02191{left:18.180000px;}
.x13_c02191{left:21.420000px;}
.x20_c02191{left:23.040000px;}
.x1c_c02191{left:25.740000px;}
.x17_c02191{left:34.920000px;}
.xd_c02191{left:39.420000px;}
.x16_c02191{left:41.400000px;}
.x15_c02191{left:42.660000px;}
.x1f_c02191{left:45.900000px;}
.x1e_c02191{left:47.160000px;}
.x18_c02191{left:61.560000px;}
.x1d_c02191{left:69.660000px;}
.x1a_c02191{left:72.540000px;}
.x14_c02191{left:74.520000px;}
.x1b_c02191{left:77.040000px;}
.x19_c02191{left:79.560000px;}
.x22_c02191{left:95.760000px;}
.x9_c02191{left:103.140000px;}
.xb_c02191{left:104.430000px;}
.x21_c02191{left:107.280000px;}
.x1_c02191{left:127.656000px;}
.x8_c02191{left:179.310000px;}
.x23_c02191{left:187.050000px;}
.x5_c02191{left:298.875000px;}
.x6_c02191{left:351.795000px;}
.xa_c02191{left:434.595000px;}
.x4_c02191{left:444.675000px;}
.x7_c02191{left:488.775000px;}
.x10_c02191{left:529.665000px;}
.x12_c02191{left:626.505000px;}
.xc_c02191{left:719.250000px;}
.x2_c02191{left:820.950000px;}
@media print{
.v0_c02191{vertical-align:0.000000pt;}
.ls0_c02191{letter-spacing:0.000000pt;}
.ws0_c02191{word-spacing:-16.000000pt;}
.ws1_c02191{word-spacing:0.000000pt;}
._0_c02191{margin-left:-1.024000pt;}
._1_c02191{width:1.386667pt;}
._4_c02191{width:2.880000pt;}
._3_c02191{width:4.416000pt;}
._2_c02191{width:6.272000pt;}
._7_c02191{width:16.896000pt;}
._8_c02191{width:17.898667pt;}
._5_c02191{width:20.800000pt;}
._6_c02191{width:21.781333pt;}
._9_c02191{width:23.808000pt;}
._a_c02191{width:24.832000pt;}
._b_c02191{width:26.688000pt;}
.fs0_c02191{font-size:58.880000pt;}
.fs1_c02191{font-size:64.000000pt;}
.y0_c02191{bottom:0.000000pt;}
.yf_c02191{bottom:3.680000pt;}
.yc_c02191{bottom:4.000000pt;}
.y3_c02191{bottom:4.160000pt;}
.yd_c02191{bottom:4.320000pt;}
.ya_c02191{bottom:4.640000pt;}
.y16_c02191{bottom:22.080000pt;}
.y15_c02191{bottom:22.400000pt;}
.y9_c02191{bottom:23.040000pt;}
.y2_c02191{bottom:37.152000pt;}
.y1_c02191{bottom:67.072000pt;}
.y29_c02191{bottom:258.146667pt;}
.y28_c02191{bottom:285.666667pt;}
.y27_c02191{bottom:313.346667pt;}
.y26_c02191{bottom:340.866667pt;}
.y25_c02191{bottom:368.546667pt;}
.y24_c02191{bottom:396.066667pt;}
.y23_c02191{bottom:423.746667pt;}
.y22_c02191{bottom:451.266667pt;}
.y21_c02191{bottom:478.973333pt;}
.y20_c02191{bottom:506.493333pt;}
.y1f_c02191{bottom:534.173333pt;}
.y1e_c02191{bottom:561.693333pt;}
.y1d_c02191{bottom:580.253333pt;}
.y1c_c02191{bottom:598.653333pt;}
.y1b_c02191{bottom:617.053333pt;}
.y1a_c02191{bottom:635.453333pt;}
.y19_c02191{bottom:650.493333pt;}
.y18_c02191{bottom:669.693333pt;}
.y17_c02191{bottom:688.733333pt;}
.y14_c02191{bottom:707.813333pt;}
.y13_c02191{bottom:745.253333pt;}
.y12_c02191{bottom:764.293333pt;}
.y11_c02191{bottom:783.333333pt;}
.y10_c02191{bottom:802.373333pt;}
.ye_c02191{bottom:821.573333pt;}
.y8_c02191{bottom:840.613333pt;}
.yb_c02191{bottom:859.653333pt;}
.y7_c02191{bottom:891.813333pt;}
.y6_c02191{bottom:910.373333pt;}
.y5_c02191{bottom:928.773333pt;}
.y4_c02191{bottom:947.200000pt;}
.h5_c02191{height:18.400000pt;}
.h8_c02191{height:18.432000pt;}
.h2_c02191{height:20.000000pt;}
.h7_c02191{height:36.800000pt;}
.h4_c02191{height:37.440000pt;}
.h1_c02191{height:43.441250pt;}
.h9_c02191{height:57.375000pt;}
.h3_c02191{height:62.812500pt;}
.h6_c02191{height:64.500000pt;}
.h0_c02191{height:1056.000000pt;}
.w1_c02191{width:59.232000pt;}
.w4_c02191{width:70.240000pt;}
.w7_c02191{width:81.792000pt;}
.w5_c02191{width:83.872000pt;}
.w6_c02191{width:85.440000pt;}
.w2_c02191{width:226.266667pt;}
.w3_c02191{width:252.386667pt;}
.w0_c02191{width:816.000000pt;}
.x0_c02191{left:0.000000pt;}
.xe_c02191{left:7.040000pt;}
.x11_c02191{left:13.760000pt;}
.x3_c02191{left:14.720000pt;}
.xf_c02191{left:16.160000pt;}
.x13_c02191{left:19.040000pt;}
.x20_c02191{left:20.480000pt;}
.x1c_c02191{left:22.880000pt;}
.x17_c02191{left:31.040000pt;}
.xd_c02191{left:35.040000pt;}
.x16_c02191{left:36.800000pt;}
.x15_c02191{left:37.920000pt;}
.x1f_c02191{left:40.800000pt;}
.x1e_c02191{left:41.920000pt;}
.x18_c02191{left:54.720000pt;}
.x1d_c02191{left:61.920000pt;}
.x1a_c02191{left:64.480000pt;}
.x14_c02191{left:66.240000pt;}
.x1b_c02191{left:68.480000pt;}
.x19_c02191{left:70.720000pt;}
.x22_c02191{left:85.120000pt;}
.x9_c02191{left:91.680000pt;}
.xb_c02191{left:92.826667pt;}
.x21_c02191{left:95.360000pt;}
.x1_c02191{left:113.472000pt;}
.x8_c02191{left:159.386667pt;}
.x23_c02191{left:166.266667pt;}
.x5_c02191{left:265.666667pt;}
.x6_c02191{left:312.706667pt;}
.xa_c02191{left:386.306667pt;}
.x4_c02191{left:395.266667pt;}
.x7_c02191{left:434.466667pt;}
.x10_c02191{left:470.813333pt;}
.x12_c02191{left:556.893333pt;}
.xc_c02191{left:639.333333pt;}
.x2_c02191{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02192 {
    display:none;
  }
  .loading-indicator_c02192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02192 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02192 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02192" -> "#page-container .classname_c02192")
 */
.pf_c02192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02192 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02192 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02192 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02192 {overflow:visible;}
  }
}
.c_c02192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02192 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02192:after { /* webkit #35443 */
  content: '';
}
.t_c02192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02192 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02192 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02192 { /* info for Javascript */
  display:none;
}
.l_c02192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02192:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02192 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02192.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02192;src:url('chunks/assets/font_6923c60fe20a4699f3d9d299.woff2')format("woff");}.ff1_c02192{font-family:ff1_c02192;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02192;src:url('chunks/assets/font_e68abbb7aa6d911294095e80.woff2')format("woff");}.ff2_c02192{font-family:ff2_c02192;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:ff3_c02192;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02192{font-family:ff3_c02192;line-height:1.311035;font-style:normal;font-weight: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_c02192;src:url('chunks/assets/font_452f54440a47c62c62ac3cda.woff2')format("woff");}.ff4_c02192{font-family:ff4_c02192;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02192{vertical-align:0.000000px;}
.ls1_c02192{letter-spacing:-0.288000px;}
.ls0_c02192{letter-spacing:0.000000px;}
.sc__c02192{text-shadow:none;}
.sc0_c02192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02192{-webkit-text-stroke:0px transparent;}
.sc0_c02192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02192{word-spacing:0.000000px;}
._9_c02192{margin-left:-2.532000px;}
._0_c02192{margin-left:-1.152000px;}
._1_c02192{width:1.524000px;}
._4_c02192{width:2.640000px;}
._2_c02192{width:4.896000px;}
._3_c02192{width:5.904000px;}
._b_c02192{width:7.056000px;}
._7_c02192{width:14.040000px;}
._6_c02192{width:15.048000px;}
._8_c02192{width:16.920000px;}
._a_c02192{width:21.384000px;}
._5_c02192{width:25.560000px;}
.fc1_c02192{color:rgb(192,80,77);}
.fc3_c02192{color:rgb(255,255,255);}
.fc2_c02192{color:rgb(17,17,17);}
.fc0_c02192{color:rgb(0,0,0);}
.fs0_c02192{font-size:66.240000px;}
.fs1_c02192{font-size:72.000000px;}
.y0_c02192{bottom:0.000000px;}
.yf_c02192{bottom:4.140000px;}
.yc_c02192{bottom:4.500000px;}
.y3_c02192{bottom:4.680000px;}
.yd_c02192{bottom:4.860000px;}
.ya_c02192{bottom:5.220000px;}
.y16_c02192{bottom:24.840000px;}
.y15_c02192{bottom:25.200000px;}
.y9_c02192{bottom:25.920000px;}
.y2_c02192{bottom:41.796000px;}
.y1_c02192{bottom:75.456000px;}
.y28_c02192{bottom:321.375000px;}
.y27_c02192{bottom:352.515000px;}
.y26_c02192{bottom:383.475000px;}
.y25_c02192{bottom:414.615000px;}
.y24_c02192{bottom:445.575000px;}
.y23_c02192{bottom:476.715000px;}
.y22_c02192{bottom:507.675000px;}
.y21_c02192{bottom:538.845000px;}
.y20_c02192{bottom:569.805000px;}
.y1f_c02192{bottom:600.945000px;}
.y1e_c02192{bottom:631.905000px;}
.y1d_c02192{bottom:652.785000px;}
.y1c_c02192{bottom:673.485000px;}
.y1b_c02192{bottom:694.185000px;}
.y1a_c02192{bottom:714.885000px;}
.y19_c02192{bottom:731.805000px;}
.y18_c02192{bottom:753.405000px;}
.y17_c02192{bottom:774.825000px;}
.y14_c02192{bottom:796.290000px;}
.y13_c02192{bottom:838.410000px;}
.y12_c02192{bottom:859.830000px;}
.y11_c02192{bottom:881.250000px;}
.y10_c02192{bottom:902.670000px;}
.ye_c02192{bottom:924.270000px;}
.y8_c02192{bottom:945.690000px;}
.yb_c02192{bottom:967.110000px;}
.y7_c02192{bottom:1003.290000px;}
.y6_c02192{bottom:1024.170000px;}
.y5_c02192{bottom:1044.870000px;}
.y4_c02192{bottom:1065.600000px;}
.h5_c02192{height:20.700000px;}
.h8_c02192{height:20.736000px;}
.h2_c02192{height:22.500000px;}
.h7_c02192{height:41.400000px;}
.h4_c02192{height:42.120000px;}
.h1_c02192{height:48.871406px;}
.h9_c02192{height:64.546875px;}
.h3_c02192{height:70.664062px;}
.h6_c02192{height:72.562500px;}
.h0_c02192{height:1188.000000px;}
.w1_c02192{width:66.636000px;}
.w4_c02192{width:79.020000px;}
.w7_c02192{width:92.016000px;}
.w5_c02192{width:94.356000px;}
.w6_c02192{width:96.120000px;}
.w2_c02192{width:254.550000px;}
.w3_c02192{width:283.935000px;}
.w0_c02192{width:918.000000px;}
.x0_c02192{left:0.000000px;}
.xe_c02192{left:7.920000px;}
.x11_c02192{left:15.480000px;}
.x3_c02192{left:16.560000px;}
.xf_c02192{left:18.180000px;}
.x13_c02192{left:21.420000px;}
.x20_c02192{left:23.040000px;}
.x1c_c02192{left:25.740000px;}
.x17_c02192{left:34.920000px;}
.xd_c02192{left:39.420000px;}
.x16_c02192{left:41.400000px;}
.x15_c02192{left:42.660000px;}
.x1f_c02192{left:45.900000px;}
.x1e_c02192{left:47.160000px;}
.x18_c02192{left:61.560000px;}
.x1d_c02192{left:69.660000px;}
.x1a_c02192{left:72.540000px;}
.x14_c02192{left:74.520000px;}
.x1b_c02192{left:77.040000px;}
.x19_c02192{left:79.560000px;}
.x22_c02192{left:95.760000px;}
.x9_c02192{left:103.140000px;}
.xb_c02192{left:104.430000px;}
.x21_c02192{left:107.280000px;}
.x1_c02192{left:127.656000px;}
.x8_c02192{left:179.310000px;}
.x23_c02192{left:187.050000px;}
.x5_c02192{left:283.710000px;}
.x6_c02192{left:351.795000px;}
.xa_c02192{left:434.595000px;}
.x4_c02192{left:444.675000px;}
.x7_c02192{left:488.775000px;}
.x10_c02192{left:529.665000px;}
.x12_c02192{left:626.505000px;}
.xc_c02192{left:719.250000px;}
.x2_c02192{left:820.950000px;}
@media print{
.v0_c02192{vertical-align:0.000000pt;}
.ls1_c02192{letter-spacing:-0.256000pt;}
.ls0_c02192{letter-spacing:0.000000pt;}
.ws0_c02192{word-spacing:0.000000pt;}
._9_c02192{margin-left:-2.250667pt;}
._0_c02192{margin-left:-1.024000pt;}
._1_c02192{width:1.354667pt;}
._4_c02192{width:2.346667pt;}
._2_c02192{width:4.352000pt;}
._3_c02192{width:5.248000pt;}
._b_c02192{width:6.272000pt;}
._7_c02192{width:12.480000pt;}
._6_c02192{width:13.376000pt;}
._8_c02192{width:15.040000pt;}
._a_c02192{width:19.008000pt;}
._5_c02192{width:22.720000pt;}
.fs0_c02192{font-size:58.880000pt;}
.fs1_c02192{font-size:64.000000pt;}
.y0_c02192{bottom:0.000000pt;}
.yf_c02192{bottom:3.680000pt;}
.yc_c02192{bottom:4.000000pt;}
.y3_c02192{bottom:4.160000pt;}
.yd_c02192{bottom:4.320000pt;}
.ya_c02192{bottom:4.640000pt;}
.y16_c02192{bottom:22.080000pt;}
.y15_c02192{bottom:22.400000pt;}
.y9_c02192{bottom:23.040000pt;}
.y2_c02192{bottom:37.152000pt;}
.y1_c02192{bottom:67.072000pt;}
.y28_c02192{bottom:285.666667pt;}
.y27_c02192{bottom:313.346667pt;}
.y26_c02192{bottom:340.866667pt;}
.y25_c02192{bottom:368.546667pt;}
.y24_c02192{bottom:396.066667pt;}
.y23_c02192{bottom:423.746667pt;}
.y22_c02192{bottom:451.266667pt;}
.y21_c02192{bottom:478.973333pt;}
.y20_c02192{bottom:506.493333pt;}
.y1f_c02192{bottom:534.173333pt;}
.y1e_c02192{bottom:561.693333pt;}
.y1d_c02192{bottom:580.253333pt;}
.y1c_c02192{bottom:598.653333pt;}
.y1b_c02192{bottom:617.053333pt;}
.y1a_c02192{bottom:635.453333pt;}
.y19_c02192{bottom:650.493333pt;}
.y18_c02192{bottom:669.693333pt;}
.y17_c02192{bottom:688.733333pt;}
.y14_c02192{bottom:707.813333pt;}
.y13_c02192{bottom:745.253333pt;}
.y12_c02192{bottom:764.293333pt;}
.y11_c02192{bottom:783.333333pt;}
.y10_c02192{bottom:802.373333pt;}
.ye_c02192{bottom:821.573333pt;}
.y8_c02192{bottom:840.613333pt;}
.yb_c02192{bottom:859.653333pt;}
.y7_c02192{bottom:891.813333pt;}
.y6_c02192{bottom:910.373333pt;}
.y5_c02192{bottom:928.773333pt;}
.y4_c02192{bottom:947.200000pt;}
.h5_c02192{height:18.400000pt;}
.h8_c02192{height:18.432000pt;}
.h2_c02192{height:20.000000pt;}
.h7_c02192{height:36.800000pt;}
.h4_c02192{height:37.440000pt;}
.h1_c02192{height:43.441250pt;}
.h9_c02192{height:57.375000pt;}
.h3_c02192{height:62.812500pt;}
.h6_c02192{height:64.500000pt;}
.h0_c02192{height:1056.000000pt;}
.w1_c02192{width:59.232000pt;}
.w4_c02192{width:70.240000pt;}
.w7_c02192{width:81.792000pt;}
.w5_c02192{width:83.872000pt;}
.w6_c02192{width:85.440000pt;}
.w2_c02192{width:226.266667pt;}
.w3_c02192{width:252.386667pt;}
.w0_c02192{width:816.000000pt;}
.x0_c02192{left:0.000000pt;}
.xe_c02192{left:7.040000pt;}
.x11_c02192{left:13.760000pt;}
.x3_c02192{left:14.720000pt;}
.xf_c02192{left:16.160000pt;}
.x13_c02192{left:19.040000pt;}
.x20_c02192{left:20.480000pt;}
.x1c_c02192{left:22.880000pt;}
.x17_c02192{left:31.040000pt;}
.xd_c02192{left:35.040000pt;}
.x16_c02192{left:36.800000pt;}
.x15_c02192{left:37.920000pt;}
.x1f_c02192{left:40.800000pt;}
.x1e_c02192{left:41.920000pt;}
.x18_c02192{left:54.720000pt;}
.x1d_c02192{left:61.920000pt;}
.x1a_c02192{left:64.480000pt;}
.x14_c02192{left:66.240000pt;}
.x1b_c02192{left:68.480000pt;}
.x19_c02192{left:70.720000pt;}
.x22_c02192{left:85.120000pt;}
.x9_c02192{left:91.680000pt;}
.xb_c02192{left:92.826667pt;}
.x21_c02192{left:95.360000pt;}
.x1_c02192{left:113.472000pt;}
.x8_c02192{left:159.386667pt;}
.x23_c02192{left:166.266667pt;}
.x5_c02192{left:252.186667pt;}
.x6_c02192{left:312.706667pt;}
.xa_c02192{left:386.306667pt;}
.x4_c02192{left:395.266667pt;}
.x7_c02192{left:434.466667pt;}
.x10_c02192{left:470.813333pt;}
.x12_c02192{left:556.893333pt;}
.xc_c02192{left:639.333333pt;}
.x2_c02192{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02193 {
    display:none;
  }
  .loading-indicator_c02193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02193 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02193 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02193" -> "#page-container .classname_c02193")
 */
.pf_c02193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02193 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02193 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02193 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02193 {overflow:visible;}
  }
}
.c_c02193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02193 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02193:after { /* webkit #35443 */
  content: '';
}
.t_c02193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02193 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02193 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02193 { /* info for Javascript */
  display:none;
}
.l_c02193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02193:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02193 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02193.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02193;src:url('chunks/assets/font_6923c60fe20a4699f3d9d299.woff2')format("woff");}.ff1_c02193{font-family:ff1_c02193;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02193;src:url('chunks/assets/font_8f27860830754bc098d8fe19.woff2')format("woff");}.ff2_c02193{font-family:ff2_c02193;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:ff3_c02193;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02193{font-family:ff3_c02193;line-height:1.311035;font-style:normal;font-weight: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_c02193;src:url('chunks/assets/font_55e9a7f5f1ec733f59157280.woff2')format("woff");}.ff4_c02193{font-family:ff4_c02193;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02193{vertical-align:0.000000px;}
.ls0_c02193{letter-spacing:0.000000px;}
.sc__c02193{text-shadow:none;}
.sc0_c02193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02193{-webkit-text-stroke:0px transparent;}
.sc0_c02193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02193{word-spacing:0.000000px;}
._0_c02193{margin-left:-1.368000px;}
._1_c02193{width:1.056000px;}
._2_c02193{width:2.184000px;}
._7_c02193{width:3.528000px;}
._3_c02193{width:9.936000px;}
._4_c02193{width:10.944000px;}
._8_c02193{width:11.964000px;}
._5_c02193{width:13.248000px;}
._6_c02193{width:14.256000px;}
._a_c02193{width:15.432000px;}
._9_c02193{width:16.560000px;}
.fc1_c02193{color:rgb(192,80,77);}
.fc3_c02193{color:rgb(255,255,255);}
.fc2_c02193{color:rgb(17,17,17);}
.fc0_c02193{color:rgb(0,0,0);}
.fs0_c02193{font-size:66.240000px;}
.fs1_c02193{font-size:72.000000px;}
.y0_c02193{bottom:0.000000px;}
.yf_c02193{bottom:4.140000px;}
.yc_c02193{bottom:4.500000px;}
.y3_c02193{bottom:4.680000px;}
.yd_c02193{bottom:4.860000px;}
.ya_c02193{bottom:5.220000px;}
.y16_c02193{bottom:24.840000px;}
.y15_c02193{bottom:25.200000px;}
.y9_c02193{bottom:25.920000px;}
.y2_c02193{bottom:41.796000px;}
.y1_c02193{bottom:75.456000px;}
.y29_c02193{bottom:290.415000px;}
.y28_c02193{bottom:321.375000px;}
.y27_c02193{bottom:352.515000px;}
.y26_c02193{bottom:383.475000px;}
.y25_c02193{bottom:414.615000px;}
.y24_c02193{bottom:445.575000px;}
.y23_c02193{bottom:476.715000px;}
.y22_c02193{bottom:507.675000px;}
.y21_c02193{bottom:538.845000px;}
.y20_c02193{bottom:569.805000px;}
.y1f_c02193{bottom:600.945000px;}
.y1e_c02193{bottom:631.905000px;}
.y1d_c02193{bottom:652.785000px;}
.y1c_c02193{bottom:673.485000px;}
.y1b_c02193{bottom:694.185000px;}
.y1a_c02193{bottom:714.885000px;}
.y19_c02193{bottom:731.805000px;}
.y18_c02193{bottom:753.405000px;}
.y17_c02193{bottom:774.825000px;}
.y14_c02193{bottom:796.290000px;}
.y13_c02193{bottom:838.410000px;}
.y12_c02193{bottom:859.830000px;}
.y11_c02193{bottom:881.250000px;}
.y10_c02193{bottom:902.670000px;}
.ye_c02193{bottom:924.270000px;}
.y8_c02193{bottom:945.690000px;}
.yb_c02193{bottom:967.110000px;}
.y7_c02193{bottom:1003.290000px;}
.y6_c02193{bottom:1024.170000px;}
.y5_c02193{bottom:1044.870000px;}
.y4_c02193{bottom:1065.600000px;}
.h5_c02193{height:20.700000px;}
.h8_c02193{height:20.736000px;}
.h2_c02193{height:22.500000px;}
.h7_c02193{height:41.400000px;}
.h4_c02193{height:42.120000px;}
.h1_c02193{height:48.871406px;}
.h9_c02193{height:64.546875px;}
.h3_c02193{height:70.664062px;}
.h6_c02193{height:72.562500px;}
.h0_c02193{height:1188.000000px;}
.w1_c02193{width:66.636000px;}
.w4_c02193{width:79.020000px;}
.w7_c02193{width:92.016000px;}
.w5_c02193{width:94.356000px;}
.w6_c02193{width:96.120000px;}
.w2_c02193{width:254.550000px;}
.w3_c02193{width:283.935000px;}
.w0_c02193{width:918.000000px;}
.x0_c02193{left:0.000000px;}
.xe_c02193{left:7.920000px;}
.x11_c02193{left:15.480000px;}
.x3_c02193{left:16.560000px;}
.xf_c02193{left:18.180000px;}
.x13_c02193{left:21.420000px;}
.x20_c02193{left:23.040000px;}
.x1c_c02193{left:25.740000px;}
.x17_c02193{left:34.920000px;}
.xd_c02193{left:39.420000px;}
.x16_c02193{left:41.400000px;}
.x15_c02193{left:42.660000px;}
.x1f_c02193{left:45.900000px;}
.x1e_c02193{left:47.160000px;}
.x18_c02193{left:61.560000px;}
.x1d_c02193{left:69.660000px;}
.x1a_c02193{left:72.540000px;}
.x14_c02193{left:74.520000px;}
.x1b_c02193{left:77.040000px;}
.x19_c02193{left:79.560000px;}
.x22_c02193{left:95.760000px;}
.x9_c02193{left:103.140000px;}
.xb_c02193{left:104.430000px;}
.x21_c02193{left:107.280000px;}
.x1_c02193{left:127.656000px;}
.x8_c02193{left:179.310000px;}
.x23_c02193{left:187.050000px;}
.x5_c02193{left:275.070000px;}
.x6_c02193{left:351.795000px;}
.xa_c02193{left:434.595000px;}
.x4_c02193{left:444.675000px;}
.x7_c02193{left:488.775000px;}
.x10_c02193{left:529.665000px;}
.x12_c02193{left:626.505000px;}
.xc_c02193{left:719.250000px;}
.x2_c02193{left:820.950000px;}
@media print{
.v0_c02193{vertical-align:0.000000pt;}
.ls0_c02193{letter-spacing:0.000000pt;}
.ws0_c02193{word-spacing:0.000000pt;}
._0_c02193{margin-left:-1.216000pt;}
._1_c02193{width:0.938667pt;}
._2_c02193{width:1.941333pt;}
._7_c02193{width:3.136000pt;}
._3_c02193{width:8.832000pt;}
._4_c02193{width:9.728000pt;}
._8_c02193{width:10.634667pt;}
._5_c02193{width:11.776000pt;}
._6_c02193{width:12.672000pt;}
._a_c02193{width:13.717333pt;}
._9_c02193{width:14.720000pt;}
.fs0_c02193{font-size:58.880000pt;}
.fs1_c02193{font-size:64.000000pt;}
.y0_c02193{bottom:0.000000pt;}
.yf_c02193{bottom:3.680000pt;}
.yc_c02193{bottom:4.000000pt;}
.y3_c02193{bottom:4.160000pt;}
.yd_c02193{bottom:4.320000pt;}
.ya_c02193{bottom:4.640000pt;}
.y16_c02193{bottom:22.080000pt;}
.y15_c02193{bottom:22.400000pt;}
.y9_c02193{bottom:23.040000pt;}
.y2_c02193{bottom:37.152000pt;}
.y1_c02193{bottom:67.072000pt;}
.y29_c02193{bottom:258.146667pt;}
.y28_c02193{bottom:285.666667pt;}
.y27_c02193{bottom:313.346667pt;}
.y26_c02193{bottom:340.866667pt;}
.y25_c02193{bottom:368.546667pt;}
.y24_c02193{bottom:396.066667pt;}
.y23_c02193{bottom:423.746667pt;}
.y22_c02193{bottom:451.266667pt;}
.y21_c02193{bottom:478.973333pt;}
.y20_c02193{bottom:506.493333pt;}
.y1f_c02193{bottom:534.173333pt;}
.y1e_c02193{bottom:561.693333pt;}
.y1d_c02193{bottom:580.253333pt;}
.y1c_c02193{bottom:598.653333pt;}
.y1b_c02193{bottom:617.053333pt;}
.y1a_c02193{bottom:635.453333pt;}
.y19_c02193{bottom:650.493333pt;}
.y18_c02193{bottom:669.693333pt;}
.y17_c02193{bottom:688.733333pt;}
.y14_c02193{bottom:707.813333pt;}
.y13_c02193{bottom:745.253333pt;}
.y12_c02193{bottom:764.293333pt;}
.y11_c02193{bottom:783.333333pt;}
.y10_c02193{bottom:802.373333pt;}
.ye_c02193{bottom:821.573333pt;}
.y8_c02193{bottom:840.613333pt;}
.yb_c02193{bottom:859.653333pt;}
.y7_c02193{bottom:891.813333pt;}
.y6_c02193{bottom:910.373333pt;}
.y5_c02193{bottom:928.773333pt;}
.y4_c02193{bottom:947.200000pt;}
.h5_c02193{height:18.400000pt;}
.h8_c02193{height:18.432000pt;}
.h2_c02193{height:20.000000pt;}
.h7_c02193{height:36.800000pt;}
.h4_c02193{height:37.440000pt;}
.h1_c02193{height:43.441250pt;}
.h9_c02193{height:57.375000pt;}
.h3_c02193{height:62.812500pt;}
.h6_c02193{height:64.500000pt;}
.h0_c02193{height:1056.000000pt;}
.w1_c02193{width:59.232000pt;}
.w4_c02193{width:70.240000pt;}
.w7_c02193{width:81.792000pt;}
.w5_c02193{width:83.872000pt;}
.w6_c02193{width:85.440000pt;}
.w2_c02193{width:226.266667pt;}
.w3_c02193{width:252.386667pt;}
.w0_c02193{width:816.000000pt;}
.x0_c02193{left:0.000000pt;}
.xe_c02193{left:7.040000pt;}
.x11_c02193{left:13.760000pt;}
.x3_c02193{left:14.720000pt;}
.xf_c02193{left:16.160000pt;}
.x13_c02193{left:19.040000pt;}
.x20_c02193{left:20.480000pt;}
.x1c_c02193{left:22.880000pt;}
.x17_c02193{left:31.040000pt;}
.xd_c02193{left:35.040000pt;}
.x16_c02193{left:36.800000pt;}
.x15_c02193{left:37.920000pt;}
.x1f_c02193{left:40.800000pt;}
.x1e_c02193{left:41.920000pt;}
.x18_c02193{left:54.720000pt;}
.x1d_c02193{left:61.920000pt;}
.x1a_c02193{left:64.480000pt;}
.x14_c02193{left:66.240000pt;}
.x1b_c02193{left:68.480000pt;}
.x19_c02193{left:70.720000pt;}
.x22_c02193{left:85.120000pt;}
.x9_c02193{left:91.680000pt;}
.xb_c02193{left:92.826667pt;}
.x21_c02193{left:95.360000pt;}
.x1_c02193{left:113.472000pt;}
.x8_c02193{left:159.386667pt;}
.x23_c02193{left:166.266667pt;}
.x5_c02193{left:244.506667pt;}
.x6_c02193{left:312.706667pt;}
.xa_c02193{left:386.306667pt;}
.x4_c02193{left:395.266667pt;}
.x7_c02193{left:434.466667pt;}
.x10_c02193{left:470.813333pt;}
.x12_c02193{left:556.893333pt;}
.xc_c02193{left:639.333333pt;}
.x2_c02193{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02194 {
    display:none;
  }
  .loading-indicator_c02194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02194 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02194 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02194" -> "#page-container .classname_c02194")
 */
.pf_c02194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02194 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02194 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02194 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02194 {overflow:visible;}
  }
}
.c_c02194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02194 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02194:after { /* webkit #35443 */
  content: '';
}
.t_c02194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02194 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02194 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02194 { /* info for Javascript */
  display:none;
}
.l_c02194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02194:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02194 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02194.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02194;src:url('chunks/assets/font_06ae170ccbac13ab71c18024.woff2')format("woff");}.ff1_c02194{font-family:ff1_c02194;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02194;src:url('chunks/assets/font_1d892cd72bb81a43764af509.woff2')format("woff");}.ff2_c02194{font-family:ff2_c02194;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:ff3_c02194;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02194{font-family:ff3_c02194;line-height:1.311035;font-style:normal;font-weight: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_c02194;src:url('chunks/assets/font_2554f719a943695c4221c4ed.woff2')format("woff");}.ff4_c02194{font-family:ff4_c02194;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02194{vertical-align:0.000000px;}
.ls1_c02194{letter-spacing:0.000000px;}
.ls0_c02194{letter-spacing:0.144000px;}
.sc__c02194{text-shadow:none;}
.sc0_c02194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02194{-webkit-text-stroke:0px transparent;}
.sc0_c02194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02194{word-spacing:0.000000px;}
._0_c02194{margin-left:-1.152000px;}
._1_c02194{width:1.008000px;}
._2_c02194{width:2.196000px;}
._b_c02194{width:3.528000px;}
._8_c02194{width:4.968000px;}
._9_c02194{width:6.120000px;}
._3_c02194{width:11.232000px;}
._4_c02194{width:12.240000px;}
._7_c02194{width:13.464000px;}
._a_c02194{width:16.848000px;}
._6_c02194{width:30.384000px;}
._5_c02194{width:31.536000px;}
.fc1_c02194{color:rgb(192,80,77);}
.fc3_c02194{color:rgb(255,255,255);}
.fc2_c02194{color:rgb(17,17,17);}
.fc0_c02194{color:rgb(0,0,0);}
.fs0_c02194{font-size:66.240000px;}
.fs1_c02194{font-size:72.000000px;}
.y0_c02194{bottom:0.000000px;}
.yf_c02194{bottom:4.140000px;}
.yc_c02194{bottom:4.500000px;}
.y3_c02194{bottom:4.680000px;}
.yd_c02194{bottom:4.860000px;}
.ya_c02194{bottom:5.220000px;}
.y16_c02194{bottom:24.840000px;}
.y15_c02194{bottom:25.200000px;}
.y9_c02194{bottom:25.920000px;}
.y2_c02194{bottom:41.796000px;}
.y1_c02194{bottom:75.456000px;}
.y29_c02194{bottom:290.415000px;}
.y28_c02194{bottom:321.375000px;}
.y27_c02194{bottom:352.515000px;}
.y26_c02194{bottom:383.475000px;}
.y25_c02194{bottom:414.615000px;}
.y24_c02194{bottom:445.575000px;}
.y23_c02194{bottom:476.715000px;}
.y22_c02194{bottom:507.675000px;}
.y21_c02194{bottom:538.845000px;}
.y20_c02194{bottom:569.805000px;}
.y1f_c02194{bottom:600.945000px;}
.y1e_c02194{bottom:631.905000px;}
.y1d_c02194{bottom:652.785000px;}
.y1c_c02194{bottom:673.485000px;}
.y1b_c02194{bottom:694.185000px;}
.y1a_c02194{bottom:714.885000px;}
.y19_c02194{bottom:731.805000px;}
.y18_c02194{bottom:753.405000px;}
.y17_c02194{bottom:774.825000px;}
.y14_c02194{bottom:796.290000px;}
.y13_c02194{bottom:838.410000px;}
.y12_c02194{bottom:859.830000px;}
.y11_c02194{bottom:881.250000px;}
.y10_c02194{bottom:902.670000px;}
.ye_c02194{bottom:924.270000px;}
.y8_c02194{bottom:945.690000px;}
.yb_c02194{bottom:967.110000px;}
.y7_c02194{bottom:1003.290000px;}
.y6_c02194{bottom:1024.170000px;}
.y5_c02194{bottom:1044.870000px;}
.y4_c02194{bottom:1065.600000px;}
.h5_c02194{height:20.700000px;}
.h8_c02194{height:20.736000px;}
.h2_c02194{height:22.500000px;}
.h7_c02194{height:41.400000px;}
.h4_c02194{height:42.120000px;}
.h1_c02194{height:48.871406px;}
.h9_c02194{height:64.546875px;}
.h3_c02194{height:70.664062px;}
.h6_c02194{height:72.562500px;}
.h0_c02194{height:1188.000000px;}
.w1_c02194{width:66.636000px;}
.w4_c02194{width:79.020000px;}
.w7_c02194{width:92.016000px;}
.w5_c02194{width:94.356000px;}
.w6_c02194{width:96.120000px;}
.w2_c02194{width:254.550000px;}
.w3_c02194{width:283.935000px;}
.w0_c02194{width:918.000000px;}
.x0_c02194{left:0.000000px;}
.xe_c02194{left:7.920000px;}
.x11_c02194{left:15.480000px;}
.x3_c02194{left:16.560000px;}
.xf_c02194{left:18.180000px;}
.x13_c02194{left:21.420000px;}
.x20_c02194{left:23.040000px;}
.x1c_c02194{left:25.740000px;}
.x17_c02194{left:34.920000px;}
.xd_c02194{left:39.420000px;}
.x16_c02194{left:41.400000px;}
.x15_c02194{left:42.660000px;}
.x1f_c02194{left:45.900000px;}
.x1e_c02194{left:47.160000px;}
.x18_c02194{left:61.560000px;}
.x1d_c02194{left:69.660000px;}
.x1a_c02194{left:72.540000px;}
.x14_c02194{left:74.520000px;}
.x1b_c02194{left:77.040000px;}
.x19_c02194{left:79.560000px;}
.x22_c02194{left:95.760000px;}
.x9_c02194{left:103.140000px;}
.xb_c02194{left:104.430000px;}
.x21_c02194{left:107.280000px;}
.x1_c02194{left:127.656000px;}
.x8_c02194{left:179.310000px;}
.x23_c02194{left:187.050000px;}
.x5_c02194{left:243.030000px;}
.x6_c02194{left:351.795000px;}
.xa_c02194{left:434.595000px;}
.x4_c02194{left:444.675000px;}
.x7_c02194{left:488.775000px;}
.x10_c02194{left:529.665000px;}
.x12_c02194{left:626.505000px;}
.xc_c02194{left:719.250000px;}
.x2_c02194{left:820.950000px;}
@media print{
.v0_c02194{vertical-align:0.000000pt;}
.ls1_c02194{letter-spacing:0.000000pt;}
.ls0_c02194{letter-spacing:0.128000pt;}
.ws0_c02194{word-spacing:0.000000pt;}
._0_c02194{margin-left:-1.024000pt;}
._1_c02194{width:0.896000pt;}
._2_c02194{width:1.952000pt;}
._b_c02194{width:3.136000pt;}
._8_c02194{width:4.416000pt;}
._9_c02194{width:5.440000pt;}
._3_c02194{width:9.984000pt;}
._4_c02194{width:10.880000pt;}
._7_c02194{width:11.968000pt;}
._a_c02194{width:14.976000pt;}
._6_c02194{width:27.008000pt;}
._5_c02194{width:28.032000pt;}
.fs0_c02194{font-size:58.880000pt;}
.fs1_c02194{font-size:64.000000pt;}
.y0_c02194{bottom:0.000000pt;}
.yf_c02194{bottom:3.680000pt;}
.yc_c02194{bottom:4.000000pt;}
.y3_c02194{bottom:4.160000pt;}
.yd_c02194{bottom:4.320000pt;}
.ya_c02194{bottom:4.640000pt;}
.y16_c02194{bottom:22.080000pt;}
.y15_c02194{bottom:22.400000pt;}
.y9_c02194{bottom:23.040000pt;}
.y2_c02194{bottom:37.152000pt;}
.y1_c02194{bottom:67.072000pt;}
.y29_c02194{bottom:258.146667pt;}
.y28_c02194{bottom:285.666667pt;}
.y27_c02194{bottom:313.346667pt;}
.y26_c02194{bottom:340.866667pt;}
.y25_c02194{bottom:368.546667pt;}
.y24_c02194{bottom:396.066667pt;}
.y23_c02194{bottom:423.746667pt;}
.y22_c02194{bottom:451.266667pt;}
.y21_c02194{bottom:478.973333pt;}
.y20_c02194{bottom:506.493333pt;}
.y1f_c02194{bottom:534.173333pt;}
.y1e_c02194{bottom:561.693333pt;}
.y1d_c02194{bottom:580.253333pt;}
.y1c_c02194{bottom:598.653333pt;}
.y1b_c02194{bottom:617.053333pt;}
.y1a_c02194{bottom:635.453333pt;}
.y19_c02194{bottom:650.493333pt;}
.y18_c02194{bottom:669.693333pt;}
.y17_c02194{bottom:688.733333pt;}
.y14_c02194{bottom:707.813333pt;}
.y13_c02194{bottom:745.253333pt;}
.y12_c02194{bottom:764.293333pt;}
.y11_c02194{bottom:783.333333pt;}
.y10_c02194{bottom:802.373333pt;}
.ye_c02194{bottom:821.573333pt;}
.y8_c02194{bottom:840.613333pt;}
.yb_c02194{bottom:859.653333pt;}
.y7_c02194{bottom:891.813333pt;}
.y6_c02194{bottom:910.373333pt;}
.y5_c02194{bottom:928.773333pt;}
.y4_c02194{bottom:947.200000pt;}
.h5_c02194{height:18.400000pt;}
.h8_c02194{height:18.432000pt;}
.h2_c02194{height:20.000000pt;}
.h7_c02194{height:36.800000pt;}
.h4_c02194{height:37.440000pt;}
.h1_c02194{height:43.441250pt;}
.h9_c02194{height:57.375000pt;}
.h3_c02194{height:62.812500pt;}
.h6_c02194{height:64.500000pt;}
.h0_c02194{height:1056.000000pt;}
.w1_c02194{width:59.232000pt;}
.w4_c02194{width:70.240000pt;}
.w7_c02194{width:81.792000pt;}
.w5_c02194{width:83.872000pt;}
.w6_c02194{width:85.440000pt;}
.w2_c02194{width:226.266667pt;}
.w3_c02194{width:252.386667pt;}
.w0_c02194{width:816.000000pt;}
.x0_c02194{left:0.000000pt;}
.xe_c02194{left:7.040000pt;}
.x11_c02194{left:13.760000pt;}
.x3_c02194{left:14.720000pt;}
.xf_c02194{left:16.160000pt;}
.x13_c02194{left:19.040000pt;}
.x20_c02194{left:20.480000pt;}
.x1c_c02194{left:22.880000pt;}
.x17_c02194{left:31.040000pt;}
.xd_c02194{left:35.040000pt;}
.x16_c02194{left:36.800000pt;}
.x15_c02194{left:37.920000pt;}
.x1f_c02194{left:40.800000pt;}
.x1e_c02194{left:41.920000pt;}
.x18_c02194{left:54.720000pt;}
.x1d_c02194{left:61.920000pt;}
.x1a_c02194{left:64.480000pt;}
.x14_c02194{left:66.240000pt;}
.x1b_c02194{left:68.480000pt;}
.x19_c02194{left:70.720000pt;}
.x22_c02194{left:85.120000pt;}
.x9_c02194{left:91.680000pt;}
.xb_c02194{left:92.826667pt;}
.x21_c02194{left:95.360000pt;}
.x1_c02194{left:113.472000pt;}
.x8_c02194{left:159.386667pt;}
.x23_c02194{left:166.266667pt;}
.x5_c02194{left:216.026667pt;}
.x6_c02194{left:312.706667pt;}
.xa_c02194{left:386.306667pt;}
.x4_c02194{left:395.266667pt;}
.x7_c02194{left:434.466667pt;}
.x10_c02194{left:470.813333pt;}
.x12_c02194{left:556.893333pt;}
.xc_c02194{left:639.333333pt;}
.x2_c02194{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02195 {
    display:none;
  }
  .loading-indicator_c02195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02195 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02195 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02195" -> "#page-container .classname_c02195")
 */
.pf_c02195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02195 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02195 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02195 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02195 {overflow:visible;}
  }
}
.c_c02195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02195 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02195:after { /* webkit #35443 */
  content: '';
}
.t_c02195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02195 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02195 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02195 { /* info for Javascript */
  display:none;
}
.l_c02195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02195:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02195 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02195.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02195;src:url('chunks/assets/font_7f72bfe12ceb53df7ff1eeb4.woff2')format("woff");}.ff1_c02195{font-family:ff1_c02195;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02195;src:url('chunks/assets/font_0baa2df4a8ee3add79297c9e.woff2')format("woff");}.ff2_c02195{font-family:ff2_c02195;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:ff3_c02195;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02195{font-family:ff3_c02195;line-height:1.311035;font-style:normal;font-weight: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_c02195;src:url('chunks/assets/font_20174027b7bbd65b3111f3fb.woff2')format("woff");}.ff4_c02195{font-family:ff4_c02195;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02195{vertical-align:0.000000px;}
.ls0_c02195{letter-spacing:0.000000px;}
.sc__c02195{text-shadow:none;}
.sc0_c02195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02195{-webkit-text-stroke:0px transparent;}
.sc0_c02195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02195{word-spacing:0.000000px;}
._0_c02195{margin-left:-1.152000px;}
._1_c02195{width:1.080000px;}
._5_c02195{width:2.172000px;}
._6_c02195{width:3.960000px;}
._3_c02195{width:5.112000px;}
._4_c02195{width:6.264000px;}
._7_c02195{width:7.848000px;}
._8_c02195{width:9.072000px;}
._a_c02195{width:15.048000px;}
._9_c02195{width:16.056000px;}
._c_c02195{width:24.120000px;}
._d_c02195{width:25.272000px;}
._2_c02195{width:27.936000px;}
._b_c02195{width:29.520000px;}
.fc1_c02195{color:rgb(192,80,77);}
.fc3_c02195{color:rgb(255,255,255);}
.fc2_c02195{color:rgb(17,17,17);}
.fc0_c02195{color:rgb(0,0,0);}
.fs0_c02195{font-size:66.240000px;}
.fs1_c02195{font-size:72.000000px;}
.y0_c02195{bottom:0.000000px;}
.yf_c02195{bottom:4.140000px;}
.yc_c02195{bottom:4.500000px;}
.y3_c02195{bottom:4.680000px;}
.yd_c02195{bottom:4.860000px;}
.ya_c02195{bottom:5.220000px;}
.y16_c02195{bottom:24.840000px;}
.y15_c02195{bottom:25.200000px;}
.y9_c02195{bottom:25.920000px;}
.y2_c02195{bottom:41.796000px;}
.y1_c02195{bottom:75.456000px;}
.y29_c02195{bottom:290.415000px;}
.y28_c02195{bottom:321.375000px;}
.y27_c02195{bottom:352.515000px;}
.y26_c02195{bottom:383.475000px;}
.y25_c02195{bottom:414.615000px;}
.y24_c02195{bottom:445.575000px;}
.y23_c02195{bottom:476.715000px;}
.y22_c02195{bottom:507.675000px;}
.y21_c02195{bottom:538.845000px;}
.y20_c02195{bottom:569.805000px;}
.y1f_c02195{bottom:600.945000px;}
.y1e_c02195{bottom:631.905000px;}
.y1d_c02195{bottom:652.785000px;}
.y1c_c02195{bottom:673.485000px;}
.y1b_c02195{bottom:694.185000px;}
.y1a_c02195{bottom:714.885000px;}
.y19_c02195{bottom:731.805000px;}
.y18_c02195{bottom:753.405000px;}
.y17_c02195{bottom:774.825000px;}
.y14_c02195{bottom:796.290000px;}
.y13_c02195{bottom:838.410000px;}
.y12_c02195{bottom:859.830000px;}
.y11_c02195{bottom:881.250000px;}
.y10_c02195{bottom:902.670000px;}
.ye_c02195{bottom:924.270000px;}
.y8_c02195{bottom:945.690000px;}
.yb_c02195{bottom:967.110000px;}
.y7_c02195{bottom:1003.290000px;}
.y6_c02195{bottom:1024.170000px;}
.y5_c02195{bottom:1044.870000px;}
.y4_c02195{bottom:1065.600000px;}
.h5_c02195{height:20.700000px;}
.h8_c02195{height:20.736000px;}
.h2_c02195{height:22.500000px;}
.h7_c02195{height:41.400000px;}
.h4_c02195{height:42.120000px;}
.h1_c02195{height:48.871406px;}
.h9_c02195{height:64.546875px;}
.h3_c02195{height:70.664062px;}
.h6_c02195{height:72.562500px;}
.h0_c02195{height:1188.000000px;}
.w1_c02195{width:66.636000px;}
.w4_c02195{width:79.020000px;}
.w7_c02195{width:92.016000px;}
.w5_c02195{width:94.356000px;}
.w6_c02195{width:96.120000px;}
.w2_c02195{width:254.550000px;}
.w3_c02195{width:283.935000px;}
.w0_c02195{width:918.000000px;}
.x0_c02195{left:0.000000px;}
.xe_c02195{left:7.920000px;}
.x11_c02195{left:15.480000px;}
.x3_c02195{left:16.560000px;}
.xf_c02195{left:18.180000px;}
.x13_c02195{left:21.420000px;}
.x20_c02195{left:23.040000px;}
.x1c_c02195{left:25.740000px;}
.x17_c02195{left:34.920000px;}
.xd_c02195{left:39.420000px;}
.x16_c02195{left:41.400000px;}
.x15_c02195{left:42.660000px;}
.x1f_c02195{left:45.900000px;}
.x1e_c02195{left:47.160000px;}
.x18_c02195{left:61.560000px;}
.x1d_c02195{left:69.660000px;}
.x1a_c02195{left:72.540000px;}
.x14_c02195{left:74.520000px;}
.x1b_c02195{left:77.040000px;}
.x19_c02195{left:79.560000px;}
.x22_c02195{left:95.760000px;}
.x9_c02195{left:103.140000px;}
.xb_c02195{left:104.430000px;}
.x21_c02195{left:107.280000px;}
.x1_c02195{left:127.656000px;}
.x8_c02195{left:179.310000px;}
.x23_c02195{left:187.050000px;}
.x5_c02195{left:231.150000px;}
.x6_c02195{left:351.795000px;}
.xa_c02195{left:434.595000px;}
.x4_c02195{left:444.675000px;}
.x7_c02195{left:488.775000px;}
.x10_c02195{left:529.665000px;}
.x12_c02195{left:626.505000px;}
.xc_c02195{left:719.250000px;}
.x2_c02195{left:820.950000px;}
@media print{
.v0_c02195{vertical-align:0.000000pt;}
.ls0_c02195{letter-spacing:0.000000pt;}
.ws0_c02195{word-spacing:0.000000pt;}
._0_c02195{margin-left:-1.024000pt;}
._1_c02195{width:0.960000pt;}
._5_c02195{width:1.930667pt;}
._6_c02195{width:3.520000pt;}
._3_c02195{width:4.544000pt;}
._4_c02195{width:5.568000pt;}
._7_c02195{width:6.976000pt;}
._8_c02195{width:8.064000pt;}
._a_c02195{width:13.376000pt;}
._9_c02195{width:14.272000pt;}
._c_c02195{width:21.440000pt;}
._d_c02195{width:22.464000pt;}
._2_c02195{width:24.832000pt;}
._b_c02195{width:26.240000pt;}
.fs0_c02195{font-size:58.880000pt;}
.fs1_c02195{font-size:64.000000pt;}
.y0_c02195{bottom:0.000000pt;}
.yf_c02195{bottom:3.680000pt;}
.yc_c02195{bottom:4.000000pt;}
.y3_c02195{bottom:4.160000pt;}
.yd_c02195{bottom:4.320000pt;}
.ya_c02195{bottom:4.640000pt;}
.y16_c02195{bottom:22.080000pt;}
.y15_c02195{bottom:22.400000pt;}
.y9_c02195{bottom:23.040000pt;}
.y2_c02195{bottom:37.152000pt;}
.y1_c02195{bottom:67.072000pt;}
.y29_c02195{bottom:258.146667pt;}
.y28_c02195{bottom:285.666667pt;}
.y27_c02195{bottom:313.346667pt;}
.y26_c02195{bottom:340.866667pt;}
.y25_c02195{bottom:368.546667pt;}
.y24_c02195{bottom:396.066667pt;}
.y23_c02195{bottom:423.746667pt;}
.y22_c02195{bottom:451.266667pt;}
.y21_c02195{bottom:478.973333pt;}
.y20_c02195{bottom:506.493333pt;}
.y1f_c02195{bottom:534.173333pt;}
.y1e_c02195{bottom:561.693333pt;}
.y1d_c02195{bottom:580.253333pt;}
.y1c_c02195{bottom:598.653333pt;}
.y1b_c02195{bottom:617.053333pt;}
.y1a_c02195{bottom:635.453333pt;}
.y19_c02195{bottom:650.493333pt;}
.y18_c02195{bottom:669.693333pt;}
.y17_c02195{bottom:688.733333pt;}
.y14_c02195{bottom:707.813333pt;}
.y13_c02195{bottom:745.253333pt;}
.y12_c02195{bottom:764.293333pt;}
.y11_c02195{bottom:783.333333pt;}
.y10_c02195{bottom:802.373333pt;}
.ye_c02195{bottom:821.573333pt;}
.y8_c02195{bottom:840.613333pt;}
.yb_c02195{bottom:859.653333pt;}
.y7_c02195{bottom:891.813333pt;}
.y6_c02195{bottom:910.373333pt;}
.y5_c02195{bottom:928.773333pt;}
.y4_c02195{bottom:947.200000pt;}
.h5_c02195{height:18.400000pt;}
.h8_c02195{height:18.432000pt;}
.h2_c02195{height:20.000000pt;}
.h7_c02195{height:36.800000pt;}
.h4_c02195{height:37.440000pt;}
.h1_c02195{height:43.441250pt;}
.h9_c02195{height:57.375000pt;}
.h3_c02195{height:62.812500pt;}
.h6_c02195{height:64.500000pt;}
.h0_c02195{height:1056.000000pt;}
.w1_c02195{width:59.232000pt;}
.w4_c02195{width:70.240000pt;}
.w7_c02195{width:81.792000pt;}
.w5_c02195{width:83.872000pt;}
.w6_c02195{width:85.440000pt;}
.w2_c02195{width:226.266667pt;}
.w3_c02195{width:252.386667pt;}
.w0_c02195{width:816.000000pt;}
.x0_c02195{left:0.000000pt;}
.xe_c02195{left:7.040000pt;}
.x11_c02195{left:13.760000pt;}
.x3_c02195{left:14.720000pt;}
.xf_c02195{left:16.160000pt;}
.x13_c02195{left:19.040000pt;}
.x20_c02195{left:20.480000pt;}
.x1c_c02195{left:22.880000pt;}
.x17_c02195{left:31.040000pt;}
.xd_c02195{left:35.040000pt;}
.x16_c02195{left:36.800000pt;}
.x15_c02195{left:37.920000pt;}
.x1f_c02195{left:40.800000pt;}
.x1e_c02195{left:41.920000pt;}
.x18_c02195{left:54.720000pt;}
.x1d_c02195{left:61.920000pt;}
.x1a_c02195{left:64.480000pt;}
.x14_c02195{left:66.240000pt;}
.x1b_c02195{left:68.480000pt;}
.x19_c02195{left:70.720000pt;}
.x22_c02195{left:85.120000pt;}
.x9_c02195{left:91.680000pt;}
.xb_c02195{left:92.826667pt;}
.x21_c02195{left:95.360000pt;}
.x1_c02195{left:113.472000pt;}
.x8_c02195{left:159.386667pt;}
.x23_c02195{left:166.266667pt;}
.x5_c02195{left:205.466667pt;}
.x6_c02195{left:312.706667pt;}
.xa_c02195{left:386.306667pt;}
.x4_c02195{left:395.266667pt;}
.x7_c02195{left:434.466667pt;}
.x10_c02195{left:470.813333pt;}
.x12_c02195{left:556.893333pt;}
.xc_c02195{left:639.333333pt;}
.x2_c02195{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02196 {
    display:none;
  }
  .loading-indicator_c02196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02196 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02196 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02196" -> "#page-container .classname_c02196")
 */
.pf_c02196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02196 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02196 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02196 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02196 {overflow:visible;}
  }
}
.c_c02196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02196 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02196:after { /* webkit #35443 */
  content: '';
}
.t_c02196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02196 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02196 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02196 { /* info for Javascript */
  display:none;
}
.l_c02196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02196:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02196 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02196.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02196;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02196{font-family:ff1_c02196;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02196;src:url('chunks/assets/font_a4ce665f3edba352e0f82684.woff2')format("woff");}.ff2_c02196{font-family:ff2_c02196;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:ff3_c02196;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02196{font-family:ff3_c02196;line-height:1.311035;font-style:normal;font-weight: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_c02196;src:url('chunks/assets/font_02bd6c7cec25527276ede020.woff2')format("woff");}.ff4_c02196{font-family:ff4_c02196;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02196{vertical-align:0.000000px;}
.ls0_c02196{letter-spacing:0.000000px;}
.sc__c02196{text-shadow:none;}
.sc0_c02196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02196{-webkit-text-stroke:0px transparent;}
.sc0_c02196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02196{word-spacing:0.000000px;}
._7_c02196{margin-left:-2.160000px;}
._0_c02196{margin-left:-1.152000px;}
._1_c02196{width:1.332000px;}
._2_c02196{width:2.916000px;}
._4_c02196{width:4.968000px;}
._a_c02196{width:5.976000px;}
._3_c02196{width:7.776000px;}
._9_c02196{width:9.936000px;}
._8_c02196{width:25.992000px;}
._5_c02196{width:28.080000px;}
._6_c02196{width:29.880000px;}
.fc1_c02196{color:rgb(192,80,77);}
.fc3_c02196{color:rgb(255,255,255);}
.fc2_c02196{color:rgb(17,17,17);}
.fc0_c02196{color:rgb(0,0,0);}
.fs0_c02196{font-size:66.240000px;}
.fs1_c02196{font-size:72.000000px;}
.y0_c02196{bottom:0.000000px;}
.yf_c02196{bottom:4.140000px;}
.yc_c02196{bottom:4.500000px;}
.y3_c02196{bottom:4.680000px;}
.yd_c02196{bottom:4.860000px;}
.ya_c02196{bottom:5.220000px;}
.y16_c02196{bottom:24.840000px;}
.y15_c02196{bottom:25.200000px;}
.y9_c02196{bottom:25.920000px;}
.y2_c02196{bottom:41.796000px;}
.y1_c02196{bottom:75.456000px;}
.y29_c02196{bottom:290.415000px;}
.y28_c02196{bottom:321.375000px;}
.y27_c02196{bottom:352.515000px;}
.y26_c02196{bottom:383.475000px;}
.y25_c02196{bottom:414.615000px;}
.y24_c02196{bottom:445.575000px;}
.y23_c02196{bottom:476.715000px;}
.y22_c02196{bottom:507.675000px;}
.y21_c02196{bottom:538.845000px;}
.y20_c02196{bottom:569.805000px;}
.y1f_c02196{bottom:600.945000px;}
.y1e_c02196{bottom:631.905000px;}
.y1d_c02196{bottom:652.785000px;}
.y1c_c02196{bottom:673.485000px;}
.y1b_c02196{bottom:694.185000px;}
.y1a_c02196{bottom:714.885000px;}
.y19_c02196{bottom:731.805000px;}
.y18_c02196{bottom:753.405000px;}
.y17_c02196{bottom:774.825000px;}
.y14_c02196{bottom:796.290000px;}
.y13_c02196{bottom:838.410000px;}
.y12_c02196{bottom:859.830000px;}
.y11_c02196{bottom:881.250000px;}
.y10_c02196{bottom:902.670000px;}
.ye_c02196{bottom:924.270000px;}
.y8_c02196{bottom:945.690000px;}
.yb_c02196{bottom:967.110000px;}
.y7_c02196{bottom:1003.290000px;}
.y6_c02196{bottom:1024.170000px;}
.y5_c02196{bottom:1044.870000px;}
.y4_c02196{bottom:1065.600000px;}
.h5_c02196{height:20.700000px;}
.h8_c02196{height:20.736000px;}
.h2_c02196{height:22.500000px;}
.h7_c02196{height:41.400000px;}
.h4_c02196{height:42.120000px;}
.h1_c02196{height:48.871406px;}
.h9_c02196{height:64.546875px;}
.h3_c02196{height:70.664062px;}
.h6_c02196{height:72.562500px;}
.h0_c02196{height:1188.000000px;}
.w1_c02196{width:66.636000px;}
.w4_c02196{width:79.020000px;}
.w7_c02196{width:92.016000px;}
.w5_c02196{width:94.356000px;}
.w6_c02196{width:96.120000px;}
.w2_c02196{width:254.550000px;}
.w3_c02196{width:283.935000px;}
.w0_c02196{width:918.000000px;}
.x0_c02196{left:0.000000px;}
.xe_c02196{left:7.920000px;}
.x11_c02196{left:15.480000px;}
.x3_c02196{left:16.560000px;}
.xf_c02196{left:18.180000px;}
.x13_c02196{left:21.420000px;}
.x20_c02196{left:23.040000px;}
.x1c_c02196{left:25.740000px;}
.x17_c02196{left:34.920000px;}
.xd_c02196{left:39.420000px;}
.x16_c02196{left:41.400000px;}
.x15_c02196{left:42.660000px;}
.x1f_c02196{left:45.900000px;}
.x1e_c02196{left:47.160000px;}
.x18_c02196{left:61.560000px;}
.x1d_c02196{left:69.660000px;}
.x1a_c02196{left:72.540000px;}
.x14_c02196{left:74.520000px;}
.x1b_c02196{left:77.040000px;}
.x19_c02196{left:79.560000px;}
.x22_c02196{left:95.760000px;}
.x9_c02196{left:103.140000px;}
.xb_c02196{left:104.430000px;}
.x21_c02196{left:107.280000px;}
.x1_c02196{left:127.656000px;}
.x8_c02196{left:179.310000px;}
.x23_c02196{left:187.050000px;}
.x5_c02196{left:299.775000px;}
.x6_c02196{left:351.795000px;}
.xa_c02196{left:434.595000px;}
.x4_c02196{left:444.675000px;}
.x7_c02196{left:488.775000px;}
.x10_c02196{left:529.665000px;}
.x12_c02196{left:626.505000px;}
.xc_c02196{left:719.250000px;}
.x2_c02196{left:820.950000px;}
@media print{
.v0_c02196{vertical-align:0.000000pt;}
.ls0_c02196{letter-spacing:0.000000pt;}
.ws0_c02196{word-spacing:0.000000pt;}
._7_c02196{margin-left:-1.920000pt;}
._0_c02196{margin-left:-1.024000pt;}
._1_c02196{width:1.184000pt;}
._2_c02196{width:2.592000pt;}
._4_c02196{width:4.416000pt;}
._a_c02196{width:5.312000pt;}
._3_c02196{width:6.912000pt;}
._9_c02196{width:8.832000pt;}
._8_c02196{width:23.104000pt;}
._5_c02196{width:24.960000pt;}
._6_c02196{width:26.560000pt;}
.fs0_c02196{font-size:58.880000pt;}
.fs1_c02196{font-size:64.000000pt;}
.y0_c02196{bottom:0.000000pt;}
.yf_c02196{bottom:3.680000pt;}
.yc_c02196{bottom:4.000000pt;}
.y3_c02196{bottom:4.160000pt;}
.yd_c02196{bottom:4.320000pt;}
.ya_c02196{bottom:4.640000pt;}
.y16_c02196{bottom:22.080000pt;}
.y15_c02196{bottom:22.400000pt;}
.y9_c02196{bottom:23.040000pt;}
.y2_c02196{bottom:37.152000pt;}
.y1_c02196{bottom:67.072000pt;}
.y29_c02196{bottom:258.146667pt;}
.y28_c02196{bottom:285.666667pt;}
.y27_c02196{bottom:313.346667pt;}
.y26_c02196{bottom:340.866667pt;}
.y25_c02196{bottom:368.546667pt;}
.y24_c02196{bottom:396.066667pt;}
.y23_c02196{bottom:423.746667pt;}
.y22_c02196{bottom:451.266667pt;}
.y21_c02196{bottom:478.973333pt;}
.y20_c02196{bottom:506.493333pt;}
.y1f_c02196{bottom:534.173333pt;}
.y1e_c02196{bottom:561.693333pt;}
.y1d_c02196{bottom:580.253333pt;}
.y1c_c02196{bottom:598.653333pt;}
.y1b_c02196{bottom:617.053333pt;}
.y1a_c02196{bottom:635.453333pt;}
.y19_c02196{bottom:650.493333pt;}
.y18_c02196{bottom:669.693333pt;}
.y17_c02196{bottom:688.733333pt;}
.y14_c02196{bottom:707.813333pt;}
.y13_c02196{bottom:745.253333pt;}
.y12_c02196{bottom:764.293333pt;}
.y11_c02196{bottom:783.333333pt;}
.y10_c02196{bottom:802.373333pt;}
.ye_c02196{bottom:821.573333pt;}
.y8_c02196{bottom:840.613333pt;}
.yb_c02196{bottom:859.653333pt;}
.y7_c02196{bottom:891.813333pt;}
.y6_c02196{bottom:910.373333pt;}
.y5_c02196{bottom:928.773333pt;}
.y4_c02196{bottom:947.200000pt;}
.h5_c02196{height:18.400000pt;}
.h8_c02196{height:18.432000pt;}
.h2_c02196{height:20.000000pt;}
.h7_c02196{height:36.800000pt;}
.h4_c02196{height:37.440000pt;}
.h1_c02196{height:43.441250pt;}
.h9_c02196{height:57.375000pt;}
.h3_c02196{height:62.812500pt;}
.h6_c02196{height:64.500000pt;}
.h0_c02196{height:1056.000000pt;}
.w1_c02196{width:59.232000pt;}
.w4_c02196{width:70.240000pt;}
.w7_c02196{width:81.792000pt;}
.w5_c02196{width:83.872000pt;}
.w6_c02196{width:85.440000pt;}
.w2_c02196{width:226.266667pt;}
.w3_c02196{width:252.386667pt;}
.w0_c02196{width:816.000000pt;}
.x0_c02196{left:0.000000pt;}
.xe_c02196{left:7.040000pt;}
.x11_c02196{left:13.760000pt;}
.x3_c02196{left:14.720000pt;}
.xf_c02196{left:16.160000pt;}
.x13_c02196{left:19.040000pt;}
.x20_c02196{left:20.480000pt;}
.x1c_c02196{left:22.880000pt;}
.x17_c02196{left:31.040000pt;}
.xd_c02196{left:35.040000pt;}
.x16_c02196{left:36.800000pt;}
.x15_c02196{left:37.920000pt;}
.x1f_c02196{left:40.800000pt;}
.x1e_c02196{left:41.920000pt;}
.x18_c02196{left:54.720000pt;}
.x1d_c02196{left:61.920000pt;}
.x1a_c02196{left:64.480000pt;}
.x14_c02196{left:66.240000pt;}
.x1b_c02196{left:68.480000pt;}
.x19_c02196{left:70.720000pt;}
.x22_c02196{left:85.120000pt;}
.x9_c02196{left:91.680000pt;}
.xb_c02196{left:92.826667pt;}
.x21_c02196{left:95.360000pt;}
.x1_c02196{left:113.472000pt;}
.x8_c02196{left:159.386667pt;}
.x23_c02196{left:166.266667pt;}
.x5_c02196{left:266.466667pt;}
.x6_c02196{left:312.706667pt;}
.xa_c02196{left:386.306667pt;}
.x4_c02196{left:395.266667pt;}
.x7_c02196{left:434.466667pt;}
.x10_c02196{left:470.813333pt;}
.x12_c02196{left:556.893333pt;}
.xc_c02196{left:639.333333pt;}
.x2_c02196{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02197 {
    display:none;
  }
  .loading-indicator_c02197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02197 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02197 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02197" -> "#page-container .classname_c02197")
 */
.pf_c02197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02197 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02197 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02197 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02197 {overflow:visible;}
  }
}
.c_c02197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02197 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02197:after { /* webkit #35443 */
  content: '';
}
.t_c02197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02197 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02197 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02197 { /* info for Javascript */
  display:none;
}
.l_c02197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02197:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02197 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02197.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02197;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02197{font-family:ff1_c02197;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02197;src:url('chunks/assets/font_3026512c3e616b1e148a9a3c.woff2')format("woff");}.ff2_c02197{font-family:ff2_c02197;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:ff3_c02197;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02197{font-family:ff3_c02197;line-height:1.311035;font-style:normal;font-weight: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_c02197;src:url('chunks/assets/font_209ebc250cfe4ed220bb1ddf.woff2')format("woff");}.ff4_c02197{font-family:ff4_c02197;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02197{vertical-align:0.000000px;}
.ls0_c02197{letter-spacing:0.000000px;}
.sc__c02197{text-shadow:none;}
.sc0_c02197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02197{-webkit-text-stroke:0px transparent;}
.sc0_c02197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02197{word-spacing:0.000000px;}
._0_c02197{margin-left:-1.152000px;}
._1_c02197{width:1.008000px;}
._2_c02197{width:2.520000px;}
._5_c02197{width:4.608000px;}
._3_c02197{width:5.616000px;}
._4_c02197{width:6.840000px;}
._e_c02197{width:9.360000px;}
._a_c02197{width:10.728000px;}
._b_c02197{width:12.096000px;}
._9_c02197{width:16.920000px;}
._c_c02197{width:21.456000px;}
._d_c02197{width:22.464000px;}
._6_c02197{width:23.472000px;}
._8_c02197{width:24.480000px;}
._7_c02197{width:25.488000px;}
.fc1_c02197{color:rgb(192,80,77);}
.fc3_c02197{color:rgb(255,255,255);}
.fc2_c02197{color:rgb(17,17,17);}
.fc0_c02197{color:rgb(0,0,0);}
.fs0_c02197{font-size:66.240000px;}
.fs1_c02197{font-size:72.000000px;}
.y0_c02197{bottom:0.000000px;}
.yf_c02197{bottom:4.140000px;}
.yc_c02197{bottom:4.500000px;}
.y3_c02197{bottom:4.680000px;}
.yd_c02197{bottom:4.860000px;}
.ya_c02197{bottom:5.220000px;}
.y16_c02197{bottom:24.840000px;}
.y15_c02197{bottom:25.200000px;}
.y9_c02197{bottom:25.920000px;}
.y2_c02197{bottom:41.796000px;}
.y1_c02197{bottom:75.456000px;}
.y28_c02197{bottom:321.375000px;}
.y27_c02197{bottom:352.515000px;}
.y26_c02197{bottom:383.475000px;}
.y25_c02197{bottom:414.615000px;}
.y24_c02197{bottom:445.575000px;}
.y23_c02197{bottom:476.715000px;}
.y22_c02197{bottom:507.675000px;}
.y21_c02197{bottom:538.845000px;}
.y20_c02197{bottom:569.805000px;}
.y1f_c02197{bottom:600.945000px;}
.y1e_c02197{bottom:631.905000px;}
.y1d_c02197{bottom:652.785000px;}
.y1c_c02197{bottom:673.485000px;}
.y1b_c02197{bottom:694.185000px;}
.y1a_c02197{bottom:714.885000px;}
.y19_c02197{bottom:731.805000px;}
.y18_c02197{bottom:753.405000px;}
.y17_c02197{bottom:774.825000px;}
.y14_c02197{bottom:796.290000px;}
.y13_c02197{bottom:838.410000px;}
.y12_c02197{bottom:859.830000px;}
.y11_c02197{bottom:881.250000px;}
.y10_c02197{bottom:902.670000px;}
.ye_c02197{bottom:924.270000px;}
.y8_c02197{bottom:945.690000px;}
.yb_c02197{bottom:967.110000px;}
.y7_c02197{bottom:1003.290000px;}
.y6_c02197{bottom:1024.170000px;}
.y5_c02197{bottom:1044.870000px;}
.y4_c02197{bottom:1065.600000px;}
.h5_c02197{height:20.700000px;}
.h8_c02197{height:20.736000px;}
.h2_c02197{height:22.500000px;}
.h7_c02197{height:41.400000px;}
.h4_c02197{height:42.120000px;}
.h1_c02197{height:48.871406px;}
.h9_c02197{height:64.546875px;}
.h3_c02197{height:70.664062px;}
.h6_c02197{height:72.562500px;}
.h0_c02197{height:1188.000000px;}
.w1_c02197{width:66.636000px;}
.w4_c02197{width:79.020000px;}
.w7_c02197{width:92.016000px;}
.w5_c02197{width:94.356000px;}
.w6_c02197{width:96.120000px;}
.w2_c02197{width:254.550000px;}
.w3_c02197{width:283.935000px;}
.w0_c02197{width:918.000000px;}
.x0_c02197{left:0.000000px;}
.xe_c02197{left:7.920000px;}
.x11_c02197{left:15.480000px;}
.x3_c02197{left:16.560000px;}
.xf_c02197{left:18.180000px;}
.x13_c02197{left:21.420000px;}
.x20_c02197{left:23.040000px;}
.x1c_c02197{left:25.740000px;}
.x17_c02197{left:34.920000px;}
.xd_c02197{left:39.420000px;}
.x16_c02197{left:41.400000px;}
.x15_c02197{left:42.660000px;}
.x1f_c02197{left:45.900000px;}
.x1e_c02197{left:47.160000px;}
.x18_c02197{left:61.560000px;}
.x1d_c02197{left:69.660000px;}
.x1a_c02197{left:72.540000px;}
.x14_c02197{left:74.520000px;}
.x1b_c02197{left:77.040000px;}
.x19_c02197{left:79.560000px;}
.x22_c02197{left:95.760000px;}
.x9_c02197{left:103.140000px;}
.xb_c02197{left:104.430000px;}
.x21_c02197{left:107.280000px;}
.x1_c02197{left:127.656000px;}
.x8_c02197{left:179.310000px;}
.x23_c02197{left:187.050000px;}
.x5_c02197{left:296.355000px;}
.x6_c02197{left:351.795000px;}
.xa_c02197{left:434.595000px;}
.x4_c02197{left:444.675000px;}
.x7_c02197{left:488.775000px;}
.x10_c02197{left:529.665000px;}
.x12_c02197{left:626.505000px;}
.xc_c02197{left:719.250000px;}
.x2_c02197{left:820.950000px;}
@media print{
.v0_c02197{vertical-align:0.000000pt;}
.ls0_c02197{letter-spacing:0.000000pt;}
.ws0_c02197{word-spacing:0.000000pt;}
._0_c02197{margin-left:-1.024000pt;}
._1_c02197{width:0.896000pt;}
._2_c02197{width:2.240000pt;}
._5_c02197{width:4.096000pt;}
._3_c02197{width:4.992000pt;}
._4_c02197{width:6.080000pt;}
._e_c02197{width:8.320000pt;}
._a_c02197{width:9.536000pt;}
._b_c02197{width:10.752000pt;}
._9_c02197{width:15.040000pt;}
._c_c02197{width:19.072000pt;}
._d_c02197{width:19.968000pt;}
._6_c02197{width:20.864000pt;}
._8_c02197{width:21.760000pt;}
._7_c02197{width:22.656000pt;}
.fs0_c02197{font-size:58.880000pt;}
.fs1_c02197{font-size:64.000000pt;}
.y0_c02197{bottom:0.000000pt;}
.yf_c02197{bottom:3.680000pt;}
.yc_c02197{bottom:4.000000pt;}
.y3_c02197{bottom:4.160000pt;}
.yd_c02197{bottom:4.320000pt;}
.ya_c02197{bottom:4.640000pt;}
.y16_c02197{bottom:22.080000pt;}
.y15_c02197{bottom:22.400000pt;}
.y9_c02197{bottom:23.040000pt;}
.y2_c02197{bottom:37.152000pt;}
.y1_c02197{bottom:67.072000pt;}
.y28_c02197{bottom:285.666667pt;}
.y27_c02197{bottom:313.346667pt;}
.y26_c02197{bottom:340.866667pt;}
.y25_c02197{bottom:368.546667pt;}
.y24_c02197{bottom:396.066667pt;}
.y23_c02197{bottom:423.746667pt;}
.y22_c02197{bottom:451.266667pt;}
.y21_c02197{bottom:478.973333pt;}
.y20_c02197{bottom:506.493333pt;}
.y1f_c02197{bottom:534.173333pt;}
.y1e_c02197{bottom:561.693333pt;}
.y1d_c02197{bottom:580.253333pt;}
.y1c_c02197{bottom:598.653333pt;}
.y1b_c02197{bottom:617.053333pt;}
.y1a_c02197{bottom:635.453333pt;}
.y19_c02197{bottom:650.493333pt;}
.y18_c02197{bottom:669.693333pt;}
.y17_c02197{bottom:688.733333pt;}
.y14_c02197{bottom:707.813333pt;}
.y13_c02197{bottom:745.253333pt;}
.y12_c02197{bottom:764.293333pt;}
.y11_c02197{bottom:783.333333pt;}
.y10_c02197{bottom:802.373333pt;}
.ye_c02197{bottom:821.573333pt;}
.y8_c02197{bottom:840.613333pt;}
.yb_c02197{bottom:859.653333pt;}
.y7_c02197{bottom:891.813333pt;}
.y6_c02197{bottom:910.373333pt;}
.y5_c02197{bottom:928.773333pt;}
.y4_c02197{bottom:947.200000pt;}
.h5_c02197{height:18.400000pt;}
.h8_c02197{height:18.432000pt;}
.h2_c02197{height:20.000000pt;}
.h7_c02197{height:36.800000pt;}
.h4_c02197{height:37.440000pt;}
.h1_c02197{height:43.441250pt;}
.h9_c02197{height:57.375000pt;}
.h3_c02197{height:62.812500pt;}
.h6_c02197{height:64.500000pt;}
.h0_c02197{height:1056.000000pt;}
.w1_c02197{width:59.232000pt;}
.w4_c02197{width:70.240000pt;}
.w7_c02197{width:81.792000pt;}
.w5_c02197{width:83.872000pt;}
.w6_c02197{width:85.440000pt;}
.w2_c02197{width:226.266667pt;}
.w3_c02197{width:252.386667pt;}
.w0_c02197{width:816.000000pt;}
.x0_c02197{left:0.000000pt;}
.xe_c02197{left:7.040000pt;}
.x11_c02197{left:13.760000pt;}
.x3_c02197{left:14.720000pt;}
.xf_c02197{left:16.160000pt;}
.x13_c02197{left:19.040000pt;}
.x20_c02197{left:20.480000pt;}
.x1c_c02197{left:22.880000pt;}
.x17_c02197{left:31.040000pt;}
.xd_c02197{left:35.040000pt;}
.x16_c02197{left:36.800000pt;}
.x15_c02197{left:37.920000pt;}
.x1f_c02197{left:40.800000pt;}
.x1e_c02197{left:41.920000pt;}
.x18_c02197{left:54.720000pt;}
.x1d_c02197{left:61.920000pt;}
.x1a_c02197{left:64.480000pt;}
.x14_c02197{left:66.240000pt;}
.x1b_c02197{left:68.480000pt;}
.x19_c02197{left:70.720000pt;}
.x22_c02197{left:85.120000pt;}
.x9_c02197{left:91.680000pt;}
.xb_c02197{left:92.826667pt;}
.x21_c02197{left:95.360000pt;}
.x1_c02197{left:113.472000pt;}
.x8_c02197{left:159.386667pt;}
.x23_c02197{left:166.266667pt;}
.x5_c02197{left:263.426667pt;}
.x6_c02197{left:312.706667pt;}
.xa_c02197{left:386.306667pt;}
.x4_c02197{left:395.266667pt;}
.x7_c02197{left:434.466667pt;}
.x10_c02197{left:470.813333pt;}
.x12_c02197{left:556.893333pt;}
.xc_c02197{left:639.333333pt;}
.x2_c02197{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02198 {
    display:none;
  }
  .loading-indicator_c02198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02198 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02198 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02198" -> "#page-container .classname_c02198")
 */
.pf_c02198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02198 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02198 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02198 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02198 {overflow:visible;}
  }
}
.c_c02198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02198 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02198:after { /* webkit #35443 */
  content: '';
}
.t_c02198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02198 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02198 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02198 { /* info for Javascript */
  display:none;
}
.l_c02198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02198:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02198 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02198.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02198;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff1_c02198{font-family:ff1_c02198;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02198;src:url('chunks/assets/font_4c21b1deafb667bebcc05f7e.woff2')format("woff");}.ff2_c02198{font-family:ff2_c02198;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:ff3_c02198;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02198{font-family:ff3_c02198;line-height:1.311035;font-style:normal;font-weight: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_c02198;src:url('chunks/assets/font_35b0c6f181566c5f313d9ada.woff2')format("woff");}.ff4_c02198{font-family:ff4_c02198;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02198{vertical-align:0.000000px;}
.ls1_c02198{letter-spacing:-0.072000px;}
.ls0_c02198{letter-spacing:0.000000px;}
.sc__c02198{text-shadow:none;}
.sc0_c02198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02198{-webkit-text-stroke:0px transparent;}
.sc0_c02198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02198{word-spacing:-17.928000px;}
.ws1_c02198{word-spacing:0.000000px;}
._0_c02198{margin-left:-1.152000px;}
._1_c02198{width:1.008000px;}
._2_c02198{width:2.520000px;}
._3_c02198{width:4.176000px;}
._5_c02198{width:5.256000px;}
._4_c02198{width:6.264000px;}
._6_c02198{width:8.064000px;}
._7_c02198{width:9.144000px;}
._a_c02198{width:13.680000px;}
._b_c02198{width:14.688000px;}
._8_c02198{width:19.296000px;}
._9_c02198{width:20.484000px;}
._c_c02198{width:25.920000px;}
._d_c02198{width:27.144000px;}
.fc1_c02198{color:rgb(192,80,77);}
.fc3_c02198{color:rgb(255,255,255);}
.fc2_c02198{color:rgb(17,17,17);}
.fc0_c02198{color:rgb(0,0,0);}
.fs0_c02198{font-size:66.240000px;}
.fs1_c02198{font-size:72.000000px;}
.y0_c02198{bottom:0.000000px;}
.yf_c02198{bottom:4.140000px;}
.yc_c02198{bottom:4.500000px;}
.y3_c02198{bottom:4.680000px;}
.yd_c02198{bottom:4.860000px;}
.ya_c02198{bottom:5.220000px;}
.y16_c02198{bottom:24.840000px;}
.y15_c02198{bottom:25.200000px;}
.y9_c02198{bottom:25.920000px;}
.y2_c02198{bottom:41.796000px;}
.y1_c02198{bottom:75.456000px;}
.y28_c02198{bottom:321.375000px;}
.y27_c02198{bottom:352.515000px;}
.y26_c02198{bottom:383.475000px;}
.y25_c02198{bottom:414.615000px;}
.y24_c02198{bottom:445.575000px;}
.y23_c02198{bottom:476.715000px;}
.y22_c02198{bottom:507.675000px;}
.y21_c02198{bottom:538.845000px;}
.y20_c02198{bottom:569.805000px;}
.y1f_c02198{bottom:600.945000px;}
.y1e_c02198{bottom:631.905000px;}
.y1d_c02198{bottom:652.785000px;}
.y1c_c02198{bottom:673.485000px;}
.y1b_c02198{bottom:694.185000px;}
.y1a_c02198{bottom:714.885000px;}
.y19_c02198{bottom:731.805000px;}
.y18_c02198{bottom:753.405000px;}
.y17_c02198{bottom:774.825000px;}
.y14_c02198{bottom:796.290000px;}
.y13_c02198{bottom:838.410000px;}
.y12_c02198{bottom:859.830000px;}
.y11_c02198{bottom:881.250000px;}
.y10_c02198{bottom:902.670000px;}
.ye_c02198{bottom:924.270000px;}
.y8_c02198{bottom:945.690000px;}
.yb_c02198{bottom:967.110000px;}
.y7_c02198{bottom:1003.290000px;}
.y6_c02198{bottom:1024.170000px;}
.y5_c02198{bottom:1044.870000px;}
.y4_c02198{bottom:1065.600000px;}
.h5_c02198{height:20.700000px;}
.h8_c02198{height:20.736000px;}
.h2_c02198{height:22.500000px;}
.h7_c02198{height:41.400000px;}
.h4_c02198{height:42.120000px;}
.h1_c02198{height:48.871406px;}
.h9_c02198{height:64.546875px;}
.h3_c02198{height:70.664062px;}
.h6_c02198{height:72.562500px;}
.h0_c02198{height:1188.000000px;}
.w1_c02198{width:66.636000px;}
.w4_c02198{width:79.020000px;}
.w7_c02198{width:92.016000px;}
.w5_c02198{width:94.356000px;}
.w6_c02198{width:96.120000px;}
.w2_c02198{width:254.550000px;}
.w3_c02198{width:283.935000px;}
.w0_c02198{width:918.000000px;}
.x0_c02198{left:0.000000px;}
.xe_c02198{left:7.920000px;}
.x11_c02198{left:15.480000px;}
.x3_c02198{left:16.560000px;}
.xf_c02198{left:18.180000px;}
.x13_c02198{left:21.420000px;}
.x20_c02198{left:23.040000px;}
.x1c_c02198{left:25.740000px;}
.x17_c02198{left:34.920000px;}
.xd_c02198{left:39.420000px;}
.x16_c02198{left:41.400000px;}
.x15_c02198{left:42.660000px;}
.x1f_c02198{left:45.900000px;}
.x1e_c02198{left:47.160000px;}
.x18_c02198{left:61.560000px;}
.x1d_c02198{left:69.660000px;}
.x1a_c02198{left:72.540000px;}
.x14_c02198{left:74.520000px;}
.x1b_c02198{left:77.040000px;}
.x19_c02198{left:79.560000px;}
.x22_c02198{left:95.760000px;}
.x9_c02198{left:103.140000px;}
.xb_c02198{left:104.430000px;}
.x21_c02198{left:107.280000px;}
.x1_c02198{left:127.656000px;}
.x8_c02198{left:179.310000px;}
.x23_c02198{left:187.050000px;}
.x5_c02198{left:294.150000px;}
.x6_c02198{left:351.795000px;}
.xa_c02198{left:434.595000px;}
.x4_c02198{left:444.675000px;}
.x7_c02198{left:488.775000px;}
.x10_c02198{left:529.665000px;}
.x12_c02198{left:626.505000px;}
.xc_c02198{left:719.250000px;}
.x2_c02198{left:820.950000px;}
@media print{
.v0_c02198{vertical-align:0.000000pt;}
.ls1_c02198{letter-spacing:-0.064000pt;}
.ls0_c02198{letter-spacing:0.000000pt;}
.ws0_c02198{word-spacing:-15.936000pt;}
.ws1_c02198{word-spacing:0.000000pt;}
._0_c02198{margin-left:-1.024000pt;}
._1_c02198{width:0.896000pt;}
._2_c02198{width:2.240000pt;}
._3_c02198{width:3.712000pt;}
._5_c02198{width:4.672000pt;}
._4_c02198{width:5.568000pt;}
._6_c02198{width:7.168000pt;}
._7_c02198{width:8.128000pt;}
._a_c02198{width:12.160000pt;}
._b_c02198{width:13.056000pt;}
._8_c02198{width:17.152000pt;}
._9_c02198{width:18.208000pt;}
._c_c02198{width:23.040000pt;}
._d_c02198{width:24.128000pt;}
.fs0_c02198{font-size:58.880000pt;}
.fs1_c02198{font-size:64.000000pt;}
.y0_c02198{bottom:0.000000pt;}
.yf_c02198{bottom:3.680000pt;}
.yc_c02198{bottom:4.000000pt;}
.y3_c02198{bottom:4.160000pt;}
.yd_c02198{bottom:4.320000pt;}
.ya_c02198{bottom:4.640000pt;}
.y16_c02198{bottom:22.080000pt;}
.y15_c02198{bottom:22.400000pt;}
.y9_c02198{bottom:23.040000pt;}
.y2_c02198{bottom:37.152000pt;}
.y1_c02198{bottom:67.072000pt;}
.y28_c02198{bottom:285.666667pt;}
.y27_c02198{bottom:313.346667pt;}
.y26_c02198{bottom:340.866667pt;}
.y25_c02198{bottom:368.546667pt;}
.y24_c02198{bottom:396.066667pt;}
.y23_c02198{bottom:423.746667pt;}
.y22_c02198{bottom:451.266667pt;}
.y21_c02198{bottom:478.973333pt;}
.y20_c02198{bottom:506.493333pt;}
.y1f_c02198{bottom:534.173333pt;}
.y1e_c02198{bottom:561.693333pt;}
.y1d_c02198{bottom:580.253333pt;}
.y1c_c02198{bottom:598.653333pt;}
.y1b_c02198{bottom:617.053333pt;}
.y1a_c02198{bottom:635.453333pt;}
.y19_c02198{bottom:650.493333pt;}
.y18_c02198{bottom:669.693333pt;}
.y17_c02198{bottom:688.733333pt;}
.y14_c02198{bottom:707.813333pt;}
.y13_c02198{bottom:745.253333pt;}
.y12_c02198{bottom:764.293333pt;}
.y11_c02198{bottom:783.333333pt;}
.y10_c02198{bottom:802.373333pt;}
.ye_c02198{bottom:821.573333pt;}
.y8_c02198{bottom:840.613333pt;}
.yb_c02198{bottom:859.653333pt;}
.y7_c02198{bottom:891.813333pt;}
.y6_c02198{bottom:910.373333pt;}
.y5_c02198{bottom:928.773333pt;}
.y4_c02198{bottom:947.200000pt;}
.h5_c02198{height:18.400000pt;}
.h8_c02198{height:18.432000pt;}
.h2_c02198{height:20.000000pt;}
.h7_c02198{height:36.800000pt;}
.h4_c02198{height:37.440000pt;}
.h1_c02198{height:43.441250pt;}
.h9_c02198{height:57.375000pt;}
.h3_c02198{height:62.812500pt;}
.h6_c02198{height:64.500000pt;}
.h0_c02198{height:1056.000000pt;}
.w1_c02198{width:59.232000pt;}
.w4_c02198{width:70.240000pt;}
.w7_c02198{width:81.792000pt;}
.w5_c02198{width:83.872000pt;}
.w6_c02198{width:85.440000pt;}
.w2_c02198{width:226.266667pt;}
.w3_c02198{width:252.386667pt;}
.w0_c02198{width:816.000000pt;}
.x0_c02198{left:0.000000pt;}
.xe_c02198{left:7.040000pt;}
.x11_c02198{left:13.760000pt;}
.x3_c02198{left:14.720000pt;}
.xf_c02198{left:16.160000pt;}
.x13_c02198{left:19.040000pt;}
.x20_c02198{left:20.480000pt;}
.x1c_c02198{left:22.880000pt;}
.x17_c02198{left:31.040000pt;}
.xd_c02198{left:35.040000pt;}
.x16_c02198{left:36.800000pt;}
.x15_c02198{left:37.920000pt;}
.x1f_c02198{left:40.800000pt;}
.x1e_c02198{left:41.920000pt;}
.x18_c02198{left:54.720000pt;}
.x1d_c02198{left:61.920000pt;}
.x1a_c02198{left:64.480000pt;}
.x14_c02198{left:66.240000pt;}
.x1b_c02198{left:68.480000pt;}
.x19_c02198{left:70.720000pt;}
.x22_c02198{left:85.120000pt;}
.x9_c02198{left:91.680000pt;}
.xb_c02198{left:92.826667pt;}
.x21_c02198{left:95.360000pt;}
.x1_c02198{left:113.472000pt;}
.x8_c02198{left:159.386667pt;}
.x23_c02198{left:166.266667pt;}
.x5_c02198{left:261.466667pt;}
.x6_c02198{left:312.706667pt;}
.xa_c02198{left:386.306667pt;}
.x4_c02198{left:395.266667pt;}
.x7_c02198{left:434.466667pt;}
.x10_c02198{left:470.813333pt;}
.x12_c02198{left:556.893333pt;}
.xc_c02198{left:639.333333pt;}
.x2_c02198{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02199 {
    display:none;
  }
  .loading-indicator_c02199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02199 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02199 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02199" -> "#page-container .classname_c02199")
 */
.pf_c02199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02199 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02199 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02199 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02199 {overflow:visible;}
  }
}
.c_c02199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02199 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02199:after { /* webkit #35443 */
  content: '';
}
.t_c02199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02199 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02199 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02199 { /* info for Javascript */
  display:none;
}
.l_c02199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02199:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02199 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02199.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02199;src:url('chunks/assets/font_1dd14e20e3212c29d0f9c856.woff2')format("woff");}.ff1_c02199{font-family:ff1_c02199;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02199;src:url('chunks/assets/font_23d8f49c946f1618a75e369e.woff2')format("woff");}.ff2_c02199{font-family:ff2_c02199;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:ff3_c02199;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02199{font-family:ff3_c02199;line-height:1.311035;font-style:normal;font-weight: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_c02199;src:url('chunks/assets/font_07b21e47800c8997a7dcbb08.woff2')format("woff");}.ff4_c02199{font-family:ff4_c02199;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02199{vertical-align:0.000000px;}
.ls0_c02199{letter-spacing:0.000000px;}
.sc__c02199{text-shadow:none;}
.sc0_c02199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02199{-webkit-text-stroke:0px transparent;}
.sc0_c02199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02199{word-spacing:-18.000000px;}
.ws1_c02199{word-spacing:0.000000px;}
._d_c02199{margin-left:-2.376000px;}
._0_c02199{margin-left:-1.152000px;}
._1_c02199{width:1.092000px;}
._2_c02199{width:3.024000px;}
._5_c02199{width:4.320000px;}
._3_c02199{width:5.616000px;}
._6_c02199{width:7.104000px;}
._7_c02199{width:9.360000px;}
._8_c02199{width:10.500000px;}
._b_c02199{width:12.744000px;}
._c_c02199{width:13.968000px;}
._e_c02199{width:15.048000px;}
._f_c02199{width:16.488000px;}
._9_c02199{width:20.304000px;}
._a_c02199{width:21.312000px;}
._4_c02199{width:25.560000px;}
.fc1_c02199{color:rgb(192,80,77);}
.fc3_c02199{color:rgb(255,255,255);}
.fc2_c02199{color:rgb(17,17,17);}
.fc0_c02199{color:rgb(0,0,0);}
.fs0_c02199{font-size:66.240000px;}
.fs1_c02199{font-size:72.000000px;}
.y0_c02199{bottom:0.000000px;}
.yf_c02199{bottom:4.140000px;}
.yc_c02199{bottom:4.500000px;}
.y3_c02199{bottom:4.680000px;}
.yd_c02199{bottom:4.860000px;}
.ya_c02199{bottom:5.220000px;}
.y16_c02199{bottom:24.840000px;}
.y15_c02199{bottom:25.200000px;}
.y9_c02199{bottom:25.920000px;}
.y2_c02199{bottom:41.796000px;}
.y1_c02199{bottom:75.456000px;}
.y27_c02199{bottom:352.515000px;}
.y26_c02199{bottom:383.475000px;}
.y25_c02199{bottom:414.615000px;}
.y24_c02199{bottom:445.575000px;}
.y23_c02199{bottom:476.715000px;}
.y22_c02199{bottom:507.675000px;}
.y21_c02199{bottom:538.845000px;}
.y20_c02199{bottom:569.805000px;}
.y1f_c02199{bottom:600.945000px;}
.y1e_c02199{bottom:631.905000px;}
.y1d_c02199{bottom:652.785000px;}
.y1c_c02199{bottom:673.485000px;}
.y1b_c02199{bottom:694.185000px;}
.y1a_c02199{bottom:714.885000px;}
.y19_c02199{bottom:731.805000px;}
.y18_c02199{bottom:753.405000px;}
.y17_c02199{bottom:774.825000px;}
.y14_c02199{bottom:796.290000px;}
.y13_c02199{bottom:838.410000px;}
.y12_c02199{bottom:859.830000px;}
.y11_c02199{bottom:881.250000px;}
.y10_c02199{bottom:902.670000px;}
.ye_c02199{bottom:924.270000px;}
.y8_c02199{bottom:945.690000px;}
.yb_c02199{bottom:967.110000px;}
.y7_c02199{bottom:1003.290000px;}
.y6_c02199{bottom:1024.170000px;}
.y5_c02199{bottom:1044.870000px;}
.y4_c02199{bottom:1065.600000px;}
.h5_c02199{height:20.700000px;}
.h8_c02199{height:20.736000px;}
.h2_c02199{height:22.500000px;}
.h7_c02199{height:41.400000px;}
.h4_c02199{height:42.120000px;}
.h1_c02199{height:48.871406px;}
.h9_c02199{height:64.546875px;}
.h3_c02199{height:70.664062px;}
.h6_c02199{height:72.562500px;}
.h0_c02199{height:1188.000000px;}
.w1_c02199{width:66.636000px;}
.w4_c02199{width:79.020000px;}
.w7_c02199{width:92.016000px;}
.w5_c02199{width:94.356000px;}
.w6_c02199{width:96.120000px;}
.w2_c02199{width:254.550000px;}
.w3_c02199{width:283.935000px;}
.w0_c02199{width:918.000000px;}
.x0_c02199{left:0.000000px;}
.xe_c02199{left:7.920000px;}
.x11_c02199{left:15.480000px;}
.x3_c02199{left:16.560000px;}
.xf_c02199{left:18.180000px;}
.x13_c02199{left:21.420000px;}
.x20_c02199{left:23.040000px;}
.x1c_c02199{left:25.740000px;}
.x17_c02199{left:34.920000px;}
.xd_c02199{left:39.420000px;}
.x16_c02199{left:41.400000px;}
.x15_c02199{left:42.660000px;}
.x1f_c02199{left:45.900000px;}
.x1e_c02199{left:47.160000px;}
.x18_c02199{left:61.560000px;}
.x1d_c02199{left:69.660000px;}
.x1a_c02199{left:72.540000px;}
.x14_c02199{left:74.520000px;}
.x1b_c02199{left:77.040000px;}
.x19_c02199{left:79.560000px;}
.x22_c02199{left:95.760000px;}
.x9_c02199{left:103.140000px;}
.xb_c02199{left:104.430000px;}
.x21_c02199{left:107.280000px;}
.x1_c02199{left:127.656000px;}
.x8_c02199{left:179.310000px;}
.x23_c02199{left:187.050000px;}
.x5_c02199{left:284.790000px;}
.x6_c02199{left:351.795000px;}
.xa_c02199{left:434.595000px;}
.x4_c02199{left:444.675000px;}
.x7_c02199{left:488.775000px;}
.x10_c02199{left:529.665000px;}
.x12_c02199{left:626.505000px;}
.xc_c02199{left:719.250000px;}
.x2_c02199{left:820.950000px;}
@media print{
.v0_c02199{vertical-align:0.000000pt;}
.ls0_c02199{letter-spacing:0.000000pt;}
.ws0_c02199{word-spacing:-16.000000pt;}
.ws1_c02199{word-spacing:0.000000pt;}
._d_c02199{margin-left:-2.112000pt;}
._0_c02199{margin-left:-1.024000pt;}
._1_c02199{width:0.970667pt;}
._2_c02199{width:2.688000pt;}
._5_c02199{width:3.840000pt;}
._3_c02199{width:4.992000pt;}
._6_c02199{width:6.314667pt;}
._7_c02199{width:8.320000pt;}
._8_c02199{width:9.333333pt;}
._b_c02199{width:11.328000pt;}
._c_c02199{width:12.416000pt;}
._e_c02199{width:13.376000pt;}
._f_c02199{width:14.656000pt;}
._9_c02199{width:18.048000pt;}
._a_c02199{width:18.944000pt;}
._4_c02199{width:22.720000pt;}
.fs0_c02199{font-size:58.880000pt;}
.fs1_c02199{font-size:64.000000pt;}
.y0_c02199{bottom:0.000000pt;}
.yf_c02199{bottom:3.680000pt;}
.yc_c02199{bottom:4.000000pt;}
.y3_c02199{bottom:4.160000pt;}
.yd_c02199{bottom:4.320000pt;}
.ya_c02199{bottom:4.640000pt;}
.y16_c02199{bottom:22.080000pt;}
.y15_c02199{bottom:22.400000pt;}
.y9_c02199{bottom:23.040000pt;}
.y2_c02199{bottom:37.152000pt;}
.y1_c02199{bottom:67.072000pt;}
.y27_c02199{bottom:313.346667pt;}
.y26_c02199{bottom:340.866667pt;}
.y25_c02199{bottom:368.546667pt;}
.y24_c02199{bottom:396.066667pt;}
.y23_c02199{bottom:423.746667pt;}
.y22_c02199{bottom:451.266667pt;}
.y21_c02199{bottom:478.973333pt;}
.y20_c02199{bottom:506.493333pt;}
.y1f_c02199{bottom:534.173333pt;}
.y1e_c02199{bottom:561.693333pt;}
.y1d_c02199{bottom:580.253333pt;}
.y1c_c02199{bottom:598.653333pt;}
.y1b_c02199{bottom:617.053333pt;}
.y1a_c02199{bottom:635.453333pt;}
.y19_c02199{bottom:650.493333pt;}
.y18_c02199{bottom:669.693333pt;}
.y17_c02199{bottom:688.733333pt;}
.y14_c02199{bottom:707.813333pt;}
.y13_c02199{bottom:745.253333pt;}
.y12_c02199{bottom:764.293333pt;}
.y11_c02199{bottom:783.333333pt;}
.y10_c02199{bottom:802.373333pt;}
.ye_c02199{bottom:821.573333pt;}
.y8_c02199{bottom:840.613333pt;}
.yb_c02199{bottom:859.653333pt;}
.y7_c02199{bottom:891.813333pt;}
.y6_c02199{bottom:910.373333pt;}
.y5_c02199{bottom:928.773333pt;}
.y4_c02199{bottom:947.200000pt;}
.h5_c02199{height:18.400000pt;}
.h8_c02199{height:18.432000pt;}
.h2_c02199{height:20.000000pt;}
.h7_c02199{height:36.800000pt;}
.h4_c02199{height:37.440000pt;}
.h1_c02199{height:43.441250pt;}
.h9_c02199{height:57.375000pt;}
.h3_c02199{height:62.812500pt;}
.h6_c02199{height:64.500000pt;}
.h0_c02199{height:1056.000000pt;}
.w1_c02199{width:59.232000pt;}
.w4_c02199{width:70.240000pt;}
.w7_c02199{width:81.792000pt;}
.w5_c02199{width:83.872000pt;}
.w6_c02199{width:85.440000pt;}
.w2_c02199{width:226.266667pt;}
.w3_c02199{width:252.386667pt;}
.w0_c02199{width:816.000000pt;}
.x0_c02199{left:0.000000pt;}
.xe_c02199{left:7.040000pt;}
.x11_c02199{left:13.760000pt;}
.x3_c02199{left:14.720000pt;}
.xf_c02199{left:16.160000pt;}
.x13_c02199{left:19.040000pt;}
.x20_c02199{left:20.480000pt;}
.x1c_c02199{left:22.880000pt;}
.x17_c02199{left:31.040000pt;}
.xd_c02199{left:35.040000pt;}
.x16_c02199{left:36.800000pt;}
.x15_c02199{left:37.920000pt;}
.x1f_c02199{left:40.800000pt;}
.x1e_c02199{left:41.920000pt;}
.x18_c02199{left:54.720000pt;}
.x1d_c02199{left:61.920000pt;}
.x1a_c02199{left:64.480000pt;}
.x14_c02199{left:66.240000pt;}
.x1b_c02199{left:68.480000pt;}
.x19_c02199{left:70.720000pt;}
.x22_c02199{left:85.120000pt;}
.x9_c02199{left:91.680000pt;}
.xb_c02199{left:92.826667pt;}
.x21_c02199{left:95.360000pt;}
.x1_c02199{left:113.472000pt;}
.x8_c02199{left:159.386667pt;}
.x23_c02199{left:166.266667pt;}
.x5_c02199{left:253.146667pt;}
.x6_c02199{left:312.706667pt;}
.xa_c02199{left:386.306667pt;}
.x4_c02199{left:395.266667pt;}
.x7_c02199{left:434.466667pt;}
.x10_c02199{left:470.813333pt;}
.x12_c02199{left:556.893333pt;}
.xc_c02199{left:639.333333pt;}
.x2_c02199{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02200 {
    display:none;
  }
  .loading-indicator_c02200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02200 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02200 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02200" -> "#page-container .classname_c02200")
 */
.pf_c02200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02200 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02200 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02200 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02200 {overflow:visible;}
  }
}
.c_c02200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02200 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02200:after { /* webkit #35443 */
  content: '';
}
.t_c02200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02200 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02200 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02200 { /* info for Javascript */
  display:none;
}
.l_c02200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02200:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02200 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02200.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02200;src:url('chunks/assets/font_9acf688b132cc43148b971e0.woff2')format("woff");}.ff1_c02200{font-family:ff1_c02200;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02200;src:url('chunks/assets/font_b24b0ae6fe0b8b63bea6a202.woff2')format("woff");}.ff2_c02200{font-family:ff2_c02200;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:ff3_c02200;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02200{font-family:ff3_c02200;line-height:1.311035;font-style:normal;font-weight: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_c02200;src:url('chunks/assets/font_e6400429f7b001081aef93bc.woff2')format("woff");}.ff4_c02200{font-family:ff4_c02200;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02200{vertical-align:0.000000px;}
.ls0_c02200{letter-spacing:0.000000px;}
.sc__c02200{text-shadow:none;}
.sc0_c02200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02200{-webkit-text-stroke:0px transparent;}
.sc0_c02200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02200{word-spacing:-18.000000px;}
.ws1_c02200{word-spacing:0.000000px;}
._0_c02200{margin-left:-1.152000px;}
._1_c02200{width:1.632000px;}
._2_c02200{width:3.048000px;}
._4_c02200{width:4.968000px;}
._3_c02200{width:6.408000px;}
._7_c02200{width:7.560000px;}
._8_c02200{width:8.568000px;}
._9_c02200{width:9.576000px;}
._6_c02200{width:13.392000px;}
._5_c02200{width:14.400000px;}
.fc1_c02200{color:rgb(192,80,77);}
.fc3_c02200{color:rgb(255,255,255);}
.fc2_c02200{color:rgb(17,17,17);}
.fc0_c02200{color:rgb(0,0,0);}
.fs0_c02200{font-size:66.240000px;}
.fs1_c02200{font-size:72.000000px;}
.y0_c02200{bottom:0.000000px;}
.yf_c02200{bottom:4.140000px;}
.yc_c02200{bottom:4.500000px;}
.y3_c02200{bottom:4.680000px;}
.yd_c02200{bottom:4.860000px;}
.ya_c02200{bottom:5.220000px;}
.y16_c02200{bottom:24.840000px;}
.y15_c02200{bottom:25.200000px;}
.y9_c02200{bottom:25.920000px;}
.y2_c02200{bottom:41.796000px;}
.y1_c02200{bottom:75.456000px;}
.y27_c02200{bottom:352.515000px;}
.y26_c02200{bottom:383.475000px;}
.y25_c02200{bottom:414.615000px;}
.y24_c02200{bottom:445.575000px;}
.y23_c02200{bottom:476.715000px;}
.y22_c02200{bottom:507.675000px;}
.y21_c02200{bottom:538.845000px;}
.y20_c02200{bottom:569.805000px;}
.y1f_c02200{bottom:600.945000px;}
.y1e_c02200{bottom:631.905000px;}
.y1d_c02200{bottom:652.785000px;}
.y1c_c02200{bottom:673.485000px;}
.y1b_c02200{bottom:694.185000px;}
.y1a_c02200{bottom:714.885000px;}
.y19_c02200{bottom:731.805000px;}
.y18_c02200{bottom:753.405000px;}
.y17_c02200{bottom:774.825000px;}
.y14_c02200{bottom:796.290000px;}
.y13_c02200{bottom:838.410000px;}
.y12_c02200{bottom:859.830000px;}
.y11_c02200{bottom:881.250000px;}
.y10_c02200{bottom:902.670000px;}
.ye_c02200{bottom:924.270000px;}
.y8_c02200{bottom:945.690000px;}
.yb_c02200{bottom:967.110000px;}
.y7_c02200{bottom:1003.290000px;}
.y6_c02200{bottom:1024.170000px;}
.y5_c02200{bottom:1044.870000px;}
.y4_c02200{bottom:1065.600000px;}
.h5_c02200{height:20.700000px;}
.h8_c02200{height:20.736000px;}
.h2_c02200{height:22.500000px;}
.h7_c02200{height:41.400000px;}
.h4_c02200{height:42.120000px;}
.h1_c02200{height:48.871406px;}
.h9_c02200{height:64.546875px;}
.h3_c02200{height:70.664062px;}
.h6_c02200{height:72.562500px;}
.h0_c02200{height:1188.000000px;}
.w1_c02200{width:66.636000px;}
.w4_c02200{width:79.020000px;}
.w7_c02200{width:92.016000px;}
.w5_c02200{width:94.356000px;}
.w6_c02200{width:96.120000px;}
.w2_c02200{width:254.550000px;}
.w3_c02200{width:283.935000px;}
.w0_c02200{width:918.000000px;}
.x0_c02200{left:0.000000px;}
.xe_c02200{left:7.920000px;}
.x11_c02200{left:15.480000px;}
.x3_c02200{left:16.560000px;}
.xf_c02200{left:18.180000px;}
.x13_c02200{left:21.420000px;}
.x1f_c02200{left:23.040000px;}
.x1c_c02200{left:25.740000px;}
.x17_c02200{left:34.920000px;}
.xd_c02200{left:39.420000px;}
.x16_c02200{left:41.400000px;}
.x15_c02200{left:42.660000px;}
.x1e_c02200{left:47.160000px;}
.x18_c02200{left:61.560000px;}
.x1d_c02200{left:69.660000px;}
.x1a_c02200{left:72.540000px;}
.x14_c02200{left:74.520000px;}
.x1b_c02200{left:77.040000px;}
.x19_c02200{left:79.560000px;}
.x21_c02200{left:95.760000px;}
.x9_c02200{left:103.140000px;}
.xb_c02200{left:104.430000px;}
.x20_c02200{left:107.280000px;}
.x1_c02200{left:127.656000px;}
.x8_c02200{left:179.310000px;}
.x22_c02200{left:187.050000px;}
.x5_c02200{left:297.255000px;}
.x6_c02200{left:351.795000px;}
.xa_c02200{left:434.595000px;}
.x4_c02200{left:444.675000px;}
.x7_c02200{left:488.775000px;}
.x10_c02200{left:529.665000px;}
.x12_c02200{left:626.505000px;}
.xc_c02200{left:719.250000px;}
.x2_c02200{left:820.950000px;}
@media print{
.v0_c02200{vertical-align:0.000000pt;}
.ls0_c02200{letter-spacing:0.000000pt;}
.ws0_c02200{word-spacing:-16.000000pt;}
.ws1_c02200{word-spacing:0.000000pt;}
._0_c02200{margin-left:-1.024000pt;}
._1_c02200{width:1.450667pt;}
._2_c02200{width:2.709333pt;}
._4_c02200{width:4.416000pt;}
._3_c02200{width:5.696000pt;}
._7_c02200{width:6.720000pt;}
._8_c02200{width:7.616000pt;}
._9_c02200{width:8.512000pt;}
._6_c02200{width:11.904000pt;}
._5_c02200{width:12.800000pt;}
.fs0_c02200{font-size:58.880000pt;}
.fs1_c02200{font-size:64.000000pt;}
.y0_c02200{bottom:0.000000pt;}
.yf_c02200{bottom:3.680000pt;}
.yc_c02200{bottom:4.000000pt;}
.y3_c02200{bottom:4.160000pt;}
.yd_c02200{bottom:4.320000pt;}
.ya_c02200{bottom:4.640000pt;}
.y16_c02200{bottom:22.080000pt;}
.y15_c02200{bottom:22.400000pt;}
.y9_c02200{bottom:23.040000pt;}
.y2_c02200{bottom:37.152000pt;}
.y1_c02200{bottom:67.072000pt;}
.y27_c02200{bottom:313.346667pt;}
.y26_c02200{bottom:340.866667pt;}
.y25_c02200{bottom:368.546667pt;}
.y24_c02200{bottom:396.066667pt;}
.y23_c02200{bottom:423.746667pt;}
.y22_c02200{bottom:451.266667pt;}
.y21_c02200{bottom:478.973333pt;}
.y20_c02200{bottom:506.493333pt;}
.y1f_c02200{bottom:534.173333pt;}
.y1e_c02200{bottom:561.693333pt;}
.y1d_c02200{bottom:580.253333pt;}
.y1c_c02200{bottom:598.653333pt;}
.y1b_c02200{bottom:617.053333pt;}
.y1a_c02200{bottom:635.453333pt;}
.y19_c02200{bottom:650.493333pt;}
.y18_c02200{bottom:669.693333pt;}
.y17_c02200{bottom:688.733333pt;}
.y14_c02200{bottom:707.813333pt;}
.y13_c02200{bottom:745.253333pt;}
.y12_c02200{bottom:764.293333pt;}
.y11_c02200{bottom:783.333333pt;}
.y10_c02200{bottom:802.373333pt;}
.ye_c02200{bottom:821.573333pt;}
.y8_c02200{bottom:840.613333pt;}
.yb_c02200{bottom:859.653333pt;}
.y7_c02200{bottom:891.813333pt;}
.y6_c02200{bottom:910.373333pt;}
.y5_c02200{bottom:928.773333pt;}
.y4_c02200{bottom:947.200000pt;}
.h5_c02200{height:18.400000pt;}
.h8_c02200{height:18.432000pt;}
.h2_c02200{height:20.000000pt;}
.h7_c02200{height:36.800000pt;}
.h4_c02200{height:37.440000pt;}
.h1_c02200{height:43.441250pt;}
.h9_c02200{height:57.375000pt;}
.h3_c02200{height:62.812500pt;}
.h6_c02200{height:64.500000pt;}
.h0_c02200{height:1056.000000pt;}
.w1_c02200{width:59.232000pt;}
.w4_c02200{width:70.240000pt;}
.w7_c02200{width:81.792000pt;}
.w5_c02200{width:83.872000pt;}
.w6_c02200{width:85.440000pt;}
.w2_c02200{width:226.266667pt;}
.w3_c02200{width:252.386667pt;}
.w0_c02200{width:816.000000pt;}
.x0_c02200{left:0.000000pt;}
.xe_c02200{left:7.040000pt;}
.x11_c02200{left:13.760000pt;}
.x3_c02200{left:14.720000pt;}
.xf_c02200{left:16.160000pt;}
.x13_c02200{left:19.040000pt;}
.x1f_c02200{left:20.480000pt;}
.x1c_c02200{left:22.880000pt;}
.x17_c02200{left:31.040000pt;}
.xd_c02200{left:35.040000pt;}
.x16_c02200{left:36.800000pt;}
.x15_c02200{left:37.920000pt;}
.x1e_c02200{left:41.920000pt;}
.x18_c02200{left:54.720000pt;}
.x1d_c02200{left:61.920000pt;}
.x1a_c02200{left:64.480000pt;}
.x14_c02200{left:66.240000pt;}
.x1b_c02200{left:68.480000pt;}
.x19_c02200{left:70.720000pt;}
.x21_c02200{left:85.120000pt;}
.x9_c02200{left:91.680000pt;}
.xb_c02200{left:92.826667pt;}
.x20_c02200{left:95.360000pt;}
.x1_c02200{left:113.472000pt;}
.x8_c02200{left:159.386667pt;}
.x22_c02200{left:166.266667pt;}
.x5_c02200{left:264.226667pt;}
.x6_c02200{left:312.706667pt;}
.xa_c02200{left:386.306667pt;}
.x4_c02200{left:395.266667pt;}
.x7_c02200{left:434.466667pt;}
.x10_c02200{left:470.813333pt;}
.x12_c02200{left:556.893333pt;}
.xc_c02200{left:639.333333pt;}
.x2_c02200{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02201 {
    display:none;
  }
  .loading-indicator_c02201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02201 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02201 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02201" -> "#page-container .classname_c02201")
 */
.pf_c02201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02201 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02201 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02201 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02201 {overflow:visible;}
  }
}
.c_c02201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02201 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02201:after { /* webkit #35443 */
  content: '';
}
.t_c02201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02201 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02201 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02201 { /* info for Javascript */
  display:none;
}
.l_c02201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02201:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02201 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02201.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02201;src:url('chunks/assets/font_aa02cf162a03ab649ce04ae6.woff2')format("woff");}.ff1_c02201{font-family:ff1_c02201;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02201;src:url('chunks/assets/font_aa146931207eae3f21840960.woff2')format("woff");}.ff2_c02201{font-family:ff2_c02201;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:ff3_c02201;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02201{font-family:ff3_c02201;line-height:1.311035;font-style:normal;font-weight: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_c02201;src:url('chunks/assets/font_3b92f0b18a53a1f1bce365f1.woff2')format("woff");}.ff4_c02201{font-family:ff4_c02201;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02201{vertical-align:0.000000px;}
.ls0_c02201{letter-spacing:0.000000px;}
.sc__c02201{text-shadow:none;}
.sc0_c02201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02201{-webkit-text-stroke:0px transparent;}
.sc0_c02201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02201{word-spacing:-18.000000px;}
.ws1_c02201{word-spacing:0.000000px;}
._0_c02201{margin-left:-1.152000px;}
._1_c02201{width:1.560000px;}
._9_c02201{width:3.888000px;}
._4_c02201{width:4.968000px;}
._7_c02201{width:6.336000px;}
._8_c02201{width:7.920000px;}
._2_c02201{width:9.216000px;}
._3_c02201{width:10.800000px;}
._5_c02201{width:13.608000px;}
._6_c02201{width:15.624000px;}
.fc1_c02201{color:rgb(192,80,77);}
.fc3_c02201{color:rgb(255,255,255);}
.fc2_c02201{color:rgb(17,17,17);}
.fc0_c02201{color:rgb(0,0,0);}
.fs0_c02201{font-size:66.240000px;}
.fs1_c02201{font-size:72.000000px;}
.y0_c02201{bottom:0.000000px;}
.yf_c02201{bottom:4.140000px;}
.yc_c02201{bottom:4.500000px;}
.y3_c02201{bottom:4.680000px;}
.yd_c02201{bottom:4.860000px;}
.ya_c02201{bottom:5.220000px;}
.y16_c02201{bottom:24.840000px;}
.y15_c02201{bottom:25.200000px;}
.y9_c02201{bottom:25.920000px;}
.y2_c02201{bottom:41.796000px;}
.y1_c02201{bottom:75.456000px;}
.y26_c02201{bottom:383.475000px;}
.y25_c02201{bottom:414.615000px;}
.y24_c02201{bottom:445.575000px;}
.y23_c02201{bottom:476.715000px;}
.y22_c02201{bottom:507.675000px;}
.y21_c02201{bottom:538.845000px;}
.y20_c02201{bottom:569.805000px;}
.y1f_c02201{bottom:600.945000px;}
.y1e_c02201{bottom:631.905000px;}
.y1d_c02201{bottom:652.785000px;}
.y1c_c02201{bottom:673.485000px;}
.y1b_c02201{bottom:694.185000px;}
.y1a_c02201{bottom:714.885000px;}
.y19_c02201{bottom:731.805000px;}
.y18_c02201{bottom:753.405000px;}
.y17_c02201{bottom:774.825000px;}
.y14_c02201{bottom:796.290000px;}
.y13_c02201{bottom:838.410000px;}
.y12_c02201{bottom:859.830000px;}
.y11_c02201{bottom:881.250000px;}
.y10_c02201{bottom:902.670000px;}
.ye_c02201{bottom:924.270000px;}
.y8_c02201{bottom:945.690000px;}
.yb_c02201{bottom:967.110000px;}
.y7_c02201{bottom:1003.290000px;}
.y6_c02201{bottom:1024.170000px;}
.y5_c02201{bottom:1044.870000px;}
.y4_c02201{bottom:1065.600000px;}
.h5_c02201{height:20.700000px;}
.h8_c02201{height:20.736000px;}
.h2_c02201{height:22.500000px;}
.h7_c02201{height:41.400000px;}
.h4_c02201{height:42.120000px;}
.h1_c02201{height:48.871406px;}
.h9_c02201{height:64.546875px;}
.h3_c02201{height:70.664062px;}
.h6_c02201{height:72.562500px;}
.h0_c02201{height:1188.000000px;}
.w1_c02201{width:66.636000px;}
.w4_c02201{width:79.020000px;}
.w7_c02201{width:92.016000px;}
.w5_c02201{width:94.356000px;}
.w6_c02201{width:96.120000px;}
.w2_c02201{width:254.550000px;}
.w3_c02201{width:283.935000px;}
.w0_c02201{width:918.000000px;}
.x0_c02201{left:0.000000px;}
.xe_c02201{left:7.920000px;}
.x11_c02201{left:15.480000px;}
.x3_c02201{left:16.560000px;}
.xf_c02201{left:18.180000px;}
.x13_c02201{left:21.420000px;}
.x20_c02201{left:23.040000px;}
.x1c_c02201{left:25.740000px;}
.x17_c02201{left:34.920000px;}
.xd_c02201{left:39.420000px;}
.x16_c02201{left:41.400000px;}
.x15_c02201{left:42.660000px;}
.x1f_c02201{left:45.900000px;}
.x1e_c02201{left:47.160000px;}
.x18_c02201{left:61.560000px;}
.x1d_c02201{left:69.660000px;}
.x1a_c02201{left:72.540000px;}
.x14_c02201{left:74.520000px;}
.x1b_c02201{left:77.040000px;}
.x19_c02201{left:79.560000px;}
.x22_c02201{left:95.760000px;}
.x9_c02201{left:103.140000px;}
.xb_c02201{left:104.430000px;}
.x21_c02201{left:107.280000px;}
.x1_c02201{left:127.656000px;}
.x8_c02201{left:179.310000px;}
.x23_c02201{left:187.050000px;}
.x5_c02201{left:302.835000px;}
.x6_c02201{left:351.795000px;}
.xa_c02201{left:434.595000px;}
.x4_c02201{left:444.675000px;}
.x7_c02201{left:488.775000px;}
.x10_c02201{left:529.665000px;}
.x12_c02201{left:626.505000px;}
.xc_c02201{left:719.250000px;}
.x2_c02201{left:820.950000px;}
@media print{
.v0_c02201{vertical-align:0.000000pt;}
.ls0_c02201{letter-spacing:0.000000pt;}
.ws0_c02201{word-spacing:-16.000000pt;}
.ws1_c02201{word-spacing:0.000000pt;}
._0_c02201{margin-left:-1.024000pt;}
._1_c02201{width:1.386667pt;}
._9_c02201{width:3.456000pt;}
._4_c02201{width:4.416000pt;}
._7_c02201{width:5.632000pt;}
._8_c02201{width:7.040000pt;}
._2_c02201{width:8.192000pt;}
._3_c02201{width:9.600000pt;}
._5_c02201{width:12.096000pt;}
._6_c02201{width:13.888000pt;}
.fs0_c02201{font-size:58.880000pt;}
.fs1_c02201{font-size:64.000000pt;}
.y0_c02201{bottom:0.000000pt;}
.yf_c02201{bottom:3.680000pt;}
.yc_c02201{bottom:4.000000pt;}
.y3_c02201{bottom:4.160000pt;}
.yd_c02201{bottom:4.320000pt;}
.ya_c02201{bottom:4.640000pt;}
.y16_c02201{bottom:22.080000pt;}
.y15_c02201{bottom:22.400000pt;}
.y9_c02201{bottom:23.040000pt;}
.y2_c02201{bottom:37.152000pt;}
.y1_c02201{bottom:67.072000pt;}
.y26_c02201{bottom:340.866667pt;}
.y25_c02201{bottom:368.546667pt;}
.y24_c02201{bottom:396.066667pt;}
.y23_c02201{bottom:423.746667pt;}
.y22_c02201{bottom:451.266667pt;}
.y21_c02201{bottom:478.973333pt;}
.y20_c02201{bottom:506.493333pt;}
.y1f_c02201{bottom:534.173333pt;}
.y1e_c02201{bottom:561.693333pt;}
.y1d_c02201{bottom:580.253333pt;}
.y1c_c02201{bottom:598.653333pt;}
.y1b_c02201{bottom:617.053333pt;}
.y1a_c02201{bottom:635.453333pt;}
.y19_c02201{bottom:650.493333pt;}
.y18_c02201{bottom:669.693333pt;}
.y17_c02201{bottom:688.733333pt;}
.y14_c02201{bottom:707.813333pt;}
.y13_c02201{bottom:745.253333pt;}
.y12_c02201{bottom:764.293333pt;}
.y11_c02201{bottom:783.333333pt;}
.y10_c02201{bottom:802.373333pt;}
.ye_c02201{bottom:821.573333pt;}
.y8_c02201{bottom:840.613333pt;}
.yb_c02201{bottom:859.653333pt;}
.y7_c02201{bottom:891.813333pt;}
.y6_c02201{bottom:910.373333pt;}
.y5_c02201{bottom:928.773333pt;}
.y4_c02201{bottom:947.200000pt;}
.h5_c02201{height:18.400000pt;}
.h8_c02201{height:18.432000pt;}
.h2_c02201{height:20.000000pt;}
.h7_c02201{height:36.800000pt;}
.h4_c02201{height:37.440000pt;}
.h1_c02201{height:43.441250pt;}
.h9_c02201{height:57.375000pt;}
.h3_c02201{height:62.812500pt;}
.h6_c02201{height:64.500000pt;}
.h0_c02201{height:1056.000000pt;}
.w1_c02201{width:59.232000pt;}
.w4_c02201{width:70.240000pt;}
.w7_c02201{width:81.792000pt;}
.w5_c02201{width:83.872000pt;}
.w6_c02201{width:85.440000pt;}
.w2_c02201{width:226.266667pt;}
.w3_c02201{width:252.386667pt;}
.w0_c02201{width:816.000000pt;}
.x0_c02201{left:0.000000pt;}
.xe_c02201{left:7.040000pt;}
.x11_c02201{left:13.760000pt;}
.x3_c02201{left:14.720000pt;}
.xf_c02201{left:16.160000pt;}
.x13_c02201{left:19.040000pt;}
.x20_c02201{left:20.480000pt;}
.x1c_c02201{left:22.880000pt;}
.x17_c02201{left:31.040000pt;}
.xd_c02201{left:35.040000pt;}
.x16_c02201{left:36.800000pt;}
.x15_c02201{left:37.920000pt;}
.x1f_c02201{left:40.800000pt;}
.x1e_c02201{left:41.920000pt;}
.x18_c02201{left:54.720000pt;}
.x1d_c02201{left:61.920000pt;}
.x1a_c02201{left:64.480000pt;}
.x14_c02201{left:66.240000pt;}
.x1b_c02201{left:68.480000pt;}
.x19_c02201{left:70.720000pt;}
.x22_c02201{left:85.120000pt;}
.x9_c02201{left:91.680000pt;}
.xb_c02201{left:92.826667pt;}
.x21_c02201{left:95.360000pt;}
.x1_c02201{left:113.472000pt;}
.x8_c02201{left:159.386667pt;}
.x23_c02201{left:166.266667pt;}
.x5_c02201{left:269.186667pt;}
.x6_c02201{left:312.706667pt;}
.xa_c02201{left:386.306667pt;}
.x4_c02201{left:395.266667pt;}
.x7_c02201{left:434.466667pt;}
.x10_c02201{left:470.813333pt;}
.x12_c02201{left:556.893333pt;}
.xc_c02201{left:639.333333pt;}
.x2_c02201{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02202 {
    display:none;
  }
  .loading-indicator_c02202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02202 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02202 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02202" -> "#page-container .classname_c02202")
 */
.pf_c02202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02202 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02202 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02202 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02202 {overflow:visible;}
  }
}
.c_c02202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02202 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02202:after { /* webkit #35443 */
  content: '';
}
.t_c02202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02202 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02202 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02202 { /* info for Javascript */
  display:none;
}
.l_c02202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02202:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02202 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02202.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02202;src:url('chunks/assets/font_6923c60fe20a4699f3d9d299.woff2')format("woff");}.ff1_c02202{font-family:ff1_c02202;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02202;src:url('chunks/assets/font_3413d3c6552c1e1247d2a44c.woff2')format("woff");}.ff2_c02202{font-family:ff2_c02202;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:ff3_c02202;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02202{font-family:ff3_c02202;line-height:1.311035;font-style:normal;font-weight: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_c02202;src:url('chunks/assets/font_f83436347517c5754a92a830.woff2')format("woff");}.ff4_c02202{font-family:ff4_c02202;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02202{vertical-align:0.000000px;}
.ls1_c02202{letter-spacing:-0.288000px;}
.ls0_c02202{letter-spacing:0.000000px;}
.sc__c02202{text-shadow:none;}
.sc0_c02202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02202{-webkit-text-stroke:0px transparent;}
.sc0_c02202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02202{word-spacing:-17.712000px;}
.ws1_c02202{word-spacing:0.000000px;}
._0_c02202{margin-left:-1.152000px;}
._1_c02202{width:1.092000px;}
._2_c02202{width:2.292000px;}
._3_c02202{width:3.588000px;}
._4_c02202{width:25.560000px;}
._5_c02202{width:31.536000px;}
._6_c02202{width:32.976000px;}
.fc1_c02202{color:rgb(192,80,77);}
.fc3_c02202{color:rgb(255,255,255);}
.fc2_c02202{color:rgb(17,17,17);}
.fc0_c02202{color:rgb(0,0,0);}
.fs0_c02202{font-size:66.240000px;}
.fs1_c02202{font-size:72.000000px;}
.y0_c02202{bottom:0.000000px;}
.yf_c02202{bottom:4.140000px;}
.yc_c02202{bottom:4.500000px;}
.y3_c02202{bottom:4.680000px;}
.yd_c02202{bottom:4.860000px;}
.ya_c02202{bottom:5.220000px;}
.y16_c02202{bottom:24.840000px;}
.y15_c02202{bottom:25.200000px;}
.y9_c02202{bottom:25.920000px;}
.y2_c02202{bottom:41.796000px;}
.y1_c02202{bottom:75.456000px;}
.y26_c02202{bottom:383.475000px;}
.y25_c02202{bottom:414.615000px;}
.y24_c02202{bottom:445.575000px;}
.y23_c02202{bottom:476.715000px;}
.y22_c02202{bottom:507.675000px;}
.y21_c02202{bottom:538.845000px;}
.y20_c02202{bottom:569.805000px;}
.y1f_c02202{bottom:600.945000px;}
.y1e_c02202{bottom:631.905000px;}
.y1d_c02202{bottom:652.785000px;}
.y1c_c02202{bottom:673.485000px;}
.y1b_c02202{bottom:694.185000px;}
.y1a_c02202{bottom:714.885000px;}
.y19_c02202{bottom:731.805000px;}
.y18_c02202{bottom:753.405000px;}
.y17_c02202{bottom:774.825000px;}
.y14_c02202{bottom:796.290000px;}
.y13_c02202{bottom:838.410000px;}
.y12_c02202{bottom:859.830000px;}
.y11_c02202{bottom:881.250000px;}
.y10_c02202{bottom:902.670000px;}
.ye_c02202{bottom:924.270000px;}
.y8_c02202{bottom:945.690000px;}
.yb_c02202{bottom:967.110000px;}
.y7_c02202{bottom:1003.290000px;}
.y6_c02202{bottom:1024.170000px;}
.y5_c02202{bottom:1044.870000px;}
.y4_c02202{bottom:1065.600000px;}
.h5_c02202{height:20.700000px;}
.h8_c02202{height:20.736000px;}
.h2_c02202{height:22.500000px;}
.h7_c02202{height:41.400000px;}
.h4_c02202{height:42.120000px;}
.h1_c02202{height:48.871406px;}
.h9_c02202{height:64.546875px;}
.h3_c02202{height:70.664062px;}
.h6_c02202{height:72.562500px;}
.h0_c02202{height:1188.000000px;}
.w1_c02202{width:66.636000px;}
.w4_c02202{width:79.020000px;}
.w7_c02202{width:92.016000px;}
.w5_c02202{width:94.356000px;}
.w6_c02202{width:96.120000px;}
.w2_c02202{width:254.550000px;}
.w3_c02202{width:283.935000px;}
.w0_c02202{width:918.000000px;}
.x0_c02202{left:0.000000px;}
.xe_c02202{left:7.920000px;}
.x11_c02202{left:15.480000px;}
.x3_c02202{left:16.560000px;}
.xf_c02202{left:18.180000px;}
.x13_c02202{left:21.420000px;}
.x20_c02202{left:23.040000px;}
.x1c_c02202{left:25.740000px;}
.x17_c02202{left:34.920000px;}
.xd_c02202{left:39.420000px;}
.x16_c02202{left:41.400000px;}
.x15_c02202{left:42.660000px;}
.x1f_c02202{left:45.900000px;}
.x1e_c02202{left:47.160000px;}
.x18_c02202{left:61.560000px;}
.x1d_c02202{left:69.660000px;}
.x1a_c02202{left:72.540000px;}
.x14_c02202{left:74.520000px;}
.x1b_c02202{left:77.040000px;}
.x19_c02202{left:79.560000px;}
.x22_c02202{left:95.760000px;}
.x9_c02202{left:103.140000px;}
.xb_c02202{left:104.430000px;}
.x21_c02202{left:107.280000px;}
.x1_c02202{left:127.656000px;}
.x8_c02202{left:179.310000px;}
.x23_c02202{left:187.050000px;}
.x5_c02202{left:280.110000px;}
.x6_c02202{left:351.795000px;}
.xa_c02202{left:434.595000px;}
.x4_c02202{left:444.675000px;}
.x7_c02202{left:488.775000px;}
.x10_c02202{left:529.665000px;}
.x12_c02202{left:626.505000px;}
.xc_c02202{left:719.250000px;}
.x2_c02202{left:820.950000px;}
@media print{
.v0_c02202{vertical-align:0.000000pt;}
.ls1_c02202{letter-spacing:-0.256000pt;}
.ls0_c02202{letter-spacing:0.000000pt;}
.ws0_c02202{word-spacing:-15.744000pt;}
.ws1_c02202{word-spacing:0.000000pt;}
._0_c02202{margin-left:-1.024000pt;}
._1_c02202{width:0.970667pt;}
._2_c02202{width:2.037333pt;}
._3_c02202{width:3.189333pt;}
._4_c02202{width:22.720000pt;}
._5_c02202{width:28.032000pt;}
._6_c02202{width:29.312000pt;}
.fs0_c02202{font-size:58.880000pt;}
.fs1_c02202{font-size:64.000000pt;}
.y0_c02202{bottom:0.000000pt;}
.yf_c02202{bottom:3.680000pt;}
.yc_c02202{bottom:4.000000pt;}
.y3_c02202{bottom:4.160000pt;}
.yd_c02202{bottom:4.320000pt;}
.ya_c02202{bottom:4.640000pt;}
.y16_c02202{bottom:22.080000pt;}
.y15_c02202{bottom:22.400000pt;}
.y9_c02202{bottom:23.040000pt;}
.y2_c02202{bottom:37.152000pt;}
.y1_c02202{bottom:67.072000pt;}
.y26_c02202{bottom:340.866667pt;}
.y25_c02202{bottom:368.546667pt;}
.y24_c02202{bottom:396.066667pt;}
.y23_c02202{bottom:423.746667pt;}
.y22_c02202{bottom:451.266667pt;}
.y21_c02202{bottom:478.973333pt;}
.y20_c02202{bottom:506.493333pt;}
.y1f_c02202{bottom:534.173333pt;}
.y1e_c02202{bottom:561.693333pt;}
.y1d_c02202{bottom:580.253333pt;}
.y1c_c02202{bottom:598.653333pt;}
.y1b_c02202{bottom:617.053333pt;}
.y1a_c02202{bottom:635.453333pt;}
.y19_c02202{bottom:650.493333pt;}
.y18_c02202{bottom:669.693333pt;}
.y17_c02202{bottom:688.733333pt;}
.y14_c02202{bottom:707.813333pt;}
.y13_c02202{bottom:745.253333pt;}
.y12_c02202{bottom:764.293333pt;}
.y11_c02202{bottom:783.333333pt;}
.y10_c02202{bottom:802.373333pt;}
.ye_c02202{bottom:821.573333pt;}
.y8_c02202{bottom:840.613333pt;}
.yb_c02202{bottom:859.653333pt;}
.y7_c02202{bottom:891.813333pt;}
.y6_c02202{bottom:910.373333pt;}
.y5_c02202{bottom:928.773333pt;}
.y4_c02202{bottom:947.200000pt;}
.h5_c02202{height:18.400000pt;}
.h8_c02202{height:18.432000pt;}
.h2_c02202{height:20.000000pt;}
.h7_c02202{height:36.800000pt;}
.h4_c02202{height:37.440000pt;}
.h1_c02202{height:43.441250pt;}
.h9_c02202{height:57.375000pt;}
.h3_c02202{height:62.812500pt;}
.h6_c02202{height:64.500000pt;}
.h0_c02202{height:1056.000000pt;}
.w1_c02202{width:59.232000pt;}
.w4_c02202{width:70.240000pt;}
.w7_c02202{width:81.792000pt;}
.w5_c02202{width:83.872000pt;}
.w6_c02202{width:85.440000pt;}
.w2_c02202{width:226.266667pt;}
.w3_c02202{width:252.386667pt;}
.w0_c02202{width:816.000000pt;}
.x0_c02202{left:0.000000pt;}
.xe_c02202{left:7.040000pt;}
.x11_c02202{left:13.760000pt;}
.x3_c02202{left:14.720000pt;}
.xf_c02202{left:16.160000pt;}
.x13_c02202{left:19.040000pt;}
.x20_c02202{left:20.480000pt;}
.x1c_c02202{left:22.880000pt;}
.x17_c02202{left:31.040000pt;}
.xd_c02202{left:35.040000pt;}
.x16_c02202{left:36.800000pt;}
.x15_c02202{left:37.920000pt;}
.x1f_c02202{left:40.800000pt;}
.x1e_c02202{left:41.920000pt;}
.x18_c02202{left:54.720000pt;}
.x1d_c02202{left:61.920000pt;}
.x1a_c02202{left:64.480000pt;}
.x14_c02202{left:66.240000pt;}
.x1b_c02202{left:68.480000pt;}
.x19_c02202{left:70.720000pt;}
.x22_c02202{left:85.120000pt;}
.x9_c02202{left:91.680000pt;}
.xb_c02202{left:92.826667pt;}
.x21_c02202{left:95.360000pt;}
.x1_c02202{left:113.472000pt;}
.x8_c02202{left:159.386667pt;}
.x23_c02202{left:166.266667pt;}
.x5_c02202{left:248.986667pt;}
.x6_c02202{left:312.706667pt;}
.xa_c02202{left:386.306667pt;}
.x4_c02202{left:395.266667pt;}
.x7_c02202{left:434.466667pt;}
.x10_c02202{left:470.813333pt;}
.x12_c02202{left:556.893333pt;}
.xc_c02202{left:639.333333pt;}
.x2_c02202{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02203 {
    display:none;
  }
  .loading-indicator_c02203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02203 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02203 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02203" -> "#page-container .classname_c02203")
 */
.pf_c02203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02203 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02203 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02203 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02203 {overflow:visible;}
  }
}
.c_c02203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02203 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02203:after { /* webkit #35443 */
  content: '';
}
.t_c02203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02203 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02203 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02203 { /* info for Javascript */
  display:none;
}
.l_c02203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02203:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02203 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02203.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02203;src:url('chunks/assets/font_7f72bfe12ceb53df7ff1eeb4.woff2')format("woff");}.ff1_c02203{font-family:ff1_c02203;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02203;src:url('chunks/assets/font_3007feee0427342c69fdf601.woff2')format("woff");}.ff2_c02203{font-family:ff2_c02203;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:ff3_c02203;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02203{font-family:ff3_c02203;line-height:1.311035;font-style:normal;font-weight: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_c02203;src:url('chunks/assets/font_9afc04a3b5ae582408538b3a.woff2')format("woff");}.ff4_c02203{font-family:ff4_c02203;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02203{vertical-align:0.000000px;}
.ls0_c02203{letter-spacing:0.000000px;}
.sc__c02203{text-shadow:none;}
.sc0_c02203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02203{-webkit-text-stroke:0px transparent;}
.sc0_c02203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02203{word-spacing:-18.000000px;}
.ws1_c02203{word-spacing:0.000000px;}
._0_c02203{margin-left:-1.152000px;}
._1_c02203{width:1.092000px;}
._2_c02203{width:3.024000px;}
._3_c02203{width:4.896000px;}
._4_c02203{width:6.000000px;}
._8_c02203{width:7.128000px;}
._5_c02203{width:11.448000px;}
._6_c02203{width:13.332000px;}
._7_c02203{width:15.084000px;}
._9_c02203{width:21.168000px;}
._a_c02203{width:22.608000px;}
._b_c02203{width:25.200000px;}
.fc1_c02203{color:rgb(192,80,77);}
.fc3_c02203{color:rgb(255,255,255);}
.fc2_c02203{color:rgb(17,17,17);}
.fc0_c02203{color:rgb(0,0,0);}
.fs0_c02203{font-size:66.240000px;}
.fs1_c02203{font-size:72.000000px;}
.y0_c02203{bottom:0.000000px;}
.yf_c02203{bottom:4.140000px;}
.yc_c02203{bottom:4.500000px;}
.y3_c02203{bottom:4.680000px;}
.yd_c02203{bottom:4.860000px;}
.ya_c02203{bottom:5.220000px;}
.y16_c02203{bottom:24.840000px;}
.y15_c02203{bottom:25.200000px;}
.y9_c02203{bottom:25.920000px;}
.y2_c02203{bottom:41.796000px;}
.y1_c02203{bottom:75.456000px;}
.y27_c02203{bottom:352.515000px;}
.y26_c02203{bottom:383.475000px;}
.y25_c02203{bottom:414.615000px;}
.y24_c02203{bottom:445.575000px;}
.y23_c02203{bottom:476.715000px;}
.y22_c02203{bottom:507.675000px;}
.y21_c02203{bottom:538.845000px;}
.y20_c02203{bottom:569.805000px;}
.y1f_c02203{bottom:600.945000px;}
.y1e_c02203{bottom:631.905000px;}
.y1d_c02203{bottom:652.785000px;}
.y1c_c02203{bottom:673.485000px;}
.y1b_c02203{bottom:694.185000px;}
.y1a_c02203{bottom:714.885000px;}
.y19_c02203{bottom:731.805000px;}
.y18_c02203{bottom:753.405000px;}
.y17_c02203{bottom:774.825000px;}
.y14_c02203{bottom:796.290000px;}
.y13_c02203{bottom:838.410000px;}
.y12_c02203{bottom:859.830000px;}
.y11_c02203{bottom:881.250000px;}
.y10_c02203{bottom:902.670000px;}
.ye_c02203{bottom:924.270000px;}
.y8_c02203{bottom:945.690000px;}
.yb_c02203{bottom:967.110000px;}
.y7_c02203{bottom:1003.290000px;}
.y6_c02203{bottom:1024.170000px;}
.y5_c02203{bottom:1044.870000px;}
.y4_c02203{bottom:1065.600000px;}
.h5_c02203{height:20.700000px;}
.h8_c02203{height:20.736000px;}
.h2_c02203{height:22.500000px;}
.h7_c02203{height:41.400000px;}
.h4_c02203{height:42.120000px;}
.h1_c02203{height:48.871406px;}
.h9_c02203{height:64.546875px;}
.h3_c02203{height:70.664062px;}
.h6_c02203{height:72.562500px;}
.h0_c02203{height:1188.000000px;}
.w1_c02203{width:66.636000px;}
.w4_c02203{width:79.020000px;}
.w7_c02203{width:92.016000px;}
.w5_c02203{width:94.356000px;}
.w6_c02203{width:96.120000px;}
.w2_c02203{width:254.550000px;}
.w3_c02203{width:283.935000px;}
.w0_c02203{width:918.000000px;}
.x0_c02203{left:0.000000px;}
.xe_c02203{left:7.920000px;}
.x11_c02203{left:15.480000px;}
.x3_c02203{left:16.560000px;}
.xf_c02203{left:18.180000px;}
.x13_c02203{left:21.420000px;}
.x20_c02203{left:23.040000px;}
.x1c_c02203{left:25.740000px;}
.x17_c02203{left:34.920000px;}
.xd_c02203{left:39.420000px;}
.x16_c02203{left:41.400000px;}
.x15_c02203{left:42.660000px;}
.x1f_c02203{left:45.900000px;}
.x1e_c02203{left:47.160000px;}
.x18_c02203{left:61.560000px;}
.x1d_c02203{left:69.660000px;}
.x1a_c02203{left:72.540000px;}
.x14_c02203{left:74.520000px;}
.x1b_c02203{left:77.040000px;}
.x19_c02203{left:79.560000px;}
.x22_c02203{left:95.760000px;}
.x9_c02203{left:103.140000px;}
.xb_c02203{left:104.430000px;}
.x21_c02203{left:107.280000px;}
.x1_c02203{left:127.656000px;}
.x8_c02203{left:179.310000px;}
.x23_c02203{left:187.050000px;}
.x5_c02203{left:295.230000px;}
.x6_c02203{left:351.795000px;}
.xa_c02203{left:434.595000px;}
.x4_c02203{left:444.675000px;}
.x7_c02203{left:488.775000px;}
.x10_c02203{left:529.665000px;}
.x12_c02203{left:626.505000px;}
.xc_c02203{left:719.250000px;}
.x2_c02203{left:820.950000px;}
@media print{
.v0_c02203{vertical-align:0.000000pt;}
.ls0_c02203{letter-spacing:0.000000pt;}
.ws0_c02203{word-spacing:-16.000000pt;}
.ws1_c02203{word-spacing:0.000000pt;}
._0_c02203{margin-left:-1.024000pt;}
._1_c02203{width:0.970667pt;}
._2_c02203{width:2.688000pt;}
._3_c02203{width:4.352000pt;}
._4_c02203{width:5.333333pt;}
._8_c02203{width:6.336000pt;}
._5_c02203{width:10.176000pt;}
._6_c02203{width:11.850667pt;}
._7_c02203{width:13.408000pt;}
._9_c02203{width:18.816000pt;}
._a_c02203{width:20.096000pt;}
._b_c02203{width:22.400000pt;}
.fs0_c02203{font-size:58.880000pt;}
.fs1_c02203{font-size:64.000000pt;}
.y0_c02203{bottom:0.000000pt;}
.yf_c02203{bottom:3.680000pt;}
.yc_c02203{bottom:4.000000pt;}
.y3_c02203{bottom:4.160000pt;}
.yd_c02203{bottom:4.320000pt;}
.ya_c02203{bottom:4.640000pt;}
.y16_c02203{bottom:22.080000pt;}
.y15_c02203{bottom:22.400000pt;}
.y9_c02203{bottom:23.040000pt;}
.y2_c02203{bottom:37.152000pt;}
.y1_c02203{bottom:67.072000pt;}
.y27_c02203{bottom:313.346667pt;}
.y26_c02203{bottom:340.866667pt;}
.y25_c02203{bottom:368.546667pt;}
.y24_c02203{bottom:396.066667pt;}
.y23_c02203{bottom:423.746667pt;}
.y22_c02203{bottom:451.266667pt;}
.y21_c02203{bottom:478.973333pt;}
.y20_c02203{bottom:506.493333pt;}
.y1f_c02203{bottom:534.173333pt;}
.y1e_c02203{bottom:561.693333pt;}
.y1d_c02203{bottom:580.253333pt;}
.y1c_c02203{bottom:598.653333pt;}
.y1b_c02203{bottom:617.053333pt;}
.y1a_c02203{bottom:635.453333pt;}
.y19_c02203{bottom:650.493333pt;}
.y18_c02203{bottom:669.693333pt;}
.y17_c02203{bottom:688.733333pt;}
.y14_c02203{bottom:707.813333pt;}
.y13_c02203{bottom:745.253333pt;}
.y12_c02203{bottom:764.293333pt;}
.y11_c02203{bottom:783.333333pt;}
.y10_c02203{bottom:802.373333pt;}
.ye_c02203{bottom:821.573333pt;}
.y8_c02203{bottom:840.613333pt;}
.yb_c02203{bottom:859.653333pt;}
.y7_c02203{bottom:891.813333pt;}
.y6_c02203{bottom:910.373333pt;}
.y5_c02203{bottom:928.773333pt;}
.y4_c02203{bottom:947.200000pt;}
.h5_c02203{height:18.400000pt;}
.h8_c02203{height:18.432000pt;}
.h2_c02203{height:20.000000pt;}
.h7_c02203{height:36.800000pt;}
.h4_c02203{height:37.440000pt;}
.h1_c02203{height:43.441250pt;}
.h9_c02203{height:57.375000pt;}
.h3_c02203{height:62.812500pt;}
.h6_c02203{height:64.500000pt;}
.h0_c02203{height:1056.000000pt;}
.w1_c02203{width:59.232000pt;}
.w4_c02203{width:70.240000pt;}
.w7_c02203{width:81.792000pt;}
.w5_c02203{width:83.872000pt;}
.w6_c02203{width:85.440000pt;}
.w2_c02203{width:226.266667pt;}
.w3_c02203{width:252.386667pt;}
.w0_c02203{width:816.000000pt;}
.x0_c02203{left:0.000000pt;}
.xe_c02203{left:7.040000pt;}
.x11_c02203{left:13.760000pt;}
.x3_c02203{left:14.720000pt;}
.xf_c02203{left:16.160000pt;}
.x13_c02203{left:19.040000pt;}
.x20_c02203{left:20.480000pt;}
.x1c_c02203{left:22.880000pt;}
.x17_c02203{left:31.040000pt;}
.xd_c02203{left:35.040000pt;}
.x16_c02203{left:36.800000pt;}
.x15_c02203{left:37.920000pt;}
.x1f_c02203{left:40.800000pt;}
.x1e_c02203{left:41.920000pt;}
.x18_c02203{left:54.720000pt;}
.x1d_c02203{left:61.920000pt;}
.x1a_c02203{left:64.480000pt;}
.x14_c02203{left:66.240000pt;}
.x1b_c02203{left:68.480000pt;}
.x19_c02203{left:70.720000pt;}
.x22_c02203{left:85.120000pt;}
.x9_c02203{left:91.680000pt;}
.xb_c02203{left:92.826667pt;}
.x21_c02203{left:95.360000pt;}
.x1_c02203{left:113.472000pt;}
.x8_c02203{left:159.386667pt;}
.x23_c02203{left:166.266667pt;}
.x5_c02203{left:262.426667pt;}
.x6_c02203{left:312.706667pt;}
.xa_c02203{left:386.306667pt;}
.x4_c02203{left:395.266667pt;}
.x7_c02203{left:434.466667pt;}
.x10_c02203{left:470.813333pt;}
.x12_c02203{left:556.893333pt;}
.xc_c02203{left:639.333333pt;}
.x2_c02203{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02204 {
    display:none;
  }
  .loading-indicator_c02204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02204 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02204 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02204" -> "#page-container .classname_c02204")
 */
.pf_c02204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02204 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02204 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02204 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02204 {overflow:visible;}
  }
}
.c_c02204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02204 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02204:after { /* webkit #35443 */
  content: '';
}
.t_c02204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02204 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02204 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02204 { /* info for Javascript */
  display:none;
}
.l_c02204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02204:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02204 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02204.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02204;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02204{font-family:ff1_c02204;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02204;src:url('chunks/assets/font_66372ac99bc1f02b4a468b74.woff2')format("woff");}.ff2_c02204{font-family:ff2_c02204;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:ff3_c02204;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02204{font-family:ff3_c02204;line-height:1.311035;font-style:normal;font-weight: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_c02204;src:url('chunks/assets/font_54642f957224dcfd5aef9e42.woff2')format("woff");}.ff4_c02204{font-family:ff4_c02204;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02204{vertical-align:0.000000px;}
.ls0_c02204{letter-spacing:0.000000px;}
.ls1_c02204{letter-spacing:0.256200px;}
.sc__c02204{text-shadow:none;}
.sc0_c02204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02204{-webkit-text-stroke:0px transparent;}
.sc0_c02204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02204{word-spacing:-18.000000px;}
.ws0_c02204{word-spacing:-15.226440px;}
.ws2_c02204{word-spacing:0.000000px;}
._0_c02204{margin-left:-1.439520px;}
._1_c02204{width:1.007520px;}
._2_c02204{width:2.523360px;}
._9_c02204{width:3.596160px;}
._3_c02204{width:4.896000px;}
._5_c02204{width:6.155520px;}
._4_c02204{width:7.200000px;}
._6_c02204{width:8.208000px;}
._7_c02204{width:10.152000px;}
._8_c02204{width:11.448000px;}
.fc1_c02204{color:rgb(192,80,77);}
.fc3_c02204{color:rgb(255,255,255);}
.fc2_c02204{color:rgb(17,17,17);}
.fc0_c02204{color:rgb(0,0,0);}
.fs0_c02204{font-size:66.240000px;}
.fs1_c02204{font-size:72.000000px;}
.y0_c02204{bottom:0.000000px;}
.yf_c02204{bottom:4.140000px;}
.yc_c02204{bottom:4.500000px;}
.y3_c02204{bottom:4.680000px;}
.yd_c02204{bottom:4.860000px;}
.ya_c02204{bottom:5.220000px;}
.y16_c02204{bottom:24.840000px;}
.y15_c02204{bottom:25.200000px;}
.y9_c02204{bottom:25.920000px;}
.y2_c02204{bottom:41.796000px;}
.y1_c02204{bottom:75.456000px;}
.y26_c02204{bottom:383.475000px;}
.y25_c02204{bottom:414.615000px;}
.y24_c02204{bottom:445.575000px;}
.y23_c02204{bottom:476.715000px;}
.y22_c02204{bottom:507.675000px;}
.y21_c02204{bottom:538.845000px;}
.y20_c02204{bottom:569.805000px;}
.y1f_c02204{bottom:600.945000px;}
.y1e_c02204{bottom:631.905000px;}
.y1d_c02204{bottom:652.785000px;}
.y1c_c02204{bottom:673.485000px;}
.y1b_c02204{bottom:694.185000px;}
.y1a_c02204{bottom:714.885000px;}
.y19_c02204{bottom:731.805000px;}
.y18_c02204{bottom:753.405000px;}
.y17_c02204{bottom:774.825000px;}
.y14_c02204{bottom:796.290000px;}
.y13_c02204{bottom:838.410000px;}
.y12_c02204{bottom:859.830000px;}
.y11_c02204{bottom:881.250000px;}
.y10_c02204{bottom:902.670000px;}
.ye_c02204{bottom:924.270000px;}
.y8_c02204{bottom:945.690000px;}
.yb_c02204{bottom:967.110000px;}
.y7_c02204{bottom:1003.290000px;}
.y6_c02204{bottom:1024.170000px;}
.y5_c02204{bottom:1044.870000px;}
.y4_c02204{bottom:1065.600000px;}
.h5_c02204{height:20.700000px;}
.h8_c02204{height:20.736000px;}
.h2_c02204{height:22.500000px;}
.h7_c02204{height:41.400000px;}
.h4_c02204{height:42.120000px;}
.h1_c02204{height:48.871406px;}
.h9_c02204{height:64.546875px;}
.h3_c02204{height:70.664062px;}
.h6_c02204{height:72.562500px;}
.h0_c02204{height:1188.000000px;}
.w1_c02204{width:66.636000px;}
.w4_c02204{width:79.020000px;}
.w7_c02204{width:92.016000px;}
.w5_c02204{width:94.356000px;}
.w6_c02204{width:96.120000px;}
.w2_c02204{width:254.550000px;}
.w3_c02204{width:283.935000px;}
.w0_c02204{width:918.000000px;}
.x0_c02204{left:0.000000px;}
.xe_c02204{left:7.920000px;}
.x11_c02204{left:15.480000px;}
.x3_c02204{left:16.560000px;}
.xf_c02204{left:18.180000px;}
.x13_c02204{left:21.420000px;}
.x20_c02204{left:23.040000px;}
.x1c_c02204{left:25.740000px;}
.x17_c02204{left:34.920000px;}
.xd_c02204{left:39.420000px;}
.x16_c02204{left:41.400000px;}
.x15_c02204{left:42.660000px;}
.x1f_c02204{left:45.900000px;}
.x1e_c02204{left:47.160000px;}
.x18_c02204{left:61.560000px;}
.x1d_c02204{left:69.660000px;}
.x1a_c02204{left:72.540000px;}
.x14_c02204{left:74.520000px;}
.x1b_c02204{left:77.040000px;}
.x19_c02204{left:79.560000px;}
.x22_c02204{left:95.760000px;}
.x9_c02204{left:103.140000px;}
.xb_c02204{left:104.430000px;}
.x21_c02204{left:107.280000px;}
.x1_c02204{left:127.656000px;}
.x8_c02204{left:179.310000px;}
.x23_c02204{left:187.050000px;}
.x5_c02204{left:295.815000px;}
.x6_c02204{left:351.795000px;}
.xa_c02204{left:434.595000px;}
.x4_c02204{left:444.675000px;}
.x7_c02204{left:488.775000px;}
.x10_c02204{left:529.665000px;}
.x12_c02204{left:626.505000px;}
.xc_c02204{left:719.250000px;}
.x2_c02204{left:820.950000px;}
@media print{
.v0_c02204{vertical-align:0.000000pt;}
.ls0_c02204{letter-spacing:0.000000pt;}
.ls1_c02204{letter-spacing:0.227733pt;}
.ws1_c02204{word-spacing:-16.000000pt;}
.ws0_c02204{word-spacing:-13.534613pt;}
.ws2_c02204{word-spacing:0.000000pt;}
._0_c02204{margin-left:-1.279573pt;}
._1_c02204{width:0.895573pt;}
._2_c02204{width:2.242987pt;}
._9_c02204{width:3.196587pt;}
._3_c02204{width:4.352000pt;}
._5_c02204{width:5.471573pt;}
._4_c02204{width:6.400000pt;}
._6_c02204{width:7.296000pt;}
._7_c02204{width:9.024000pt;}
._8_c02204{width:10.176000pt;}
.fs0_c02204{font-size:58.880000pt;}
.fs1_c02204{font-size:64.000000pt;}
.y0_c02204{bottom:0.000000pt;}
.yf_c02204{bottom:3.680000pt;}
.yc_c02204{bottom:4.000000pt;}
.y3_c02204{bottom:4.160000pt;}
.yd_c02204{bottom:4.320000pt;}
.ya_c02204{bottom:4.640000pt;}
.y16_c02204{bottom:22.080000pt;}
.y15_c02204{bottom:22.400000pt;}
.y9_c02204{bottom:23.040000pt;}
.y2_c02204{bottom:37.152000pt;}
.y1_c02204{bottom:67.072000pt;}
.y26_c02204{bottom:340.866667pt;}
.y25_c02204{bottom:368.546667pt;}
.y24_c02204{bottom:396.066667pt;}
.y23_c02204{bottom:423.746667pt;}
.y22_c02204{bottom:451.266667pt;}
.y21_c02204{bottom:478.973333pt;}
.y20_c02204{bottom:506.493333pt;}
.y1f_c02204{bottom:534.173333pt;}
.y1e_c02204{bottom:561.693333pt;}
.y1d_c02204{bottom:580.253333pt;}
.y1c_c02204{bottom:598.653333pt;}
.y1b_c02204{bottom:617.053333pt;}
.y1a_c02204{bottom:635.453333pt;}
.y19_c02204{bottom:650.493333pt;}
.y18_c02204{bottom:669.693333pt;}
.y17_c02204{bottom:688.733333pt;}
.y14_c02204{bottom:707.813333pt;}
.y13_c02204{bottom:745.253333pt;}
.y12_c02204{bottom:764.293333pt;}
.y11_c02204{bottom:783.333333pt;}
.y10_c02204{bottom:802.373333pt;}
.ye_c02204{bottom:821.573333pt;}
.y8_c02204{bottom:840.613333pt;}
.yb_c02204{bottom:859.653333pt;}
.y7_c02204{bottom:891.813333pt;}
.y6_c02204{bottom:910.373333pt;}
.y5_c02204{bottom:928.773333pt;}
.y4_c02204{bottom:947.200000pt;}
.h5_c02204{height:18.400000pt;}
.h8_c02204{height:18.432000pt;}
.h2_c02204{height:20.000000pt;}
.h7_c02204{height:36.800000pt;}
.h4_c02204{height:37.440000pt;}
.h1_c02204{height:43.441250pt;}
.h9_c02204{height:57.375000pt;}
.h3_c02204{height:62.812500pt;}
.h6_c02204{height:64.500000pt;}
.h0_c02204{height:1056.000000pt;}
.w1_c02204{width:59.232000pt;}
.w4_c02204{width:70.240000pt;}
.w7_c02204{width:81.792000pt;}
.w5_c02204{width:83.872000pt;}
.w6_c02204{width:85.440000pt;}
.w2_c02204{width:226.266667pt;}
.w3_c02204{width:252.386667pt;}
.w0_c02204{width:816.000000pt;}
.x0_c02204{left:0.000000pt;}
.xe_c02204{left:7.040000pt;}
.x11_c02204{left:13.760000pt;}
.x3_c02204{left:14.720000pt;}
.xf_c02204{left:16.160000pt;}
.x13_c02204{left:19.040000pt;}
.x20_c02204{left:20.480000pt;}
.x1c_c02204{left:22.880000pt;}
.x17_c02204{left:31.040000pt;}
.xd_c02204{left:35.040000pt;}
.x16_c02204{left:36.800000pt;}
.x15_c02204{left:37.920000pt;}
.x1f_c02204{left:40.800000pt;}
.x1e_c02204{left:41.920000pt;}
.x18_c02204{left:54.720000pt;}
.x1d_c02204{left:61.920000pt;}
.x1a_c02204{left:64.480000pt;}
.x14_c02204{left:66.240000pt;}
.x1b_c02204{left:68.480000pt;}
.x19_c02204{left:70.720000pt;}
.x22_c02204{left:85.120000pt;}
.x9_c02204{left:91.680000pt;}
.xb_c02204{left:92.826667pt;}
.x21_c02204{left:95.360000pt;}
.x1_c02204{left:113.472000pt;}
.x8_c02204{left:159.386667pt;}
.x23_c02204{left:166.266667pt;}
.x5_c02204{left:262.946667pt;}
.x6_c02204{left:312.706667pt;}
.xa_c02204{left:386.306667pt;}
.x4_c02204{left:395.266667pt;}
.x7_c02204{left:434.466667pt;}
.x10_c02204{left:470.813333pt;}
.x12_c02204{left:556.893333pt;}
.xc_c02204{left:639.333333pt;}
.x2_c02204{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02205 {
    display:none;
  }
  .loading-indicator_c02205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02205 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02205 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02205" -> "#page-container .classname_c02205")
 */
.pf_c02205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02205 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02205 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02205 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02205 {overflow:visible;}
  }
}
.c_c02205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02205 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02205:after { /* webkit #35443 */
  content: '';
}
.t_c02205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02205 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02205 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02205 { /* info for Javascript */
  display:none;
}
.l_c02205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02205:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02205 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02205.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02205;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02205{font-family:ff1_c02205;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02205;src:url('chunks/assets/font_b35a43ffa9c1f3fe02e10b2e.woff2')format("woff");}.ff2_c02205{font-family:ff2_c02205;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:ff3_c02205;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02205{font-family:ff3_c02205;line-height:1.311035;font-style:normal;font-weight: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_c02205;src:url('chunks/assets/font_7a8646752ddd0f3e795d5bd4.woff2')format("woff");}.ff4_c02205{font-family:ff4_c02205;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02205{vertical-align:0.000000px;}
.ls0_c02205{letter-spacing:0.000000px;}
.sc__c02205{text-shadow:none;}
.sc0_c02205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02205{-webkit-text-stroke:0px transparent;}
.sc0_c02205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02205{word-spacing:-18.000000px;}
.ws1_c02205{word-spacing:0.000000px;}
._9_c02205{margin-left:-2.256000px;}
._0_c02205{margin-left:-1.152000px;}
._1_c02205{width:1.056000px;}
._2_c02205{width:2.184000px;}
._5_c02205{width:3.408000px;}
._3_c02205{width:4.896000px;}
._4_c02205{width:6.480000px;}
._6_c02205{width:7.920000px;}
._a_c02205{width:10.008000px;}
._7_c02205{width:11.520000px;}
._8_c02205{width:12.768000px;}
.fc1_c02205{color:rgb(192,80,77);}
.fc3_c02205{color:rgb(255,255,255);}
.fc2_c02205{color:rgb(17,17,17);}
.fc0_c02205{color:rgb(0,0,0);}
.fs0_c02205{font-size:66.240000px;}
.fs1_c02205{font-size:72.000000px;}
.y0_c02205{bottom:0.000000px;}
.yf_c02205{bottom:4.140000px;}
.yc_c02205{bottom:4.500000px;}
.y3_c02205{bottom:4.680000px;}
.yd_c02205{bottom:4.860000px;}
.ya_c02205{bottom:5.220000px;}
.y16_c02205{bottom:24.840000px;}
.y15_c02205{bottom:25.200000px;}
.y9_c02205{bottom:25.920000px;}
.y2_c02205{bottom:41.796000px;}
.y1_c02205{bottom:75.456000px;}
.y26_c02205{bottom:383.475000px;}
.y25_c02205{bottom:414.615000px;}
.y24_c02205{bottom:445.575000px;}
.y23_c02205{bottom:476.715000px;}
.y22_c02205{bottom:507.675000px;}
.y21_c02205{bottom:538.845000px;}
.y20_c02205{bottom:569.805000px;}
.y1f_c02205{bottom:600.945000px;}
.y1e_c02205{bottom:631.905000px;}
.y1d_c02205{bottom:652.785000px;}
.y1c_c02205{bottom:673.485000px;}
.y1b_c02205{bottom:694.185000px;}
.y1a_c02205{bottom:714.885000px;}
.y19_c02205{bottom:731.805000px;}
.y18_c02205{bottom:753.405000px;}
.y17_c02205{bottom:774.825000px;}
.y14_c02205{bottom:796.290000px;}
.y13_c02205{bottom:838.410000px;}
.y12_c02205{bottom:859.830000px;}
.y11_c02205{bottom:881.250000px;}
.y10_c02205{bottom:902.670000px;}
.ye_c02205{bottom:924.270000px;}
.y8_c02205{bottom:945.690000px;}
.yb_c02205{bottom:967.110000px;}
.y7_c02205{bottom:1003.290000px;}
.y6_c02205{bottom:1024.170000px;}
.y5_c02205{bottom:1044.870000px;}
.y4_c02205{bottom:1065.600000px;}
.h5_c02205{height:20.700000px;}
.h8_c02205{height:20.736000px;}
.h2_c02205{height:22.500000px;}
.h7_c02205{height:41.400000px;}
.h4_c02205{height:42.120000px;}
.h1_c02205{height:48.871406px;}
.h9_c02205{height:64.546875px;}
.h3_c02205{height:70.664062px;}
.h6_c02205{height:72.562500px;}
.h0_c02205{height:1188.000000px;}
.w1_c02205{width:66.636000px;}
.w4_c02205{width:79.020000px;}
.w7_c02205{width:92.016000px;}
.w5_c02205{width:94.356000px;}
.w6_c02205{width:96.120000px;}
.w2_c02205{width:254.550000px;}
.w3_c02205{width:283.935000px;}
.w0_c02205{width:918.000000px;}
.x0_c02205{left:0.000000px;}
.xe_c02205{left:7.920000px;}
.x11_c02205{left:15.480000px;}
.x3_c02205{left:16.560000px;}
.xf_c02205{left:18.180000px;}
.x13_c02205{left:21.420000px;}
.x20_c02205{left:23.040000px;}
.x1c_c02205{left:25.740000px;}
.x17_c02205{left:34.920000px;}
.xd_c02205{left:39.420000px;}
.x16_c02205{left:41.400000px;}
.x15_c02205{left:42.660000px;}
.x1f_c02205{left:45.900000px;}
.x1e_c02205{left:47.160000px;}
.x18_c02205{left:61.560000px;}
.x1d_c02205{left:69.660000px;}
.x1a_c02205{left:72.540000px;}
.x14_c02205{left:74.520000px;}
.x1b_c02205{left:77.040000px;}
.x19_c02205{left:79.560000px;}
.x22_c02205{left:95.760000px;}
.x9_c02205{left:103.140000px;}
.xb_c02205{left:104.430000px;}
.x21_c02205{left:107.280000px;}
.x1_c02205{left:127.656000px;}
.x8_c02205{left:179.310000px;}
.x23_c02205{left:187.050000px;}
.x5_c02205{left:295.815000px;}
.x6_c02205{left:351.795000px;}
.xa_c02205{left:434.595000px;}
.x4_c02205{left:444.675000px;}
.x7_c02205{left:488.775000px;}
.x10_c02205{left:529.665000px;}
.x12_c02205{left:626.505000px;}
.xc_c02205{left:719.250000px;}
.x2_c02205{left:820.950000px;}
@media print{
.v0_c02205{vertical-align:0.000000pt;}
.ls0_c02205{letter-spacing:0.000000pt;}
.ws0_c02205{word-spacing:-16.000000pt;}
.ws1_c02205{word-spacing:0.000000pt;}
._9_c02205{margin-left:-2.005333pt;}
._0_c02205{margin-left:-1.024000pt;}
._1_c02205{width:0.938667pt;}
._2_c02205{width:1.941333pt;}
._5_c02205{width:3.029333pt;}
._3_c02205{width:4.352000pt;}
._4_c02205{width:5.760000pt;}
._6_c02205{width:7.040000pt;}
._a_c02205{width:8.896000pt;}
._7_c02205{width:10.240000pt;}
._8_c02205{width:11.349333pt;}
.fs0_c02205{font-size:58.880000pt;}
.fs1_c02205{font-size:64.000000pt;}
.y0_c02205{bottom:0.000000pt;}
.yf_c02205{bottom:3.680000pt;}
.yc_c02205{bottom:4.000000pt;}
.y3_c02205{bottom:4.160000pt;}
.yd_c02205{bottom:4.320000pt;}
.ya_c02205{bottom:4.640000pt;}
.y16_c02205{bottom:22.080000pt;}
.y15_c02205{bottom:22.400000pt;}
.y9_c02205{bottom:23.040000pt;}
.y2_c02205{bottom:37.152000pt;}
.y1_c02205{bottom:67.072000pt;}
.y26_c02205{bottom:340.866667pt;}
.y25_c02205{bottom:368.546667pt;}
.y24_c02205{bottom:396.066667pt;}
.y23_c02205{bottom:423.746667pt;}
.y22_c02205{bottom:451.266667pt;}
.y21_c02205{bottom:478.973333pt;}
.y20_c02205{bottom:506.493333pt;}
.y1f_c02205{bottom:534.173333pt;}
.y1e_c02205{bottom:561.693333pt;}
.y1d_c02205{bottom:580.253333pt;}
.y1c_c02205{bottom:598.653333pt;}
.y1b_c02205{bottom:617.053333pt;}
.y1a_c02205{bottom:635.453333pt;}
.y19_c02205{bottom:650.493333pt;}
.y18_c02205{bottom:669.693333pt;}
.y17_c02205{bottom:688.733333pt;}
.y14_c02205{bottom:707.813333pt;}
.y13_c02205{bottom:745.253333pt;}
.y12_c02205{bottom:764.293333pt;}
.y11_c02205{bottom:783.333333pt;}
.y10_c02205{bottom:802.373333pt;}
.ye_c02205{bottom:821.573333pt;}
.y8_c02205{bottom:840.613333pt;}
.yb_c02205{bottom:859.653333pt;}
.y7_c02205{bottom:891.813333pt;}
.y6_c02205{bottom:910.373333pt;}
.y5_c02205{bottom:928.773333pt;}
.y4_c02205{bottom:947.200000pt;}
.h5_c02205{height:18.400000pt;}
.h8_c02205{height:18.432000pt;}
.h2_c02205{height:20.000000pt;}
.h7_c02205{height:36.800000pt;}
.h4_c02205{height:37.440000pt;}
.h1_c02205{height:43.441250pt;}
.h9_c02205{height:57.375000pt;}
.h3_c02205{height:62.812500pt;}
.h6_c02205{height:64.500000pt;}
.h0_c02205{height:1056.000000pt;}
.w1_c02205{width:59.232000pt;}
.w4_c02205{width:70.240000pt;}
.w7_c02205{width:81.792000pt;}
.w5_c02205{width:83.872000pt;}
.w6_c02205{width:85.440000pt;}
.w2_c02205{width:226.266667pt;}
.w3_c02205{width:252.386667pt;}
.w0_c02205{width:816.000000pt;}
.x0_c02205{left:0.000000pt;}
.xe_c02205{left:7.040000pt;}
.x11_c02205{left:13.760000pt;}
.x3_c02205{left:14.720000pt;}
.xf_c02205{left:16.160000pt;}
.x13_c02205{left:19.040000pt;}
.x20_c02205{left:20.480000pt;}
.x1c_c02205{left:22.880000pt;}
.x17_c02205{left:31.040000pt;}
.xd_c02205{left:35.040000pt;}
.x16_c02205{left:36.800000pt;}
.x15_c02205{left:37.920000pt;}
.x1f_c02205{left:40.800000pt;}
.x1e_c02205{left:41.920000pt;}
.x18_c02205{left:54.720000pt;}
.x1d_c02205{left:61.920000pt;}
.x1a_c02205{left:64.480000pt;}
.x14_c02205{left:66.240000pt;}
.x1b_c02205{left:68.480000pt;}
.x19_c02205{left:70.720000pt;}
.x22_c02205{left:85.120000pt;}
.x9_c02205{left:91.680000pt;}
.xb_c02205{left:92.826667pt;}
.x21_c02205{left:95.360000pt;}
.x1_c02205{left:113.472000pt;}
.x8_c02205{left:159.386667pt;}
.x23_c02205{left:166.266667pt;}
.x5_c02205{left:262.946667pt;}
.x6_c02205{left:312.706667pt;}
.xa_c02205{left:386.306667pt;}
.x4_c02205{left:395.266667pt;}
.x7_c02205{left:434.466667pt;}
.x10_c02205{left:470.813333pt;}
.x12_c02205{left:556.893333pt;}
.xc_c02205{left:639.333333pt;}
.x2_c02205{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02206 {
    display:none;
  }
  .loading-indicator_c02206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02206 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02206 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02206" -> "#page-container .classname_c02206")
 */
.pf_c02206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02206 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02206 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02206 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02206 {overflow:visible;}
  }
}
.c_c02206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02206 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02206:after { /* webkit #35443 */
  content: '';
}
.t_c02206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02206 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02206 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02206 { /* info for Javascript */
  display:none;
}
.l_c02206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02206:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02206 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02206.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02206;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02206{font-family:ff1_c02206;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02206;src:url('chunks/assets/font_8327a765e8788e077b79bb9c.woff2')format("woff");}.ff2_c02206{font-family:ff2_c02206;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:ff3_c02206;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02206{font-family:ff3_c02206;line-height:1.311035;font-style:normal;font-weight: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_c02206;src:url('chunks/assets/font_88f408ba39d4bd87535ee5e2.woff2')format("woff");}.ff4_c02206{font-family:ff4_c02206;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02206{vertical-align:0.000000px;}
.ls0_c02206{letter-spacing:0.000000px;}
.sc__c02206{text-shadow:none;}
.sc0_c02206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02206{-webkit-text-stroke:0px transparent;}
.sc0_c02206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02206{word-spacing:-18.000000px;}
.ws1_c02206{word-spacing:0.000000px;}
._0_c02206{margin-left:-1.152000px;}
._1_c02206{width:1.092000px;}
._2_c02206{width:3.024000px;}
._3_c02206{width:4.176000px;}
._4_c02206{width:5.220000px;}
._6_c02206{width:8.136000px;}
._5_c02206{width:9.360000px;}
._7_c02206{width:10.620000px;}
._8_c02206{width:11.772000px;}
._9_c02206{width:13.032000px;}
._a_c02206{width:14.676000px;}
.fc1_c02206{color:rgb(192,80,77);}
.fc3_c02206{color:rgb(255,255,255);}
.fc2_c02206{color:rgb(17,17,17);}
.fc0_c02206{color:rgb(0,0,0);}
.fs0_c02206{font-size:66.240000px;}
.fs1_c02206{font-size:72.000000px;}
.y0_c02206{bottom:0.000000px;}
.yf_c02206{bottom:4.140000px;}
.yc_c02206{bottom:4.500000px;}
.y3_c02206{bottom:4.680000px;}
.yd_c02206{bottom:4.860000px;}
.ya_c02206{bottom:5.220000px;}
.y16_c02206{bottom:24.840000px;}
.y15_c02206{bottom:25.200000px;}
.y9_c02206{bottom:25.920000px;}
.y2_c02206{bottom:41.796000px;}
.y1_c02206{bottom:75.456000px;}
.y28_c02206{bottom:321.375000px;}
.y27_c02206{bottom:352.515000px;}
.y26_c02206{bottom:383.475000px;}
.y25_c02206{bottom:414.615000px;}
.y24_c02206{bottom:445.575000px;}
.y23_c02206{bottom:476.715000px;}
.y22_c02206{bottom:507.675000px;}
.y21_c02206{bottom:538.845000px;}
.y20_c02206{bottom:569.805000px;}
.y1f_c02206{bottom:600.945000px;}
.y1e_c02206{bottom:631.905000px;}
.y1d_c02206{bottom:652.785000px;}
.y1c_c02206{bottom:673.485000px;}
.y1b_c02206{bottom:694.185000px;}
.y1a_c02206{bottom:714.885000px;}
.y19_c02206{bottom:731.805000px;}
.y18_c02206{bottom:753.405000px;}
.y17_c02206{bottom:774.825000px;}
.y14_c02206{bottom:796.290000px;}
.y13_c02206{bottom:838.410000px;}
.y12_c02206{bottom:859.830000px;}
.y11_c02206{bottom:881.250000px;}
.y10_c02206{bottom:902.670000px;}
.ye_c02206{bottom:924.270000px;}
.y8_c02206{bottom:945.690000px;}
.yb_c02206{bottom:967.110000px;}
.y7_c02206{bottom:1003.290000px;}
.y6_c02206{bottom:1024.170000px;}
.y5_c02206{bottom:1044.870000px;}
.y4_c02206{bottom:1065.600000px;}
.h5_c02206{height:20.700000px;}
.h8_c02206{height:20.736000px;}
.h2_c02206{height:22.500000px;}
.h7_c02206{height:41.400000px;}
.h4_c02206{height:42.120000px;}
.h1_c02206{height:48.871406px;}
.h9_c02206{height:64.546875px;}
.h3_c02206{height:70.664062px;}
.h6_c02206{height:72.562500px;}
.h0_c02206{height:1188.000000px;}
.w1_c02206{width:66.636000px;}
.w4_c02206{width:79.020000px;}
.w7_c02206{width:92.016000px;}
.w5_c02206{width:94.356000px;}
.w6_c02206{width:96.120000px;}
.w2_c02206{width:254.550000px;}
.w3_c02206{width:283.935000px;}
.w0_c02206{width:918.000000px;}
.x0_c02206{left:0.000000px;}
.xe_c02206{left:7.920000px;}
.x11_c02206{left:15.480000px;}
.x3_c02206{left:16.560000px;}
.xf_c02206{left:18.180000px;}
.x13_c02206{left:21.420000px;}
.x20_c02206{left:23.040000px;}
.x1c_c02206{left:25.740000px;}
.x17_c02206{left:34.920000px;}
.xd_c02206{left:39.420000px;}
.x16_c02206{left:41.400000px;}
.x15_c02206{left:42.660000px;}
.x1f_c02206{left:45.900000px;}
.x1e_c02206{left:47.160000px;}
.x18_c02206{left:61.560000px;}
.x1d_c02206{left:69.660000px;}
.x1a_c02206{left:72.540000px;}
.x14_c02206{left:74.520000px;}
.x1b_c02206{left:77.040000px;}
.x19_c02206{left:79.560000px;}
.x22_c02206{left:95.760000px;}
.x9_c02206{left:103.140000px;}
.xb_c02206{left:104.430000px;}
.x21_c02206{left:107.280000px;}
.x1_c02206{left:127.656000px;}
.x8_c02206{left:179.310000px;}
.x23_c02206{left:187.050000px;}
.x5_c02206{left:293.610000px;}
.x6_c02206{left:351.795000px;}
.xa_c02206{left:434.595000px;}
.x4_c02206{left:444.675000px;}
.x7_c02206{left:488.775000px;}
.x10_c02206{left:529.665000px;}
.x12_c02206{left:626.505000px;}
.xc_c02206{left:719.250000px;}
.x2_c02206{left:820.950000px;}
@media print{
.v0_c02206{vertical-align:0.000000pt;}
.ls0_c02206{letter-spacing:0.000000pt;}
.ws0_c02206{word-spacing:-16.000000pt;}
.ws1_c02206{word-spacing:0.000000pt;}
._0_c02206{margin-left:-1.024000pt;}
._1_c02206{width:0.970667pt;}
._2_c02206{width:2.688000pt;}
._3_c02206{width:3.712000pt;}
._4_c02206{width:4.640000pt;}
._6_c02206{width:7.232000pt;}
._5_c02206{width:8.320000pt;}
._7_c02206{width:9.440000pt;}
._8_c02206{width:10.464000pt;}
._9_c02206{width:11.584000pt;}
._a_c02206{width:13.045333pt;}
.fs0_c02206{font-size:58.880000pt;}
.fs1_c02206{font-size:64.000000pt;}
.y0_c02206{bottom:0.000000pt;}
.yf_c02206{bottom:3.680000pt;}
.yc_c02206{bottom:4.000000pt;}
.y3_c02206{bottom:4.160000pt;}
.yd_c02206{bottom:4.320000pt;}
.ya_c02206{bottom:4.640000pt;}
.y16_c02206{bottom:22.080000pt;}
.y15_c02206{bottom:22.400000pt;}
.y9_c02206{bottom:23.040000pt;}
.y2_c02206{bottom:37.152000pt;}
.y1_c02206{bottom:67.072000pt;}
.y28_c02206{bottom:285.666667pt;}
.y27_c02206{bottom:313.346667pt;}
.y26_c02206{bottom:340.866667pt;}
.y25_c02206{bottom:368.546667pt;}
.y24_c02206{bottom:396.066667pt;}
.y23_c02206{bottom:423.746667pt;}
.y22_c02206{bottom:451.266667pt;}
.y21_c02206{bottom:478.973333pt;}
.y20_c02206{bottom:506.493333pt;}
.y1f_c02206{bottom:534.173333pt;}
.y1e_c02206{bottom:561.693333pt;}
.y1d_c02206{bottom:580.253333pt;}
.y1c_c02206{bottom:598.653333pt;}
.y1b_c02206{bottom:617.053333pt;}
.y1a_c02206{bottom:635.453333pt;}
.y19_c02206{bottom:650.493333pt;}
.y18_c02206{bottom:669.693333pt;}
.y17_c02206{bottom:688.733333pt;}
.y14_c02206{bottom:707.813333pt;}
.y13_c02206{bottom:745.253333pt;}
.y12_c02206{bottom:764.293333pt;}
.y11_c02206{bottom:783.333333pt;}
.y10_c02206{bottom:802.373333pt;}
.ye_c02206{bottom:821.573333pt;}
.y8_c02206{bottom:840.613333pt;}
.yb_c02206{bottom:859.653333pt;}
.y7_c02206{bottom:891.813333pt;}
.y6_c02206{bottom:910.373333pt;}
.y5_c02206{bottom:928.773333pt;}
.y4_c02206{bottom:947.200000pt;}
.h5_c02206{height:18.400000pt;}
.h8_c02206{height:18.432000pt;}
.h2_c02206{height:20.000000pt;}
.h7_c02206{height:36.800000pt;}
.h4_c02206{height:37.440000pt;}
.h1_c02206{height:43.441250pt;}
.h9_c02206{height:57.375000pt;}
.h3_c02206{height:62.812500pt;}
.h6_c02206{height:64.500000pt;}
.h0_c02206{height:1056.000000pt;}
.w1_c02206{width:59.232000pt;}
.w4_c02206{width:70.240000pt;}
.w7_c02206{width:81.792000pt;}
.w5_c02206{width:83.872000pt;}
.w6_c02206{width:85.440000pt;}
.w2_c02206{width:226.266667pt;}
.w3_c02206{width:252.386667pt;}
.w0_c02206{width:816.000000pt;}
.x0_c02206{left:0.000000pt;}
.xe_c02206{left:7.040000pt;}
.x11_c02206{left:13.760000pt;}
.x3_c02206{left:14.720000pt;}
.xf_c02206{left:16.160000pt;}
.x13_c02206{left:19.040000pt;}
.x20_c02206{left:20.480000pt;}
.x1c_c02206{left:22.880000pt;}
.x17_c02206{left:31.040000pt;}
.xd_c02206{left:35.040000pt;}
.x16_c02206{left:36.800000pt;}
.x15_c02206{left:37.920000pt;}
.x1f_c02206{left:40.800000pt;}
.x1e_c02206{left:41.920000pt;}
.x18_c02206{left:54.720000pt;}
.x1d_c02206{left:61.920000pt;}
.x1a_c02206{left:64.480000pt;}
.x14_c02206{left:66.240000pt;}
.x1b_c02206{left:68.480000pt;}
.x19_c02206{left:70.720000pt;}
.x22_c02206{left:85.120000pt;}
.x9_c02206{left:91.680000pt;}
.xb_c02206{left:92.826667pt;}
.x21_c02206{left:95.360000pt;}
.x1_c02206{left:113.472000pt;}
.x8_c02206{left:159.386667pt;}
.x23_c02206{left:166.266667pt;}
.x5_c02206{left:260.986667pt;}
.x6_c02206{left:312.706667pt;}
.xa_c02206{left:386.306667pt;}
.x4_c02206{left:395.266667pt;}
.x7_c02206{left:434.466667pt;}
.x10_c02206{left:470.813333pt;}
.x12_c02206{left:556.893333pt;}
.xc_c02206{left:639.333333pt;}
.x2_c02206{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02207 {
    display:none;
  }
  .loading-indicator_c02207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02207 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02207 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02207" -> "#page-container .classname_c02207")
 */
.pf_c02207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02207 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02207 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02207 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02207 {overflow:visible;}
  }
}
.c_c02207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02207 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02207:after { /* webkit #35443 */
  content: '';
}
.t_c02207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02207 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02207 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02207 { /* info for Javascript */
  display:none;
}
.l_c02207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02207:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02207 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02207.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02207;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02207{font-family:ff1_c02207;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02207;src:url('chunks/assets/font_f1d7b6366d14d98e1af56a30.woff2')format("woff");}.ff2_c02207{font-family:ff2_c02207;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:ff3_c02207;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02207{font-family:ff3_c02207;line-height:1.311035;font-style:normal;font-weight: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_c02207;src:url('chunks/assets/font_e9b2fd55a800f30934e00140.woff2')format("woff");}.ff4_c02207{font-family:ff4_c02207;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02207{vertical-align:0.000000px;}
.ls0_c02207{letter-spacing:0.000000px;}
.sc__c02207{text-shadow:none;}
.sc0_c02207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02207{-webkit-text-stroke:0px transparent;}
.sc0_c02207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02207{word-spacing:-18.000000px;}
.ws1_c02207{word-spacing:0.000000px;}
._0_c02207{margin-left:-1.152000px;}
._1_c02207{width:1.056000px;}
._2_c02207{width:2.868000px;}
._5_c02207{width:4.968000px;}
._6_c02207{width:6.480000px;}
._7_c02207{width:8.424000px;}
._3_c02207{width:10.656000px;}
._4_c02207{width:11.700000px;}
._8_c02207{width:20.520000px;}
.fc1_c02207{color:rgb(192,80,77);}
.fc3_c02207{color:rgb(255,255,255);}
.fc2_c02207{color:rgb(17,17,17);}
.fc0_c02207{color:rgb(0,0,0);}
.fs0_c02207{font-size:66.240000px;}
.fs1_c02207{font-size:72.000000px;}
.y0_c02207{bottom:0.000000px;}
.yf_c02207{bottom:4.140000px;}
.yc_c02207{bottom:4.500000px;}
.y3_c02207{bottom:4.680000px;}
.yd_c02207{bottom:4.860000px;}
.ya_c02207{bottom:5.220000px;}
.y16_c02207{bottom:24.840000px;}
.y15_c02207{bottom:25.200000px;}
.y9_c02207{bottom:25.920000px;}
.y2_c02207{bottom:41.796000px;}
.y1_c02207{bottom:75.456000px;}
.y26_c02207{bottom:383.475000px;}
.y25_c02207{bottom:414.615000px;}
.y24_c02207{bottom:445.575000px;}
.y23_c02207{bottom:476.715000px;}
.y22_c02207{bottom:507.675000px;}
.y21_c02207{bottom:538.845000px;}
.y20_c02207{bottom:569.805000px;}
.y1f_c02207{bottom:600.945000px;}
.y1e_c02207{bottom:631.905000px;}
.y1d_c02207{bottom:652.785000px;}
.y1c_c02207{bottom:673.485000px;}
.y1b_c02207{bottom:694.185000px;}
.y1a_c02207{bottom:714.885000px;}
.y19_c02207{bottom:731.805000px;}
.y18_c02207{bottom:753.405000px;}
.y17_c02207{bottom:774.825000px;}
.y14_c02207{bottom:796.290000px;}
.y13_c02207{bottom:838.410000px;}
.y12_c02207{bottom:859.830000px;}
.y11_c02207{bottom:881.250000px;}
.y10_c02207{bottom:902.670000px;}
.ye_c02207{bottom:924.270000px;}
.y8_c02207{bottom:945.690000px;}
.yb_c02207{bottom:967.110000px;}
.y7_c02207{bottom:1003.290000px;}
.y6_c02207{bottom:1024.170000px;}
.y5_c02207{bottom:1044.870000px;}
.y4_c02207{bottom:1065.600000px;}
.h5_c02207{height:20.700000px;}
.h8_c02207{height:20.736000px;}
.h2_c02207{height:22.500000px;}
.h7_c02207{height:41.400000px;}
.h4_c02207{height:42.120000px;}
.h1_c02207{height:48.871406px;}
.h9_c02207{height:64.546875px;}
.h3_c02207{height:70.664062px;}
.h6_c02207{height:72.562500px;}
.h0_c02207{height:1188.000000px;}
.w1_c02207{width:66.636000px;}
.w4_c02207{width:79.020000px;}
.w7_c02207{width:92.016000px;}
.w5_c02207{width:94.356000px;}
.w6_c02207{width:96.120000px;}
.w2_c02207{width:254.550000px;}
.w3_c02207{width:283.935000px;}
.w0_c02207{width:918.000000px;}
.x0_c02207{left:0.000000px;}
.xe_c02207{left:7.920000px;}
.x11_c02207{left:15.480000px;}
.x3_c02207{left:16.560000px;}
.xf_c02207{left:18.180000px;}
.x13_c02207{left:21.420000px;}
.x20_c02207{left:23.040000px;}
.x1c_c02207{left:25.740000px;}
.x17_c02207{left:34.920000px;}
.xd_c02207{left:39.420000px;}
.x16_c02207{left:41.400000px;}
.x15_c02207{left:42.660000px;}
.x1f_c02207{left:45.900000px;}
.x1e_c02207{left:47.160000px;}
.x18_c02207{left:61.560000px;}
.x1d_c02207{left:69.660000px;}
.x1a_c02207{left:72.540000px;}
.x14_c02207{left:74.520000px;}
.x1b_c02207{left:77.040000px;}
.x19_c02207{left:79.560000px;}
.x22_c02207{left:95.760000px;}
.x9_c02207{left:103.140000px;}
.xb_c02207{left:104.430000px;}
.x21_c02207{left:107.280000px;}
.x1_c02207{left:127.656000px;}
.x8_c02207{left:179.310000px;}
.x23_c02207{left:187.050000px;}
.x5_c02207{left:304.275000px;}
.x6_c02207{left:351.795000px;}
.xa_c02207{left:434.595000px;}
.x4_c02207{left:444.675000px;}
.x7_c02207{left:488.775000px;}
.x10_c02207{left:529.665000px;}
.x12_c02207{left:626.505000px;}
.xc_c02207{left:719.250000px;}
.x2_c02207{left:820.950000px;}
@media print{
.v0_c02207{vertical-align:0.000000pt;}
.ls0_c02207{letter-spacing:0.000000pt;}
.ws0_c02207{word-spacing:-16.000000pt;}
.ws1_c02207{word-spacing:0.000000pt;}
._0_c02207{margin-left:-1.024000pt;}
._1_c02207{width:0.938667pt;}
._2_c02207{width:2.549333pt;}
._5_c02207{width:4.416000pt;}
._6_c02207{width:5.760000pt;}
._7_c02207{width:7.488000pt;}
._3_c02207{width:9.472000pt;}
._4_c02207{width:10.400000pt;}
._8_c02207{width:18.240000pt;}
.fs0_c02207{font-size:58.880000pt;}
.fs1_c02207{font-size:64.000000pt;}
.y0_c02207{bottom:0.000000pt;}
.yf_c02207{bottom:3.680000pt;}
.yc_c02207{bottom:4.000000pt;}
.y3_c02207{bottom:4.160000pt;}
.yd_c02207{bottom:4.320000pt;}
.ya_c02207{bottom:4.640000pt;}
.y16_c02207{bottom:22.080000pt;}
.y15_c02207{bottom:22.400000pt;}
.y9_c02207{bottom:23.040000pt;}
.y2_c02207{bottom:37.152000pt;}
.y1_c02207{bottom:67.072000pt;}
.y26_c02207{bottom:340.866667pt;}
.y25_c02207{bottom:368.546667pt;}
.y24_c02207{bottom:396.066667pt;}
.y23_c02207{bottom:423.746667pt;}
.y22_c02207{bottom:451.266667pt;}
.y21_c02207{bottom:478.973333pt;}
.y20_c02207{bottom:506.493333pt;}
.y1f_c02207{bottom:534.173333pt;}
.y1e_c02207{bottom:561.693333pt;}
.y1d_c02207{bottom:580.253333pt;}
.y1c_c02207{bottom:598.653333pt;}
.y1b_c02207{bottom:617.053333pt;}
.y1a_c02207{bottom:635.453333pt;}
.y19_c02207{bottom:650.493333pt;}
.y18_c02207{bottom:669.693333pt;}
.y17_c02207{bottom:688.733333pt;}
.y14_c02207{bottom:707.813333pt;}
.y13_c02207{bottom:745.253333pt;}
.y12_c02207{bottom:764.293333pt;}
.y11_c02207{bottom:783.333333pt;}
.y10_c02207{bottom:802.373333pt;}
.ye_c02207{bottom:821.573333pt;}
.y8_c02207{bottom:840.613333pt;}
.yb_c02207{bottom:859.653333pt;}
.y7_c02207{bottom:891.813333pt;}
.y6_c02207{bottom:910.373333pt;}
.y5_c02207{bottom:928.773333pt;}
.y4_c02207{bottom:947.200000pt;}
.h5_c02207{height:18.400000pt;}
.h8_c02207{height:18.432000pt;}
.h2_c02207{height:20.000000pt;}
.h7_c02207{height:36.800000pt;}
.h4_c02207{height:37.440000pt;}
.h1_c02207{height:43.441250pt;}
.h9_c02207{height:57.375000pt;}
.h3_c02207{height:62.812500pt;}
.h6_c02207{height:64.500000pt;}
.h0_c02207{height:1056.000000pt;}
.w1_c02207{width:59.232000pt;}
.w4_c02207{width:70.240000pt;}
.w7_c02207{width:81.792000pt;}
.w5_c02207{width:83.872000pt;}
.w6_c02207{width:85.440000pt;}
.w2_c02207{width:226.266667pt;}
.w3_c02207{width:252.386667pt;}
.w0_c02207{width:816.000000pt;}
.x0_c02207{left:0.000000pt;}
.xe_c02207{left:7.040000pt;}
.x11_c02207{left:13.760000pt;}
.x3_c02207{left:14.720000pt;}
.xf_c02207{left:16.160000pt;}
.x13_c02207{left:19.040000pt;}
.x20_c02207{left:20.480000pt;}
.x1c_c02207{left:22.880000pt;}
.x17_c02207{left:31.040000pt;}
.xd_c02207{left:35.040000pt;}
.x16_c02207{left:36.800000pt;}
.x15_c02207{left:37.920000pt;}
.x1f_c02207{left:40.800000pt;}
.x1e_c02207{left:41.920000pt;}
.x18_c02207{left:54.720000pt;}
.x1d_c02207{left:61.920000pt;}
.x1a_c02207{left:64.480000pt;}
.x14_c02207{left:66.240000pt;}
.x1b_c02207{left:68.480000pt;}
.x19_c02207{left:70.720000pt;}
.x22_c02207{left:85.120000pt;}
.x9_c02207{left:91.680000pt;}
.xb_c02207{left:92.826667pt;}
.x21_c02207{left:95.360000pt;}
.x1_c02207{left:113.472000pt;}
.x8_c02207{left:159.386667pt;}
.x23_c02207{left:166.266667pt;}
.x5_c02207{left:270.466667pt;}
.x6_c02207{left:312.706667pt;}
.xa_c02207{left:386.306667pt;}
.x4_c02207{left:395.266667pt;}
.x7_c02207{left:434.466667pt;}
.x10_c02207{left:470.813333pt;}
.x12_c02207{left:556.893333pt;}
.xc_c02207{left:639.333333pt;}
.x2_c02207{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02208 {
    display:none;
  }
  .loading-indicator_c02208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02208 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02208 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02208" -> "#page-container .classname_c02208")
 */
.pf_c02208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02208 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02208 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02208 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02208 {overflow:visible;}
  }
}
.c_c02208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02208 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02208:after { /* webkit #35443 */
  content: '';
}
.t_c02208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02208 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02208 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02208 { /* info for Javascript */
  display:none;
}
.l_c02208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02208:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02208 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02208.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02208;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff1_c02208{font-family:ff1_c02208;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02208;src:url('chunks/assets/font_a8d9e34bcae16e2df5f96e06.woff2')format("woff");}.ff2_c02208{font-family:ff2_c02208;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:ff3_c02208;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02208{font-family:ff3_c02208;line-height:1.311035;font-style:normal;font-weight: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_c02208;src:url('chunks/assets/font_979da4bc234d2a8f044f44db.woff2')format("woff");}.ff4_c02208{font-family:ff4_c02208;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02208{vertical-align:0.000000px;}
.ls0_c02208{letter-spacing:0.000000px;}
.sc__c02208{text-shadow:none;}
.sc0_c02208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02208{-webkit-text-stroke:0px transparent;}
.sc0_c02208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02208{word-spacing:-18.000000px;}
.ws1_c02208{word-spacing:0.000000px;}
._0_c02208{margin-left:-1.152000px;}
._1_c02208{width:1.488000px;}
._2_c02208{width:2.964000px;}
._5_c02208{width:4.968000px;}
._8_c02208{width:6.552000px;}
._9_c02208{width:9.360000px;}
._3_c02208{width:10.656000px;}
._4_c02208{width:11.700000px;}
._a_c02208{width:19.224000px;}
._6_c02208{width:21.960000px;}
._7_c02208{width:22.968000px;}
.fc1_c02208{color:rgb(192,80,77);}
.fc3_c02208{color:rgb(255,255,255);}
.fc2_c02208{color:rgb(17,17,17);}
.fc0_c02208{color:rgb(0,0,0);}
.fs0_c02208{font-size:66.240000px;}
.fs1_c02208{font-size:72.000000px;}
.y0_c02208{bottom:0.000000px;}
.yf_c02208{bottom:4.140000px;}
.yc_c02208{bottom:4.500000px;}
.y3_c02208{bottom:4.680000px;}
.yd_c02208{bottom:4.860000px;}
.ya_c02208{bottom:5.220000px;}
.y16_c02208{bottom:24.840000px;}
.y15_c02208{bottom:25.200000px;}
.y9_c02208{bottom:25.920000px;}
.y2_c02208{bottom:41.796000px;}
.y1_c02208{bottom:75.456000px;}
.y28_c02208{bottom:321.375000px;}
.y27_c02208{bottom:352.515000px;}
.y26_c02208{bottom:383.475000px;}
.y25_c02208{bottom:414.615000px;}
.y24_c02208{bottom:445.575000px;}
.y23_c02208{bottom:476.715000px;}
.y22_c02208{bottom:507.675000px;}
.y21_c02208{bottom:538.845000px;}
.y20_c02208{bottom:569.805000px;}
.y1f_c02208{bottom:600.945000px;}
.y1e_c02208{bottom:631.905000px;}
.y1d_c02208{bottom:652.785000px;}
.y1c_c02208{bottom:673.485000px;}
.y1b_c02208{bottom:694.185000px;}
.y1a_c02208{bottom:714.885000px;}
.y19_c02208{bottom:731.805000px;}
.y18_c02208{bottom:753.405000px;}
.y17_c02208{bottom:774.825000px;}
.y14_c02208{bottom:796.290000px;}
.y13_c02208{bottom:838.410000px;}
.y12_c02208{bottom:859.830000px;}
.y11_c02208{bottom:881.250000px;}
.y10_c02208{bottom:902.670000px;}
.ye_c02208{bottom:924.270000px;}
.y8_c02208{bottom:945.690000px;}
.yb_c02208{bottom:967.110000px;}
.y7_c02208{bottom:1003.290000px;}
.y6_c02208{bottom:1024.170000px;}
.y5_c02208{bottom:1044.870000px;}
.y4_c02208{bottom:1065.600000px;}
.h5_c02208{height:20.700000px;}
.h8_c02208{height:20.736000px;}
.h2_c02208{height:22.500000px;}
.h7_c02208{height:41.400000px;}
.h4_c02208{height:42.120000px;}
.h1_c02208{height:48.871406px;}
.h9_c02208{height:64.546875px;}
.h3_c02208{height:70.664062px;}
.h6_c02208{height:72.562500px;}
.h0_c02208{height:1188.000000px;}
.w1_c02208{width:66.636000px;}
.w4_c02208{width:79.020000px;}
.w7_c02208{width:92.016000px;}
.w5_c02208{width:94.356000px;}
.w6_c02208{width:96.120000px;}
.w2_c02208{width:254.550000px;}
.w3_c02208{width:283.935000px;}
.w0_c02208{width:918.000000px;}
.x0_c02208{left:0.000000px;}
.xe_c02208{left:7.920000px;}
.x11_c02208{left:15.480000px;}
.x3_c02208{left:16.560000px;}
.xf_c02208{left:18.180000px;}
.x13_c02208{left:21.420000px;}
.x20_c02208{left:23.040000px;}
.x1c_c02208{left:25.740000px;}
.x17_c02208{left:34.920000px;}
.xd_c02208{left:39.420000px;}
.x16_c02208{left:41.400000px;}
.x15_c02208{left:42.660000px;}
.x1f_c02208{left:45.900000px;}
.x1e_c02208{left:47.160000px;}
.x18_c02208{left:61.560000px;}
.x1d_c02208{left:69.660000px;}
.x1a_c02208{left:72.540000px;}
.x14_c02208{left:74.520000px;}
.x1b_c02208{left:77.040000px;}
.x19_c02208{left:79.560000px;}
.x22_c02208{left:95.760000px;}
.x9_c02208{left:103.140000px;}
.xb_c02208{left:104.430000px;}
.x21_c02208{left:107.280000px;}
.x1_c02208{left:127.656000px;}
.x8_c02208{left:179.310000px;}
.x23_c02208{left:187.050000px;}
.x5_c02208{left:304.275000px;}
.x6_c02208{left:351.795000px;}
.xa_c02208{left:434.595000px;}
.x4_c02208{left:444.675000px;}
.x7_c02208{left:488.775000px;}
.x10_c02208{left:529.665000px;}
.x12_c02208{left:626.505000px;}
.xc_c02208{left:719.250000px;}
.x2_c02208{left:820.950000px;}
@media print{
.v0_c02208{vertical-align:0.000000pt;}
.ls0_c02208{letter-spacing:0.000000pt;}
.ws0_c02208{word-spacing:-16.000000pt;}
.ws1_c02208{word-spacing:0.000000pt;}
._0_c02208{margin-left:-1.024000pt;}
._1_c02208{width:1.322667pt;}
._2_c02208{width:2.634667pt;}
._5_c02208{width:4.416000pt;}
._8_c02208{width:5.824000pt;}
._9_c02208{width:8.320000pt;}
._3_c02208{width:9.472000pt;}
._4_c02208{width:10.400000pt;}
._a_c02208{width:17.088000pt;}
._6_c02208{width:19.520000pt;}
._7_c02208{width:20.416000pt;}
.fs0_c02208{font-size:58.880000pt;}
.fs1_c02208{font-size:64.000000pt;}
.y0_c02208{bottom:0.000000pt;}
.yf_c02208{bottom:3.680000pt;}
.yc_c02208{bottom:4.000000pt;}
.y3_c02208{bottom:4.160000pt;}
.yd_c02208{bottom:4.320000pt;}
.ya_c02208{bottom:4.640000pt;}
.y16_c02208{bottom:22.080000pt;}
.y15_c02208{bottom:22.400000pt;}
.y9_c02208{bottom:23.040000pt;}
.y2_c02208{bottom:37.152000pt;}
.y1_c02208{bottom:67.072000pt;}
.y28_c02208{bottom:285.666667pt;}
.y27_c02208{bottom:313.346667pt;}
.y26_c02208{bottom:340.866667pt;}
.y25_c02208{bottom:368.546667pt;}
.y24_c02208{bottom:396.066667pt;}
.y23_c02208{bottom:423.746667pt;}
.y22_c02208{bottom:451.266667pt;}
.y21_c02208{bottom:478.973333pt;}
.y20_c02208{bottom:506.493333pt;}
.y1f_c02208{bottom:534.173333pt;}
.y1e_c02208{bottom:561.693333pt;}
.y1d_c02208{bottom:580.253333pt;}
.y1c_c02208{bottom:598.653333pt;}
.y1b_c02208{bottom:617.053333pt;}
.y1a_c02208{bottom:635.453333pt;}
.y19_c02208{bottom:650.493333pt;}
.y18_c02208{bottom:669.693333pt;}
.y17_c02208{bottom:688.733333pt;}
.y14_c02208{bottom:707.813333pt;}
.y13_c02208{bottom:745.253333pt;}
.y12_c02208{bottom:764.293333pt;}
.y11_c02208{bottom:783.333333pt;}
.y10_c02208{bottom:802.373333pt;}
.ye_c02208{bottom:821.573333pt;}
.y8_c02208{bottom:840.613333pt;}
.yb_c02208{bottom:859.653333pt;}
.y7_c02208{bottom:891.813333pt;}
.y6_c02208{bottom:910.373333pt;}
.y5_c02208{bottom:928.773333pt;}
.y4_c02208{bottom:947.200000pt;}
.h5_c02208{height:18.400000pt;}
.h8_c02208{height:18.432000pt;}
.h2_c02208{height:20.000000pt;}
.h7_c02208{height:36.800000pt;}
.h4_c02208{height:37.440000pt;}
.h1_c02208{height:43.441250pt;}
.h9_c02208{height:57.375000pt;}
.h3_c02208{height:62.812500pt;}
.h6_c02208{height:64.500000pt;}
.h0_c02208{height:1056.000000pt;}
.w1_c02208{width:59.232000pt;}
.w4_c02208{width:70.240000pt;}
.w7_c02208{width:81.792000pt;}
.w5_c02208{width:83.872000pt;}
.w6_c02208{width:85.440000pt;}
.w2_c02208{width:226.266667pt;}
.w3_c02208{width:252.386667pt;}
.w0_c02208{width:816.000000pt;}
.x0_c02208{left:0.000000pt;}
.xe_c02208{left:7.040000pt;}
.x11_c02208{left:13.760000pt;}
.x3_c02208{left:14.720000pt;}
.xf_c02208{left:16.160000pt;}
.x13_c02208{left:19.040000pt;}
.x20_c02208{left:20.480000pt;}
.x1c_c02208{left:22.880000pt;}
.x17_c02208{left:31.040000pt;}
.xd_c02208{left:35.040000pt;}
.x16_c02208{left:36.800000pt;}
.x15_c02208{left:37.920000pt;}
.x1f_c02208{left:40.800000pt;}
.x1e_c02208{left:41.920000pt;}
.x18_c02208{left:54.720000pt;}
.x1d_c02208{left:61.920000pt;}
.x1a_c02208{left:64.480000pt;}
.x14_c02208{left:66.240000pt;}
.x1b_c02208{left:68.480000pt;}
.x19_c02208{left:70.720000pt;}
.x22_c02208{left:85.120000pt;}
.x9_c02208{left:91.680000pt;}
.xb_c02208{left:92.826667pt;}
.x21_c02208{left:95.360000pt;}
.x1_c02208{left:113.472000pt;}
.x8_c02208{left:159.386667pt;}
.x23_c02208{left:166.266667pt;}
.x5_c02208{left:270.466667pt;}
.x6_c02208{left:312.706667pt;}
.xa_c02208{left:386.306667pt;}
.x4_c02208{left:395.266667pt;}
.x7_c02208{left:434.466667pt;}
.x10_c02208{left:470.813333pt;}
.x12_c02208{left:556.893333pt;}
.xc_c02208{left:639.333333pt;}
.x2_c02208{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02209 {
    display:none;
  }
  .loading-indicator_c02209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02209 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02209 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02209" -> "#page-container .classname_c02209")
 */
.pf_c02209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02209 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02209 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02209 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02209 {overflow:visible;}
  }
}
.c_c02209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02209 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02209:after { /* webkit #35443 */
  content: '';
}
.t_c02209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02209 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02209 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02209 { /* info for Javascript */
  display:none;
}
.l_c02209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02209:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02209 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02209.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02209;src:url('chunks/assets/font_12a0079209aaa9bfa61662db.woff2')format("woff");}.ff1_c02209{font-family:ff1_c02209;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02209;src:url('chunks/assets/font_657596889916a75c83792590.woff2')format("woff");}.ff2_c02209{font-family:ff2_c02209;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:ff3_c02209;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02209{font-family:ff3_c02209;line-height:1.311035;font-style:normal;font-weight: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_c02209;src:url('chunks/assets/font_04b2f87ced6ef95e0e737259.woff2')format("woff");}.ff4_c02209{font-family:ff4_c02209;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02209{vertical-align:0.000000px;}
.ls0_c02209{letter-spacing:0.000000px;}
.sc__c02209{text-shadow:none;}
.sc0_c02209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02209{-webkit-text-stroke:0px transparent;}
.sc0_c02209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02209{word-spacing:-18.000000px;}
.ws1_c02209{word-spacing:0.000000px;}
._0_c02209{margin-left:-1.368000px;}
._1_c02209{width:1.056000px;}
._2_c02209{width:2.184000px;}
._6_c02209{width:3.816000px;}
._5_c02209{width:4.968000px;}
._3_c02209{width:7.056000px;}
._4_c02209{width:8.172000px;}
._7_c02209{width:12.168000px;}
._8_c02209{width:13.248000px;}
.fc1_c02209{color:rgb(192,80,77);}
.fc3_c02209{color:rgb(255,255,255);}
.fc2_c02209{color:rgb(17,17,17);}
.fc0_c02209{color:rgb(0,0,0);}
.fs0_c02209{font-size:66.240000px;}
.fs1_c02209{font-size:72.000000px;}
.y0_c02209{bottom:0.000000px;}
.yf_c02209{bottom:4.140000px;}
.yc_c02209{bottom:4.500000px;}
.y3_c02209{bottom:4.680000px;}
.yd_c02209{bottom:4.860000px;}
.ya_c02209{bottom:5.220000px;}
.y16_c02209{bottom:24.840000px;}
.y15_c02209{bottom:25.200000px;}
.y9_c02209{bottom:25.920000px;}
.y2_c02209{bottom:41.796000px;}
.y1_c02209{bottom:75.456000px;}
.y26_c02209{bottom:383.475000px;}
.y25_c02209{bottom:414.615000px;}
.y24_c02209{bottom:445.575000px;}
.y23_c02209{bottom:476.715000px;}
.y22_c02209{bottom:507.675000px;}
.y21_c02209{bottom:538.845000px;}
.y20_c02209{bottom:569.805000px;}
.y1f_c02209{bottom:600.945000px;}
.y1e_c02209{bottom:631.905000px;}
.y1d_c02209{bottom:652.785000px;}
.y1c_c02209{bottom:673.485000px;}
.y1b_c02209{bottom:694.185000px;}
.y1a_c02209{bottom:714.885000px;}
.y19_c02209{bottom:731.805000px;}
.y18_c02209{bottom:753.405000px;}
.y17_c02209{bottom:774.825000px;}
.y14_c02209{bottom:796.290000px;}
.y13_c02209{bottom:838.410000px;}
.y12_c02209{bottom:859.830000px;}
.y11_c02209{bottom:881.250000px;}
.y10_c02209{bottom:902.670000px;}
.ye_c02209{bottom:924.270000px;}
.y8_c02209{bottom:945.690000px;}
.yb_c02209{bottom:967.110000px;}
.y7_c02209{bottom:1003.290000px;}
.y6_c02209{bottom:1024.170000px;}
.y5_c02209{bottom:1044.870000px;}
.y4_c02209{bottom:1065.600000px;}
.h5_c02209{height:20.700000px;}
.h8_c02209{height:20.736000px;}
.h2_c02209{height:22.500000px;}
.h7_c02209{height:41.400000px;}
.h4_c02209{height:42.120000px;}
.h1_c02209{height:48.871406px;}
.h9_c02209{height:64.546875px;}
.h3_c02209{height:70.664062px;}
.h6_c02209{height:72.562500px;}
.h0_c02209{height:1188.000000px;}
.w1_c02209{width:66.636000px;}
.w4_c02209{width:79.020000px;}
.w7_c02209{width:92.016000px;}
.w5_c02209{width:94.356000px;}
.w6_c02209{width:96.120000px;}
.w2_c02209{width:254.550000px;}
.w3_c02209{width:283.935000px;}
.w0_c02209{width:918.000000px;}
.x0_c02209{left:0.000000px;}
.xe_c02209{left:7.920000px;}
.x11_c02209{left:15.480000px;}
.x3_c02209{left:16.560000px;}
.xf_c02209{left:18.180000px;}
.x13_c02209{left:21.420000px;}
.x20_c02209{left:23.040000px;}
.x1c_c02209{left:25.740000px;}
.x17_c02209{left:34.920000px;}
.xd_c02209{left:39.420000px;}
.x16_c02209{left:41.400000px;}
.x15_c02209{left:42.660000px;}
.x1f_c02209{left:45.900000px;}
.x1e_c02209{left:47.160000px;}
.x18_c02209{left:61.560000px;}
.x1d_c02209{left:69.660000px;}
.x1a_c02209{left:72.540000px;}
.x14_c02209{left:74.520000px;}
.x1b_c02209{left:77.040000px;}
.x19_c02209{left:79.560000px;}
.x22_c02209{left:95.760000px;}
.x9_c02209{left:103.140000px;}
.xb_c02209{left:104.430000px;}
.x21_c02209{left:107.280000px;}
.x1_c02209{left:127.656000px;}
.x8_c02209{left:179.310000px;}
.x23_c02209{left:187.050000px;}
.x5_c02209{left:298.875000px;}
.x6_c02209{left:351.795000px;}
.xa_c02209{left:434.595000px;}
.x4_c02209{left:444.675000px;}
.x7_c02209{left:488.775000px;}
.x10_c02209{left:529.665000px;}
.x12_c02209{left:626.505000px;}
.xc_c02209{left:719.250000px;}
.x2_c02209{left:820.950000px;}
@media print{
.v0_c02209{vertical-align:0.000000pt;}
.ls0_c02209{letter-spacing:0.000000pt;}
.ws0_c02209{word-spacing:-16.000000pt;}
.ws1_c02209{word-spacing:0.000000pt;}
._0_c02209{margin-left:-1.216000pt;}
._1_c02209{width:0.938667pt;}
._2_c02209{width:1.941333pt;}
._6_c02209{width:3.392000pt;}
._5_c02209{width:4.416000pt;}
._3_c02209{width:6.272000pt;}
._4_c02209{width:7.264000pt;}
._7_c02209{width:10.816000pt;}
._8_c02209{width:11.776000pt;}
.fs0_c02209{font-size:58.880000pt;}
.fs1_c02209{font-size:64.000000pt;}
.y0_c02209{bottom:0.000000pt;}
.yf_c02209{bottom:3.680000pt;}
.yc_c02209{bottom:4.000000pt;}
.y3_c02209{bottom:4.160000pt;}
.yd_c02209{bottom:4.320000pt;}
.ya_c02209{bottom:4.640000pt;}
.y16_c02209{bottom:22.080000pt;}
.y15_c02209{bottom:22.400000pt;}
.y9_c02209{bottom:23.040000pt;}
.y2_c02209{bottom:37.152000pt;}
.y1_c02209{bottom:67.072000pt;}
.y26_c02209{bottom:340.866667pt;}
.y25_c02209{bottom:368.546667pt;}
.y24_c02209{bottom:396.066667pt;}
.y23_c02209{bottom:423.746667pt;}
.y22_c02209{bottom:451.266667pt;}
.y21_c02209{bottom:478.973333pt;}
.y20_c02209{bottom:506.493333pt;}
.y1f_c02209{bottom:534.173333pt;}
.y1e_c02209{bottom:561.693333pt;}
.y1d_c02209{bottom:580.253333pt;}
.y1c_c02209{bottom:598.653333pt;}
.y1b_c02209{bottom:617.053333pt;}
.y1a_c02209{bottom:635.453333pt;}
.y19_c02209{bottom:650.493333pt;}
.y18_c02209{bottom:669.693333pt;}
.y17_c02209{bottom:688.733333pt;}
.y14_c02209{bottom:707.813333pt;}
.y13_c02209{bottom:745.253333pt;}
.y12_c02209{bottom:764.293333pt;}
.y11_c02209{bottom:783.333333pt;}
.y10_c02209{bottom:802.373333pt;}
.ye_c02209{bottom:821.573333pt;}
.y8_c02209{bottom:840.613333pt;}
.yb_c02209{bottom:859.653333pt;}
.y7_c02209{bottom:891.813333pt;}
.y6_c02209{bottom:910.373333pt;}
.y5_c02209{bottom:928.773333pt;}
.y4_c02209{bottom:947.200000pt;}
.h5_c02209{height:18.400000pt;}
.h8_c02209{height:18.432000pt;}
.h2_c02209{height:20.000000pt;}
.h7_c02209{height:36.800000pt;}
.h4_c02209{height:37.440000pt;}
.h1_c02209{height:43.441250pt;}
.h9_c02209{height:57.375000pt;}
.h3_c02209{height:62.812500pt;}
.h6_c02209{height:64.500000pt;}
.h0_c02209{height:1056.000000pt;}
.w1_c02209{width:59.232000pt;}
.w4_c02209{width:70.240000pt;}
.w7_c02209{width:81.792000pt;}
.w5_c02209{width:83.872000pt;}
.w6_c02209{width:85.440000pt;}
.w2_c02209{width:226.266667pt;}
.w3_c02209{width:252.386667pt;}
.w0_c02209{width:816.000000pt;}
.x0_c02209{left:0.000000pt;}
.xe_c02209{left:7.040000pt;}
.x11_c02209{left:13.760000pt;}
.x3_c02209{left:14.720000pt;}
.xf_c02209{left:16.160000pt;}
.x13_c02209{left:19.040000pt;}
.x20_c02209{left:20.480000pt;}
.x1c_c02209{left:22.880000pt;}
.x17_c02209{left:31.040000pt;}
.xd_c02209{left:35.040000pt;}
.x16_c02209{left:36.800000pt;}
.x15_c02209{left:37.920000pt;}
.x1f_c02209{left:40.800000pt;}
.x1e_c02209{left:41.920000pt;}
.x18_c02209{left:54.720000pt;}
.x1d_c02209{left:61.920000pt;}
.x1a_c02209{left:64.480000pt;}
.x14_c02209{left:66.240000pt;}
.x1b_c02209{left:68.480000pt;}
.x19_c02209{left:70.720000pt;}
.x22_c02209{left:85.120000pt;}
.x9_c02209{left:91.680000pt;}
.xb_c02209{left:92.826667pt;}
.x21_c02209{left:95.360000pt;}
.x1_c02209{left:113.472000pt;}
.x8_c02209{left:159.386667pt;}
.x23_c02209{left:166.266667pt;}
.x5_c02209{left:265.666667pt;}
.x6_c02209{left:312.706667pt;}
.xa_c02209{left:386.306667pt;}
.x4_c02209{left:395.266667pt;}
.x7_c02209{left:434.466667pt;}
.x10_c02209{left:470.813333pt;}
.x12_c02209{left:556.893333pt;}
.xc_c02209{left:639.333333pt;}
.x2_c02209{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02210 {
    display:none;
  }
  .loading-indicator_c02210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02210 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02210 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02210" -> "#page-container .classname_c02210")
 */
.pf_c02210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02210 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02210 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02210 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02210 {overflow:visible;}
  }
}
.c_c02210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02210 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02210:after { /* webkit #35443 */
  content: '';
}
.t_c02210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02210 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02210 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02210 { /* info for Javascript */
  display:none;
}
.l_c02210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02210:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02210 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02210.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02210;src:url('chunks/assets/font_bb01a55bf8bdc0a089d519e3.woff2')format("woff");}.ff1_c02210{font-family:ff1_c02210;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02210;src:url('chunks/assets/font_b38682da4826861497003e8b.woff2')format("woff");}.ff2_c02210{font-family:ff2_c02210;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:ff3_c02210;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02210{font-family:ff3_c02210;line-height:1.311035;font-style:normal;font-weight: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_c02210;src:url('chunks/assets/font_300b3aea84f3c6e0a3bb3c85.woff2')format("woff");}.ff4_c02210{font-family:ff4_c02210;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02210{vertical-align:0.000000px;}
.ls1_c02210{letter-spacing:0.000000px;}
.ls0_c02210{letter-spacing:7.200000px;}
.sc__c02210{text-shadow:none;}
.sc0_c02210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02210{-webkit-text-stroke:0px transparent;}
.sc0_c02210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02210{word-spacing:-18.000000px;}
.ws1_c02210{word-spacing:0.000000px;}
._0_c02210{margin-left:-1.152000px;}
._1_c02210{width:1.056000px;}
._2_c02210{width:2.184000px;}
._5_c02210{width:3.672000px;}
._4_c02210{width:4.968000px;}
._6_c02210{width:6.516000px;}
._3_c02210{width:7.776000px;}
._7_c02210{width:9.912000px;}
._9_c02210{width:23.832000px;}
._8_c02210{width:24.984000px;}
.fc1_c02210{color:rgb(192,80,77);}
.fc3_c02210{color:rgb(255,255,255);}
.fc2_c02210{color:rgb(17,17,17);}
.fc0_c02210{color:rgb(0,0,0);}
.fs0_c02210{font-size:66.240000px;}
.fs1_c02210{font-size:72.000000px;}
.y0_c02210{bottom:0.000000px;}
.yf_c02210{bottom:4.140000px;}
.yc_c02210{bottom:4.500000px;}
.y3_c02210{bottom:4.680000px;}
.yd_c02210{bottom:4.860000px;}
.ya_c02210{bottom:5.220000px;}
.y16_c02210{bottom:24.840000px;}
.y15_c02210{bottom:25.200000px;}
.y9_c02210{bottom:25.920000px;}
.y2_c02210{bottom:41.796000px;}
.y1_c02210{bottom:75.456000px;}
.y2a_c02210{bottom:259.230000px;}
.y29_c02210{bottom:290.415000px;}
.y28_c02210{bottom:321.375000px;}
.y27_c02210{bottom:352.515000px;}
.y26_c02210{bottom:383.475000px;}
.y25_c02210{bottom:414.615000px;}
.y24_c02210{bottom:445.575000px;}
.y23_c02210{bottom:476.715000px;}
.y22_c02210{bottom:507.675000px;}
.y21_c02210{bottom:538.845000px;}
.y20_c02210{bottom:569.805000px;}
.y1f_c02210{bottom:600.945000px;}
.y1e_c02210{bottom:631.905000px;}
.y1d_c02210{bottom:652.785000px;}
.y1c_c02210{bottom:673.485000px;}
.y1b_c02210{bottom:694.185000px;}
.y1a_c02210{bottom:714.885000px;}
.y19_c02210{bottom:731.805000px;}
.y18_c02210{bottom:753.405000px;}
.y17_c02210{bottom:774.825000px;}
.y14_c02210{bottom:796.290000px;}
.y13_c02210{bottom:838.410000px;}
.y12_c02210{bottom:859.830000px;}
.y11_c02210{bottom:881.250000px;}
.y10_c02210{bottom:902.670000px;}
.ye_c02210{bottom:924.270000px;}
.y8_c02210{bottom:945.690000px;}
.yb_c02210{bottom:967.110000px;}
.y7_c02210{bottom:1003.290000px;}
.y6_c02210{bottom:1024.170000px;}
.y5_c02210{bottom:1044.870000px;}
.y4_c02210{bottom:1065.600000px;}
.h5_c02210{height:20.700000px;}
.h8_c02210{height:20.736000px;}
.h2_c02210{height:22.500000px;}
.h7_c02210{height:41.400000px;}
.h4_c02210{height:42.120000px;}
.h1_c02210{height:48.871406px;}
.h9_c02210{height:64.546875px;}
.h3_c02210{height:70.664062px;}
.h6_c02210{height:72.562500px;}
.h0_c02210{height:1188.000000px;}
.w1_c02210{width:66.636000px;}
.w4_c02210{width:79.020000px;}
.w7_c02210{width:92.016000px;}
.w5_c02210{width:94.356000px;}
.w6_c02210{width:96.120000px;}
.w2_c02210{width:254.550000px;}
.w3_c02210{width:283.935000px;}
.w0_c02210{width:918.000000px;}
.x0_c02210{left:0.000000px;}
.xe_c02210{left:7.920000px;}
.x11_c02210{left:15.480000px;}
.x3_c02210{left:16.560000px;}
.xf_c02210{left:18.180000px;}
.x13_c02210{left:21.420000px;}
.x20_c02210{left:23.040000px;}
.x1c_c02210{left:25.740000px;}
.x17_c02210{left:34.920000px;}
.xd_c02210{left:39.420000px;}
.x16_c02210{left:41.400000px;}
.x15_c02210{left:42.660000px;}
.x1f_c02210{left:45.900000px;}
.x1e_c02210{left:47.160000px;}
.x18_c02210{left:61.560000px;}
.x1d_c02210{left:69.660000px;}
.x1a_c02210{left:72.540000px;}
.x14_c02210{left:74.520000px;}
.x1b_c02210{left:77.040000px;}
.x19_c02210{left:79.560000px;}
.x22_c02210{left:95.760000px;}
.x9_c02210{left:103.140000px;}
.xb_c02210{left:104.430000px;}
.x21_c02210{left:107.280000px;}
.x1_c02210{left:127.656000px;}
.x8_c02210{left:179.310000px;}
.x23_c02210{left:187.050000px;}
.x5_c02210{left:299.955000px;}
.x6_c02210{left:351.795000px;}
.xa_c02210{left:434.595000px;}
.x4_c02210{left:444.675000px;}
.x7_c02210{left:488.775000px;}
.x10_c02210{left:529.665000px;}
.x12_c02210{left:626.505000px;}
.xc_c02210{left:719.250000px;}
.x2_c02210{left:820.950000px;}
@media print{
.v0_c02210{vertical-align:0.000000pt;}
.ls1_c02210{letter-spacing:0.000000pt;}
.ls0_c02210{letter-spacing:6.400000pt;}
.ws0_c02210{word-spacing:-16.000000pt;}
.ws1_c02210{word-spacing:0.000000pt;}
._0_c02210{margin-left:-1.024000pt;}
._1_c02210{width:0.938667pt;}
._2_c02210{width:1.941333pt;}
._5_c02210{width:3.264000pt;}
._4_c02210{width:4.416000pt;}
._6_c02210{width:5.792000pt;}
._3_c02210{width:6.912000pt;}
._7_c02210{width:8.810667pt;}
._9_c02210{width:21.184000pt;}
._8_c02210{width:22.208000pt;}
.fs0_c02210{font-size:58.880000pt;}
.fs1_c02210{font-size:64.000000pt;}
.y0_c02210{bottom:0.000000pt;}
.yf_c02210{bottom:3.680000pt;}
.yc_c02210{bottom:4.000000pt;}
.y3_c02210{bottom:4.160000pt;}
.yd_c02210{bottom:4.320000pt;}
.ya_c02210{bottom:4.640000pt;}
.y16_c02210{bottom:22.080000pt;}
.y15_c02210{bottom:22.400000pt;}
.y9_c02210{bottom:23.040000pt;}
.y2_c02210{bottom:37.152000pt;}
.y1_c02210{bottom:67.072000pt;}
.y2a_c02210{bottom:230.426667pt;}
.y29_c02210{bottom:258.146667pt;}
.y28_c02210{bottom:285.666667pt;}
.y27_c02210{bottom:313.346667pt;}
.y26_c02210{bottom:340.866667pt;}
.y25_c02210{bottom:368.546667pt;}
.y24_c02210{bottom:396.066667pt;}
.y23_c02210{bottom:423.746667pt;}
.y22_c02210{bottom:451.266667pt;}
.y21_c02210{bottom:478.973333pt;}
.y20_c02210{bottom:506.493333pt;}
.y1f_c02210{bottom:534.173333pt;}
.y1e_c02210{bottom:561.693333pt;}
.y1d_c02210{bottom:580.253333pt;}
.y1c_c02210{bottom:598.653333pt;}
.y1b_c02210{bottom:617.053333pt;}
.y1a_c02210{bottom:635.453333pt;}
.y19_c02210{bottom:650.493333pt;}
.y18_c02210{bottom:669.693333pt;}
.y17_c02210{bottom:688.733333pt;}
.y14_c02210{bottom:707.813333pt;}
.y13_c02210{bottom:745.253333pt;}
.y12_c02210{bottom:764.293333pt;}
.y11_c02210{bottom:783.333333pt;}
.y10_c02210{bottom:802.373333pt;}
.ye_c02210{bottom:821.573333pt;}
.y8_c02210{bottom:840.613333pt;}
.yb_c02210{bottom:859.653333pt;}
.y7_c02210{bottom:891.813333pt;}
.y6_c02210{bottom:910.373333pt;}
.y5_c02210{bottom:928.773333pt;}
.y4_c02210{bottom:947.200000pt;}
.h5_c02210{height:18.400000pt;}
.h8_c02210{height:18.432000pt;}
.h2_c02210{height:20.000000pt;}
.h7_c02210{height:36.800000pt;}
.h4_c02210{height:37.440000pt;}
.h1_c02210{height:43.441250pt;}
.h9_c02210{height:57.375000pt;}
.h3_c02210{height:62.812500pt;}
.h6_c02210{height:64.500000pt;}
.h0_c02210{height:1056.000000pt;}
.w1_c02210{width:59.232000pt;}
.w4_c02210{width:70.240000pt;}
.w7_c02210{width:81.792000pt;}
.w5_c02210{width:83.872000pt;}
.w6_c02210{width:85.440000pt;}
.w2_c02210{width:226.266667pt;}
.w3_c02210{width:252.386667pt;}
.w0_c02210{width:816.000000pt;}
.x0_c02210{left:0.000000pt;}
.xe_c02210{left:7.040000pt;}
.x11_c02210{left:13.760000pt;}
.x3_c02210{left:14.720000pt;}
.xf_c02210{left:16.160000pt;}
.x13_c02210{left:19.040000pt;}
.x20_c02210{left:20.480000pt;}
.x1c_c02210{left:22.880000pt;}
.x17_c02210{left:31.040000pt;}
.xd_c02210{left:35.040000pt;}
.x16_c02210{left:36.800000pt;}
.x15_c02210{left:37.920000pt;}
.x1f_c02210{left:40.800000pt;}
.x1e_c02210{left:41.920000pt;}
.x18_c02210{left:54.720000pt;}
.x1d_c02210{left:61.920000pt;}
.x1a_c02210{left:64.480000pt;}
.x14_c02210{left:66.240000pt;}
.x1b_c02210{left:68.480000pt;}
.x19_c02210{left:70.720000pt;}
.x22_c02210{left:85.120000pt;}
.x9_c02210{left:91.680000pt;}
.xb_c02210{left:92.826667pt;}
.x21_c02210{left:95.360000pt;}
.x1_c02210{left:113.472000pt;}
.x8_c02210{left:159.386667pt;}
.x23_c02210{left:166.266667pt;}
.x5_c02210{left:266.626667pt;}
.x6_c02210{left:312.706667pt;}
.xa_c02210{left:386.306667pt;}
.x4_c02210{left:395.266667pt;}
.x7_c02210{left:434.466667pt;}
.x10_c02210{left:470.813333pt;}
.x12_c02210{left:556.893333pt;}
.xc_c02210{left:639.333333pt;}
.x2_c02210{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02211 {
    display:none;
  }
  .loading-indicator_c02211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02211 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02211 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02211" -> "#page-container .classname_c02211")
 */
.pf_c02211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02211 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02211 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02211 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02211 {overflow:visible;}
  }
}
.c_c02211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02211 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02211:after { /* webkit #35443 */
  content: '';
}
.t_c02211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02211 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02211 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02211 { /* info for Javascript */
  display:none;
}
.l_c02211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02211:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02211 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02211.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02211;src:url('chunks/assets/font_4b8f9dfaa719d92e24f86f91.woff2')format("woff");}.ff1_c02211{font-family:ff1_c02211;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02211;src:url('chunks/assets/font_7b04f14915821410e3bc5d21.woff2')format("woff");}.ff2_c02211{font-family:ff2_c02211;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:ff3_c02211;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02211{font-family:ff3_c02211;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02211{vertical-align:0.000000px;}
.ls0_c02211{letter-spacing:0.000000px;}
.sc__c02211{text-shadow:none;}
.sc0_c02211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02211{-webkit-text-stroke:0px transparent;}
.sc0_c02211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02211{word-spacing:-18.000000px;}
.ws1_c02211{word-spacing:0.000000px;}
._0_c02211{margin-left:-1.152000px;}
._1_c02211{width:1.092000px;}
._2_c02211{width:2.256000px;}
._4_c02211{width:3.528000px;}
._3_c02211{width:4.968000px;}
._c_c02211{width:7.344000px;}
._a_c02211{width:9.000000px;}
._b_c02211{width:10.140000px;}
._7_c02211{width:11.736000px;}
._6_c02211{width:12.744000px;}
._8_c02211{width:13.896000px;}
._9_c02211{width:16.920000px;}
._5_c02211{width:59.544000px;}
.fc1_c02211{color:rgb(192,80,77);}
.fc3_c02211{color:rgb(255,255,255);}
.fc2_c02211{color:rgb(17,17,17);}
.fc0_c02211{color:rgb(0,0,0);}
.fs0_c02211{font-size:66.240000px;}
.fs1_c02211{font-size:72.000000px;}
.y0_c02211{bottom:0.000000px;}
.yf_c02211{bottom:4.140000px;}
.yc_c02211{bottom:4.500000px;}
.y3_c02211{bottom:4.680000px;}
.yd_c02211{bottom:4.860000px;}
.ya_c02211{bottom:5.220000px;}
.y16_c02211{bottom:24.840000px;}
.y15_c02211{bottom:25.200000px;}
.y9_c02211{bottom:25.920000px;}
.y2_c02211{bottom:41.796000px;}
.y1_c02211{bottom:75.456000px;}
.y2d_c02211{bottom:166.170000px;}
.y2c_c02211{bottom:197.130000px;}
.y2b_c02211{bottom:228.270000px;}
.y2a_c02211{bottom:259.230000px;}
.y29_c02211{bottom:290.415000px;}
.y28_c02211{bottom:321.375000px;}
.y27_c02211{bottom:352.515000px;}
.y26_c02211{bottom:383.475000px;}
.y25_c02211{bottom:414.615000px;}
.y24_c02211{bottom:445.575000px;}
.y23_c02211{bottom:476.715000px;}
.y22_c02211{bottom:507.675000px;}
.y21_c02211{bottom:538.845000px;}
.y20_c02211{bottom:569.805000px;}
.y1f_c02211{bottom:600.945000px;}
.y1e_c02211{bottom:631.905000px;}
.y1d_c02211{bottom:652.785000px;}
.y1c_c02211{bottom:673.485000px;}
.y1b_c02211{bottom:694.185000px;}
.y1a_c02211{bottom:714.885000px;}
.y19_c02211{bottom:731.805000px;}
.y18_c02211{bottom:753.405000px;}
.y17_c02211{bottom:774.825000px;}
.y14_c02211{bottom:796.290000px;}
.y13_c02211{bottom:838.410000px;}
.y12_c02211{bottom:859.830000px;}
.y11_c02211{bottom:881.250000px;}
.y10_c02211{bottom:902.670000px;}
.ye_c02211{bottom:924.270000px;}
.y8_c02211{bottom:945.690000px;}
.yb_c02211{bottom:967.110000px;}
.y7_c02211{bottom:1003.290000px;}
.y6_c02211{bottom:1024.170000px;}
.y5_c02211{bottom:1044.870000px;}
.y4_c02211{bottom:1065.600000px;}
.h5_c02211{height:20.700000px;}
.h8_c02211{height:20.736000px;}
.h2_c02211{height:22.500000px;}
.h7_c02211{height:41.400000px;}
.h4_c02211{height:42.120000px;}
.h1_c02211{height:48.871406px;}
.h3_c02211{height:70.664062px;}
.h6_c02211{height:72.562500px;}
.h0_c02211{height:1188.000000px;}
.w1_c02211{width:66.636000px;}
.w4_c02211{width:79.020000px;}
.w7_c02211{width:92.016000px;}
.w5_c02211{width:94.356000px;}
.w6_c02211{width:96.120000px;}
.w2_c02211{width:254.550000px;}
.w3_c02211{width:283.935000px;}
.w0_c02211{width:918.000000px;}
.x0_c02211{left:0.000000px;}
.xe_c02211{left:7.920000px;}
.x11_c02211{left:15.480000px;}
.x3_c02211{left:16.560000px;}
.xf_c02211{left:18.180000px;}
.x13_c02211{left:21.420000px;}
.x20_c02211{left:23.040000px;}
.x1c_c02211{left:25.740000px;}
.x17_c02211{left:34.920000px;}
.xd_c02211{left:39.420000px;}
.x16_c02211{left:41.400000px;}
.x15_c02211{left:42.660000px;}
.x1f_c02211{left:45.900000px;}
.x1e_c02211{left:47.160000px;}
.x18_c02211{left:61.560000px;}
.x1d_c02211{left:69.660000px;}
.x1a_c02211{left:72.540000px;}
.x14_c02211{left:74.520000px;}
.x1b_c02211{left:77.040000px;}
.x19_c02211{left:79.560000px;}
.x22_c02211{left:95.760000px;}
.x9_c02211{left:103.140000px;}
.xb_c02211{left:104.430000px;}
.x21_c02211{left:107.280000px;}
.x1_c02211{left:127.656000px;}
.x24_c02211{left:163.650000px;}
.x8_c02211{left:179.310000px;}
.x23_c02211{left:187.050000px;}
.x5_c02211{left:288.750000px;}
.x6_c02211{left:351.795000px;}
.xa_c02211{left:434.595000px;}
.x4_c02211{left:444.675000px;}
.x7_c02211{left:488.775000px;}
.x10_c02211{left:529.665000px;}
.x12_c02211{left:626.505000px;}
.xc_c02211{left:719.250000px;}
.x2_c02211{left:820.950000px;}
@media print{
.v0_c02211{vertical-align:0.000000pt;}
.ls0_c02211{letter-spacing:0.000000pt;}
.ws0_c02211{word-spacing:-16.000000pt;}
.ws1_c02211{word-spacing:0.000000pt;}
._0_c02211{margin-left:-1.024000pt;}
._1_c02211{width:0.970667pt;}
._2_c02211{width:2.005333pt;}
._4_c02211{width:3.136000pt;}
._3_c02211{width:4.416000pt;}
._c_c02211{width:6.528000pt;}
._a_c02211{width:8.000000pt;}
._b_c02211{width:9.013333pt;}
._7_c02211{width:10.432000pt;}
._6_c02211{width:11.328000pt;}
._8_c02211{width:12.352000pt;}
._9_c02211{width:15.040000pt;}
._5_c02211{width:52.928000pt;}
.fs0_c02211{font-size:58.880000pt;}
.fs1_c02211{font-size:64.000000pt;}
.y0_c02211{bottom:0.000000pt;}
.yf_c02211{bottom:3.680000pt;}
.yc_c02211{bottom:4.000000pt;}
.y3_c02211{bottom:4.160000pt;}
.yd_c02211{bottom:4.320000pt;}
.ya_c02211{bottom:4.640000pt;}
.y16_c02211{bottom:22.080000pt;}
.y15_c02211{bottom:22.400000pt;}
.y9_c02211{bottom:23.040000pt;}
.y2_c02211{bottom:37.152000pt;}
.y1_c02211{bottom:67.072000pt;}
.y2d_c02211{bottom:147.706667pt;}
.y2c_c02211{bottom:175.226667pt;}
.y2b_c02211{bottom:202.906667pt;}
.y2a_c02211{bottom:230.426667pt;}
.y29_c02211{bottom:258.146667pt;}
.y28_c02211{bottom:285.666667pt;}
.y27_c02211{bottom:313.346667pt;}
.y26_c02211{bottom:340.866667pt;}
.y25_c02211{bottom:368.546667pt;}
.y24_c02211{bottom:396.066667pt;}
.y23_c02211{bottom:423.746667pt;}
.y22_c02211{bottom:451.266667pt;}
.y21_c02211{bottom:478.973333pt;}
.y20_c02211{bottom:506.493333pt;}
.y1f_c02211{bottom:534.173333pt;}
.y1e_c02211{bottom:561.693333pt;}
.y1d_c02211{bottom:580.253333pt;}
.y1c_c02211{bottom:598.653333pt;}
.y1b_c02211{bottom:617.053333pt;}
.y1a_c02211{bottom:635.453333pt;}
.y19_c02211{bottom:650.493333pt;}
.y18_c02211{bottom:669.693333pt;}
.y17_c02211{bottom:688.733333pt;}
.y14_c02211{bottom:707.813333pt;}
.y13_c02211{bottom:745.253333pt;}
.y12_c02211{bottom:764.293333pt;}
.y11_c02211{bottom:783.333333pt;}
.y10_c02211{bottom:802.373333pt;}
.ye_c02211{bottom:821.573333pt;}
.y8_c02211{bottom:840.613333pt;}
.yb_c02211{bottom:859.653333pt;}
.y7_c02211{bottom:891.813333pt;}
.y6_c02211{bottom:910.373333pt;}
.y5_c02211{bottom:928.773333pt;}
.y4_c02211{bottom:947.200000pt;}
.h5_c02211{height:18.400000pt;}
.h8_c02211{height:18.432000pt;}
.h2_c02211{height:20.000000pt;}
.h7_c02211{height:36.800000pt;}
.h4_c02211{height:37.440000pt;}
.h1_c02211{height:43.441250pt;}
.h3_c02211{height:62.812500pt;}
.h6_c02211{height:64.500000pt;}
.h0_c02211{height:1056.000000pt;}
.w1_c02211{width:59.232000pt;}
.w4_c02211{width:70.240000pt;}
.w7_c02211{width:81.792000pt;}
.w5_c02211{width:83.872000pt;}
.w6_c02211{width:85.440000pt;}
.w2_c02211{width:226.266667pt;}
.w3_c02211{width:252.386667pt;}
.w0_c02211{width:816.000000pt;}
.x0_c02211{left:0.000000pt;}
.xe_c02211{left:7.040000pt;}
.x11_c02211{left:13.760000pt;}
.x3_c02211{left:14.720000pt;}
.xf_c02211{left:16.160000pt;}
.x13_c02211{left:19.040000pt;}
.x20_c02211{left:20.480000pt;}
.x1c_c02211{left:22.880000pt;}
.x17_c02211{left:31.040000pt;}
.xd_c02211{left:35.040000pt;}
.x16_c02211{left:36.800000pt;}
.x15_c02211{left:37.920000pt;}
.x1f_c02211{left:40.800000pt;}
.x1e_c02211{left:41.920000pt;}
.x18_c02211{left:54.720000pt;}
.x1d_c02211{left:61.920000pt;}
.x1a_c02211{left:64.480000pt;}
.x14_c02211{left:66.240000pt;}
.x1b_c02211{left:68.480000pt;}
.x19_c02211{left:70.720000pt;}
.x22_c02211{left:85.120000pt;}
.x9_c02211{left:91.680000pt;}
.xb_c02211{left:92.826667pt;}
.x21_c02211{left:95.360000pt;}
.x1_c02211{left:113.472000pt;}
.x24_c02211{left:145.466667pt;}
.x8_c02211{left:159.386667pt;}
.x23_c02211{left:166.266667pt;}
.x5_c02211{left:256.666667pt;}
.x6_c02211{left:312.706667pt;}
.xa_c02211{left:386.306667pt;}
.x4_c02211{left:395.266667pt;}
.x7_c02211{left:434.466667pt;}
.x10_c02211{left:470.813333pt;}
.x12_c02211{left:556.893333pt;}
.xc_c02211{left:639.333333pt;}
.x2_c02211{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02212 {
    display:none;
  }
  .loading-indicator_c02212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02212 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02212 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02212" -> "#page-container .classname_c02212")
 */
.pf_c02212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02212 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02212 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02212 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02212 {overflow:visible;}
  }
}
.c_c02212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02212 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02212:after { /* webkit #35443 */
  content: '';
}
.t_c02212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02212 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02212 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02212 { /* info for Javascript */
  display:none;
}
.l_c02212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02212:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02212 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02212.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02212;src:url('chunks/assets/font_643595a65141043e8757fef3.woff2')format("woff");}.ff1_c02212{font-family:ff1_c02212;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02212;src:url('chunks/assets/font_5f5038530d3f5ef5c0a1553d.woff2')format("woff");}.ff2_c02212{font-family:ff2_c02212;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:ff3_c02212;src:url('chunks/assets/font_0fd395cc50f3c328b12e3778.woff2')format("woff");}.ff3_c02212{font-family:ff3_c02212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02212{vertical-align:0.000000px;}
.ls1_c02212{letter-spacing:-0.216000px;}
.ls0_c02212{letter-spacing:0.000000px;}
.sc__c02212{text-shadow:none;}
.sc0_c02212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02212{-webkit-text-stroke:0px transparent;}
.sc0_c02212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02212{word-spacing:-17.784000px;}
.ws1_c02212{word-spacing:0.000000px;}
._3_c02212{margin-left:-1.080000px;}
._1_c02212{width:1.152000px;}
._4_c02212{width:2.808000px;}
._6_c02212{width:4.104000px;}
._a_c02212{width:5.112000px;}
._8_c02212{width:8.280000px;}
._9_c02212{width:9.288000px;}
._d_c02212{width:10.368000px;}
._0_c02212{width:11.808000px;}
._2_c02212{width:12.816000px;}
._5_c02212{width:13.824000px;}
._7_c02212{width:15.120000px;}
._f_c02212{width:25.200000px;}
._e_c02212{width:26.208000px;}
._10_c02212{width:28.056000px;}
._b_c02212{width:30.600000px;}
._c_c02212{width:31.752000px;}
.fc1_c02212{color:rgb(192,80,77);}
.fc3_c02212{color:rgb(255,255,255);}
.fc2_c02212{color:rgb(17,17,17);}
.fc0_c02212{color:rgb(0,0,0);}
.fs0_c02212{font-size:66.240000px;}
.fs1_c02212{font-size:72.000000px;}
.y0_c02212{bottom:0.000000px;}
.y1b_c02212{bottom:4.140000px;}
.yb_c02212{bottom:4.320000px;}
.yd_c02212{bottom:4.500000px;}
.y3_c02212{bottom:4.680000px;}
.y2_c02212{bottom:41.796000px;}
.y1_c02212{bottom:75.456000px;}
.y2b_c02212{bottom:152.850000px;}
.y2a_c02212{bottom:183.810000px;}
.y29_c02212{bottom:214.950000px;}
.y28_c02212{bottom:245.910000px;}
.y27_c02212{bottom:277.095000px;}
.y26_c02212{bottom:308.055000px;}
.y25_c02212{bottom:339.195000px;}
.y24_c02212{bottom:370.155000px;}
.y23_c02212{bottom:401.295000px;}
.y22_c02212{bottom:432.255000px;}
.y21_c02212{bottom:463.395000px;}
.y20_c02212{bottom:494.355000px;}
.y1f_c02212{bottom:515.235000px;}
.y1e_c02212{bottom:535.965000px;}
.y1d_c02212{bottom:556.665000px;}
.y1c_c02212{bottom:577.365000px;}
.y1a_c02212{bottom:594.285000px;}
.y19_c02212{bottom:615.705000px;}
.y18_c02212{bottom:637.305000px;}
.y17_c02212{bottom:658.725000px;}
.y16_c02212{bottom:680.145000px;}
.y15_c02212{bottom:701.565000px;}
.y14_c02212{bottom:722.985000px;}
.y13_c02212{bottom:744.405000px;}
.y12_c02212{bottom:766.005000px;}
.y11_c02212{bottom:787.425000px;}
.y10_c02212{bottom:808.890000px;}
.yf_c02212{bottom:830.310000px;}
.ye_c02212{bottom:851.730000px;}
.yc_c02212{bottom:873.150000px;}
.ya_c02212{bottom:894.750000px;}
.y9_c02212{bottom:930.750000px;}
.y8_c02212{bottom:951.630000px;}
.y7_c02212{bottom:972.330000px;}
.y6_c02212{bottom:1003.290000px;}
.y5_c02212{bottom:1034.250000px;}
.y4_c02212{bottom:1065.420000px;}
.h4_c02212{height:20.520000px;}
.h5_c02212{height:20.700000px;}
.h6_c02212{height:20.736000px;}
.h2_c02212{height:22.500000px;}
.h1_c02212{height:48.871406px;}
.h3_c02212{height:70.664062px;}
.h7_c02212{height:72.562500px;}
.h0_c02212{height:1188.000000px;}
.w1_c02212{width:66.636000px;}
.w2_c02212{width:308.370000px;}
.w3_c02212{width:309.855000px;}
.w0_c02212{width:918.000000px;}
.x0_c02212{left:0.000000px;}
.x3_c02212{left:16.560000px;}
.xa_c02212{left:84.450000px;}
.x10_c02212{left:113.220000px;}
.x11_c02212{left:116.280000px;}
.x13_c02212{left:120.465000px;}
.x14_c02212{left:122.805000px;}
.xc_c02212{left:126.225000px;}
.x1_c02212{left:127.656000px;}
.x9_c02212{left:131.265000px;}
.xe_c02212{left:133.245000px;}
.xd_c02212{left:135.225000px;}
.xf_c02212{left:136.845000px;}
.x12_c02212{left:145.830000px;}
.xb_c02212{left:150.330000px;}
.x8_c02212{left:179.310000px;}
.x4_c02212{left:187.050000px;}
.x6_c02212{left:263.550000px;}
.x5_c02212{left:444.675000px;}
.x7_c02212{left:488.775000px;}
.x2_c02212{left:820.950000px;}
@media print{
.v0_c02212{vertical-align:0.000000pt;}
.ls1_c02212{letter-spacing:-0.192000pt;}
.ls0_c02212{letter-spacing:0.000000pt;}
.ws0_c02212{word-spacing:-15.808000pt;}
.ws1_c02212{word-spacing:0.000000pt;}
._3_c02212{margin-left:-0.960000pt;}
._1_c02212{width:1.024000pt;}
._4_c02212{width:2.496000pt;}
._6_c02212{width:3.648000pt;}
._a_c02212{width:4.544000pt;}
._8_c02212{width:7.360000pt;}
._9_c02212{width:8.256000pt;}
._d_c02212{width:9.216000pt;}
._0_c02212{width:10.496000pt;}
._2_c02212{width:11.392000pt;}
._5_c02212{width:12.288000pt;}
._7_c02212{width:13.440000pt;}
._f_c02212{width:22.400000pt;}
._e_c02212{width:23.296000pt;}
._10_c02212{width:24.938667pt;}
._b_c02212{width:27.200000pt;}
._c_c02212{width:28.224000pt;}
.fs0_c02212{font-size:58.880000pt;}
.fs1_c02212{font-size:64.000000pt;}
.y0_c02212{bottom:0.000000pt;}
.y1b_c02212{bottom:3.680000pt;}
.yb_c02212{bottom:3.840000pt;}
.yd_c02212{bottom:4.000000pt;}
.y3_c02212{bottom:4.160000pt;}
.y2_c02212{bottom:37.152000pt;}
.y1_c02212{bottom:67.072000pt;}
.y2b_c02212{bottom:135.866667pt;}
.y2a_c02212{bottom:163.386667pt;}
.y29_c02212{bottom:191.066667pt;}
.y28_c02212{bottom:218.586667pt;}
.y27_c02212{bottom:246.306667pt;}
.y26_c02212{bottom:273.826667pt;}
.y25_c02212{bottom:301.506667pt;}
.y24_c02212{bottom:329.026667pt;}
.y23_c02212{bottom:356.706667pt;}
.y22_c02212{bottom:384.226667pt;}
.y21_c02212{bottom:411.906667pt;}
.y20_c02212{bottom:439.426667pt;}
.y1f_c02212{bottom:457.986667pt;}
.y1e_c02212{bottom:476.413333pt;}
.y1d_c02212{bottom:494.813333pt;}
.y1c_c02212{bottom:513.213333pt;}
.y1a_c02212{bottom:528.253333pt;}
.y19_c02212{bottom:547.293333pt;}
.y18_c02212{bottom:566.493333pt;}
.y17_c02212{bottom:585.533333pt;}
.y16_c02212{bottom:604.573333pt;}
.y15_c02212{bottom:623.613333pt;}
.y14_c02212{bottom:642.653333pt;}
.y13_c02212{bottom:661.693333pt;}
.y12_c02212{bottom:680.893333pt;}
.y11_c02212{bottom:699.933333pt;}
.y10_c02212{bottom:719.013333pt;}
.yf_c02212{bottom:738.053333pt;}
.ye_c02212{bottom:757.093333pt;}
.yc_c02212{bottom:776.133333pt;}
.ya_c02212{bottom:795.333333pt;}
.y9_c02212{bottom:827.333333pt;}
.y8_c02212{bottom:845.893333pt;}
.y7_c02212{bottom:864.293333pt;}
.y6_c02212{bottom:891.813333pt;}
.y5_c02212{bottom:919.333333pt;}
.y4_c02212{bottom:947.040000pt;}
.h4_c02212{height:18.240000pt;}
.h5_c02212{height:18.400000pt;}
.h6_c02212{height:18.432000pt;}
.h2_c02212{height:20.000000pt;}
.h1_c02212{height:43.441250pt;}
.h3_c02212{height:62.812500pt;}
.h7_c02212{height:64.500000pt;}
.h0_c02212{height:1056.000000pt;}
.w1_c02212{width:59.232000pt;}
.w2_c02212{width:274.106667pt;}
.w3_c02212{width:275.426667pt;}
.w0_c02212{width:816.000000pt;}
.x0_c02212{left:0.000000pt;}
.x3_c02212{left:14.720000pt;}
.xa_c02212{left:75.066667pt;}
.x10_c02212{left:100.640000pt;}
.x11_c02212{left:103.360000pt;}
.x13_c02212{left:107.080000pt;}
.x14_c02212{left:109.160000pt;}
.xc_c02212{left:112.200000pt;}
.x1_c02212{left:113.472000pt;}
.x9_c02212{left:116.680000pt;}
.xe_c02212{left:118.440000pt;}
.xd_c02212{left:120.200000pt;}
.xf_c02212{left:121.640000pt;}
.x12_c02212{left:129.626667pt;}
.xb_c02212{left:133.626667pt;}
.x8_c02212{left:159.386667pt;}
.x4_c02212{left:166.266667pt;}
.x6_c02212{left:234.266667pt;}
.x5_c02212{left:395.266667pt;}
.x7_c02212{left:434.466667pt;}
.x2_c02212{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02213 {
    display:none;
  }
  .loading-indicator_c02213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02213 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02213 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02213" -> "#page-container .classname_c02213")
 */
.pf_c02213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02213 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02213 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02213 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02213 {overflow:visible;}
  }
}
.c_c02213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02213 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02213:after { /* webkit #35443 */
  content: '';
}
.t_c02213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02213 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02213 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02213 { /* info for Javascript */
  display:none;
}
.l_c02213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02213:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02213 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02213.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02213;src:url('chunks/assets/font_a1727b33c91d190d3bad7f0c.woff2')format("woff");}.ff1_c02213{font-family:ff1_c02213;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02213;src:url('chunks/assets/font_d7eaf6cb193401b7c0c56e6c.woff2')format("woff");}.ff2_c02213{font-family:ff2_c02213;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;}
.m0_c02213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02213{vertical-align:0.000000px;}
.ls0_c02213{letter-spacing:0.000000px;}
.sc__c02213{text-shadow:none;}
.sc0_c02213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02213{-webkit-text-stroke:0px transparent;}
.sc0_c02213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02213{word-spacing:0.000000px;}
._0_c02213{margin-left:-1.008000px;}
._2_c02213{width:1.080000px;}
._1_c02213{width:2.088000px;}
._6_c02213{width:3.096000px;}
._a_c02213{width:4.824000px;}
._3_c02213{width:5.976000px;}
._7_c02213{width:7.416000px;}
._8_c02213{width:8.568000px;}
._4_c02213{width:10.152000px;}
._5_c02213{width:11.160000px;}
._c_c02213{width:13.032000px;}
._b_c02213{width:14.328000px;}
._9_c02213{width:16.560000px;}
._d_c02213{width:19.728000px;}
.fc1_c02213{color:rgb(192,80,77);}
.fc2_c02213{color:rgb(17,17,17);}
.fc0_c02213{color:rgb(0,0,0);}
.fs0_c02213{font-size:66.240000px;}
.fs1_c02213{font-size:72.000000px;}
.y0_c02213{bottom:0.000000px;}
.y3_c02213{bottom:4.680000px;}
.y2_c02213{bottom:41.796000px;}
.y1_c02213{bottom:75.456000px;}
.y22_c02213{bottom:133.776000px;}
.y21_c02213{bottom:164.910000px;}
.y20_c02213{bottom:195.870000px;}
.y1f_c02213{bottom:226.830000px;}
.y1e_c02213{bottom:257.970000px;}
.y1d_c02213{bottom:288.975000px;}
.y1c_c02213{bottom:320.115000px;}
.y1b_c02213{bottom:351.075000px;}
.y1a_c02213{bottom:382.215000px;}
.y19_c02213{bottom:413.175000px;}
.y18_c02213{bottom:444.315000px;}
.y17_c02213{bottom:475.275000px;}
.y16_c02213{bottom:506.415000px;}
.y15_c02213{bottom:537.405000px;}
.y14_c02213{bottom:568.545000px;}
.y13_c02213{bottom:599.505000px;}
.y12_c02213{bottom:630.645000px;}
.y11_c02213{bottom:661.605000px;}
.y10_c02213{bottom:692.745000px;}
.yf_c02213{bottom:723.705000px;}
.ye_c02213{bottom:754.845000px;}
.yd_c02213{bottom:785.805000px;}
.yc_c02213{bottom:816.990000px;}
.yb_c02213{bottom:847.950000px;}
.ya_c02213{bottom:879.090000px;}
.y9_c02213{bottom:910.050000px;}
.y8_c02213{bottom:941.190000px;}
.y7_c02213{bottom:972.150000px;}
.y6_c02213{bottom:1003.290000px;}
.y5_c02213{bottom:1034.250000px;}
.y4_c02213{bottom:1065.420000px;}
.h2_c02213{height:22.500000px;}
.h1_c02213{height:48.871406px;}
.h3_c02213{height:70.664062px;}
.h0_c02213{height:1188.000000px;}
.w1_c02213{width:66.636000px;}
.w0_c02213{width:918.000000px;}
.x0_c02213{left:0.000000px;}
.x3_c02213{left:16.560000px;}
.x1_c02213{left:127.656000px;}
.x4_c02213{left:187.050000px;}
.x2_c02213{left:820.950000px;}
@media print{
.v0_c02213{vertical-align:0.000000pt;}
.ls0_c02213{letter-spacing:0.000000pt;}
.ws0_c02213{word-spacing:0.000000pt;}
._0_c02213{margin-left:-0.896000pt;}
._2_c02213{width:0.960000pt;}
._1_c02213{width:1.856000pt;}
._6_c02213{width:2.752000pt;}
._a_c02213{width:4.288000pt;}
._3_c02213{width:5.312000pt;}
._7_c02213{width:6.592000pt;}
._8_c02213{width:7.616000pt;}
._4_c02213{width:9.024000pt;}
._5_c02213{width:9.920000pt;}
._c_c02213{width:11.584000pt;}
._b_c02213{width:12.736000pt;}
._9_c02213{width:14.720000pt;}
._d_c02213{width:17.536000pt;}
.fs0_c02213{font-size:58.880000pt;}
.fs1_c02213{font-size:64.000000pt;}
.y0_c02213{bottom:0.000000pt;}
.y3_c02213{bottom:4.160000pt;}
.y2_c02213{bottom:37.152000pt;}
.y1_c02213{bottom:67.072000pt;}
.y22_c02213{bottom:118.912000pt;}
.y21_c02213{bottom:146.586667pt;}
.y20_c02213{bottom:174.106667pt;}
.y1f_c02213{bottom:201.626667pt;}
.y1e_c02213{bottom:229.306667pt;}
.y1d_c02213{bottom:256.866667pt;}
.y1c_c02213{bottom:284.546667pt;}
.y1b_c02213{bottom:312.066667pt;}
.y1a_c02213{bottom:339.746667pt;}
.y19_c02213{bottom:367.266667pt;}
.y18_c02213{bottom:394.946667pt;}
.y17_c02213{bottom:422.466667pt;}
.y16_c02213{bottom:450.146667pt;}
.y15_c02213{bottom:477.693333pt;}
.y14_c02213{bottom:505.373333pt;}
.y13_c02213{bottom:532.893333pt;}
.y12_c02213{bottom:560.573333pt;}
.y11_c02213{bottom:588.093333pt;}
.y10_c02213{bottom:615.773333pt;}
.yf_c02213{bottom:643.293333pt;}
.ye_c02213{bottom:670.973333pt;}
.yd_c02213{bottom:698.493333pt;}
.yc_c02213{bottom:726.213333pt;}
.yb_c02213{bottom:753.733333pt;}
.ya_c02213{bottom:781.413333pt;}
.y9_c02213{bottom:808.933333pt;}
.y8_c02213{bottom:836.613333pt;}
.y7_c02213{bottom:864.133333pt;}
.y6_c02213{bottom:891.813333pt;}
.y5_c02213{bottom:919.333333pt;}
.y4_c02213{bottom:947.040000pt;}
.h2_c02213{height:20.000000pt;}
.h1_c02213{height:43.441250pt;}
.h3_c02213{height:62.812500pt;}
.h0_c02213{height:1056.000000pt;}
.w1_c02213{width:59.232000pt;}
.w0_c02213{width:816.000000pt;}
.x0_c02213{left:0.000000pt;}
.x3_c02213{left:14.720000pt;}
.x1_c02213{left:113.472000pt;}
.x4_c02213{left:166.266667pt;}
.x2_c02213{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02214 {
    display:none;
  }
  .loading-indicator_c02214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02214 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02214 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02214" -> "#page-container .classname_c02214")
 */
.pf_c02214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02214 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02214 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02214 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02214 {overflow:visible;}
  }
}
.c_c02214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02214 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02214:after { /* webkit #35443 */
  content: '';
}
.t_c02214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02214 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02214 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02214 { /* info for Javascript */
  display:none;
}
.l_c02214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02214:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02214 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02214.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02214;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02214{font-family:ff1_c02214;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02214;src:url('chunks/assets/font_987a67e8b1decde1b84a64f4.woff2')format("woff");}.ff2_c02214{font-family:ff2_c02214;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:ff3_c02214;src:url('chunks/assets/font_0fd395cc50f3c328b12e3778.woff2')format("woff");}.ff3_c02214{font-family:ff3_c02214;line-height:1.311035;font-style:normal;font-weight: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_c02214;src:url('chunks/assets/font_63c2064b09f94bf19d052d08.woff2')format("woff");}.ff4_c02214{font-family:ff4_c02214;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02214{vertical-align:0.000000px;}
.ls0_c02214{letter-spacing:0.000000px;}
.sc__c02214{text-shadow:none;}
.sc0_c02214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02214{-webkit-text-stroke:0px transparent;}
.sc0_c02214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02214{word-spacing:-18.000000px;}
.ws1_c02214{word-spacing:0.000000px;}
._4_c02214{margin-left:-1.440000px;}
._2_c02214{width:1.296000px;}
._7_c02214{width:2.304000px;}
._c_c02214{width:3.312000px;}
._6_c02214{width:4.320000px;}
._5_c02214{width:5.472000px;}
._a_c02214{width:6.768000px;}
._d_c02214{width:10.944000px;}
._b_c02214{width:12.888000px;}
._1_c02214{width:14.112000px;}
._0_c02214{width:15.120000px;}
._3_c02214{width:16.200000px;}
._e_c02214{width:20.448000px;}
._8_c02214{width:21.456000px;}
._9_c02214{width:22.464000px;}
.fc1_c02214{color:rgb(192,80,77);}
.fc3_c02214{color:rgb(255,255,255);}
.fc2_c02214{color:rgb(17,17,17);}
.fc0_c02214{color:rgb(0,0,0);}
.fs0_c02214{font-size:66.240000px;}
.fs1_c02214{font-size:72.000000px;}
.y0_c02214{bottom:0.000000px;}
.y18_c02214{bottom:4.140000px;}
.y12_c02214{bottom:4.500000px;}
.y3_c02214{bottom:4.680000px;}
.y2_c02214{bottom:41.796000px;}
.y1_c02214{bottom:75.456000px;}
.y28_c02214{bottom:128.556000px;}
.y27_c02214{bottom:159.510000px;}
.y26_c02214{bottom:190.650000px;}
.y25_c02214{bottom:221.610000px;}
.y24_c02214{bottom:252.750000px;}
.y23_c02214{bottom:283.755000px;}
.y22_c02214{bottom:314.895000px;}
.y21_c02214{bottom:345.855000px;}
.y20_c02214{bottom:376.995000px;}
.y1f_c02214{bottom:407.955000px;}
.y1e_c02214{bottom:439.095000px;}
.y1d_c02214{bottom:470.055000px;}
.y1c_c02214{bottom:490.935000px;}
.y1b_c02214{bottom:511.635000px;}
.y1a_c02214{bottom:532.335000px;}
.y19_c02214{bottom:553.065000px;}
.y17_c02214{bottom:569.985000px;}
.y16_c02214{bottom:591.405000px;}
.y15_c02214{bottom:613.005000px;}
.y14_c02214{bottom:634.425000px;}
.y13_c02214{bottom:655.845000px;}
.y11_c02214{bottom:677.265000px;}
.y10_c02214{bottom:713.445000px;}
.yf_c02214{bottom:734.325000px;}
.ye_c02214{bottom:755.025000px;}
.yd_c02214{bottom:785.805000px;}
.yc_c02214{bottom:816.990000px;}
.yb_c02214{bottom:847.950000px;}
.ya_c02214{bottom:879.090000px;}
.y9_c02214{bottom:910.050000px;}
.y8_c02214{bottom:941.190000px;}
.y7_c02214{bottom:972.150000px;}
.y6_c02214{bottom:1003.290000px;}
.y5_c02214{bottom:1034.250000px;}
.y4_c02214{bottom:1065.420000px;}
.h4_c02214{height:20.700000px;}
.h2_c02214{height:22.500000px;}
.h1_c02214{height:48.871406px;}
.h6_c02214{height:64.546875px;}
.h3_c02214{height:70.664062px;}
.h5_c02214{height:72.562500px;}
.h0_c02214{height:1188.000000px;}
.w1_c02214{width:66.636000px;}
.w2_c02214{width:308.370000px;}
.w3_c02214{width:309.855000px;}
.w0_c02214{width:918.000000px;}
.x0_c02214{left:0.000000px;}
.x3_c02214{left:16.560000px;}
.xa_c02214{left:84.450000px;}
.xb_c02214{left:97.920000px;}
.xe_c02214{left:116.280000px;}
.xf_c02214{left:122.805000px;}
.x1_c02214{left:127.656000px;}
.x9_c02214{left:131.805000px;}
.xc_c02214{left:145.830000px;}
.xd_c02214{left:150.330000px;}
.x8_c02214{left:179.310000px;}
.x4_c02214{left:187.050000px;}
.x7_c02214{left:244.470000px;}
.x6_c02214{left:444.675000px;}
.x5_c02214{left:488.775000px;}
.x2_c02214{left:820.950000px;}
@media print{
.v0_c02214{vertical-align:0.000000pt;}
.ls0_c02214{letter-spacing:0.000000pt;}
.ws0_c02214{word-spacing:-16.000000pt;}
.ws1_c02214{word-spacing:0.000000pt;}
._4_c02214{margin-left:-1.280000pt;}
._2_c02214{width:1.152000pt;}
._7_c02214{width:2.048000pt;}
._c_c02214{width:2.944000pt;}
._6_c02214{width:3.840000pt;}
._5_c02214{width:4.864000pt;}
._a_c02214{width:6.016000pt;}
._d_c02214{width:9.728000pt;}
._b_c02214{width:11.456000pt;}
._1_c02214{width:12.544000pt;}
._0_c02214{width:13.440000pt;}
._3_c02214{width:14.400000pt;}
._e_c02214{width:18.176000pt;}
._8_c02214{width:19.072000pt;}
._9_c02214{width:19.968000pt;}
.fs0_c02214{font-size:58.880000pt;}
.fs1_c02214{font-size:64.000000pt;}
.y0_c02214{bottom:0.000000pt;}
.y18_c02214{bottom:3.680000pt;}
.y12_c02214{bottom:4.000000pt;}
.y3_c02214{bottom:4.160000pt;}
.y2_c02214{bottom:37.152000pt;}
.y1_c02214{bottom:67.072000pt;}
.y28_c02214{bottom:114.272000pt;}
.y27_c02214{bottom:141.786667pt;}
.y26_c02214{bottom:169.466667pt;}
.y25_c02214{bottom:196.986667pt;}
.y24_c02214{bottom:224.666667pt;}
.y23_c02214{bottom:252.226667pt;}
.y22_c02214{bottom:279.906667pt;}
.y21_c02214{bottom:307.426667pt;}
.y20_c02214{bottom:335.106667pt;}
.y1f_c02214{bottom:362.626667pt;}
.y1e_c02214{bottom:390.306667pt;}
.y1d_c02214{bottom:417.826667pt;}
.y1c_c02214{bottom:436.386667pt;}
.y1b_c02214{bottom:454.786667pt;}
.y1a_c02214{bottom:473.186667pt;}
.y19_c02214{bottom:491.613333pt;}
.y17_c02214{bottom:506.653333pt;}
.y16_c02214{bottom:525.693333pt;}
.y15_c02214{bottom:544.893333pt;}
.y14_c02214{bottom:563.933333pt;}
.y13_c02214{bottom:582.973333pt;}
.y11_c02214{bottom:602.013333pt;}
.y10_c02214{bottom:634.173333pt;}
.yf_c02214{bottom:652.733333pt;}
.ye_c02214{bottom:671.133333pt;}
.yd_c02214{bottom:698.493333pt;}
.yc_c02214{bottom:726.213333pt;}
.yb_c02214{bottom:753.733333pt;}
.ya_c02214{bottom:781.413333pt;}
.y9_c02214{bottom:808.933333pt;}
.y8_c02214{bottom:836.613333pt;}
.y7_c02214{bottom:864.133333pt;}
.y6_c02214{bottom:891.813333pt;}
.y5_c02214{bottom:919.333333pt;}
.y4_c02214{bottom:947.040000pt;}
.h4_c02214{height:18.400000pt;}
.h2_c02214{height:20.000000pt;}
.h1_c02214{height:43.441250pt;}
.h6_c02214{height:57.375000pt;}
.h3_c02214{height:62.812500pt;}
.h5_c02214{height:64.500000pt;}
.h0_c02214{height:1056.000000pt;}
.w1_c02214{width:59.232000pt;}
.w2_c02214{width:274.106667pt;}
.w3_c02214{width:275.426667pt;}
.w0_c02214{width:816.000000pt;}
.x0_c02214{left:0.000000pt;}
.x3_c02214{left:14.720000pt;}
.xa_c02214{left:75.066667pt;}
.xb_c02214{left:87.040000pt;}
.xe_c02214{left:103.360000pt;}
.xf_c02214{left:109.160000pt;}
.x1_c02214{left:113.472000pt;}
.x9_c02214{left:117.160000pt;}
.xc_c02214{left:129.626667pt;}
.xd_c02214{left:133.626667pt;}
.x8_c02214{left:159.386667pt;}
.x4_c02214{left:166.266667pt;}
.x7_c02214{left:217.306667pt;}
.x6_c02214{left:395.266667pt;}
.x5_c02214{left:434.466667pt;}
.x2_c02214{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02215 {
    display:none;
  }
  .loading-indicator_c02215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02215 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02215 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02215" -> "#page-container .classname_c02215")
 */
.pf_c02215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02215 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02215 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02215 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02215 {overflow:visible;}
  }
}
.c_c02215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02215 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02215:after { /* webkit #35443 */
  content: '';
}
.t_c02215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02215 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02215 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02215 { /* info for Javascript */
  display:none;
}
.l_c02215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02215:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02215 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02215.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02215;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02215{font-family:ff1_c02215;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02215;src:url('chunks/assets/font_0b07af79ed1ef1a8bdc5c9af.woff2')format("woff");}.ff2_c02215{font-family:ff2_c02215;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:ff3_c02215;src:url('chunks/assets/font_191530377220f5f7048ba3f3.woff2')format("woff");}.ff3_c02215{font-family:ff3_c02215;line-height:1.284180;font-style:normal;font-weight: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_c02215;src:url('chunks/assets/font_37d2323f9ea4cd182c35313a.woff2')format("woff");}.ff4_c02215{font-family:ff4_c02215;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02215{vertical-align:0.000000px;}
.ls0_c02215{letter-spacing:0.000000px;}
.sc__c02215{text-shadow:none;}
.sc0_c02215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02215{-webkit-text-stroke:0px transparent;}
.sc0_c02215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02215{word-spacing:0.000000px;}
._1_c02215{margin-left:-1.440000px;}
._0_c02215{width:1.944000px;}
._2_c02215{width:3.168000px;}
._15_c02215{width:4.248000px;}
._14_c02215{width:5.400000px;}
._7_c02215{width:6.696000px;}
._8_c02215{width:7.704000px;}
._d_c02215{width:9.360000px;}
._11_c02215{width:10.872000px;}
._e_c02215{width:12.024000px;}
._3_c02215{width:13.464000px;}
._4_c02215{width:15.120000px;}
._10_c02215{width:16.164000px;}
._f_c02215{width:21.528000px;}
._9_c02215{width:23.472000px;}
._a_c02215{width:24.480000px;}
._12_c02215{width:25.704000px;}
._13_c02215{width:27.084000px;}
._b_c02215{width:33.552000px;}
._c_c02215{width:35.136000px;}
._5_c02215{width:47.448000px;}
._6_c02215{width:48.816000px;}
.fc1_c02215{color:rgb(192,80,77);}
.fc0_c02215{color:rgb(0,0,0);}
.fs0_c02215{font-size:66.240000px;}
.fs1_c02215{font-size:72.000000px;}
.y0_c02215{bottom:0.000000px;}
.y3_c02215{bottom:4.680000px;}
.y2_c02215{bottom:41.796000px;}
.y1_c02215{bottom:75.456000px;}
.y22_c02215{bottom:133.776000px;}
.y21_c02215{bottom:164.910000px;}
.y20_c02215{bottom:195.870000px;}
.y1f_c02215{bottom:226.830000px;}
.y1e_c02215{bottom:257.970000px;}
.y1d_c02215{bottom:288.975000px;}
.y1c_c02215{bottom:320.115000px;}
.y1b_c02215{bottom:351.075000px;}
.y1a_c02215{bottom:382.215000px;}
.y19_c02215{bottom:413.175000px;}
.y18_c02215{bottom:444.315000px;}
.y17_c02215{bottom:475.275000px;}
.y16_c02215{bottom:506.415000px;}
.y15_c02215{bottom:537.405000px;}
.y14_c02215{bottom:568.545000px;}
.y13_c02215{bottom:599.505000px;}
.y12_c02215{bottom:630.645000px;}
.y11_c02215{bottom:661.605000px;}
.y10_c02215{bottom:692.745000px;}
.yf_c02215{bottom:723.705000px;}
.ye_c02215{bottom:754.845000px;}
.yd_c02215{bottom:785.805000px;}
.yc_c02215{bottom:816.990000px;}
.yb_c02215{bottom:847.950000px;}
.ya_c02215{bottom:879.090000px;}
.y9_c02215{bottom:910.050000px;}
.y8_c02215{bottom:941.190000px;}
.y7_c02215{bottom:972.150000px;}
.y6_c02215{bottom:1003.290000px;}
.y5_c02215{bottom:1034.250000px;}
.y4_c02215{bottom:1065.420000px;}
.h2_c02215{height:22.500000px;}
.h1_c02215{height:48.871406px;}
.h4_c02215{height:64.546875px;}
.h3_c02215{height:70.664062px;}
.h0_c02215{height:1188.000000px;}
.w1_c02215{width:66.636000px;}
.w0_c02215{width:918.000000px;}
.x0_c02215{left:0.000000px;}
.x3_c02215{left:16.560000px;}
.x1_c02215{left:127.656000px;}
.x4_c02215{left:187.050000px;}
.x2_c02215{left:820.950000px;}
@media print{
.v0_c02215{vertical-align:0.000000pt;}
.ls0_c02215{letter-spacing:0.000000pt;}
.ws0_c02215{word-spacing:0.000000pt;}
._1_c02215{margin-left:-1.280000pt;}
._0_c02215{width:1.728000pt;}
._2_c02215{width:2.816000pt;}
._15_c02215{width:3.776000pt;}
._14_c02215{width:4.800000pt;}
._7_c02215{width:5.952000pt;}
._8_c02215{width:6.848000pt;}
._d_c02215{width:8.320000pt;}
._11_c02215{width:9.664000pt;}
._e_c02215{width:10.688000pt;}
._3_c02215{width:11.968000pt;}
._4_c02215{width:13.440000pt;}
._10_c02215{width:14.368000pt;}
._f_c02215{width:19.136000pt;}
._9_c02215{width:20.864000pt;}
._a_c02215{width:21.760000pt;}
._12_c02215{width:22.848000pt;}
._13_c02215{width:24.074667pt;}
._b_c02215{width:29.824000pt;}
._c_c02215{width:31.232000pt;}
._5_c02215{width:42.176000pt;}
._6_c02215{width:43.392000pt;}
.fs0_c02215{font-size:58.880000pt;}
.fs1_c02215{font-size:64.000000pt;}
.y0_c02215{bottom:0.000000pt;}
.y3_c02215{bottom:4.160000pt;}
.y2_c02215{bottom:37.152000pt;}
.y1_c02215{bottom:67.072000pt;}
.y22_c02215{bottom:118.912000pt;}
.y21_c02215{bottom:146.586667pt;}
.y20_c02215{bottom:174.106667pt;}
.y1f_c02215{bottom:201.626667pt;}
.y1e_c02215{bottom:229.306667pt;}
.y1d_c02215{bottom:256.866667pt;}
.y1c_c02215{bottom:284.546667pt;}
.y1b_c02215{bottom:312.066667pt;}
.y1a_c02215{bottom:339.746667pt;}
.y19_c02215{bottom:367.266667pt;}
.y18_c02215{bottom:394.946667pt;}
.y17_c02215{bottom:422.466667pt;}
.y16_c02215{bottom:450.146667pt;}
.y15_c02215{bottom:477.693333pt;}
.y14_c02215{bottom:505.373333pt;}
.y13_c02215{bottom:532.893333pt;}
.y12_c02215{bottom:560.573333pt;}
.y11_c02215{bottom:588.093333pt;}
.y10_c02215{bottom:615.773333pt;}
.yf_c02215{bottom:643.293333pt;}
.ye_c02215{bottom:670.973333pt;}
.yd_c02215{bottom:698.493333pt;}
.yc_c02215{bottom:726.213333pt;}
.yb_c02215{bottom:753.733333pt;}
.ya_c02215{bottom:781.413333pt;}
.y9_c02215{bottom:808.933333pt;}
.y8_c02215{bottom:836.613333pt;}
.y7_c02215{bottom:864.133333pt;}
.y6_c02215{bottom:891.813333pt;}
.y5_c02215{bottom:919.333333pt;}
.y4_c02215{bottom:947.040000pt;}
.h2_c02215{height:20.000000pt;}
.h1_c02215{height:43.441250pt;}
.h4_c02215{height:57.375000pt;}
.h3_c02215{height:62.812500pt;}
.h0_c02215{height:1056.000000pt;}
.w1_c02215{width:59.232000pt;}
.w0_c02215{width:816.000000pt;}
.x0_c02215{left:0.000000pt;}
.x3_c02215{left:14.720000pt;}
.x1_c02215{left:113.472000pt;}
.x4_c02215{left:166.266667pt;}
.x2_c02215{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02216 {
    display:none;
  }
  .loading-indicator_c02216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02216 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02216 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02216" -> "#page-container .classname_c02216")
 */
.pf_c02216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02216 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02216 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02216 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02216 {overflow:visible;}
  }
}
.c_c02216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02216 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02216:after { /* webkit #35443 */
  content: '';
}
.t_c02216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02216 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02216 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02216 { /* info for Javascript */
  display:none;
}
.l_c02216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02216:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02216 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02216.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02216;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02216{font-family:ff1_c02216;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02216;src:url('chunks/assets/font_ecc05cd4c0ad4e68e0b0b946.woff2')format("woff");}.ff2_c02216{font-family:ff2_c02216;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:ff3_c02216;src:url('chunks/assets/font_f3ad60692ba36adc8e8a056c.woff2')format("woff");}.ff3_c02216{font-family:ff3_c02216;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02216{vertical-align:0.000000px;}
.ls0_c02216{letter-spacing:0.000000px;}
.sc__c02216{text-shadow:none;}
.sc0_c02216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02216{-webkit-text-stroke:0px transparent;}
.sc0_c02216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02216{word-spacing:0.000000px;}
._12_c02216{margin-left:-3.096000px;}
._10_c02216{margin-left:-2.016000px;}
._6_c02216{margin-left:-1.008000px;}
._3_c02216{width:1.008000px;}
._4_c02216{width:2.352000px;}
._e_c02216{width:3.600000px;}
._f_c02216{width:5.544000px;}
._2_c02216{width:6.984000px;}
._7_c02216{width:8.208000px;}
._a_c02216{width:9.216000px;}
._13_c02216{width:10.440000px;}
._0_c02216{width:11.520000px;}
._1_c02216{width:13.032000px;}
._5_c02216{width:14.904000px;}
._9_c02216{width:15.912000px;}
._8_c02216{width:25.848000px;}
._11_c02216{width:27.648000px;}
._b_c02216{width:28.800000px;}
._c_c02216{width:30.024000px;}
._d_c02216{width:31.716000px;}
.fc1_c02216{color:rgb(192,80,77);}
.fc0_c02216{color:rgb(0,0,0);}
.fs0_c02216{font-size:66.240000px;}
.fs1_c02216{font-size:72.000000px;}
.y0_c02216{bottom:0.000000px;}
.y3_c02216{bottom:4.680000px;}
.y2_c02216{bottom:41.796000px;}
.y1_c02216{bottom:75.456000px;}
.y22_c02216{bottom:133.776000px;}
.y21_c02216{bottom:164.910000px;}
.y20_c02216{bottom:195.870000px;}
.y1f_c02216{bottom:226.830000px;}
.y1e_c02216{bottom:257.970000px;}
.y1d_c02216{bottom:288.975000px;}
.y1c_c02216{bottom:320.115000px;}
.y1b_c02216{bottom:351.075000px;}
.y1a_c02216{bottom:382.215000px;}
.y19_c02216{bottom:413.175000px;}
.y18_c02216{bottom:444.315000px;}
.y17_c02216{bottom:475.275000px;}
.y16_c02216{bottom:506.415000px;}
.y15_c02216{bottom:537.405000px;}
.y14_c02216{bottom:568.545000px;}
.y13_c02216{bottom:599.505000px;}
.y12_c02216{bottom:630.645000px;}
.y11_c02216{bottom:661.605000px;}
.y10_c02216{bottom:692.745000px;}
.yf_c02216{bottom:723.705000px;}
.ye_c02216{bottom:754.845000px;}
.yd_c02216{bottom:785.805000px;}
.yc_c02216{bottom:816.990000px;}
.yb_c02216{bottom:847.950000px;}
.ya_c02216{bottom:879.090000px;}
.y9_c02216{bottom:910.050000px;}
.y8_c02216{bottom:941.190000px;}
.y7_c02216{bottom:972.150000px;}
.y6_c02216{bottom:1003.290000px;}
.y5_c02216{bottom:1034.250000px;}
.y4_c02216{bottom:1065.420000px;}
.h2_c02216{height:22.500000px;}
.h1_c02216{height:48.871406px;}
.h4_c02216{height:64.546875px;}
.h3_c02216{height:70.664062px;}
.h0_c02216{height:1188.000000px;}
.w1_c02216{width:66.636000px;}
.w0_c02216{width:918.000000px;}
.x0_c02216{left:0.000000px;}
.x3_c02216{left:16.560000px;}
.x1_c02216{left:127.656000px;}
.x4_c02216{left:187.050000px;}
.x2_c02216{left:820.950000px;}
@media print{
.v0_c02216{vertical-align:0.000000pt;}
.ls0_c02216{letter-spacing:0.000000pt;}
.ws0_c02216{word-spacing:0.000000pt;}
._12_c02216{margin-left:-2.752000pt;}
._10_c02216{margin-left:-1.792000pt;}
._6_c02216{margin-left:-0.896000pt;}
._3_c02216{width:0.896000pt;}
._4_c02216{width:2.090667pt;}
._e_c02216{width:3.200000pt;}
._f_c02216{width:4.928000pt;}
._2_c02216{width:6.208000pt;}
._7_c02216{width:7.296000pt;}
._a_c02216{width:8.192000pt;}
._13_c02216{width:9.280000pt;}
._0_c02216{width:10.240000pt;}
._1_c02216{width:11.584000pt;}
._5_c02216{width:13.248000pt;}
._9_c02216{width:14.144000pt;}
._8_c02216{width:22.976000pt;}
._11_c02216{width:24.576000pt;}
._b_c02216{width:25.600000pt;}
._c_c02216{width:26.688000pt;}
._d_c02216{width:28.192000pt;}
.fs0_c02216{font-size:58.880000pt;}
.fs1_c02216{font-size:64.000000pt;}
.y0_c02216{bottom:0.000000pt;}
.y3_c02216{bottom:4.160000pt;}
.y2_c02216{bottom:37.152000pt;}
.y1_c02216{bottom:67.072000pt;}
.y22_c02216{bottom:118.912000pt;}
.y21_c02216{bottom:146.586667pt;}
.y20_c02216{bottom:174.106667pt;}
.y1f_c02216{bottom:201.626667pt;}
.y1e_c02216{bottom:229.306667pt;}
.y1d_c02216{bottom:256.866667pt;}
.y1c_c02216{bottom:284.546667pt;}
.y1b_c02216{bottom:312.066667pt;}
.y1a_c02216{bottom:339.746667pt;}
.y19_c02216{bottom:367.266667pt;}
.y18_c02216{bottom:394.946667pt;}
.y17_c02216{bottom:422.466667pt;}
.y16_c02216{bottom:450.146667pt;}
.y15_c02216{bottom:477.693333pt;}
.y14_c02216{bottom:505.373333pt;}
.y13_c02216{bottom:532.893333pt;}
.y12_c02216{bottom:560.573333pt;}
.y11_c02216{bottom:588.093333pt;}
.y10_c02216{bottom:615.773333pt;}
.yf_c02216{bottom:643.293333pt;}
.ye_c02216{bottom:670.973333pt;}
.yd_c02216{bottom:698.493333pt;}
.yc_c02216{bottom:726.213333pt;}
.yb_c02216{bottom:753.733333pt;}
.ya_c02216{bottom:781.413333pt;}
.y9_c02216{bottom:808.933333pt;}
.y8_c02216{bottom:836.613333pt;}
.y7_c02216{bottom:864.133333pt;}
.y6_c02216{bottom:891.813333pt;}
.y5_c02216{bottom:919.333333pt;}
.y4_c02216{bottom:947.040000pt;}
.h2_c02216{height:20.000000pt;}
.h1_c02216{height:43.441250pt;}
.h4_c02216{height:57.375000pt;}
.h3_c02216{height:62.812500pt;}
.h0_c02216{height:1056.000000pt;}
.w1_c02216{width:59.232000pt;}
.w0_c02216{width:816.000000pt;}
.x0_c02216{left:0.000000pt;}
.x3_c02216{left:14.720000pt;}
.x1_c02216{left:113.472000pt;}
.x4_c02216{left:166.266667pt;}
.x2_c02216{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02217 {
    display:none;
  }
  .loading-indicator_c02217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02217 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02217 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02217" -> "#page-container .classname_c02217")
 */
.pf_c02217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02217 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02217 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02217 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02217 {overflow:visible;}
  }
}
.c_c02217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02217 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02217:after { /* webkit #35443 */
  content: '';
}
.t_c02217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02217 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02217 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02217 { /* info for Javascript */
  display:none;
}
.l_c02217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02217:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02217 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02217.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02217;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02217{font-family:ff1_c02217;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02217;src:url('chunks/assets/font_90d1d8182e997c5134574536.woff2')format("woff");}.ff2_c02217{font-family:ff2_c02217;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:ff3_c02217;src:url('chunks/assets/font_a2edb747546a0f3e2a18028a.woff2')format("woff");}.ff3_c02217{font-family:ff3_c02217;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02217{vertical-align:0.000000px;}
.ls0_c02217{letter-spacing:0.000000px;}
.sc__c02217{text-shadow:none;}
.sc0_c02217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02217{-webkit-text-stroke:0px transparent;}
.sc0_c02217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02217{word-spacing:0.000000px;}
._e_c02217{margin-left:-2.088000px;}
._2_c02217{margin-left:-1.008000px;}
._f_c02217{width:1.008000px;}
._1_c02217{width:2.016000px;}
._0_c02217{width:3.528000px;}
._3_c02217{width:4.896000px;}
._4_c02217{width:6.336000px;}
._5_c02217{width:7.416000px;}
._6_c02217{width:8.784000px;}
._7_c02217{width:10.512000px;}
._a_c02217{width:11.736000px;}
._b_c02217{width:12.960000px;}
._12_c02217{width:14.256000px;}
._13_c02217{width:16.344000px;}
._c_c02217{width:20.088000px;}
._d_c02217{width:21.168000px;}
._10_c02217{width:29.304000px;}
._11_c02217{width:30.792000px;}
._8_c02217{width:38.736000px;}
._9_c02217{width:39.888000px;}
.fc1_c02217{color:rgb(192,80,77);}
.fc0_c02217{color:rgb(0,0,0);}
.fs0_c02217{font-size:66.240000px;}
.fs1_c02217{font-size:72.000000px;}
.y0_c02217{bottom:0.000000px;}
.y3_c02217{bottom:4.680000px;}
.y2_c02217{bottom:41.796000px;}
.y1_c02217{bottom:75.456000px;}
.y21_c02217{bottom:164.910000px;}
.y20_c02217{bottom:195.870000px;}
.y1f_c02217{bottom:226.830000px;}
.y1e_c02217{bottom:257.970000px;}
.y1d_c02217{bottom:288.975000px;}
.y1c_c02217{bottom:320.115000px;}
.y1b_c02217{bottom:351.075000px;}
.y1a_c02217{bottom:382.215000px;}
.y19_c02217{bottom:413.175000px;}
.y18_c02217{bottom:444.315000px;}
.y17_c02217{bottom:475.275000px;}
.y16_c02217{bottom:506.415000px;}
.y15_c02217{bottom:537.405000px;}
.y14_c02217{bottom:568.545000px;}
.y13_c02217{bottom:599.505000px;}
.y12_c02217{bottom:630.645000px;}
.y11_c02217{bottom:661.605000px;}
.y10_c02217{bottom:692.745000px;}
.yf_c02217{bottom:723.705000px;}
.ye_c02217{bottom:754.845000px;}
.yd_c02217{bottom:785.805000px;}
.yc_c02217{bottom:816.990000px;}
.yb_c02217{bottom:847.950000px;}
.ya_c02217{bottom:879.090000px;}
.y9_c02217{bottom:910.050000px;}
.y8_c02217{bottom:941.190000px;}
.y7_c02217{bottom:972.150000px;}
.y6_c02217{bottom:1003.290000px;}
.y5_c02217{bottom:1034.250000px;}
.y4_c02217{bottom:1065.420000px;}
.h2_c02217{height:22.500000px;}
.h1_c02217{height:48.871406px;}
.h4_c02217{height:64.546875px;}
.h3_c02217{height:70.664062px;}
.h0_c02217{height:1188.000000px;}
.w1_c02217{width:66.636000px;}
.w0_c02217{width:918.000000px;}
.x0_c02217{left:0.000000px;}
.x3_c02217{left:16.560000px;}
.x1_c02217{left:127.656000px;}
.x4_c02217{left:187.050000px;}
.x2_c02217{left:820.950000px;}
@media print{
.v0_c02217{vertical-align:0.000000pt;}
.ls0_c02217{letter-spacing:0.000000pt;}
.ws0_c02217{word-spacing:0.000000pt;}
._e_c02217{margin-left:-1.856000pt;}
._2_c02217{margin-left:-0.896000pt;}
._f_c02217{width:0.896000pt;}
._1_c02217{width:1.792000pt;}
._0_c02217{width:3.136000pt;}
._3_c02217{width:4.352000pt;}
._4_c02217{width:5.632000pt;}
._5_c02217{width:6.592000pt;}
._6_c02217{width:7.808000pt;}
._7_c02217{width:9.344000pt;}
._a_c02217{width:10.432000pt;}
._b_c02217{width:11.520000pt;}
._12_c02217{width:12.672000pt;}
._13_c02217{width:14.528000pt;}
._c_c02217{width:17.856000pt;}
._d_c02217{width:18.816000pt;}
._10_c02217{width:26.048000pt;}
._11_c02217{width:27.370667pt;}
._8_c02217{width:34.432000pt;}
._9_c02217{width:35.456000pt;}
.fs0_c02217{font-size:58.880000pt;}
.fs1_c02217{font-size:64.000000pt;}
.y0_c02217{bottom:0.000000pt;}
.y3_c02217{bottom:4.160000pt;}
.y2_c02217{bottom:37.152000pt;}
.y1_c02217{bottom:67.072000pt;}
.y21_c02217{bottom:146.586667pt;}
.y20_c02217{bottom:174.106667pt;}
.y1f_c02217{bottom:201.626667pt;}
.y1e_c02217{bottom:229.306667pt;}
.y1d_c02217{bottom:256.866667pt;}
.y1c_c02217{bottom:284.546667pt;}
.y1b_c02217{bottom:312.066667pt;}
.y1a_c02217{bottom:339.746667pt;}
.y19_c02217{bottom:367.266667pt;}
.y18_c02217{bottom:394.946667pt;}
.y17_c02217{bottom:422.466667pt;}
.y16_c02217{bottom:450.146667pt;}
.y15_c02217{bottom:477.693333pt;}
.y14_c02217{bottom:505.373333pt;}
.y13_c02217{bottom:532.893333pt;}
.y12_c02217{bottom:560.573333pt;}
.y11_c02217{bottom:588.093333pt;}
.y10_c02217{bottom:615.773333pt;}
.yf_c02217{bottom:643.293333pt;}
.ye_c02217{bottom:670.973333pt;}
.yd_c02217{bottom:698.493333pt;}
.yc_c02217{bottom:726.213333pt;}
.yb_c02217{bottom:753.733333pt;}
.ya_c02217{bottom:781.413333pt;}
.y9_c02217{bottom:808.933333pt;}
.y8_c02217{bottom:836.613333pt;}
.y7_c02217{bottom:864.133333pt;}
.y6_c02217{bottom:891.813333pt;}
.y5_c02217{bottom:919.333333pt;}
.y4_c02217{bottom:947.040000pt;}
.h2_c02217{height:20.000000pt;}
.h1_c02217{height:43.441250pt;}
.h4_c02217{height:57.375000pt;}
.h3_c02217{height:62.812500pt;}
.h0_c02217{height:1056.000000pt;}
.w1_c02217{width:59.232000pt;}
.w0_c02217{width:816.000000pt;}
.x0_c02217{left:0.000000pt;}
.x3_c02217{left:14.720000pt;}
.x1_c02217{left:113.472000pt;}
.x4_c02217{left:166.266667pt;}
.x2_c02217{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02218 {
    display:none;
  }
  .loading-indicator_c02218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02218 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02218 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02218" -> "#page-container .classname_c02218")
 */
.pf_c02218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02218 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02218 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02218 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02218 {overflow:visible;}
  }
}
.c_c02218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02218 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02218:after { /* webkit #35443 */
  content: '';
}
.t_c02218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02218 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02218 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02218 { /* info for Javascript */
  display:none;
}
.l_c02218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02218:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02218 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02218.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02218;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02218{font-family:ff1_c02218;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02218;src:url('chunks/assets/font_993e71ef9abc5309af1579fd.woff2')format("woff");}.ff2_c02218{font-family:ff2_c02218;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:ff3_c02218;src:url('chunks/assets/font_e24f3cbe0ba41ea5cd5a104a.woff2')format("woff");}.ff3_c02218{font-family:ff3_c02218;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02218{vertical-align:0.000000px;}
.ls0_c02218{letter-spacing:0.000000px;}
.sc__c02218{text-shadow:none;}
.sc0_c02218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02218{-webkit-text-stroke:0px transparent;}
.sc0_c02218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02218{word-spacing:0.000000px;}
._5_c02218{margin-left:-1.332000px;}
._0_c02218{width:1.008000px;}
._4_c02218{width:2.736000px;}
._6_c02218{width:4.644000px;}
._7_c02218{width:6.120000px;}
._8_c02218{width:7.776000px;}
._1_c02218{width:12.024000px;}
._2_c02218{width:13.104000px;}
._3_c02218{width:14.472000px;}
._b_c02218{width:16.920000px;}
._9_c02218{width:21.816000px;}
._a_c02218{width:22.968000px;}
._c_c02218{width:24.264000px;}
._d_c02218{width:25.452000px;}
.fc1_c02218{color:rgb(192,80,77);}
.fc2_c02218{color:rgb(17,17,17);}
.fc0_c02218{color:rgb(0,0,0);}
.fs0_c02218{font-size:66.240000px;}
.fs1_c02218{font-size:72.000000px;}
.y0_c02218{bottom:0.000000px;}
.y3_c02218{bottom:4.680000px;}
.y2_c02218{bottom:41.796000px;}
.y1_c02218{bottom:75.456000px;}
.y27_c02218{bottom:113.256000px;}
.y26_c02218{bottom:133.956000px;}
.y25_c02218{bottom:154.650000px;}
.y24_c02218{bottom:175.350000px;}
.y23_c02218{bottom:196.050000px;}
.y22_c02218{bottom:216.750000px;}
.y21_c02218{bottom:237.450000px;}
.y20_c02218{bottom:258.150000px;}
.y1f_c02218{bottom:278.895000px;}
.y1e_c02218{bottom:299.595000px;}
.y1d_c02218{bottom:320.295000px;}
.y1c_c02218{bottom:340.995000px;}
.y1b_c02218{bottom:361.695000px;}
.y1a_c02218{bottom:382.395000px;}
.y19_c02218{bottom:413.175000px;}
.y18_c02218{bottom:444.315000px;}
.y17_c02218{bottom:475.275000px;}
.y16_c02218{bottom:506.415000px;}
.y15_c02218{bottom:537.405000px;}
.y14_c02218{bottom:568.545000px;}
.y13_c02218{bottom:599.505000px;}
.y12_c02218{bottom:630.645000px;}
.y11_c02218{bottom:661.605000px;}
.y10_c02218{bottom:692.745000px;}
.yf_c02218{bottom:723.705000px;}
.ye_c02218{bottom:754.845000px;}
.yd_c02218{bottom:785.805000px;}
.yc_c02218{bottom:816.990000px;}
.yb_c02218{bottom:847.950000px;}
.ya_c02218{bottom:879.090000px;}
.y9_c02218{bottom:910.050000px;}
.y8_c02218{bottom:941.190000px;}
.y7_c02218{bottom:972.150000px;}
.y6_c02218{bottom:1003.290000px;}
.y5_c02218{bottom:1034.250000px;}
.y4_c02218{bottom:1065.420000px;}
.h2_c02218{height:22.500000px;}
.h1_c02218{height:48.871406px;}
.h4_c02218{height:64.546875px;}
.h3_c02218{height:70.664062px;}
.h0_c02218{height:1188.000000px;}
.w1_c02218{width:66.636000px;}
.w0_c02218{width:918.000000px;}
.x0_c02218{left:0.000000px;}
.x3_c02218{left:16.560000px;}
.x1_c02218{left:127.656000px;}
.x4_c02218{left:187.050000px;}
.x5_c02218{left:472.575000px;}
.x2_c02218{left:820.950000px;}
@media print{
.v0_c02218{vertical-align:0.000000pt;}
.ls0_c02218{letter-spacing:0.000000pt;}
.ws0_c02218{word-spacing:0.000000pt;}
._5_c02218{margin-left:-1.184000pt;}
._0_c02218{width:0.896000pt;}
._4_c02218{width:2.432000pt;}
._6_c02218{width:4.128000pt;}
._7_c02218{width:5.440000pt;}
._8_c02218{width:6.912000pt;}
._1_c02218{width:10.688000pt;}
._2_c02218{width:11.648000pt;}
._3_c02218{width:12.864000pt;}
._b_c02218{width:15.040000pt;}
._9_c02218{width:19.392000pt;}
._a_c02218{width:20.416000pt;}
._c_c02218{width:21.568000pt;}
._d_c02218{width:22.624000pt;}
.fs0_c02218{font-size:58.880000pt;}
.fs1_c02218{font-size:64.000000pt;}
.y0_c02218{bottom:0.000000pt;}
.y3_c02218{bottom:4.160000pt;}
.y2_c02218{bottom:37.152000pt;}
.y1_c02218{bottom:67.072000pt;}
.y27_c02218{bottom:100.672000pt;}
.y26_c02218{bottom:119.072000pt;}
.y25_c02218{bottom:137.466667pt;}
.y24_c02218{bottom:155.866667pt;}
.y23_c02218{bottom:174.266667pt;}
.y22_c02218{bottom:192.666667pt;}
.y21_c02218{bottom:211.066667pt;}
.y20_c02218{bottom:229.466667pt;}
.y1f_c02218{bottom:247.906667pt;}
.y1e_c02218{bottom:266.306667pt;}
.y1d_c02218{bottom:284.706667pt;}
.y1c_c02218{bottom:303.106667pt;}
.y1b_c02218{bottom:321.506667pt;}
.y1a_c02218{bottom:339.906667pt;}
.y19_c02218{bottom:367.266667pt;}
.y18_c02218{bottom:394.946667pt;}
.y17_c02218{bottom:422.466667pt;}
.y16_c02218{bottom:450.146667pt;}
.y15_c02218{bottom:477.693333pt;}
.y14_c02218{bottom:505.373333pt;}
.y13_c02218{bottom:532.893333pt;}
.y12_c02218{bottom:560.573333pt;}
.y11_c02218{bottom:588.093333pt;}
.y10_c02218{bottom:615.773333pt;}
.yf_c02218{bottom:643.293333pt;}
.ye_c02218{bottom:670.973333pt;}
.yd_c02218{bottom:698.493333pt;}
.yc_c02218{bottom:726.213333pt;}
.yb_c02218{bottom:753.733333pt;}
.ya_c02218{bottom:781.413333pt;}
.y9_c02218{bottom:808.933333pt;}
.y8_c02218{bottom:836.613333pt;}
.y7_c02218{bottom:864.133333pt;}
.y6_c02218{bottom:891.813333pt;}
.y5_c02218{bottom:919.333333pt;}
.y4_c02218{bottom:947.040000pt;}
.h2_c02218{height:20.000000pt;}
.h1_c02218{height:43.441250pt;}
.h4_c02218{height:57.375000pt;}
.h3_c02218{height:62.812500pt;}
.h0_c02218{height:1056.000000pt;}
.w1_c02218{width:59.232000pt;}
.w0_c02218{width:816.000000pt;}
.x0_c02218{left:0.000000pt;}
.x3_c02218{left:14.720000pt;}
.x1_c02218{left:113.472000pt;}
.x4_c02218{left:166.266667pt;}
.x5_c02218{left:420.066667pt;}
.x2_c02218{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02219 {
    display:none;
  }
  .loading-indicator_c02219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02219 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02219 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02219" -> "#page-container .classname_c02219")
 */
.pf_c02219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02219 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02219 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02219 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02219 {overflow:visible;}
  }
}
.c_c02219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02219 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02219:after { /* webkit #35443 */
  content: '';
}
.t_c02219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02219 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02219 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02219 { /* info for Javascript */
  display:none;
}
.l_c02219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02219:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02219 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02219.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02219;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02219{font-family:ff1_c02219;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02219;src:url('chunks/assets/font_95adf71c06511f465c3c0103.woff2')format("woff");}.ff2_c02219{font-family:ff2_c02219;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:ff3_c02219;src:url('chunks/assets/font_0fd395cc50f3c328b12e3778.woff2')format("woff");}.ff3_c02219{font-family:ff3_c02219;line-height:1.311035;font-style:normal;font-weight: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_c02219;src:url('chunks/assets/font_ee7a9f38691a11d2ce92c4e8.woff2')format("woff");}.ff4_c02219{font-family:ff4_c02219;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02219{vertical-align:0.000000px;}
.ls1_c02219{letter-spacing:0.000000px;}
.ls0_c02219{letter-spacing:0.216000px;}
.sc__c02219{text-shadow:none;}
.sc0_c02219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02219{-webkit-text-stroke:0px transparent;}
.sc0_c02219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02219{word-spacing:0.000000px;}
._0_c02219{margin-left:-1.152000px;}
._1_c02219{width:1.416000px;}
._2_c02219{width:3.528000px;}
._3_c02219{width:4.824000px;}
._6_c02219{width:6.336000px;}
._7_c02219{width:7.824000px;}
._8_c02219{width:13.464000px;}
._5_c02219{width:14.688000px;}
._4_c02219{width:15.984000px;}
._c_c02219{width:23.760000px;}
._d_c02219{width:25.272000px;}
._b_c02219{width:27.864000px;}
._9_c02219{width:29.592000px;}
._a_c02219{width:30.960000px;}
.fc1_c02219{color:rgb(192,80,77);}
.fc3_c02219{color:rgb(255,255,255);}
.fc2_c02219{color:rgb(17,17,17);}
.fc0_c02219{color:rgb(0,0,0);}
.fs0_c02219{font-size:66.240000px;}
.fs1_c02219{font-size:72.000000px;}
.y0_c02219{bottom:0.000000px;}
.y10_c02219{bottom:4.140000px;}
.y8_c02219{bottom:4.500000px;}
.y3_c02219{bottom:4.680000px;}
.y2_c02219{bottom:41.796000px;}
.y1_c02219{bottom:75.456000px;}
.y29_c02219{bottom:116.676000px;}
.y28_c02219{bottom:147.816000px;}
.y27_c02219{bottom:178.770000px;}
.y26_c02219{bottom:209.730000px;}
.y25_c02219{bottom:240.870000px;}
.y24_c02219{bottom:271.875000px;}
.y23_c02219{bottom:303.015000px;}
.y22_c02219{bottom:333.975000px;}
.y21_c02219{bottom:365.115000px;}
.y20_c02219{bottom:396.075000px;}
.y1f_c02219{bottom:427.215000px;}
.y1e_c02219{bottom:458.175000px;}
.y1d_c02219{bottom:489.315000px;}
.y1c_c02219{bottom:520.275000px;}
.y1b_c02219{bottom:551.445000px;}
.y1a_c02219{bottom:582.405000px;}
.y19_c02219{bottom:613.545000px;}
.y18_c02219{bottom:644.505000px;}
.y17_c02219{bottom:675.645000px;}
.y16_c02219{bottom:706.605000px;}
.y15_c02219{bottom:737.745000px;}
.y14_c02219{bottom:758.625000px;}
.y13_c02219{bottom:779.325000px;}
.y12_c02219{bottom:800.070000px;}
.y11_c02219{bottom:820.770000px;}
.yf_c02219{bottom:837.690000px;}
.ye_c02219{bottom:859.110000px;}
.yd_c02219{bottom:880.530000px;}
.yc_c02219{bottom:901.950000px;}
.yb_c02219{bottom:923.370000px;}
.ya_c02219{bottom:944.970000px;}
.y9_c02219{bottom:966.390000px;}
.y7_c02219{bottom:987.810000px;}
.y6_c02219{bottom:1023.990000px;}
.y5_c02219{bottom:1044.870000px;}
.y4_c02219{bottom:1065.600000px;}
.h4_c02219{height:20.700000px;}
.h2_c02219{height:22.500000px;}
.h1_c02219{height:48.871406px;}
.h6_c02219{height:64.546875px;}
.h3_c02219{height:70.664062px;}
.h5_c02219{height:72.562500px;}
.h0_c02219{height:1188.000000px;}
.w1_c02219{width:66.636000px;}
.w3_c02219{width:307.875000px;}
.w2_c02219{width:310.350000px;}
.w0_c02219{width:918.000000px;}
.x0_c02219{left:0.000000px;}
.x3_c02219{left:16.560000px;}
.xa_c02219{left:83.370000px;}
.x10_c02219{left:89.460000px;}
.xd_c02219{left:100.440000px;}
.xb_c02219{left:102.420000px;}
.x12_c02219{left:104.940000px;}
.xe_c02219{left:107.460000px;}
.x13_c02219{left:123.705000px;}
.x1_c02219{left:127.656000px;}
.x8_c02219{left:131.085000px;}
.x11_c02219{left:135.225000px;}
.xc_c02219{left:144.930000px;}
.xf_c02219{left:149.430000px;}
.x6_c02219{left:154.650000px;}
.x7_c02219{left:179.310000px;}
.x14_c02219{left:180.750000px;}
.x15_c02219{left:187.050000px;}
.x5_c02219{left:221.790000px;}
.x4_c02219{left:428.475000px;}
.x9_c02219{left:490.395000px;}
.x2_c02219{left:820.950000px;}
@media print{
.v0_c02219{vertical-align:0.000000pt;}
.ls1_c02219{letter-spacing:0.000000pt;}
.ls0_c02219{letter-spacing:0.192000pt;}
.ws0_c02219{word-spacing:0.000000pt;}
._0_c02219{margin-left:-1.024000pt;}
._1_c02219{width:1.258667pt;}
._2_c02219{width:3.136000pt;}
._3_c02219{width:4.288000pt;}
._6_c02219{width:5.632000pt;}
._7_c02219{width:6.954667pt;}
._8_c02219{width:11.968000pt;}
._5_c02219{width:13.056000pt;}
._4_c02219{width:14.208000pt;}
._c_c02219{width:21.120000pt;}
._d_c02219{width:22.464000pt;}
._b_c02219{width:24.768000pt;}
._9_c02219{width:26.304000pt;}
._a_c02219{width:27.520000pt;}
.fs0_c02219{font-size:58.880000pt;}
.fs1_c02219{font-size:64.000000pt;}
.y0_c02219{bottom:0.000000pt;}
.y10_c02219{bottom:3.680000pt;}
.y8_c02219{bottom:4.000000pt;}
.y3_c02219{bottom:4.160000pt;}
.y2_c02219{bottom:37.152000pt;}
.y1_c02219{bottom:67.072000pt;}
.y29_c02219{bottom:103.712000pt;}
.y28_c02219{bottom:131.392000pt;}
.y27_c02219{bottom:158.906667pt;}
.y26_c02219{bottom:186.426667pt;}
.y25_c02219{bottom:214.106667pt;}
.y24_c02219{bottom:241.666667pt;}
.y23_c02219{bottom:269.346667pt;}
.y22_c02219{bottom:296.866667pt;}
.y21_c02219{bottom:324.546667pt;}
.y20_c02219{bottom:352.066667pt;}
.y1f_c02219{bottom:379.746667pt;}
.y1e_c02219{bottom:407.266667pt;}
.y1d_c02219{bottom:434.946667pt;}
.y1c_c02219{bottom:462.466667pt;}
.y1b_c02219{bottom:490.173333pt;}
.y1a_c02219{bottom:517.693333pt;}
.y19_c02219{bottom:545.373333pt;}
.y18_c02219{bottom:572.893333pt;}
.y17_c02219{bottom:600.573333pt;}
.y16_c02219{bottom:628.093333pt;}
.y15_c02219{bottom:655.773333pt;}
.y14_c02219{bottom:674.333333pt;}
.y13_c02219{bottom:692.733333pt;}
.y12_c02219{bottom:711.173333pt;}
.y11_c02219{bottom:729.573333pt;}
.yf_c02219{bottom:744.613333pt;}
.ye_c02219{bottom:763.653333pt;}
.yd_c02219{bottom:782.693333pt;}
.yc_c02219{bottom:801.733333pt;}
.yb_c02219{bottom:820.773333pt;}
.ya_c02219{bottom:839.973333pt;}
.y9_c02219{bottom:859.013333pt;}
.y7_c02219{bottom:878.053333pt;}
.y6_c02219{bottom:910.213333pt;}
.y5_c02219{bottom:928.773333pt;}
.y4_c02219{bottom:947.200000pt;}
.h4_c02219{height:18.400000pt;}
.h2_c02219{height:20.000000pt;}
.h1_c02219{height:43.441250pt;}
.h6_c02219{height:57.375000pt;}
.h3_c02219{height:62.812500pt;}
.h5_c02219{height:64.500000pt;}
.h0_c02219{height:1056.000000pt;}
.w1_c02219{width:59.232000pt;}
.w3_c02219{width:273.666667pt;}
.w2_c02219{width:275.866667pt;}
.w0_c02219{width:816.000000pt;}
.x0_c02219{left:0.000000pt;}
.x3_c02219{left:14.720000pt;}
.xa_c02219{left:74.106667pt;}
.x10_c02219{left:79.520000pt;}
.xd_c02219{left:89.280000pt;}
.xb_c02219{left:91.040000pt;}
.x12_c02219{left:93.280000pt;}
.xe_c02219{left:95.520000pt;}
.x13_c02219{left:109.960000pt;}
.x1_c02219{left:113.472000pt;}
.x8_c02219{left:116.520000pt;}
.x11_c02219{left:120.200000pt;}
.xc_c02219{left:128.826667pt;}
.xf_c02219{left:132.826667pt;}
.x6_c02219{left:137.466667pt;}
.x7_c02219{left:159.386667pt;}
.x14_c02219{left:160.666667pt;}
.x15_c02219{left:166.266667pt;}
.x5_c02219{left:197.146667pt;}
.x4_c02219{left:380.866667pt;}
.x9_c02219{left:435.906667pt;}
.x2_c02219{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02220 {
    display:none;
  }
  .loading-indicator_c02220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02220 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02220 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02220" -> "#page-container .classname_c02220")
 */
.pf_c02220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02220 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02220 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02220 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02220 {overflow:visible;}
  }
}
.c_c02220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02220 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02220:after { /* webkit #35443 */
  content: '';
}
.t_c02220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02220 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02220 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02220 { /* info for Javascript */
  display:none;
}
.l_c02220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02220:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02220 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02220.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02220;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02220{font-family:ff1_c02220;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02220;src:url('chunks/assets/font_679aeca3e5d2f0a9b19809b9.woff2')format("woff");}.ff2_c02220{font-family:ff2_c02220;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;}
.m0_c02220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02220{vertical-align:0.000000px;}
.ls1_c02220{letter-spacing:-0.288000px;}
.ls0_c02220{letter-spacing:0.000000px;}
.sc__c02220{text-shadow:none;}
.sc0_c02220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02220{-webkit-text-stroke:0px transparent;}
.sc0_c02220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02220{word-spacing:0.000000px;}
._1_c02220{margin-left:-1.440000px;}
._3_c02220{width:1.080000px;}
._7_c02220{width:2.304000px;}
._4_c02220{width:3.312000px;}
._6_c02220{width:4.332000px;}
._b_c02220{width:7.200000px;}
._c_c02220{width:8.424000px;}
._9_c02220{width:10.080000px;}
._a_c02220{width:11.268000px;}
._d_c02220{width:12.276000px;}
._11_c02220{width:16.200000px;}
._8_c02220{width:19.944000px;}
._10_c02220{width:20.952000px;}
._2_c02220{width:22.716000px;}
._0_c02220{width:24.120000px;}
._5_c02220{width:25.740000px;}
._12_c02220{width:26.856000px;}
._e_c02220{width:31.752000px;}
._f_c02220{width:32.976000px;}
.fc1_c02220{color:rgb(192,80,77);}
.fc2_c02220{color:rgb(17,17,17);}
.fc0_c02220{color:rgb(0,0,0);}
.fs0_c02220{font-size:66.240000px;}
.fs1_c02220{font-size:72.000000px;}
.y0_c02220{bottom:0.000000px;}
.y3_c02220{bottom:4.680000px;}
.y2_c02220{bottom:41.796000px;}
.y1_c02220{bottom:75.456000px;}
.y21_c02220{bottom:164.910000px;}
.y20_c02220{bottom:195.870000px;}
.y1f_c02220{bottom:226.830000px;}
.y1e_c02220{bottom:257.970000px;}
.y1d_c02220{bottom:288.975000px;}
.y1c_c02220{bottom:320.115000px;}
.y1b_c02220{bottom:351.075000px;}
.y1a_c02220{bottom:382.215000px;}
.y19_c02220{bottom:413.175000px;}
.y18_c02220{bottom:444.315000px;}
.y17_c02220{bottom:475.275000px;}
.y16_c02220{bottom:506.415000px;}
.y15_c02220{bottom:537.405000px;}
.y14_c02220{bottom:568.545000px;}
.y13_c02220{bottom:599.505000px;}
.y12_c02220{bottom:630.645000px;}
.y11_c02220{bottom:661.605000px;}
.y10_c02220{bottom:692.745000px;}
.yf_c02220{bottom:723.705000px;}
.ye_c02220{bottom:754.845000px;}
.yd_c02220{bottom:785.805000px;}
.yc_c02220{bottom:816.990000px;}
.yb_c02220{bottom:847.950000px;}
.ya_c02220{bottom:879.090000px;}
.y9_c02220{bottom:910.050000px;}
.y8_c02220{bottom:941.190000px;}
.y7_c02220{bottom:972.150000px;}
.y6_c02220{bottom:1003.290000px;}
.y5_c02220{bottom:1034.250000px;}
.y4_c02220{bottom:1065.420000px;}
.h2_c02220{height:22.500000px;}
.h1_c02220{height:48.871406px;}
.h3_c02220{height:70.664062px;}
.h0_c02220{height:1188.000000px;}
.w1_c02220{width:66.636000px;}
.w0_c02220{width:918.000000px;}
.x0_c02220{left:0.000000px;}
.x3_c02220{left:16.560000px;}
.x1_c02220{left:127.656000px;}
.x4_c02220{left:187.050000px;}
.x2_c02220{left:820.950000px;}
@media print{
.v0_c02220{vertical-align:0.000000pt;}
.ls1_c02220{letter-spacing:-0.256000pt;}
.ls0_c02220{letter-spacing:0.000000pt;}
.ws0_c02220{word-spacing:0.000000pt;}
._1_c02220{margin-left:-1.280000pt;}
._3_c02220{width:0.960000pt;}
._7_c02220{width:2.048000pt;}
._4_c02220{width:2.944000pt;}
._6_c02220{width:3.850667pt;}
._b_c02220{width:6.400000pt;}
._c_c02220{width:7.488000pt;}
._9_c02220{width:8.960000pt;}
._a_c02220{width:10.016000pt;}
._d_c02220{width:10.912000pt;}
._11_c02220{width:14.400000pt;}
._8_c02220{width:17.728000pt;}
._10_c02220{width:18.624000pt;}
._2_c02220{width:20.192000pt;}
._0_c02220{width:21.440000pt;}
._5_c02220{width:22.880000pt;}
._12_c02220{width:23.872000pt;}
._e_c02220{width:28.224000pt;}
._f_c02220{width:29.312000pt;}
.fs0_c02220{font-size:58.880000pt;}
.fs1_c02220{font-size:64.000000pt;}
.y0_c02220{bottom:0.000000pt;}
.y3_c02220{bottom:4.160000pt;}
.y2_c02220{bottom:37.152000pt;}
.y1_c02220{bottom:67.072000pt;}
.y21_c02220{bottom:146.586667pt;}
.y20_c02220{bottom:174.106667pt;}
.y1f_c02220{bottom:201.626667pt;}
.y1e_c02220{bottom:229.306667pt;}
.y1d_c02220{bottom:256.866667pt;}
.y1c_c02220{bottom:284.546667pt;}
.y1b_c02220{bottom:312.066667pt;}
.y1a_c02220{bottom:339.746667pt;}
.y19_c02220{bottom:367.266667pt;}
.y18_c02220{bottom:394.946667pt;}
.y17_c02220{bottom:422.466667pt;}
.y16_c02220{bottom:450.146667pt;}
.y15_c02220{bottom:477.693333pt;}
.y14_c02220{bottom:505.373333pt;}
.y13_c02220{bottom:532.893333pt;}
.y12_c02220{bottom:560.573333pt;}
.y11_c02220{bottom:588.093333pt;}
.y10_c02220{bottom:615.773333pt;}
.yf_c02220{bottom:643.293333pt;}
.ye_c02220{bottom:670.973333pt;}
.yd_c02220{bottom:698.493333pt;}
.yc_c02220{bottom:726.213333pt;}
.yb_c02220{bottom:753.733333pt;}
.ya_c02220{bottom:781.413333pt;}
.y9_c02220{bottom:808.933333pt;}
.y8_c02220{bottom:836.613333pt;}
.y7_c02220{bottom:864.133333pt;}
.y6_c02220{bottom:891.813333pt;}
.y5_c02220{bottom:919.333333pt;}
.y4_c02220{bottom:947.040000pt;}
.h2_c02220{height:20.000000pt;}
.h1_c02220{height:43.441250pt;}
.h3_c02220{height:62.812500pt;}
.h0_c02220{height:1056.000000pt;}
.w1_c02220{width:59.232000pt;}
.w0_c02220{width:816.000000pt;}
.x0_c02220{left:0.000000pt;}
.x3_c02220{left:14.720000pt;}
.x1_c02220{left:113.472000pt;}
.x4_c02220{left:166.266667pt;}
.x2_c02220{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02221 {
    display:none;
  }
  .loading-indicator_c02221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02221 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02221 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02221" -> "#page-container .classname_c02221")
 */
.pf_c02221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02221 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02221 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02221 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02221 {overflow:visible;}
  }
}
.c_c02221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02221 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02221:after { /* webkit #35443 */
  content: '';
}
.t_c02221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02221 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02221 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02221 { /* info for Javascript */
  display:none;
}
.l_c02221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02221:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02221 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02221.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02221;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02221{font-family:ff1_c02221;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02221;src:url('chunks/assets/font_5b6e961005bdfa6f798bf004.woff2')format("woff");}.ff2_c02221{font-family:ff2_c02221;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:ff3_c02221;src:url('chunks/assets/font_14a1628cc6b5c59c24854650.woff2')format("woff");}.ff3_c02221{font-family:ff3_c02221;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02221{vertical-align:0.000000px;}
.ls1_c02221{letter-spacing:-0.216000px;}
.ls0_c02221{letter-spacing:0.000000px;}
.sc__c02221{text-shadow:none;}
.sc0_c02221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02221{-webkit-text-stroke:0px transparent;}
.sc0_c02221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02221{word-spacing:-17.784000px;}
.ws1_c02221{word-spacing:0.000000px;}
._15_c02221{margin-left:-2.556000px;}
._2_c02221{margin-left:-1.224000px;}
._0_c02221{width:1.584000px;}
._1_c02221{width:2.592000px;}
._5_c02221{width:4.428000px;}
._16_c02221{width:5.436000px;}
._4_c02221{width:6.552000px;}
._3_c02221{width:7.560000px;}
._6_c02221{width:9.144000px;}
._10_c02221{width:10.224000px;}
._17_c02221{width:11.232000px;}
._e_c02221{width:12.312000px;}
._f_c02221{width:13.716000px;}
._8_c02221{width:15.768000px;}
._7_c02221{width:16.992000px;}
._12_c02221{width:19.152000px;}
._13_c02221{width:20.568000px;}
._14_c02221{width:21.744000px;}
._11_c02221{width:24.264000px;}
._9_c02221{width:25.272000px;}
._a_c02221{width:26.316000px;}
._b_c02221{width:30.960000px;}
._c_c02221{width:31.968000px;}
._d_c02221{width:33.456000px;}
.fc1_c02221{color:rgb(192,80,77);}
.fc2_c02221{color:rgb(17,17,17);}
.fc0_c02221{color:rgb(0,0,0);}
.fs0_c02221{font-size:66.240000px;}
.fs1_c02221{font-size:72.000000px;}
.y0_c02221{bottom:0.000000px;}
.y3_c02221{bottom:4.680000px;}
.y2_c02221{bottom:41.796000px;}
.y1_c02221{bottom:75.456000px;}
.y22_c02221{bottom:133.776000px;}
.y21_c02221{bottom:164.910000px;}
.y20_c02221{bottom:195.870000px;}
.y1f_c02221{bottom:226.830000px;}
.y1e_c02221{bottom:257.970000px;}
.y1d_c02221{bottom:288.975000px;}
.y1c_c02221{bottom:320.115000px;}
.y1b_c02221{bottom:351.075000px;}
.y1a_c02221{bottom:382.215000px;}
.y19_c02221{bottom:413.175000px;}
.y18_c02221{bottom:444.315000px;}
.y17_c02221{bottom:475.275000px;}
.y16_c02221{bottom:506.415000px;}
.y15_c02221{bottom:537.405000px;}
.y14_c02221{bottom:568.545000px;}
.y13_c02221{bottom:599.505000px;}
.y12_c02221{bottom:630.645000px;}
.y11_c02221{bottom:661.605000px;}
.y10_c02221{bottom:692.745000px;}
.yf_c02221{bottom:723.705000px;}
.ye_c02221{bottom:754.845000px;}
.yd_c02221{bottom:785.805000px;}
.yc_c02221{bottom:816.990000px;}
.yb_c02221{bottom:847.950000px;}
.ya_c02221{bottom:879.090000px;}
.y9_c02221{bottom:910.050000px;}
.y8_c02221{bottom:941.190000px;}
.y7_c02221{bottom:972.150000px;}
.y6_c02221{bottom:1003.290000px;}
.y5_c02221{bottom:1034.250000px;}
.y4_c02221{bottom:1065.420000px;}
.h2_c02221{height:22.500000px;}
.h1_c02221{height:48.871406px;}
.h4_c02221{height:64.546875px;}
.h3_c02221{height:70.664062px;}
.h0_c02221{height:1188.000000px;}
.w1_c02221{width:66.636000px;}
.w0_c02221{width:918.000000px;}
.x0_c02221{left:0.000000px;}
.x3_c02221{left:16.560000px;}
.x1_c02221{left:127.656000px;}
.x4_c02221{left:187.050000px;}
.x2_c02221{left:820.950000px;}
@media print{
.v0_c02221{vertical-align:0.000000pt;}
.ls1_c02221{letter-spacing:-0.192000pt;}
.ls0_c02221{letter-spacing:0.000000pt;}
.ws0_c02221{word-spacing:-15.808000pt;}
.ws1_c02221{word-spacing:0.000000pt;}
._15_c02221{margin-left:-2.272000pt;}
._2_c02221{margin-left:-1.088000pt;}
._0_c02221{width:1.408000pt;}
._1_c02221{width:2.304000pt;}
._5_c02221{width:3.936000pt;}
._16_c02221{width:4.832000pt;}
._4_c02221{width:5.824000pt;}
._3_c02221{width:6.720000pt;}
._6_c02221{width:8.128000pt;}
._10_c02221{width:9.088000pt;}
._17_c02221{width:9.984000pt;}
._e_c02221{width:10.944000pt;}
._f_c02221{width:12.192000pt;}
._8_c02221{width:14.016000pt;}
._7_c02221{width:15.104000pt;}
._12_c02221{width:17.024000pt;}
._13_c02221{width:18.282667pt;}
._14_c02221{width:19.328000pt;}
._11_c02221{width:21.568000pt;}
._9_c02221{width:22.464000pt;}
._a_c02221{width:23.392000pt;}
._b_c02221{width:27.520000pt;}
._c_c02221{width:28.416000pt;}
._d_c02221{width:29.738667pt;}
.fs0_c02221{font-size:58.880000pt;}
.fs1_c02221{font-size:64.000000pt;}
.y0_c02221{bottom:0.000000pt;}
.y3_c02221{bottom:4.160000pt;}
.y2_c02221{bottom:37.152000pt;}
.y1_c02221{bottom:67.072000pt;}
.y22_c02221{bottom:118.912000pt;}
.y21_c02221{bottom:146.586667pt;}
.y20_c02221{bottom:174.106667pt;}
.y1f_c02221{bottom:201.626667pt;}
.y1e_c02221{bottom:229.306667pt;}
.y1d_c02221{bottom:256.866667pt;}
.y1c_c02221{bottom:284.546667pt;}
.y1b_c02221{bottom:312.066667pt;}
.y1a_c02221{bottom:339.746667pt;}
.y19_c02221{bottom:367.266667pt;}
.y18_c02221{bottom:394.946667pt;}
.y17_c02221{bottom:422.466667pt;}
.y16_c02221{bottom:450.146667pt;}
.y15_c02221{bottom:477.693333pt;}
.y14_c02221{bottom:505.373333pt;}
.y13_c02221{bottom:532.893333pt;}
.y12_c02221{bottom:560.573333pt;}
.y11_c02221{bottom:588.093333pt;}
.y10_c02221{bottom:615.773333pt;}
.yf_c02221{bottom:643.293333pt;}
.ye_c02221{bottom:670.973333pt;}
.yd_c02221{bottom:698.493333pt;}
.yc_c02221{bottom:726.213333pt;}
.yb_c02221{bottom:753.733333pt;}
.ya_c02221{bottom:781.413333pt;}
.y9_c02221{bottom:808.933333pt;}
.y8_c02221{bottom:836.613333pt;}
.y7_c02221{bottom:864.133333pt;}
.y6_c02221{bottom:891.813333pt;}
.y5_c02221{bottom:919.333333pt;}
.y4_c02221{bottom:947.040000pt;}
.h2_c02221{height:20.000000pt;}
.h1_c02221{height:43.441250pt;}
.h4_c02221{height:57.375000pt;}
.h3_c02221{height:62.812500pt;}
.h0_c02221{height:1056.000000pt;}
.w1_c02221{width:59.232000pt;}
.w0_c02221{width:816.000000pt;}
.x0_c02221{left:0.000000pt;}
.x3_c02221{left:14.720000pt;}
.x1_c02221{left:113.472000pt;}
.x4_c02221{left:166.266667pt;}
.x2_c02221{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02222 {
    display:none;
  }
  .loading-indicator_c02222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02222 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02222 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02222" -> "#page-container .classname_c02222")
 */
.pf_c02222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02222 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02222 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02222 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02222 {overflow:visible;}
  }
}
.c_c02222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02222 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02222:after { /* webkit #35443 */
  content: '';
}
.t_c02222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02222 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02222 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02222 { /* info for Javascript */
  display:none;
}
.l_c02222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02222:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02222 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02222.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02222;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02222{font-family:ff1_c02222;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02222;src:url('chunks/assets/font_ed1084a9ae4acad1badf7674.woff2')format("woff");}.ff2_c02222{font-family:ff2_c02222;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;}
.m0_c02222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02222{vertical-align:0.000000px;}
.ls0_c02222{letter-spacing:0.000000px;}
.sc__c02222{text-shadow:none;}
.sc0_c02222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02222{-webkit-text-stroke:0px transparent;}
.sc0_c02222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02222{word-spacing:0.000000px;}
._d_c02222{margin-left:-2.232000px;}
._1_c02222{margin-left:-1.152000px;}
._2_c02222{width:1.152000px;}
._7_c02222{width:2.196000px;}
._5_c02222{width:3.420000px;}
._0_c02222{width:4.680000px;}
._a_c02222{width:6.480000px;}
._6_c02222{width:8.712000px;}
._3_c02222{width:9.936000px;}
._4_c02222{width:11.016000px;}
._12_c02222{width:12.744000px;}
._c_c02222{width:14.832000px;}
._b_c02222{width:16.200000px;}
._10_c02222{width:21.024000px;}
._11_c02222{width:22.176000px;}
._8_c02222{width:23.400000px;}
._9_c02222{width:24.984000px;}
._e_c02222{width:30.456000px;}
._f_c02222{width:31.464000px;}
._15_c02222{width:36.792000px;}
._14_c02222{width:37.800000px;}
._13_c02222{width:38.880000px;}
.fc1_c02222{color:rgb(192,80,77);}
.fc0_c02222{color:rgb(0,0,0);}
.fs0_c02222{font-size:66.240000px;}
.fs1_c02222{font-size:72.000000px;}
.y0_c02222{bottom:0.000000px;}
.y3_c02222{bottom:4.680000px;}
.y2_c02222{bottom:41.796000px;}
.y1_c02222{bottom:75.456000px;}
.y22_c02222{bottom:133.776000px;}
.y21_c02222{bottom:164.910000px;}
.y20_c02222{bottom:195.870000px;}
.y1f_c02222{bottom:226.830000px;}
.y1e_c02222{bottom:257.970000px;}
.y1d_c02222{bottom:288.975000px;}
.y1c_c02222{bottom:320.115000px;}
.y1b_c02222{bottom:351.075000px;}
.y1a_c02222{bottom:382.215000px;}
.y19_c02222{bottom:413.175000px;}
.y18_c02222{bottom:444.315000px;}
.y17_c02222{bottom:475.275000px;}
.y16_c02222{bottom:506.415000px;}
.y15_c02222{bottom:537.405000px;}
.y14_c02222{bottom:568.545000px;}
.y13_c02222{bottom:599.505000px;}
.y12_c02222{bottom:630.645000px;}
.y11_c02222{bottom:661.605000px;}
.y10_c02222{bottom:692.745000px;}
.yf_c02222{bottom:723.705000px;}
.ye_c02222{bottom:754.845000px;}
.yd_c02222{bottom:785.805000px;}
.yc_c02222{bottom:816.990000px;}
.yb_c02222{bottom:847.950000px;}
.ya_c02222{bottom:879.090000px;}
.y9_c02222{bottom:910.050000px;}
.y8_c02222{bottom:941.190000px;}
.y7_c02222{bottom:972.150000px;}
.y6_c02222{bottom:1003.290000px;}
.y5_c02222{bottom:1034.250000px;}
.y4_c02222{bottom:1065.420000px;}
.h2_c02222{height:22.500000px;}
.h1_c02222{height:48.871406px;}
.h3_c02222{height:70.664062px;}
.h0_c02222{height:1188.000000px;}
.w1_c02222{width:66.636000px;}
.w0_c02222{width:918.000000px;}
.x0_c02222{left:0.000000px;}
.x3_c02222{left:16.560000px;}
.x1_c02222{left:127.656000px;}
.x4_c02222{left:187.050000px;}
.x2_c02222{left:820.950000px;}
@media print{
.v0_c02222{vertical-align:0.000000pt;}
.ls0_c02222{letter-spacing:0.000000pt;}
.ws0_c02222{word-spacing:0.000000pt;}
._d_c02222{margin-left:-1.984000pt;}
._1_c02222{margin-left:-1.024000pt;}
._2_c02222{width:1.024000pt;}
._7_c02222{width:1.952000pt;}
._5_c02222{width:3.040000pt;}
._0_c02222{width:4.160000pt;}
._a_c02222{width:5.760000pt;}
._6_c02222{width:7.744000pt;}
._3_c02222{width:8.832000pt;}
._4_c02222{width:9.792000pt;}
._12_c02222{width:11.328000pt;}
._c_c02222{width:13.184000pt;}
._b_c02222{width:14.400000pt;}
._10_c02222{width:18.688000pt;}
._11_c02222{width:19.712000pt;}
._8_c02222{width:20.800000pt;}
._9_c02222{width:22.208000pt;}
._e_c02222{width:27.072000pt;}
._f_c02222{width:27.968000pt;}
._15_c02222{width:32.704000pt;}
._14_c02222{width:33.600000pt;}
._13_c02222{width:34.560000pt;}
.fs0_c02222{font-size:58.880000pt;}
.fs1_c02222{font-size:64.000000pt;}
.y0_c02222{bottom:0.000000pt;}
.y3_c02222{bottom:4.160000pt;}
.y2_c02222{bottom:37.152000pt;}
.y1_c02222{bottom:67.072000pt;}
.y22_c02222{bottom:118.912000pt;}
.y21_c02222{bottom:146.586667pt;}
.y20_c02222{bottom:174.106667pt;}
.y1f_c02222{bottom:201.626667pt;}
.y1e_c02222{bottom:229.306667pt;}
.y1d_c02222{bottom:256.866667pt;}
.y1c_c02222{bottom:284.546667pt;}
.y1b_c02222{bottom:312.066667pt;}
.y1a_c02222{bottom:339.746667pt;}
.y19_c02222{bottom:367.266667pt;}
.y18_c02222{bottom:394.946667pt;}
.y17_c02222{bottom:422.466667pt;}
.y16_c02222{bottom:450.146667pt;}
.y15_c02222{bottom:477.693333pt;}
.y14_c02222{bottom:505.373333pt;}
.y13_c02222{bottom:532.893333pt;}
.y12_c02222{bottom:560.573333pt;}
.y11_c02222{bottom:588.093333pt;}
.y10_c02222{bottom:615.773333pt;}
.yf_c02222{bottom:643.293333pt;}
.ye_c02222{bottom:670.973333pt;}
.yd_c02222{bottom:698.493333pt;}
.yc_c02222{bottom:726.213333pt;}
.yb_c02222{bottom:753.733333pt;}
.ya_c02222{bottom:781.413333pt;}
.y9_c02222{bottom:808.933333pt;}
.y8_c02222{bottom:836.613333pt;}
.y7_c02222{bottom:864.133333pt;}
.y6_c02222{bottom:891.813333pt;}
.y5_c02222{bottom:919.333333pt;}
.y4_c02222{bottom:947.040000pt;}
.h2_c02222{height:20.000000pt;}
.h1_c02222{height:43.441250pt;}
.h3_c02222{height:62.812500pt;}
.h0_c02222{height:1056.000000pt;}
.w1_c02222{width:59.232000pt;}
.w0_c02222{width:816.000000pt;}
.x0_c02222{left:0.000000pt;}
.x3_c02222{left:14.720000pt;}
.x1_c02222{left:113.472000pt;}
.x4_c02222{left:166.266667pt;}
.x2_c02222{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02223 {
    display:none;
  }
  .loading-indicator_c02223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02223 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02223 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02223" -> "#page-container .classname_c02223")
 */
.pf_c02223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02223 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02223 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02223 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02223 {overflow:visible;}
  }
}
.c_c02223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02223 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02223:after { /* webkit #35443 */
  content: '';
}
.t_c02223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02223 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02223 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02223 { /* info for Javascript */
  display:none;
}
.l_c02223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02223:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02223 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02223.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02223;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02223{font-family:ff1_c02223;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02223;src:url('chunks/assets/font_2490a457b7633450f91db7e8.woff2')format("woff");}.ff2_c02223{font-family:ff2_c02223;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:ff3_c02223;src:url('chunks/assets/font_044c561ee9bf00ddfbeb6057.woff2')format("woff");}.ff3_c02223{font-family:ff3_c02223;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02223{vertical-align:0.000000px;}
.ls0_c02223{letter-spacing:0.000000px;}
.sc__c02223{text-shadow:none;}
.sc0_c02223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02223{-webkit-text-stroke:0px transparent;}
.sc0_c02223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02223{word-spacing:0.000000px;}
._14_c02223{margin-left:-2.160000px;}
._5_c02223{margin-left:-1.080000px;}
._2_c02223{width:1.008000px;}
._0_c02223{width:2.088000px;}
._1_c02223{width:3.240000px;}
._e_c02223{width:4.680000px;}
._f_c02223{width:5.904000px;}
._6_c02223{width:7.056000px;}
._3_c02223{width:8.424000px;}
._4_c02223{width:9.504000px;}
._b_c02223{width:10.512000px;}
._12_c02223{width:12.672000px;}
._11_c02223{width:13.824000px;}
._15_c02223{width:15.840000px;}
._7_c02223{width:16.920000px;}
._13_c02223{width:19.440000px;}
._c_c02223{width:20.736000px;}
._d_c02223{width:21.960000px;}
._a_c02223{width:25.632000px;}
._9_c02223{width:26.856000px;}
._10_c02223{width:33.696000px;}
._8_c02223{width:55.512000px;}
.fc1_c02223{color:rgb(192,80,77);}
.fc0_c02223{color:rgb(0,0,0);}
.fs0_c02223{font-size:66.240000px;}
.fs1_c02223{font-size:72.000000px;}
.y0_c02223{bottom:0.000000px;}
.y3_c02223{bottom:4.680000px;}
.y2_c02223{bottom:41.796000px;}
.y1_c02223{bottom:75.456000px;}
.y22_c02223{bottom:133.776000px;}
.y21_c02223{bottom:164.910000px;}
.y20_c02223{bottom:195.870000px;}
.y1f_c02223{bottom:226.830000px;}
.y1e_c02223{bottom:257.970000px;}
.y1d_c02223{bottom:288.975000px;}
.y1c_c02223{bottom:320.115000px;}
.y1b_c02223{bottom:351.075000px;}
.y1a_c02223{bottom:382.215000px;}
.y19_c02223{bottom:413.175000px;}
.y18_c02223{bottom:444.315000px;}
.y17_c02223{bottom:475.275000px;}
.y16_c02223{bottom:506.415000px;}
.y15_c02223{bottom:537.405000px;}
.y14_c02223{bottom:568.545000px;}
.y13_c02223{bottom:599.505000px;}
.y12_c02223{bottom:630.645000px;}
.y11_c02223{bottom:661.605000px;}
.y10_c02223{bottom:692.745000px;}
.yf_c02223{bottom:723.705000px;}
.ye_c02223{bottom:754.845000px;}
.yd_c02223{bottom:785.805000px;}
.yc_c02223{bottom:816.990000px;}
.yb_c02223{bottom:847.950000px;}
.ya_c02223{bottom:879.090000px;}
.y9_c02223{bottom:910.050000px;}
.y8_c02223{bottom:941.190000px;}
.y7_c02223{bottom:972.150000px;}
.y6_c02223{bottom:1003.290000px;}
.y5_c02223{bottom:1034.250000px;}
.y4_c02223{bottom:1065.420000px;}
.h2_c02223{height:22.500000px;}
.h1_c02223{height:48.871406px;}
.h3_c02223{height:70.664062px;}
.h0_c02223{height:1188.000000px;}
.w1_c02223{width:66.636000px;}
.w0_c02223{width:918.000000px;}
.x0_c02223{left:0.000000px;}
.x3_c02223{left:16.560000px;}
.x1_c02223{left:127.656000px;}
.x4_c02223{left:187.050000px;}
.x2_c02223{left:820.950000px;}
@media print{
.v0_c02223{vertical-align:0.000000pt;}
.ls0_c02223{letter-spacing:0.000000pt;}
.ws0_c02223{word-spacing:0.000000pt;}
._14_c02223{margin-left:-1.920000pt;}
._5_c02223{margin-left:-0.960000pt;}
._2_c02223{width:0.896000pt;}
._0_c02223{width:1.856000pt;}
._1_c02223{width:2.880000pt;}
._e_c02223{width:4.160000pt;}
._f_c02223{width:5.248000pt;}
._6_c02223{width:6.272000pt;}
._3_c02223{width:7.488000pt;}
._4_c02223{width:8.448000pt;}
._b_c02223{width:9.344000pt;}
._12_c02223{width:11.264000pt;}
._11_c02223{width:12.288000pt;}
._15_c02223{width:14.080000pt;}
._7_c02223{width:15.040000pt;}
._13_c02223{width:17.280000pt;}
._c_c02223{width:18.432000pt;}
._d_c02223{width:19.520000pt;}
._a_c02223{width:22.784000pt;}
._9_c02223{width:23.872000pt;}
._10_c02223{width:29.952000pt;}
._8_c02223{width:49.344000pt;}
.fs0_c02223{font-size:58.880000pt;}
.fs1_c02223{font-size:64.000000pt;}
.y0_c02223{bottom:0.000000pt;}
.y3_c02223{bottom:4.160000pt;}
.y2_c02223{bottom:37.152000pt;}
.y1_c02223{bottom:67.072000pt;}
.y22_c02223{bottom:118.912000pt;}
.y21_c02223{bottom:146.586667pt;}
.y20_c02223{bottom:174.106667pt;}
.y1f_c02223{bottom:201.626667pt;}
.y1e_c02223{bottom:229.306667pt;}
.y1d_c02223{bottom:256.866667pt;}
.y1c_c02223{bottom:284.546667pt;}
.y1b_c02223{bottom:312.066667pt;}
.y1a_c02223{bottom:339.746667pt;}
.y19_c02223{bottom:367.266667pt;}
.y18_c02223{bottom:394.946667pt;}
.y17_c02223{bottom:422.466667pt;}
.y16_c02223{bottom:450.146667pt;}
.y15_c02223{bottom:477.693333pt;}
.y14_c02223{bottom:505.373333pt;}
.y13_c02223{bottom:532.893333pt;}
.y12_c02223{bottom:560.573333pt;}
.y11_c02223{bottom:588.093333pt;}
.y10_c02223{bottom:615.773333pt;}
.yf_c02223{bottom:643.293333pt;}
.ye_c02223{bottom:670.973333pt;}
.yd_c02223{bottom:698.493333pt;}
.yc_c02223{bottom:726.213333pt;}
.yb_c02223{bottom:753.733333pt;}
.ya_c02223{bottom:781.413333pt;}
.y9_c02223{bottom:808.933333pt;}
.y8_c02223{bottom:836.613333pt;}
.y7_c02223{bottom:864.133333pt;}
.y6_c02223{bottom:891.813333pt;}
.y5_c02223{bottom:919.333333pt;}
.y4_c02223{bottom:947.040000pt;}
.h2_c02223{height:20.000000pt;}
.h1_c02223{height:43.441250pt;}
.h3_c02223{height:62.812500pt;}
.h0_c02223{height:1056.000000pt;}
.w1_c02223{width:59.232000pt;}
.w0_c02223{width:816.000000pt;}
.x0_c02223{left:0.000000pt;}
.x3_c02223{left:14.720000pt;}
.x1_c02223{left:113.472000pt;}
.x4_c02223{left:166.266667pt;}
.x2_c02223{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02224 {
    display:none;
  }
  .loading-indicator_c02224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02224 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02224 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02224" -> "#page-container .classname_c02224")
 */
.pf_c02224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02224 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02224 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02224 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02224 {overflow:visible;}
  }
}
.c_c02224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02224 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02224:after { /* webkit #35443 */
  content: '';
}
.t_c02224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02224 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02224 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02224 { /* info for Javascript */
  display:none;
}
.l_c02224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02224:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02224 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02224.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02224;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02224{font-family:ff1_c02224;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02224;src:url('chunks/assets/font_1068648dcfcd48f7b025cfb3.woff2')format("woff");}.ff2_c02224{font-family:ff2_c02224;line-height:1.112305;font-style:normal;font-weight: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_c02224;src:url('chunks/assets/font_f30c609db42624e7794a554a.woff2')format("woff");}.ff3_c02224{font-family:ff3_c02224;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;}
.m0_c02224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02224{vertical-align:0.000000px;}
.ls0_c02224{letter-spacing:0.000000px;}
.sc__c02224{text-shadow:none;}
.sc0_c02224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02224{-webkit-text-stroke:0px transparent;}
.sc0_c02224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02224{word-spacing:0.000000px;}
._1_c02224{margin-left:-2.160000px;}
._5_c02224{margin-left:-1.080000px;}
._3_c02224{width:1.044000px;}
._12_c02224{width:2.448000px;}
._9_c02224{width:4.176000px;}
._8_c02224{width:5.184000px;}
._a_c02224{width:6.444000px;}
._4_c02224{width:7.704000px;}
._2_c02224{width:9.576000px;}
._0_c02224{width:10.944000px;}
._b_c02224{width:12.960000px;}
._c_c02224{width:14.292000px;}
._7_c02224{width:15.552000px;}
._6_c02224{width:16.632000px;}
._13_c02224{width:19.332000px;}
._14_c02224{width:20.808000px;}
._f_c02224{width:22.032000px;}
._10_c02224{width:23.076000px;}
._11_c02224{width:24.120000px;}
._d_c02224{width:25.992000px;}
._e_c02224{width:27.936000px;}
.fc1_c02224{color:rgb(192,80,77);}
.fc0_c02224{color:rgb(0,0,0);}
.fs0_c02224{font-size:66.240000px;}
.fs1_c02224{font-size:72.000000px;}
.y0_c02224{bottom:0.000000px;}
.y3_c02224{bottom:4.680000px;}
.y2_c02224{bottom:41.796000px;}
.y1_c02224{bottom:75.456000px;}
.y22_c02224{bottom:133.776000px;}
.y21_c02224{bottom:164.910000px;}
.y20_c02224{bottom:195.870000px;}
.y1f_c02224{bottom:226.830000px;}
.y1e_c02224{bottom:257.970000px;}
.y1d_c02224{bottom:288.975000px;}
.y1c_c02224{bottom:320.115000px;}
.y1b_c02224{bottom:351.075000px;}
.y1a_c02224{bottom:382.215000px;}
.y19_c02224{bottom:413.175000px;}
.y18_c02224{bottom:444.315000px;}
.y17_c02224{bottom:475.275000px;}
.y16_c02224{bottom:506.415000px;}
.y15_c02224{bottom:537.405000px;}
.y14_c02224{bottom:568.545000px;}
.y13_c02224{bottom:599.505000px;}
.y12_c02224{bottom:630.645000px;}
.y11_c02224{bottom:661.605000px;}
.y10_c02224{bottom:692.745000px;}
.yf_c02224{bottom:723.705000px;}
.ye_c02224{bottom:754.845000px;}
.yd_c02224{bottom:785.805000px;}
.yc_c02224{bottom:816.990000px;}
.yb_c02224{bottom:847.950000px;}
.ya_c02224{bottom:879.090000px;}
.y9_c02224{bottom:910.050000px;}
.y8_c02224{bottom:941.190000px;}
.y7_c02224{bottom:972.150000px;}
.y6_c02224{bottom:1003.290000px;}
.y5_c02224{bottom:1034.250000px;}
.y4_c02224{bottom:1065.420000px;}
.h2_c02224{height:22.500000px;}
.h1_c02224{height:48.871406px;}
.h3_c02224{height:70.664062px;}
.h0_c02224{height:1188.000000px;}
.w1_c02224{width:66.636000px;}
.w0_c02224{width:918.000000px;}
.x0_c02224{left:0.000000px;}
.x3_c02224{left:16.560000px;}
.x1_c02224{left:127.656000px;}
.x4_c02224{left:187.050000px;}
.x2_c02224{left:820.950000px;}
@media print{
.v0_c02224{vertical-align:0.000000pt;}
.ls0_c02224{letter-spacing:0.000000pt;}
.ws0_c02224{word-spacing:0.000000pt;}
._1_c02224{margin-left:-1.920000pt;}
._5_c02224{margin-left:-0.960000pt;}
._3_c02224{width:0.928000pt;}
._12_c02224{width:2.176000pt;}
._9_c02224{width:3.712000pt;}
._8_c02224{width:4.608000pt;}
._a_c02224{width:5.728000pt;}
._4_c02224{width:6.848000pt;}
._2_c02224{width:8.512000pt;}
._0_c02224{width:9.728000pt;}
._b_c02224{width:11.520000pt;}
._c_c02224{width:12.704000pt;}
._7_c02224{width:13.824000pt;}
._6_c02224{width:14.784000pt;}
._13_c02224{width:17.184000pt;}
._14_c02224{width:18.496000pt;}
._f_c02224{width:19.584000pt;}
._10_c02224{width:20.512000pt;}
._11_c02224{width:21.440000pt;}
._d_c02224{width:23.104000pt;}
._e_c02224{width:24.832000pt;}
.fs0_c02224{font-size:58.880000pt;}
.fs1_c02224{font-size:64.000000pt;}
.y0_c02224{bottom:0.000000pt;}
.y3_c02224{bottom:4.160000pt;}
.y2_c02224{bottom:37.152000pt;}
.y1_c02224{bottom:67.072000pt;}
.y22_c02224{bottom:118.912000pt;}
.y21_c02224{bottom:146.586667pt;}
.y20_c02224{bottom:174.106667pt;}
.y1f_c02224{bottom:201.626667pt;}
.y1e_c02224{bottom:229.306667pt;}
.y1d_c02224{bottom:256.866667pt;}
.y1c_c02224{bottom:284.546667pt;}
.y1b_c02224{bottom:312.066667pt;}
.y1a_c02224{bottom:339.746667pt;}
.y19_c02224{bottom:367.266667pt;}
.y18_c02224{bottom:394.946667pt;}
.y17_c02224{bottom:422.466667pt;}
.y16_c02224{bottom:450.146667pt;}
.y15_c02224{bottom:477.693333pt;}
.y14_c02224{bottom:505.373333pt;}
.y13_c02224{bottom:532.893333pt;}
.y12_c02224{bottom:560.573333pt;}
.y11_c02224{bottom:588.093333pt;}
.y10_c02224{bottom:615.773333pt;}
.yf_c02224{bottom:643.293333pt;}
.ye_c02224{bottom:670.973333pt;}
.yd_c02224{bottom:698.493333pt;}
.yc_c02224{bottom:726.213333pt;}
.yb_c02224{bottom:753.733333pt;}
.ya_c02224{bottom:781.413333pt;}
.y9_c02224{bottom:808.933333pt;}
.y8_c02224{bottom:836.613333pt;}
.y7_c02224{bottom:864.133333pt;}
.y6_c02224{bottom:891.813333pt;}
.y5_c02224{bottom:919.333333pt;}
.y4_c02224{bottom:947.040000pt;}
.h2_c02224{height:20.000000pt;}
.h1_c02224{height:43.441250pt;}
.h3_c02224{height:62.812500pt;}
.h0_c02224{height:1056.000000pt;}
.w1_c02224{width:59.232000pt;}
.w0_c02224{width:816.000000pt;}
.x0_c02224{left:0.000000pt;}
.x3_c02224{left:14.720000pt;}
.x1_c02224{left:113.472000pt;}
.x4_c02224{left:166.266667pt;}
.x2_c02224{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02225 {
    display:none;
  }
  .loading-indicator_c02225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02225 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02225 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02225" -> "#page-container .classname_c02225")
 */
.pf_c02225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02225 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02225 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02225 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02225 {overflow:visible;}
  }
}
.c_c02225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02225 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02225:after { /* webkit #35443 */
  content: '';
}
.t_c02225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02225 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02225 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02225 { /* info for Javascript */
  display:none;
}
.l_c02225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02225:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02225 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02225.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02225;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02225{font-family:ff1_c02225;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02225;src:url('chunks/assets/font_f6ec9eb35bd4372255832edb.woff2')format("woff");}.ff2_c02225{font-family:ff2_c02225;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:ff3_c02225;src:url('chunks/assets/font_2ebe2f8139d5e787ab866d4a.woff2')format("woff");}.ff3_c02225{font-family:ff3_c02225;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02225{vertical-align:0.000000px;}
.ls0_c02225{letter-spacing:0.000000px;}
.sc__c02225{text-shadow:none;}
.sc0_c02225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02225{-webkit-text-stroke:0px transparent;}
.sc0_c02225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02225{word-spacing:0.000000px;}
._1_c02225{margin-left:-1.008000px;}
._2_c02225{width:1.008000px;}
._3_c02225{width:2.520000px;}
._4_c02225{width:3.816000px;}
._7_c02225{width:5.616000px;}
._6_c02225{width:6.912000px;}
._5_c02225{width:8.568000px;}
._8_c02225{width:9.720000px;}
._9_c02225{width:10.944000px;}
._e_c02225{width:14.184000px;}
._d_c02225{width:16.416000px;}
._0_c02225{width:19.512000px;}
._c_c02225{width:23.760000px;}
._b_c02225{width:25.776000px;}
._a_c02225{width:26.856000px;}
.fc1_c02225{color:rgb(192,80,77);}
.fc3_c02225{color:rgb(255,255,255);}
.fc2_c02225{color:rgb(17,17,17);}
.fc0_c02225{color:rgb(0,0,0);}
.fs0_c02225{font-size:66.240000px;}
.fs1_c02225{font-size:72.000000px;}
.y0_c02225{bottom:0.000000px;}
.y15_c02225{bottom:4.500000px;}
.y3_c02225{bottom:4.680000px;}
.y13_c02225{bottom:8.640000px;}
.y2_c02225{bottom:41.796000px;}
.y1_c02225{bottom:75.456000px;}
.y29_c02225{bottom:153.030000px;}
.y28_c02225{bottom:184.170000px;}
.y27_c02225{bottom:215.130000px;}
.y26_c02225{bottom:246.270000px;}
.y25_c02225{bottom:277.275000px;}
.y24_c02225{bottom:308.415000px;}
.y23_c02225{bottom:339.375000px;}
.y22_c02225{bottom:360.255000px;}
.y21_c02225{bottom:380.955000px;}
.y20_c02225{bottom:401.655000px;}
.y1f_c02225{bottom:422.355000px;}
.y1e_c02225{bottom:443.055000px;}
.y1d_c02225{bottom:463.755000px;}
.y1c_c02225{bottom:480.855000px;}
.y1b_c02225{bottom:502.275000px;}
.y1a_c02225{bottom:523.695000px;}
.y19_c02225{bottom:545.145000px;}
.y18_c02225{bottom:566.565000px;}
.y17_c02225{bottom:587.985000px;}
.y16_c02225{bottom:609.405000px;}
.y14_c02225{bottom:631.005000px;}
.y12_c02225{bottom:652.425000px;}
.y11_c02225{bottom:682.485000px;}
.y10_c02225{bottom:703.185000px;}
.yf_c02225{bottom:723.885000px;}
.ye_c02225{bottom:754.845000px;}
.yd_c02225{bottom:785.805000px;}
.yc_c02225{bottom:816.990000px;}
.yb_c02225{bottom:847.950000px;}
.ya_c02225{bottom:879.090000px;}
.y9_c02225{bottom:910.050000px;}
.y8_c02225{bottom:941.190000px;}
.y7_c02225{bottom:972.150000px;}
.y6_c02225{bottom:1003.290000px;}
.y5_c02225{bottom:1034.250000px;}
.y4_c02225{bottom:1065.420000px;}
.h6_c02225{height:20.700000px;}
.h7_c02225{height:20.736000px;}
.h2_c02225{height:22.500000px;}
.h5_c02225{height:24.840000px;}
.h1_c02225{height:48.871406px;}
.h4_c02225{height:64.546875px;}
.h3_c02225{height:70.664062px;}
.h0_c02225{height:1188.000000px;}
.w1_c02225{width:66.636000px;}
.w3_c02225{width:169.410000px;}
.w2_c02225{width:437.115000px;}
.w0_c02225{width:918.000000px;}
.x0_c02225{left:0.000000px;}
.xa_c02225{left:14.220000px;}
.x3_c02225{left:16.560000px;}
.xc_c02225{left:75.645000px;}
.xe_c02225{left:80.145000px;}
.x1_c02225{left:127.656000px;}
.xd_c02225{left:154.845000px;}
.xb_c02225{left:160.785000px;}
.xf_c02225{left:167.265000px;}
.x10_c02225{left:173.205000px;}
.x7_c02225{left:179.310000px;}
.x11_c02225{left:183.465000px;}
.x4_c02225{left:187.050000px;}
.x8_c02225{left:190.485000px;}
.x12_c02225{left:198.585000px;}
.x6_c02225{left:221.430000px;}
.x5_c02225{left:441.435000px;}
.x9_c02225{left:617.145000px;}
.x2_c02225{left:820.950000px;}
@media print{
.v0_c02225{vertical-align:0.000000pt;}
.ls0_c02225{letter-spacing:0.000000pt;}
.ws0_c02225{word-spacing:0.000000pt;}
._1_c02225{margin-left:-0.896000pt;}
._2_c02225{width:0.896000pt;}
._3_c02225{width:2.240000pt;}
._4_c02225{width:3.392000pt;}
._7_c02225{width:4.992000pt;}
._6_c02225{width:6.144000pt;}
._5_c02225{width:7.616000pt;}
._8_c02225{width:8.640000pt;}
._9_c02225{width:9.728000pt;}
._e_c02225{width:12.608000pt;}
._d_c02225{width:14.592000pt;}
._0_c02225{width:17.344000pt;}
._c_c02225{width:21.120000pt;}
._b_c02225{width:22.912000pt;}
._a_c02225{width:23.872000pt;}
.fs0_c02225{font-size:58.880000pt;}
.fs1_c02225{font-size:64.000000pt;}
.y0_c02225{bottom:0.000000pt;}
.y15_c02225{bottom:4.000000pt;}
.y3_c02225{bottom:4.160000pt;}
.y13_c02225{bottom:7.680000pt;}
.y2_c02225{bottom:37.152000pt;}
.y1_c02225{bottom:67.072000pt;}
.y29_c02225{bottom:136.026667pt;}
.y28_c02225{bottom:163.706667pt;}
.y27_c02225{bottom:191.226667pt;}
.y26_c02225{bottom:218.906667pt;}
.y25_c02225{bottom:246.466667pt;}
.y24_c02225{bottom:274.146667pt;}
.y23_c02225{bottom:301.666667pt;}
.y22_c02225{bottom:320.226667pt;}
.y21_c02225{bottom:338.626667pt;}
.y20_c02225{bottom:357.026667pt;}
.y1f_c02225{bottom:375.426667pt;}
.y1e_c02225{bottom:393.826667pt;}
.y1d_c02225{bottom:412.226667pt;}
.y1c_c02225{bottom:427.426667pt;}
.y1b_c02225{bottom:446.466667pt;}
.y1a_c02225{bottom:465.506667pt;}
.y19_c02225{bottom:484.573333pt;}
.y18_c02225{bottom:503.613333pt;}
.y17_c02225{bottom:522.653333pt;}
.y16_c02225{bottom:541.693333pt;}
.y14_c02225{bottom:560.893333pt;}
.y12_c02225{bottom:579.933333pt;}
.y11_c02225{bottom:606.653333pt;}
.y10_c02225{bottom:625.053333pt;}
.yf_c02225{bottom:643.453333pt;}
.ye_c02225{bottom:670.973333pt;}
.yd_c02225{bottom:698.493333pt;}
.yc_c02225{bottom:726.213333pt;}
.yb_c02225{bottom:753.733333pt;}
.ya_c02225{bottom:781.413333pt;}
.y9_c02225{bottom:808.933333pt;}
.y8_c02225{bottom:836.613333pt;}
.y7_c02225{bottom:864.133333pt;}
.y6_c02225{bottom:891.813333pt;}
.y5_c02225{bottom:919.333333pt;}
.y4_c02225{bottom:947.040000pt;}
.h6_c02225{height:18.400000pt;}
.h7_c02225{height:18.432000pt;}
.h2_c02225{height:20.000000pt;}
.h5_c02225{height:22.080000pt;}
.h1_c02225{height:43.441250pt;}
.h4_c02225{height:57.375000pt;}
.h3_c02225{height:62.812500pt;}
.h0_c02225{height:1056.000000pt;}
.w1_c02225{width:59.232000pt;}
.w3_c02225{width:150.586667pt;}
.w2_c02225{width:388.546667pt;}
.w0_c02225{width:816.000000pt;}
.x0_c02225{left:0.000000pt;}
.xa_c02225{left:12.640000pt;}
.x3_c02225{left:14.720000pt;}
.xc_c02225{left:67.240000pt;}
.xe_c02225{left:71.240000pt;}
.x1_c02225{left:113.472000pt;}
.xd_c02225{left:137.640000pt;}
.xb_c02225{left:142.920000pt;}
.xf_c02225{left:148.680000pt;}
.x10_c02225{left:153.960000pt;}
.x7_c02225{left:159.386667pt;}
.x11_c02225{left:163.080000pt;}
.x4_c02225{left:166.266667pt;}
.x8_c02225{left:169.320000pt;}
.x12_c02225{left:176.520000pt;}
.x6_c02225{left:196.826667pt;}
.x5_c02225{left:392.386667pt;}
.x9_c02225{left:548.573333pt;}
.x2_c02225{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02226 {
    display:none;
  }
  .loading-indicator_c02226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02226 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02226 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02226" -> "#page-container .classname_c02226")
 */
.pf_c02226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02226 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02226 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02226 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02226 {overflow:visible;}
  }
}
.c_c02226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02226 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02226:after { /* webkit #35443 */
  content: '';
}
.t_c02226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02226 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02226 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02226 { /* info for Javascript */
  display:none;
}
.l_c02226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02226:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02226 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02226.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02226;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02226{font-family:ff1_c02226;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02226;src:url('chunks/assets/font_31941fabd4658ebd5d1ea4e1.woff2')format("woff");}.ff2_c02226{font-family:ff2_c02226;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:ff3_c02226;src:url('chunks/assets/font_0fd395cc50f3c328b12e3778.woff2')format("woff");}.ff3_c02226{font-family:ff3_c02226;line-height:1.311035;font-style:normal;font-weight: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_c02226;src:url('chunks/assets/font_b61dedee5354e5a1826fa361.woff2')format("woff");}.ff4_c02226{font-family:ff4_c02226;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02226{vertical-align:0.000000px;}
.ls1_c02226{letter-spacing:0.000000px;}
.ls0_c02226{letter-spacing:9.360000px;}
.sc__c02226{text-shadow:none;}
.sc0_c02226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02226{-webkit-text-stroke:0px transparent;}
.sc0_c02226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02226{word-spacing:0.000000px;}
._2_c02226{margin-left:-1.152000px;}
._1_c02226{width:1.296000px;}
._a_c02226{width:2.808000px;}
._5_c02226{width:3.816000px;}
._6_c02226{width:4.968000px;}
._3_c02226{width:6.408000px;}
._4_c02226{width:7.488000px;}
._0_c02226{width:8.496000px;}
._9_c02226{width:9.864000px;}
._8_c02226{width:19.296000px;}
._b_c02226{width:21.168000px;}
._c_c02226{width:22.392000px;}
._7_c02226{width:34.272000px;}
.fc1_c02226{color:rgb(192,80,77);}
.fc3_c02226{color:rgb(255,255,255);}
.fc2_c02226{color:rgb(17,17,17);}
.fc0_c02226{color:rgb(0,0,0);}
.fs0_c02226{font-size:66.240000px;}
.fs1_c02226{font-size:72.000000px;}
.y0_c02226{bottom:0.000000px;}
.y10_c02226{bottom:4.140000px;}
.yb_c02226{bottom:4.500000px;}
.y3_c02226{bottom:4.680000px;}
.y2_c02226{bottom:41.796000px;}
.y1_c02226{bottom:75.456000px;}
.y29_c02226{bottom:129.456000px;}
.y28_c02226{bottom:160.410000px;}
.y27_c02226{bottom:191.370000px;}
.y26_c02226{bottom:212.250000px;}
.y25_c02226{bottom:243.030000px;}
.y24_c02226{bottom:274.215000px;}
.y23_c02226{bottom:305.175000px;}
.y22_c02226{bottom:336.315000px;}
.y21_c02226{bottom:367.275000px;}
.y20_c02226{bottom:398.415000px;}
.y1f_c02226{bottom:429.375000px;}
.y1e_c02226{bottom:460.515000px;}
.y1d_c02226{bottom:491.475000px;}
.y1c_c02226{bottom:522.615000px;}
.y1b_c02226{bottom:553.605000px;}
.y1a_c02226{bottom:584.745000px;}
.y19_c02226{bottom:615.705000px;}
.y18_c02226{bottom:646.845000px;}
.y17_c02226{bottom:677.805000px;}
.y16_c02226{bottom:698.685000px;}
.y15_c02226{bottom:719.385000px;}
.y14_c02226{bottom:740.085000px;}
.y13_c02226{bottom:760.785000px;}
.y12_c02226{bottom:781.485000px;}
.y11_c02226{bottom:802.230000px;}
.yf_c02226{bottom:819.150000px;}
.ye_c02226{bottom:840.750000px;}
.yd_c02226{bottom:862.170000px;}
.yc_c02226{bottom:883.590000px;}
.ya_c02226{bottom:905.010000px;}
.y9_c02226{bottom:930.930000px;}
.y8_c02226{bottom:951.630000px;}
.y7_c02226{bottom:972.330000px;}
.y6_c02226{bottom:1003.290000px;}
.y5_c02226{bottom:1034.250000px;}
.y4_c02226{bottom:1065.420000px;}
.h4_c02226{height:20.700000px;}
.h2_c02226{height:22.500000px;}
.h1_c02226{height:48.871406px;}
.h6_c02226{height:64.546875px;}
.h3_c02226{height:70.664062px;}
.h5_c02226{height:72.562500px;}
.h0_c02226{height:1188.000000px;}
.w1_c02226{width:66.636000px;}
.w3_c02226{width:308.235000px;}
.w2_c02226{width:309.990000px;}
.w0_c02226{width:918.000000px;}
.x0_c02226{left:0.000000px;}
.x3_c02226{left:16.560000px;}
.xb_c02226{left:83.730000px;}
.x9_c02226{left:117.585000px;}
.xe_c02226{left:122.625000px;}
.xc_c02226{left:126.045000px;}
.x1_c02226{left:127.656000px;}
.xf_c02226{left:130.545000px;}
.xd_c02226{left:145.110000px;}
.x8_c02226{left:179.310000px;}
.x10_c02226{left:180.750000px;}
.x4_c02226{left:187.050000px;}
.x6_c02226{left:215.490000px;}
.x5_c02226{left:444.675000px;}
.x7_c02226{left:488.775000px;}
.xa_c02226{left:490.035000px;}
.x2_c02226{left:820.950000px;}
@media print{
.v0_c02226{vertical-align:0.000000pt;}
.ls1_c02226{letter-spacing:0.000000pt;}
.ls0_c02226{letter-spacing:8.320000pt;}
.ws0_c02226{word-spacing:0.000000pt;}
._2_c02226{margin-left:-1.024000pt;}
._1_c02226{width:1.152000pt;}
._a_c02226{width:2.496000pt;}
._5_c02226{width:3.392000pt;}
._6_c02226{width:4.416000pt;}
._3_c02226{width:5.696000pt;}
._4_c02226{width:6.656000pt;}
._0_c02226{width:7.552000pt;}
._9_c02226{width:8.768000pt;}
._8_c02226{width:17.152000pt;}
._b_c02226{width:18.816000pt;}
._c_c02226{width:19.904000pt;}
._7_c02226{width:30.464000pt;}
.fs0_c02226{font-size:58.880000pt;}
.fs1_c02226{font-size:64.000000pt;}
.y0_c02226{bottom:0.000000pt;}
.y10_c02226{bottom:3.680000pt;}
.yb_c02226{bottom:4.000000pt;}
.y3_c02226{bottom:4.160000pt;}
.y2_c02226{bottom:37.152000pt;}
.y1_c02226{bottom:67.072000pt;}
.y29_c02226{bottom:115.072000pt;}
.y28_c02226{bottom:142.586667pt;}
.y27_c02226{bottom:170.106667pt;}
.y26_c02226{bottom:188.666667pt;}
.y25_c02226{bottom:216.026667pt;}
.y24_c02226{bottom:243.746667pt;}
.y23_c02226{bottom:271.266667pt;}
.y22_c02226{bottom:298.946667pt;}
.y21_c02226{bottom:326.466667pt;}
.y20_c02226{bottom:354.146667pt;}
.y1f_c02226{bottom:381.666667pt;}
.y1e_c02226{bottom:409.346667pt;}
.y1d_c02226{bottom:436.866667pt;}
.y1c_c02226{bottom:464.546667pt;}
.y1b_c02226{bottom:492.093333pt;}
.y1a_c02226{bottom:519.773333pt;}
.y19_c02226{bottom:547.293333pt;}
.y18_c02226{bottom:574.973333pt;}
.y17_c02226{bottom:602.493333pt;}
.y16_c02226{bottom:621.053333pt;}
.y15_c02226{bottom:639.453333pt;}
.y14_c02226{bottom:657.853333pt;}
.y13_c02226{bottom:676.253333pt;}
.y12_c02226{bottom:694.653333pt;}
.y11_c02226{bottom:713.093333pt;}
.yf_c02226{bottom:728.133333pt;}
.ye_c02226{bottom:747.333333pt;}
.yd_c02226{bottom:766.373333pt;}
.yc_c02226{bottom:785.413333pt;}
.ya_c02226{bottom:804.453333pt;}
.y9_c02226{bottom:827.493333pt;}
.y8_c02226{bottom:845.893333pt;}
.y7_c02226{bottom:864.293333pt;}
.y6_c02226{bottom:891.813333pt;}
.y5_c02226{bottom:919.333333pt;}
.y4_c02226{bottom:947.040000pt;}
.h4_c02226{height:18.400000pt;}
.h2_c02226{height:20.000000pt;}
.h1_c02226{height:43.441250pt;}
.h6_c02226{height:57.375000pt;}
.h3_c02226{height:62.812500pt;}
.h5_c02226{height:64.500000pt;}
.h0_c02226{height:1056.000000pt;}
.w1_c02226{width:59.232000pt;}
.w3_c02226{width:273.986667pt;}
.w2_c02226{width:275.546667pt;}
.w0_c02226{width:816.000000pt;}
.x0_c02226{left:0.000000pt;}
.x3_c02226{left:14.720000pt;}
.xb_c02226{left:74.426667pt;}
.x9_c02226{left:104.520000pt;}
.xe_c02226{left:109.000000pt;}
.xc_c02226{left:112.040000pt;}
.x1_c02226{left:113.472000pt;}
.xf_c02226{left:116.040000pt;}
.xd_c02226{left:128.986667pt;}
.x8_c02226{left:159.386667pt;}
.x10_c02226{left:160.666667pt;}
.x4_c02226{left:166.266667pt;}
.x6_c02226{left:191.546667pt;}
.x5_c02226{left:395.266667pt;}
.x7_c02226{left:434.466667pt;}
.xa_c02226{left:435.586667pt;}
.x2_c02226{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02227 {
    display:none;
  }
  .loading-indicator_c02227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02227 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02227 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02227" -> "#page-container .classname_c02227")
 */
.pf_c02227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02227 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02227 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02227 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02227 {overflow:visible;}
  }
}
.c_c02227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02227 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02227:after { /* webkit #35443 */
  content: '';
}
.t_c02227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02227 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02227 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02227 { /* info for Javascript */
  display:none;
}
.l_c02227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02227:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02227 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02227.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02227;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02227{font-family:ff1_c02227;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02227;src:url('chunks/assets/font_cf37596eda833dcb5428ac7c.woff2')format("woff");}.ff2_c02227{font-family:ff2_c02227;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:ff3_c02227;src:url('chunks/assets/font_922f466f08b27f5f5fb83449.woff2')format("woff");}.ff3_c02227{font-family:ff3_c02227;line-height:1.311035;font-style:normal;font-weight: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_c02227;src:url('chunks/assets/font_552e1a671db50cf0542d9171.woff2')format("woff");}.ff4_c02227{font-family:ff4_c02227;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02227{vertical-align:0.000000px;}
.ls0_c02227{letter-spacing:0.000000px;}
.sc__c02227{text-shadow:none;}
.sc0_c02227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02227{-webkit-text-stroke:0px transparent;}
.sc0_c02227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02227{word-spacing:0.000000px;}
._0_c02227{margin-left:-1.152000px;}
._1_c02227{width:1.200000px;}
._2_c02227{width:2.712000px;}
._e_c02227{width:4.320000px;}
._c_c02227{width:5.688000px;}
._d_c02227{width:7.152000px;}
._7_c02227{width:8.532000px;}
._3_c02227{width:9.648000px;}
._4_c02227{width:11.232000px;}
._8_c02227{width:13.248000px;}
._9_c02227{width:14.832000px;}
._f_c02227{width:16.056000px;}
._a_c02227{width:19.872000px;}
._b_c02227{width:21.408000px;}
._5_c02227{width:25.920000px;}
._6_c02227{width:27.432000px;}
.fc1_c02227{color:rgb(192,80,77);}
.fc3_c02227{color:rgb(255,255,255);}
.fc2_c02227{color:rgb(17,17,17);}
.fc0_c02227{color:rgb(0,0,0);}
.fs0_c02227{font-size:66.240000px;}
.fs1_c02227{font-size:72.000000px;}
.y0_c02227{bottom:0.000000px;}
.yf_c02227{bottom:4.140000px;}
.yc_c02227{bottom:4.500000px;}
.y3_c02227{bottom:4.680000px;}
.yd_c02227{bottom:4.860000px;}
.ya_c02227{bottom:5.220000px;}
.y9_c02227{bottom:25.920000px;}
.y2_c02227{bottom:41.796000px;}
.y1_c02227{bottom:75.456000px;}
.y2c_c02227{bottom:136.656000px;}
.y2b_c02227{bottom:167.610000px;}
.y2a_c02227{bottom:198.750000px;}
.y29_c02227{bottom:229.710000px;}
.y28_c02227{bottom:260.850000px;}
.y27_c02227{bottom:291.855000px;}
.y26_c02227{bottom:322.995000px;}
.y25_c02227{bottom:353.955000px;}
.y24_c02227{bottom:385.095000px;}
.y23_c02227{bottom:416.055000px;}
.y22_c02227{bottom:447.195000px;}
.y21_c02227{bottom:478.155000px;}
.y20_c02227{bottom:509.295000px;}
.y1f_c02227{bottom:540.285000px;}
.y1e_c02227{bottom:571.425000px;}
.y1d_c02227{bottom:602.385000px;}
.y1c_c02227{bottom:633.525000px;}
.y1b_c02227{bottom:664.485000px;}
.y1a_c02227{bottom:695.625000px;}
.y19_c02227{bottom:716.505000px;}
.y18_c02227{bottom:737.205000px;}
.y17_c02227{bottom:757.905000px;}
.y16_c02227{bottom:778.605000px;}
.y15_c02227{bottom:795.570000px;}
.y14_c02227{bottom:816.990000px;}
.y13_c02227{bottom:838.410000px;}
.y12_c02227{bottom:859.830000px;}
.y11_c02227{bottom:881.250000px;}
.y10_c02227{bottom:902.670000px;}
.ye_c02227{bottom:924.270000px;}
.y8_c02227{bottom:945.690000px;}
.yb_c02227{bottom:967.110000px;}
.y7_c02227{bottom:1003.290000px;}
.y6_c02227{bottom:1024.170000px;}
.y5_c02227{bottom:1044.870000px;}
.y4_c02227{bottom:1065.600000px;}
.h5_c02227{height:20.700000px;}
.h2_c02227{height:22.500000px;}
.h4_c02227{height:42.120000px;}
.h1_c02227{height:48.871406px;}
.h7_c02227{height:64.546875px;}
.h3_c02227{height:70.664062px;}
.h6_c02227{height:72.562500px;}
.h0_c02227{height:1188.000000px;}
.w1_c02227{width:66.636000px;}
.w4_c02227{width:104.760000px;}
.w5_c02227{width:105.660000px;}
.w7_c02227{width:107.496000px;}
.w6_c02227{width:126.936000px;}
.w2_c02227{width:171.210000px;}
.w3_c02227{width:341.535000px;}
.w0_c02227{width:918.000000px;}
.x0_c02227{left:0.000000px;}
.x3_c02227{left:16.560000px;}
.x19_c02227{left:19.800000px;}
.xf_c02227{left:20.880000px;}
.x10_c02227{left:23.760000px;}
.x14_c02227{left:29.160000px;}
.x12_c02227{left:30.960000px;}
.x15_c02227{left:32.760000px;}
.x1c_c02227{left:35.280000px;}
.x1b_c02227{left:37.800000px;}
.x18_c02227{left:43.380000px;}
.x1e_c02227{left:44.640000px;}
.x16_c02227{left:48.240000px;}
.xe_c02227{left:52.380000px;}
.x17_c02227{left:54.390000px;}
.x1a_c02227{left:58.890000px;}
.xa_c02227{left:61.560000px;}
.x1d_c02227{left:65.520000px;}
.x9_c02227{left:85.500000px;}
.x1_c02227{left:127.656000px;}
.xc_c02227{left:133.200000px;}
.x7_c02227{left:154.650000px;}
.x8_c02227{left:179.310000px;}
.x1f_c02227{left:180.750000px;}
.x6_c02227{left:291.630000px;}
.xb_c02227{left:351.255000px;}
.x5_c02227{left:352.695000px;}
.x4_c02227{left:428.475000px;}
.x11_c02227{left:457.635000px;}
.x20_c02227{left:488.775000px;}
.x13_c02227{left:585.285000px;}
.xd_c02227{left:693.510000px;}
.x2_c02227{left:820.950000px;}
@media print{
.v0_c02227{vertical-align:0.000000pt;}
.ls0_c02227{letter-spacing:0.000000pt;}
.ws0_c02227{word-spacing:0.000000pt;}
._0_c02227{margin-left:-1.024000pt;}
._1_c02227{width:1.066667pt;}
._2_c02227{width:2.410667pt;}
._e_c02227{width:3.840000pt;}
._c_c02227{width:5.056000pt;}
._d_c02227{width:6.357333pt;}
._7_c02227{width:7.584000pt;}
._3_c02227{width:8.576000pt;}
._4_c02227{width:9.984000pt;}
._8_c02227{width:11.776000pt;}
._9_c02227{width:13.184000pt;}
._f_c02227{width:14.272000pt;}
._a_c02227{width:17.664000pt;}
._b_c02227{width:19.029333pt;}
._5_c02227{width:23.040000pt;}
._6_c02227{width:24.384000pt;}
.fs0_c02227{font-size:58.880000pt;}
.fs1_c02227{font-size:64.000000pt;}
.y0_c02227{bottom:0.000000pt;}
.yf_c02227{bottom:3.680000pt;}
.yc_c02227{bottom:4.000000pt;}
.y3_c02227{bottom:4.160000pt;}
.yd_c02227{bottom:4.320000pt;}
.ya_c02227{bottom:4.640000pt;}
.y9_c02227{bottom:23.040000pt;}
.y2_c02227{bottom:37.152000pt;}
.y1_c02227{bottom:67.072000pt;}
.y2c_c02227{bottom:121.472000pt;}
.y2b_c02227{bottom:148.986667pt;}
.y2a_c02227{bottom:176.666667pt;}
.y29_c02227{bottom:204.186667pt;}
.y28_c02227{bottom:231.866667pt;}
.y27_c02227{bottom:259.426667pt;}
.y26_c02227{bottom:287.106667pt;}
.y25_c02227{bottom:314.626667pt;}
.y24_c02227{bottom:342.306667pt;}
.y23_c02227{bottom:369.826667pt;}
.y22_c02227{bottom:397.506667pt;}
.y21_c02227{bottom:425.026667pt;}
.y20_c02227{bottom:452.706667pt;}
.y1f_c02227{bottom:480.253333pt;}
.y1e_c02227{bottom:507.933333pt;}
.y1d_c02227{bottom:535.453333pt;}
.y1c_c02227{bottom:563.133333pt;}
.y1b_c02227{bottom:590.653333pt;}
.y1a_c02227{bottom:618.333333pt;}
.y19_c02227{bottom:636.893333pt;}
.y18_c02227{bottom:655.293333pt;}
.y17_c02227{bottom:673.693333pt;}
.y16_c02227{bottom:692.093333pt;}
.y15_c02227{bottom:707.173333pt;}
.y14_c02227{bottom:726.213333pt;}
.y13_c02227{bottom:745.253333pt;}
.y12_c02227{bottom:764.293333pt;}
.y11_c02227{bottom:783.333333pt;}
.y10_c02227{bottom:802.373333pt;}
.ye_c02227{bottom:821.573333pt;}
.y8_c02227{bottom:840.613333pt;}
.yb_c02227{bottom:859.653333pt;}
.y7_c02227{bottom:891.813333pt;}
.y6_c02227{bottom:910.373333pt;}
.y5_c02227{bottom:928.773333pt;}
.y4_c02227{bottom:947.200000pt;}
.h5_c02227{height:18.400000pt;}
.h2_c02227{height:20.000000pt;}
.h4_c02227{height:37.440000pt;}
.h1_c02227{height:43.441250pt;}
.h7_c02227{height:57.375000pt;}
.h3_c02227{height:62.812500pt;}
.h6_c02227{height:64.500000pt;}
.h0_c02227{height:1056.000000pt;}
.w1_c02227{width:59.232000pt;}
.w4_c02227{width:93.120000pt;}
.w5_c02227{width:93.920000pt;}
.w7_c02227{width:95.552000pt;}
.w6_c02227{width:112.832000pt;}
.w2_c02227{width:152.186667pt;}
.w3_c02227{width:303.586667pt;}
.w0_c02227{width:816.000000pt;}
.x0_c02227{left:0.000000pt;}
.x3_c02227{left:14.720000pt;}
.x19_c02227{left:17.600000pt;}
.xf_c02227{left:18.560000pt;}
.x10_c02227{left:21.120000pt;}
.x14_c02227{left:25.920000pt;}
.x12_c02227{left:27.520000pt;}
.x15_c02227{left:29.120000pt;}
.x1c_c02227{left:31.360000pt;}
.x1b_c02227{left:33.600000pt;}
.x18_c02227{left:38.560000pt;}
.x1e_c02227{left:39.680000pt;}
.x16_c02227{left:42.880000pt;}
.xe_c02227{left:46.560000pt;}
.x17_c02227{left:48.346667pt;}
.x1a_c02227{left:52.346667pt;}
.xa_c02227{left:54.720000pt;}
.x1d_c02227{left:58.240000pt;}
.x9_c02227{left:76.000000pt;}
.x1_c02227{left:113.472000pt;}
.xc_c02227{left:118.400000pt;}
.x7_c02227{left:137.466667pt;}
.x8_c02227{left:159.386667pt;}
.x1f_c02227{left:160.666667pt;}
.x6_c02227{left:259.226667pt;}
.xb_c02227{left:312.226667pt;}
.x5_c02227{left:313.506667pt;}
.x4_c02227{left:380.866667pt;}
.x11_c02227{left:406.786667pt;}
.x20_c02227{left:434.466667pt;}
.x13_c02227{left:520.253333pt;}
.xd_c02227{left:616.453333pt;}
.x2_c02227{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02228 {
    display:none;
  }
  .loading-indicator_c02228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02228 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02228 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02228" -> "#page-container .classname_c02228")
 */
.pf_c02228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02228 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02228 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02228 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02228 {overflow:visible;}
  }
}
.c_c02228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02228 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02228:after { /* webkit #35443 */
  content: '';
}
.t_c02228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02228 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02228 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02228 { /* info for Javascript */
  display:none;
}
.l_c02228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02228:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02228 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02228.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02228;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02228{font-family:ff1_c02228;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02228;src:url('chunks/assets/font_1342c405a742e9e510ae4648.woff2')format("woff");}.ff2_c02228{font-family:ff2_c02228;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:ff3_c02228;src:url('chunks/assets/font_dbd5c28725a158d9048619dd.woff2')format("woff");}.ff3_c02228{font-family:ff3_c02228;line-height:1.311035;font-style:normal;font-weight: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_c02228;src:url('chunks/assets/font_e968d13f9ccad5a8b2f00113.woff2')format("woff");}.ff4_c02228{font-family:ff4_c02228;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02228{vertical-align:0.000000px;}
.ls0_c02228{letter-spacing:0.000000px;}
.sc__c02228{text-shadow:none;}
.sc0_c02228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02228{-webkit-text-stroke:0px transparent;}
.sc0_c02228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02228{word-spacing:0.000000px;}
._0_c02228{margin-left:-1.152000px;}
._1_c02228{width:1.092000px;}
._2_c02228{width:3.024000px;}
._4_c02228{width:5.112000px;}
._5_c02228{width:6.252000px;}
._8_c02228{width:7.932000px;}
._a_c02228{width:12.024000px;}
._6_c02228{width:13.176000px;}
._7_c02228{width:14.256000px;}
._3_c02228{width:16.416000px;}
._9_c02228{width:28.440000px;}
.fc1_c02228{color:rgb(192,80,77);}
.fc3_c02228{color:rgb(255,255,255);}
.fc2_c02228{color:rgb(17,17,17);}
.fc0_c02228{color:rgb(0,0,0);}
.fs0_c02228{font-size:66.240000px;}
.fs1_c02228{font-size:72.000000px;}
.y0_c02228{bottom:0.000000px;}
.yf_c02228{bottom:4.140000px;}
.yc_c02228{bottom:4.500000px;}
.y3_c02228{bottom:4.680000px;}
.yd_c02228{bottom:4.860000px;}
.ya_c02228{bottom:5.220000px;}
.y9_c02228{bottom:25.920000px;}
.y2_c02228{bottom:41.796000px;}
.y1_c02228{bottom:75.456000px;}
.y2d_c02228{bottom:126.396000px;}
.y2c_c02228{bottom:147.096000px;}
.y2b_c02228{bottom:167.790000px;}
.y2a_c02228{bottom:198.750000px;}
.y29_c02228{bottom:229.710000px;}
.y28_c02228{bottom:260.850000px;}
.y27_c02228{bottom:291.855000px;}
.y26_c02228{bottom:322.995000px;}
.y25_c02228{bottom:353.955000px;}
.y24_c02228{bottom:385.095000px;}
.y23_c02228{bottom:416.055000px;}
.y22_c02228{bottom:447.195000px;}
.y21_c02228{bottom:478.155000px;}
.y20_c02228{bottom:509.295000px;}
.y1f_c02228{bottom:540.285000px;}
.y1e_c02228{bottom:571.425000px;}
.y1d_c02228{bottom:602.385000px;}
.y1c_c02228{bottom:633.525000px;}
.y1b_c02228{bottom:664.485000px;}
.y1a_c02228{bottom:695.625000px;}
.y19_c02228{bottom:716.505000px;}
.y18_c02228{bottom:737.205000px;}
.y17_c02228{bottom:757.905000px;}
.y16_c02228{bottom:778.605000px;}
.y15_c02228{bottom:795.570000px;}
.y14_c02228{bottom:816.990000px;}
.y13_c02228{bottom:838.410000px;}
.y12_c02228{bottom:859.830000px;}
.y11_c02228{bottom:881.250000px;}
.y10_c02228{bottom:902.670000px;}
.ye_c02228{bottom:924.270000px;}
.y8_c02228{bottom:945.690000px;}
.yb_c02228{bottom:967.110000px;}
.y7_c02228{bottom:1003.290000px;}
.y6_c02228{bottom:1024.170000px;}
.y5_c02228{bottom:1044.870000px;}
.y4_c02228{bottom:1065.600000px;}
.h5_c02228{height:20.700000px;}
.h2_c02228{height:22.500000px;}
.h4_c02228{height:42.120000px;}
.h1_c02228{height:48.871406px;}
.h7_c02228{height:64.546875px;}
.h3_c02228{height:70.664062px;}
.h6_c02228{height:72.562500px;}
.h0_c02228{height:1188.000000px;}
.w1_c02228{width:66.636000px;}
.w4_c02228{width:79.020000px;}
.w7_c02228{width:92.016000px;}
.w5_c02228{width:94.356000px;}
.w6_c02228{width:96.120000px;}
.w2_c02228{width:254.550000px;}
.w3_c02228{width:283.935000px;}
.w0_c02228{width:918.000000px;}
.x0_c02228{left:0.000000px;}
.xe_c02228{left:7.920000px;}
.x11_c02228{left:15.480000px;}
.x3_c02228{left:16.560000px;}
.xf_c02228{left:18.180000px;}
.x13_c02228{left:21.420000px;}
.x17_c02228{left:30.420000px;}
.x19_c02228{left:34.920000px;}
.xd_c02228{left:39.420000px;}
.x16_c02228{left:41.400000px;}
.x15_c02228{left:42.660000px;}
.x18_c02228{left:61.560000px;}
.x1b_c02228{left:72.540000px;}
.x14_c02228{left:74.520000px;}
.x1c_c02228{left:77.040000px;}
.x1a_c02228{left:79.560000px;}
.x1e_c02228{left:95.760000px;}
.x9_c02228{left:103.140000px;}
.xb_c02228{left:104.430000px;}
.x1d_c02228{left:107.280000px;}
.x1_c02228{left:127.656000px;}
.x8_c02228{left:179.310000px;}
.x1f_c02228{left:187.050000px;}
.x5_c02228{left:266.970000px;}
.x6_c02228{left:307.875000px;}
.xa_c02228{left:434.595000px;}
.x4_c02228{left:444.675000px;}
.x7_c02228{left:488.775000px;}
.x10_c02228{left:529.665000px;}
.x12_c02228{left:626.505000px;}
.xc_c02228{left:719.250000px;}
.x2_c02228{left:820.950000px;}
@media print{
.v0_c02228{vertical-align:0.000000pt;}
.ls0_c02228{letter-spacing:0.000000pt;}
.ws0_c02228{word-spacing:0.000000pt;}
._0_c02228{margin-left:-1.024000pt;}
._1_c02228{width:0.970667pt;}
._2_c02228{width:2.688000pt;}
._4_c02228{width:4.544000pt;}
._5_c02228{width:5.557333pt;}
._8_c02228{width:7.050667pt;}
._a_c02228{width:10.688000pt;}
._6_c02228{width:11.712000pt;}
._7_c02228{width:12.672000pt;}
._3_c02228{width:14.592000pt;}
._9_c02228{width:25.280000pt;}
.fs0_c02228{font-size:58.880000pt;}
.fs1_c02228{font-size:64.000000pt;}
.y0_c02228{bottom:0.000000pt;}
.yf_c02228{bottom:3.680000pt;}
.yc_c02228{bottom:4.000000pt;}
.y3_c02228{bottom:4.160000pt;}
.yd_c02228{bottom:4.320000pt;}
.ya_c02228{bottom:4.640000pt;}
.y9_c02228{bottom:23.040000pt;}
.y2_c02228{bottom:37.152000pt;}
.y1_c02228{bottom:67.072000pt;}
.y2d_c02228{bottom:112.352000pt;}
.y2c_c02228{bottom:130.752000pt;}
.y2b_c02228{bottom:149.146667pt;}
.y2a_c02228{bottom:176.666667pt;}
.y29_c02228{bottom:204.186667pt;}
.y28_c02228{bottom:231.866667pt;}
.y27_c02228{bottom:259.426667pt;}
.y26_c02228{bottom:287.106667pt;}
.y25_c02228{bottom:314.626667pt;}
.y24_c02228{bottom:342.306667pt;}
.y23_c02228{bottom:369.826667pt;}
.y22_c02228{bottom:397.506667pt;}
.y21_c02228{bottom:425.026667pt;}
.y20_c02228{bottom:452.706667pt;}
.y1f_c02228{bottom:480.253333pt;}
.y1e_c02228{bottom:507.933333pt;}
.y1d_c02228{bottom:535.453333pt;}
.y1c_c02228{bottom:563.133333pt;}
.y1b_c02228{bottom:590.653333pt;}
.y1a_c02228{bottom:618.333333pt;}
.y19_c02228{bottom:636.893333pt;}
.y18_c02228{bottom:655.293333pt;}
.y17_c02228{bottom:673.693333pt;}
.y16_c02228{bottom:692.093333pt;}
.y15_c02228{bottom:707.173333pt;}
.y14_c02228{bottom:726.213333pt;}
.y13_c02228{bottom:745.253333pt;}
.y12_c02228{bottom:764.293333pt;}
.y11_c02228{bottom:783.333333pt;}
.y10_c02228{bottom:802.373333pt;}
.ye_c02228{bottom:821.573333pt;}
.y8_c02228{bottom:840.613333pt;}
.yb_c02228{bottom:859.653333pt;}
.y7_c02228{bottom:891.813333pt;}
.y6_c02228{bottom:910.373333pt;}
.y5_c02228{bottom:928.773333pt;}
.y4_c02228{bottom:947.200000pt;}
.h5_c02228{height:18.400000pt;}
.h2_c02228{height:20.000000pt;}
.h4_c02228{height:37.440000pt;}
.h1_c02228{height:43.441250pt;}
.h7_c02228{height:57.375000pt;}
.h3_c02228{height:62.812500pt;}
.h6_c02228{height:64.500000pt;}
.h0_c02228{height:1056.000000pt;}
.w1_c02228{width:59.232000pt;}
.w4_c02228{width:70.240000pt;}
.w7_c02228{width:81.792000pt;}
.w5_c02228{width:83.872000pt;}
.w6_c02228{width:85.440000pt;}
.w2_c02228{width:226.266667pt;}
.w3_c02228{width:252.386667pt;}
.w0_c02228{width:816.000000pt;}
.x0_c02228{left:0.000000pt;}
.xe_c02228{left:7.040000pt;}
.x11_c02228{left:13.760000pt;}
.x3_c02228{left:14.720000pt;}
.xf_c02228{left:16.160000pt;}
.x13_c02228{left:19.040000pt;}
.x17_c02228{left:27.040000pt;}
.x19_c02228{left:31.040000pt;}
.xd_c02228{left:35.040000pt;}
.x16_c02228{left:36.800000pt;}
.x15_c02228{left:37.920000pt;}
.x18_c02228{left:54.720000pt;}
.x1b_c02228{left:64.480000pt;}
.x14_c02228{left:66.240000pt;}
.x1c_c02228{left:68.480000pt;}
.x1a_c02228{left:70.720000pt;}
.x1e_c02228{left:85.120000pt;}
.x9_c02228{left:91.680000pt;}
.xb_c02228{left:92.826667pt;}
.x1d_c02228{left:95.360000pt;}
.x1_c02228{left:113.472000pt;}
.x8_c02228{left:159.386667pt;}
.x1f_c02228{left:166.266667pt;}
.x5_c02228{left:237.306667pt;}
.x6_c02228{left:273.666667pt;}
.xa_c02228{left:386.306667pt;}
.x4_c02228{left:395.266667pt;}
.x7_c02228{left:434.466667pt;}
.x10_c02228{left:470.813333pt;}
.x12_c02228{left:556.893333pt;}
.xc_c02228{left:639.333333pt;}
.x2_c02228{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02229 {
    display:none;
  }
  .loading-indicator_c02229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02229 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02229 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02229" -> "#page-container .classname_c02229")
 */
.pf_c02229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02229 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02229 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02229 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02229 {overflow:visible;}
  }
}
.c_c02229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02229 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02229:after { /* webkit #35443 */
  content: '';
}
.t_c02229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02229 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02229 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02229 { /* info for Javascript */
  display:none;
}
.l_c02229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02229:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02229 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02229.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02229;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02229{font-family:ff1_c02229;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02229;src:url('chunks/assets/font_dd18340cb88d7cda641c3b0a.woff2')format("woff");}.ff2_c02229{font-family:ff2_c02229;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:ff3_c02229;src:url('chunks/assets/font_7f600ae2b2d1fbb4377ab04f.woff2')format("woff");}.ff3_c02229{font-family:ff3_c02229;line-height:1.311035;font-style:normal;font-weight: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_c02229;src:url('chunks/assets/font_0b7b6adcca9f4ac909012d95.woff2')format("woff");}.ff4_c02229{font-family:ff4_c02229;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02229{vertical-align:0.000000px;}
.ls0_c02229{letter-spacing:0.000000px;}
.sc__c02229{text-shadow:none;}
.sc0_c02229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02229{-webkit-text-stroke:0px transparent;}
.sc0_c02229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02229{word-spacing:-18.000000px;}
.ws1_c02229{word-spacing:0.000000px;}
._7_c02229{margin-left:-2.280000px;}
._0_c02229{margin-left:-1.152000px;}
._1_c02229{width:1.344000px;}
._2_c02229{width:2.856000px;}
._6_c02229{width:4.176000px;}
._8_c02229{width:5.736000px;}
._3_c02229{width:7.704000px;}
._4_c02229{width:8.784000px;}
._a_c02229{width:16.416000px;}
._5_c02229{width:19.368000px;}
._9_c02229{width:20.376000px;}
._b_c02229{width:23.184000px;}
.fc1_c02229{color:rgb(192,80,77);}
.fc3_c02229{color:rgb(255,255,255);}
.fc2_c02229{color:rgb(17,17,17);}
.fc0_c02229{color:rgb(0,0,0);}
.fs0_c02229{font-size:66.240000px;}
.fs1_c02229{font-size:72.000000px;}
.y0_c02229{bottom:0.000000px;}
.yf_c02229{bottom:4.140000px;}
.yc_c02229{bottom:4.500000px;}
.y3_c02229{bottom:4.680000px;}
.yd_c02229{bottom:4.860000px;}
.ya_c02229{bottom:5.220000px;}
.y9_c02229{bottom:25.920000px;}
.y2_c02229{bottom:41.796000px;}
.y1_c02229{bottom:75.456000px;}
.y2f_c02229{bottom:126.396000px;}
.y2e_c02229{bottom:147.096000px;}
.y2d_c02229{bottom:167.790000px;}
.y2c_c02229{bottom:188.490000px;}
.y2b_c02229{bottom:209.190000px;}
.y2a_c02229{bottom:229.890000px;}
.y29_c02229{bottom:250.590000px;}
.y28_c02229{bottom:271.335000px;}
.y27_c02229{bottom:292.035000px;}
.y26_c02229{bottom:322.995000px;}
.y25_c02229{bottom:353.955000px;}
.y24_c02229{bottom:385.095000px;}
.y23_c02229{bottom:416.055000px;}
.y22_c02229{bottom:447.195000px;}
.y21_c02229{bottom:478.155000px;}
.y20_c02229{bottom:509.295000px;}
.y1f_c02229{bottom:540.285000px;}
.y1e_c02229{bottom:571.425000px;}
.y1d_c02229{bottom:602.385000px;}
.y1c_c02229{bottom:633.525000px;}
.y1b_c02229{bottom:664.485000px;}
.y1a_c02229{bottom:695.625000px;}
.y19_c02229{bottom:716.505000px;}
.y18_c02229{bottom:737.205000px;}
.y17_c02229{bottom:757.905000px;}
.y16_c02229{bottom:778.605000px;}
.y15_c02229{bottom:795.570000px;}
.y14_c02229{bottom:816.990000px;}
.y13_c02229{bottom:838.410000px;}
.y12_c02229{bottom:859.830000px;}
.y11_c02229{bottom:881.250000px;}
.y10_c02229{bottom:902.670000px;}
.ye_c02229{bottom:924.270000px;}
.y8_c02229{bottom:945.690000px;}
.yb_c02229{bottom:967.110000px;}
.y7_c02229{bottom:1003.290000px;}
.y6_c02229{bottom:1024.170000px;}
.y5_c02229{bottom:1044.870000px;}
.y4_c02229{bottom:1065.600000px;}
.h5_c02229{height:20.700000px;}
.h2_c02229{height:22.500000px;}
.h4_c02229{height:42.120000px;}
.h1_c02229{height:48.871406px;}
.h7_c02229{height:64.546875px;}
.h3_c02229{height:70.664062px;}
.h6_c02229{height:72.562500px;}
.h0_c02229{height:1188.000000px;}
.w1_c02229{width:66.636000px;}
.w4_c02229{width:79.020000px;}
.w7_c02229{width:92.016000px;}
.w5_c02229{width:94.356000px;}
.w6_c02229{width:96.120000px;}
.w2_c02229{width:254.550000px;}
.w3_c02229{width:283.935000px;}
.w0_c02229{width:918.000000px;}
.x0_c02229{left:0.000000px;}
.xe_c02229{left:7.920000px;}
.x11_c02229{left:15.480000px;}
.x3_c02229{left:16.560000px;}
.xf_c02229{left:18.180000px;}
.x13_c02229{left:21.420000px;}
.x1e_c02229{left:30.420000px;}
.x17_c02229{left:34.920000px;}
.xd_c02229{left:39.420000px;}
.x16_c02229{left:41.400000px;}
.x15_c02229{left:42.660000px;}
.x18_c02229{left:61.560000px;}
.x1a_c02229{left:72.540000px;}
.x14_c02229{left:74.520000px;}
.x1b_c02229{left:77.040000px;}
.x19_c02229{left:79.560000px;}
.x1d_c02229{left:95.760000px;}
.x9_c02229{left:103.140000px;}
.xb_c02229{left:104.430000px;}
.x1c_c02229{left:107.280000px;}
.x1_c02229{left:127.656000px;}
.x8_c02229{left:179.310000px;}
.x1f_c02229{left:187.050000px;}
.x5_c02229{left:295.815000px;}
.x6_c02229{left:307.875000px;}
.xa_c02229{left:434.595000px;}
.x4_c02229{left:444.675000px;}
.x7_c02229{left:488.775000px;}
.x10_c02229{left:529.665000px;}
.x12_c02229{left:626.505000px;}
.xc_c02229{left:719.250000px;}
.x2_c02229{left:820.950000px;}
@media print{
.v0_c02229{vertical-align:0.000000pt;}
.ls0_c02229{letter-spacing:0.000000pt;}
.ws0_c02229{word-spacing:-16.000000pt;}
.ws1_c02229{word-spacing:0.000000pt;}
._7_c02229{margin-left:-2.026667pt;}
._0_c02229{margin-left:-1.024000pt;}
._1_c02229{width:1.194667pt;}
._2_c02229{width:2.538667pt;}
._6_c02229{width:3.712000pt;}
._8_c02229{width:5.098667pt;}
._3_c02229{width:6.848000pt;}
._4_c02229{width:7.808000pt;}
._a_c02229{width:14.592000pt;}
._5_c02229{width:17.216000pt;}
._9_c02229{width:18.112000pt;}
._b_c02229{width:20.608000pt;}
.fs0_c02229{font-size:58.880000pt;}
.fs1_c02229{font-size:64.000000pt;}
.y0_c02229{bottom:0.000000pt;}
.yf_c02229{bottom:3.680000pt;}
.yc_c02229{bottom:4.000000pt;}
.y3_c02229{bottom:4.160000pt;}
.yd_c02229{bottom:4.320000pt;}
.ya_c02229{bottom:4.640000pt;}
.y9_c02229{bottom:23.040000pt;}
.y2_c02229{bottom:37.152000pt;}
.y1_c02229{bottom:67.072000pt;}
.y2f_c02229{bottom:112.352000pt;}
.y2e_c02229{bottom:130.752000pt;}
.y2d_c02229{bottom:149.146667pt;}
.y2c_c02229{bottom:167.546667pt;}
.y2b_c02229{bottom:185.946667pt;}
.y2a_c02229{bottom:204.346667pt;}
.y29_c02229{bottom:222.746667pt;}
.y28_c02229{bottom:241.186667pt;}
.y27_c02229{bottom:259.586667pt;}
.y26_c02229{bottom:287.106667pt;}
.y25_c02229{bottom:314.626667pt;}
.y24_c02229{bottom:342.306667pt;}
.y23_c02229{bottom:369.826667pt;}
.y22_c02229{bottom:397.506667pt;}
.y21_c02229{bottom:425.026667pt;}
.y20_c02229{bottom:452.706667pt;}
.y1f_c02229{bottom:480.253333pt;}
.y1e_c02229{bottom:507.933333pt;}
.y1d_c02229{bottom:535.453333pt;}
.y1c_c02229{bottom:563.133333pt;}
.y1b_c02229{bottom:590.653333pt;}
.y1a_c02229{bottom:618.333333pt;}
.y19_c02229{bottom:636.893333pt;}
.y18_c02229{bottom:655.293333pt;}
.y17_c02229{bottom:673.693333pt;}
.y16_c02229{bottom:692.093333pt;}
.y15_c02229{bottom:707.173333pt;}
.y14_c02229{bottom:726.213333pt;}
.y13_c02229{bottom:745.253333pt;}
.y12_c02229{bottom:764.293333pt;}
.y11_c02229{bottom:783.333333pt;}
.y10_c02229{bottom:802.373333pt;}
.ye_c02229{bottom:821.573333pt;}
.y8_c02229{bottom:840.613333pt;}
.yb_c02229{bottom:859.653333pt;}
.y7_c02229{bottom:891.813333pt;}
.y6_c02229{bottom:910.373333pt;}
.y5_c02229{bottom:928.773333pt;}
.y4_c02229{bottom:947.200000pt;}
.h5_c02229{height:18.400000pt;}
.h2_c02229{height:20.000000pt;}
.h4_c02229{height:37.440000pt;}
.h1_c02229{height:43.441250pt;}
.h7_c02229{height:57.375000pt;}
.h3_c02229{height:62.812500pt;}
.h6_c02229{height:64.500000pt;}
.h0_c02229{height:1056.000000pt;}
.w1_c02229{width:59.232000pt;}
.w4_c02229{width:70.240000pt;}
.w7_c02229{width:81.792000pt;}
.w5_c02229{width:83.872000pt;}
.w6_c02229{width:85.440000pt;}
.w2_c02229{width:226.266667pt;}
.w3_c02229{width:252.386667pt;}
.w0_c02229{width:816.000000pt;}
.x0_c02229{left:0.000000pt;}
.xe_c02229{left:7.040000pt;}
.x11_c02229{left:13.760000pt;}
.x3_c02229{left:14.720000pt;}
.xf_c02229{left:16.160000pt;}
.x13_c02229{left:19.040000pt;}
.x1e_c02229{left:27.040000pt;}
.x17_c02229{left:31.040000pt;}
.xd_c02229{left:35.040000pt;}
.x16_c02229{left:36.800000pt;}
.x15_c02229{left:37.920000pt;}
.x18_c02229{left:54.720000pt;}
.x1a_c02229{left:64.480000pt;}
.x14_c02229{left:66.240000pt;}
.x1b_c02229{left:68.480000pt;}
.x19_c02229{left:70.720000pt;}
.x1d_c02229{left:85.120000pt;}
.x9_c02229{left:91.680000pt;}
.xb_c02229{left:92.826667pt;}
.x1c_c02229{left:95.360000pt;}
.x1_c02229{left:113.472000pt;}
.x8_c02229{left:159.386667pt;}
.x1f_c02229{left:166.266667pt;}
.x5_c02229{left:262.946667pt;}
.x6_c02229{left:273.666667pt;}
.xa_c02229{left:386.306667pt;}
.x4_c02229{left:395.266667pt;}
.x7_c02229{left:434.466667pt;}
.x10_c02229{left:470.813333pt;}
.x12_c02229{left:556.893333pt;}
.xc_c02229{left:639.333333pt;}
.x2_c02229{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02230 {
    display:none;
  }
  .loading-indicator_c02230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02230 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02230 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02230" -> "#page-container .classname_c02230")
 */
.pf_c02230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02230 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02230 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02230 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02230 {overflow:visible;}
  }
}
.c_c02230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02230 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02230:after { /* webkit #35443 */
  content: '';
}
.t_c02230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02230 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02230 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02230 { /* info for Javascript */
  display:none;
}
.l_c02230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02230:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02230 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02230.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02230;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02230{font-family:ff1_c02230;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02230;src:url('chunks/assets/font_01c5f949d24f6e2eb5e8ffbe.woff2')format("woff");}.ff2_c02230{font-family:ff2_c02230;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:ff3_c02230;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02230{font-family:ff3_c02230;line-height:1.311035;font-style:normal;font-weight: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_c02230;src:url('chunks/assets/font_f4e9464d68b4963291cac96f.woff2')format("woff");}.ff4_c02230{font-family:ff4_c02230;line-height:1.284180;font-style:normal;font-weight: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_c02230;src:url('chunks/assets/font_54a688be98ae883413903998.woff2')format("woff");}.ff5_c02230{font-family:ff5_c02230;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02230{vertical-align:0.000000px;}
.ls0_c02230{letter-spacing:0.000000px;}
.sc__c02230{text-shadow:none;}
.sc0_c02230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02230{-webkit-text-stroke:0px transparent;}
.sc0_c02230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02230{word-spacing:-18.000000px;}
.ws1_c02230{word-spacing:0.000000px;}
._0_c02230{margin-left:-1.152000px;}
._1_c02230{width:1.056000px;}
._2_c02230{width:2.184000px;}
._a_c02230{width:5.184000px;}
._b_c02230{width:6.192000px;}
._3_c02230{width:7.704000px;}
._4_c02230{width:8.784000px;}
._8_c02230{width:13.248000px;}
._7_c02230{width:14.760000px;}
._9_c02230{width:15.852000px;}
._6_c02230{width:19.728000px;}
._5_c02230{width:20.880000px;}
.fc1_c02230{color:rgb(192,80,77);}
.fc3_c02230{color:rgb(255,255,255);}
.fc2_c02230{color:rgb(17,17,17);}
.fc0_c02230{color:rgb(0,0,0);}
.fs0_c02230{font-size:66.240000px;}
.fs1_c02230{font-size:72.000000px;}
.y0_c02230{bottom:0.000000px;}
.yf_c02230{bottom:4.140000px;}
.yc_c02230{bottom:4.500000px;}
.y3_c02230{bottom:4.680000px;}
.yd_c02230{bottom:4.860000px;}
.ya_c02230{bottom:5.220000px;}
.y9_c02230{bottom:25.920000px;}
.y2_c02230{bottom:41.796000px;}
.y1_c02230{bottom:75.456000px;}
.y22_c02230{bottom:447.195000px;}
.y21_c02230{bottom:478.155000px;}
.y20_c02230{bottom:509.295000px;}
.y1f_c02230{bottom:540.285000px;}
.y1e_c02230{bottom:571.425000px;}
.y1d_c02230{bottom:602.385000px;}
.y1c_c02230{bottom:633.525000px;}
.y1b_c02230{bottom:664.485000px;}
.y1a_c02230{bottom:695.625000px;}
.y19_c02230{bottom:716.505000px;}
.y18_c02230{bottom:737.205000px;}
.y17_c02230{bottom:757.905000px;}
.y16_c02230{bottom:778.605000px;}
.y15_c02230{bottom:795.570000px;}
.y14_c02230{bottom:816.990000px;}
.y13_c02230{bottom:838.410000px;}
.y12_c02230{bottom:859.830000px;}
.y11_c02230{bottom:881.250000px;}
.y10_c02230{bottom:902.670000px;}
.ye_c02230{bottom:924.270000px;}
.y8_c02230{bottom:945.690000px;}
.yb_c02230{bottom:967.110000px;}
.y7_c02230{bottom:1003.290000px;}
.y6_c02230{bottom:1024.170000px;}
.y5_c02230{bottom:1044.870000px;}
.y4_c02230{bottom:1065.600000px;}
.h5_c02230{height:20.700000px;}
.h2_c02230{height:22.500000px;}
.h4_c02230{height:42.120000px;}
.h1_c02230{height:48.871406px;}
.h7_c02230{height:64.546875px;}
.h3_c02230{height:70.664062px;}
.h6_c02230{height:72.562500px;}
.h0_c02230{height:1188.000000px;}
.w1_c02230{width:66.636000px;}
.w4_c02230{width:79.020000px;}
.w7_c02230{width:92.016000px;}
.w5_c02230{width:94.356000px;}
.w6_c02230{width:96.120000px;}
.w2_c02230{width:254.550000px;}
.w3_c02230{width:283.935000px;}
.w0_c02230{width:918.000000px;}
.x0_c02230{left:0.000000px;}
.xe_c02230{left:7.920000px;}
.x11_c02230{left:15.480000px;}
.x3_c02230{left:16.560000px;}
.xf_c02230{left:18.180000px;}
.x13_c02230{left:21.420000px;}
.x17_c02230{left:34.920000px;}
.xd_c02230{left:39.420000px;}
.x16_c02230{left:41.400000px;}
.x15_c02230{left:42.660000px;}
.x18_c02230{left:61.560000px;}
.x1a_c02230{left:72.540000px;}
.x14_c02230{left:74.520000px;}
.x1b_c02230{left:77.040000px;}
.x19_c02230{left:79.560000px;}
.x1d_c02230{left:95.760000px;}
.x9_c02230{left:103.140000px;}
.xb_c02230{left:104.430000px;}
.x1c_c02230{left:107.280000px;}
.x1_c02230{left:127.656000px;}
.x8_c02230{left:179.310000px;}
.x7_c02230{left:187.050000px;}
.x5_c02230{left:296.355000px;}
.x6_c02230{left:307.875000px;}
.xa_c02230{left:434.595000px;}
.x4_c02230{left:440.175000px;}
.x10_c02230{left:529.665000px;}
.x12_c02230{left:626.505000px;}
.xc_c02230{left:719.250000px;}
.x2_c02230{left:820.950000px;}
@media print{
.v0_c02230{vertical-align:0.000000pt;}
.ls0_c02230{letter-spacing:0.000000pt;}
.ws0_c02230{word-spacing:-16.000000pt;}
.ws1_c02230{word-spacing:0.000000pt;}
._0_c02230{margin-left:-1.024000pt;}
._1_c02230{width:0.938667pt;}
._2_c02230{width:1.941333pt;}
._a_c02230{width:4.608000pt;}
._b_c02230{width:5.504000pt;}
._3_c02230{width:6.848000pt;}
._4_c02230{width:7.808000pt;}
._8_c02230{width:11.776000pt;}
._7_c02230{width:13.120000pt;}
._9_c02230{width:14.090667pt;}
._6_c02230{width:17.536000pt;}
._5_c02230{width:18.560000pt;}
.fs0_c02230{font-size:58.880000pt;}
.fs1_c02230{font-size:64.000000pt;}
.y0_c02230{bottom:0.000000pt;}
.yf_c02230{bottom:3.680000pt;}
.yc_c02230{bottom:4.000000pt;}
.y3_c02230{bottom:4.160000pt;}
.yd_c02230{bottom:4.320000pt;}
.ya_c02230{bottom:4.640000pt;}
.y9_c02230{bottom:23.040000pt;}
.y2_c02230{bottom:37.152000pt;}
.y1_c02230{bottom:67.072000pt;}
.y22_c02230{bottom:397.506667pt;}
.y21_c02230{bottom:425.026667pt;}
.y20_c02230{bottom:452.706667pt;}
.y1f_c02230{bottom:480.253333pt;}
.y1e_c02230{bottom:507.933333pt;}
.y1d_c02230{bottom:535.453333pt;}
.y1c_c02230{bottom:563.133333pt;}
.y1b_c02230{bottom:590.653333pt;}
.y1a_c02230{bottom:618.333333pt;}
.y19_c02230{bottom:636.893333pt;}
.y18_c02230{bottom:655.293333pt;}
.y17_c02230{bottom:673.693333pt;}
.y16_c02230{bottom:692.093333pt;}
.y15_c02230{bottom:707.173333pt;}
.y14_c02230{bottom:726.213333pt;}
.y13_c02230{bottom:745.253333pt;}
.y12_c02230{bottom:764.293333pt;}
.y11_c02230{bottom:783.333333pt;}
.y10_c02230{bottom:802.373333pt;}
.ye_c02230{bottom:821.573333pt;}
.y8_c02230{bottom:840.613333pt;}
.yb_c02230{bottom:859.653333pt;}
.y7_c02230{bottom:891.813333pt;}
.y6_c02230{bottom:910.373333pt;}
.y5_c02230{bottom:928.773333pt;}
.y4_c02230{bottom:947.200000pt;}
.h5_c02230{height:18.400000pt;}
.h2_c02230{height:20.000000pt;}
.h4_c02230{height:37.440000pt;}
.h1_c02230{height:43.441250pt;}
.h7_c02230{height:57.375000pt;}
.h3_c02230{height:62.812500pt;}
.h6_c02230{height:64.500000pt;}
.h0_c02230{height:1056.000000pt;}
.w1_c02230{width:59.232000pt;}
.w4_c02230{width:70.240000pt;}
.w7_c02230{width:81.792000pt;}
.w5_c02230{width:83.872000pt;}
.w6_c02230{width:85.440000pt;}
.w2_c02230{width:226.266667pt;}
.w3_c02230{width:252.386667pt;}
.w0_c02230{width:816.000000pt;}
.x0_c02230{left:0.000000pt;}
.xe_c02230{left:7.040000pt;}
.x11_c02230{left:13.760000pt;}
.x3_c02230{left:14.720000pt;}
.xf_c02230{left:16.160000pt;}
.x13_c02230{left:19.040000pt;}
.x17_c02230{left:31.040000pt;}
.xd_c02230{left:35.040000pt;}
.x16_c02230{left:36.800000pt;}
.x15_c02230{left:37.920000pt;}
.x18_c02230{left:54.720000pt;}
.x1a_c02230{left:64.480000pt;}
.x14_c02230{left:66.240000pt;}
.x1b_c02230{left:68.480000pt;}
.x19_c02230{left:70.720000pt;}
.x1d_c02230{left:85.120000pt;}
.x9_c02230{left:91.680000pt;}
.xb_c02230{left:92.826667pt;}
.x1c_c02230{left:95.360000pt;}
.x1_c02230{left:113.472000pt;}
.x8_c02230{left:159.386667pt;}
.x7_c02230{left:166.266667pt;}
.x5_c02230{left:263.426667pt;}
.x6_c02230{left:273.666667pt;}
.xa_c02230{left:386.306667pt;}
.x4_c02230{left:391.266667pt;}
.x10_c02230{left:470.813333pt;}
.x12_c02230{left:556.893333pt;}
.xc_c02230{left:639.333333pt;}
.x2_c02230{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02231 {
    display:none;
  }
  .loading-indicator_c02231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02231 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02231 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02231" -> "#page-container .classname_c02231")
 */
.pf_c02231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02231 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02231 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02231 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02231 {overflow:visible;}
  }
}
.c_c02231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02231 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02231:after { /* webkit #35443 */
  content: '';
}
.t_c02231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02231 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02231 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02231 { /* info for Javascript */
  display:none;
}
.l_c02231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02231:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02231 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02231.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02231;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02231{font-family:ff1_c02231;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02231;src:url('chunks/assets/font_07d457fbb1a6a5a1de592f03.woff2')format("woff");}.ff2_c02231{font-family:ff2_c02231;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:ff3_c02231;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02231{font-family:ff3_c02231;line-height:1.311035;font-style:normal;font-weight: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_c02231;src:url('chunks/assets/font_01edf8621e95c0f5bd772489.woff2')format("woff");}.ff4_c02231{font-family:ff4_c02231;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02231{vertical-align:0.000000px;}
.ls0_c02231{letter-spacing:0.000000px;}
.sc__c02231{text-shadow:none;}
.sc0_c02231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02231{-webkit-text-stroke:0px transparent;}
.sc0_c02231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02231{word-spacing:-18.000000px;}
.ws1_c02231{word-spacing:0.000000px;}
._0_c02231{margin-left:-1.152000px;}
._1_c02231{width:1.308000px;}
._2_c02231{width:3.036000px;}
._3_c02231{width:4.224000px;}
._b_c02231{width:5.820000px;}
._c_c02231{width:6.924000px;}
._f_c02231{width:8.340000px;}
._5_c02231{width:10.512000px;}
._7_c02231{width:15.264000px;}
._8_c02231{width:16.488000px;}
._6_c02231{width:19.884000px;}
._9_c02231{width:22.392000px;}
._a_c02231{width:23.400000px;}
._d_c02231{width:25.200000px;}
._e_c02231{width:26.472000px;}
._4_c02231{width:59.544000px;}
.fc1_c02231{color:rgb(192,80,77);}
.fc3_c02231{color:rgb(255,255,255);}
.fc2_c02231{color:rgb(17,17,17);}
.fc0_c02231{color:rgb(0,0,0);}
.fs0_c02231{font-size:66.240000px;}
.fs1_c02231{font-size:72.000000px;}
.y0_c02231{bottom:0.000000px;}
.yf_c02231{bottom:4.140000px;}
.yc_c02231{bottom:4.500000px;}
.y3_c02231{bottom:4.680000px;}
.yd_c02231{bottom:4.860000px;}
.ya_c02231{bottom:5.220000px;}
.y9_c02231{bottom:25.920000px;}
.y2_c02231{bottom:41.796000px;}
.y1_c02231{bottom:75.456000px;}
.y2b_c02231{bottom:167.610000px;}
.y2a_c02231{bottom:198.750000px;}
.y29_c02231{bottom:229.710000px;}
.y28_c02231{bottom:260.850000px;}
.y27_c02231{bottom:291.855000px;}
.y26_c02231{bottom:322.995000px;}
.y25_c02231{bottom:353.955000px;}
.y24_c02231{bottom:385.095000px;}
.y23_c02231{bottom:416.055000px;}
.y22_c02231{bottom:447.195000px;}
.y21_c02231{bottom:478.155000px;}
.y20_c02231{bottom:509.295000px;}
.y1f_c02231{bottom:540.285000px;}
.y1e_c02231{bottom:571.425000px;}
.y1d_c02231{bottom:602.385000px;}
.y1c_c02231{bottom:633.525000px;}
.y1b_c02231{bottom:664.485000px;}
.y1a_c02231{bottom:695.625000px;}
.y19_c02231{bottom:716.505000px;}
.y18_c02231{bottom:737.205000px;}
.y17_c02231{bottom:757.905000px;}
.y16_c02231{bottom:778.605000px;}
.y15_c02231{bottom:795.570000px;}
.y14_c02231{bottom:816.990000px;}
.y13_c02231{bottom:838.410000px;}
.y12_c02231{bottom:859.830000px;}
.y11_c02231{bottom:881.250000px;}
.y10_c02231{bottom:902.670000px;}
.ye_c02231{bottom:924.270000px;}
.y8_c02231{bottom:945.690000px;}
.yb_c02231{bottom:967.110000px;}
.y7_c02231{bottom:1003.290000px;}
.y6_c02231{bottom:1024.170000px;}
.y5_c02231{bottom:1044.870000px;}
.y4_c02231{bottom:1065.600000px;}
.h5_c02231{height:20.700000px;}
.h2_c02231{height:22.500000px;}
.h4_c02231{height:42.120000px;}
.h1_c02231{height:48.871406px;}
.h3_c02231{height:70.664062px;}
.h6_c02231{height:72.562500px;}
.h7_c02231{height:74.004654px;}
.h0_c02231{height:1188.000000px;}
.w1_c02231{width:66.636000px;}
.w4_c02231{width:79.020000px;}
.w7_c02231{width:92.016000px;}
.w5_c02231{width:94.356000px;}
.w6_c02231{width:96.120000px;}
.w2_c02231{width:254.550000px;}
.w3_c02231{width:283.935000px;}
.w0_c02231{width:918.000000px;}
.x0_c02231{left:0.000000px;}
.xe_c02231{left:7.920000px;}
.x11_c02231{left:15.480000px;}
.x3_c02231{left:16.560000px;}
.xf_c02231{left:18.180000px;}
.x13_c02231{left:21.420000px;}
.x17_c02231{left:34.920000px;}
.xd_c02231{left:39.420000px;}
.x16_c02231{left:41.400000px;}
.x15_c02231{left:42.660000px;}
.x18_c02231{left:61.560000px;}
.x1a_c02231{left:72.540000px;}
.x14_c02231{left:74.520000px;}
.x1b_c02231{left:77.040000px;}
.x19_c02231{left:79.560000px;}
.x1d_c02231{left:95.760000px;}
.x9_c02231{left:103.140000px;}
.xb_c02231{left:104.430000px;}
.x1c_c02231{left:107.280000px;}
.x1_c02231{left:127.656000px;}
.x1f_c02231{left:154.650000px;}
.x1e_c02231{left:163.650000px;}
.x8_c02231{left:179.310000px;}
.x20_c02231{left:181.650000px;}
.x7_c02231{left:187.050000px;}
.x21_c02231{left:231.150000px;}
.x5_c02231{left:285.330000px;}
.x6_c02231{left:307.875000px;}
.xa_c02231{left:434.595000px;}
.x4_c02231{left:440.175000px;}
.x10_c02231{left:529.665000px;}
.x12_c02231{left:626.505000px;}
.xc_c02231{left:719.250000px;}
.x2_c02231{left:820.950000px;}
@media print{
.v0_c02231{vertical-align:0.000000pt;}
.ls0_c02231{letter-spacing:0.000000pt;}
.ws0_c02231{word-spacing:-16.000000pt;}
.ws1_c02231{word-spacing:0.000000pt;}
._0_c02231{margin-left:-1.024000pt;}
._1_c02231{width:1.162667pt;}
._2_c02231{width:2.698667pt;}
._3_c02231{width:3.754667pt;}
._b_c02231{width:5.173333pt;}
._c_c02231{width:6.154667pt;}
._f_c02231{width:7.413333pt;}
._5_c02231{width:9.344000pt;}
._7_c02231{width:13.568000pt;}
._8_c02231{width:14.656000pt;}
._6_c02231{width:17.674667pt;}
._9_c02231{width:19.904000pt;}
._a_c02231{width:20.800000pt;}
._d_c02231{width:22.400000pt;}
._e_c02231{width:23.530667pt;}
._4_c02231{width:52.928000pt;}
.fs0_c02231{font-size:58.880000pt;}
.fs1_c02231{font-size:64.000000pt;}
.y0_c02231{bottom:0.000000pt;}
.yf_c02231{bottom:3.680000pt;}
.yc_c02231{bottom:4.000000pt;}
.y3_c02231{bottom:4.160000pt;}
.yd_c02231{bottom:4.320000pt;}
.ya_c02231{bottom:4.640000pt;}
.y9_c02231{bottom:23.040000pt;}
.y2_c02231{bottom:37.152000pt;}
.y1_c02231{bottom:67.072000pt;}
.y2b_c02231{bottom:148.986667pt;}
.y2a_c02231{bottom:176.666667pt;}
.y29_c02231{bottom:204.186667pt;}
.y28_c02231{bottom:231.866667pt;}
.y27_c02231{bottom:259.426667pt;}
.y26_c02231{bottom:287.106667pt;}
.y25_c02231{bottom:314.626667pt;}
.y24_c02231{bottom:342.306667pt;}
.y23_c02231{bottom:369.826667pt;}
.y22_c02231{bottom:397.506667pt;}
.y21_c02231{bottom:425.026667pt;}
.y20_c02231{bottom:452.706667pt;}
.y1f_c02231{bottom:480.253333pt;}
.y1e_c02231{bottom:507.933333pt;}
.y1d_c02231{bottom:535.453333pt;}
.y1c_c02231{bottom:563.133333pt;}
.y1b_c02231{bottom:590.653333pt;}
.y1a_c02231{bottom:618.333333pt;}
.y19_c02231{bottom:636.893333pt;}
.y18_c02231{bottom:655.293333pt;}
.y17_c02231{bottom:673.693333pt;}
.y16_c02231{bottom:692.093333pt;}
.y15_c02231{bottom:707.173333pt;}
.y14_c02231{bottom:726.213333pt;}
.y13_c02231{bottom:745.253333pt;}
.y12_c02231{bottom:764.293333pt;}
.y11_c02231{bottom:783.333333pt;}
.y10_c02231{bottom:802.373333pt;}
.ye_c02231{bottom:821.573333pt;}
.y8_c02231{bottom:840.613333pt;}
.yb_c02231{bottom:859.653333pt;}
.y7_c02231{bottom:891.813333pt;}
.y6_c02231{bottom:910.373333pt;}
.y5_c02231{bottom:928.773333pt;}
.y4_c02231{bottom:947.200000pt;}
.h5_c02231{height:18.400000pt;}
.h2_c02231{height:20.000000pt;}
.h4_c02231{height:37.440000pt;}
.h1_c02231{height:43.441250pt;}
.h3_c02231{height:62.812500pt;}
.h6_c02231{height:64.500000pt;}
.h7_c02231{height:65.781915pt;}
.h0_c02231{height:1056.000000pt;}
.w1_c02231{width:59.232000pt;}
.w4_c02231{width:70.240000pt;}
.w7_c02231{width:81.792000pt;}
.w5_c02231{width:83.872000pt;}
.w6_c02231{width:85.440000pt;}
.w2_c02231{width:226.266667pt;}
.w3_c02231{width:252.386667pt;}
.w0_c02231{width:816.000000pt;}
.x0_c02231{left:0.000000pt;}
.xe_c02231{left:7.040000pt;}
.x11_c02231{left:13.760000pt;}
.x3_c02231{left:14.720000pt;}
.xf_c02231{left:16.160000pt;}
.x13_c02231{left:19.040000pt;}
.x17_c02231{left:31.040000pt;}
.xd_c02231{left:35.040000pt;}
.x16_c02231{left:36.800000pt;}
.x15_c02231{left:37.920000pt;}
.x18_c02231{left:54.720000pt;}
.x1a_c02231{left:64.480000pt;}
.x14_c02231{left:66.240000pt;}
.x1b_c02231{left:68.480000pt;}
.x19_c02231{left:70.720000pt;}
.x1d_c02231{left:85.120000pt;}
.x9_c02231{left:91.680000pt;}
.xb_c02231{left:92.826667pt;}
.x1c_c02231{left:95.360000pt;}
.x1_c02231{left:113.472000pt;}
.x1f_c02231{left:137.466667pt;}
.x1e_c02231{left:145.466667pt;}
.x8_c02231{left:159.386667pt;}
.x20_c02231{left:161.466667pt;}
.x7_c02231{left:166.266667pt;}
.x21_c02231{left:205.466667pt;}
.x5_c02231{left:253.626667pt;}
.x6_c02231{left:273.666667pt;}
.xa_c02231{left:386.306667pt;}
.x4_c02231{left:391.266667pt;}
.x10_c02231{left:470.813333pt;}
.x12_c02231{left:556.893333pt;}
.xc_c02231{left:639.333333pt;}
.x2_c02231{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02232 {
    display:none;
  }
  .loading-indicator_c02232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02232 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02232 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02232" -> "#page-container .classname_c02232")
 */
.pf_c02232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02232 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02232 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02232 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02232 {overflow:visible;}
  }
}
.c_c02232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02232 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02232:after { /* webkit #35443 */
  content: '';
}
.t_c02232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02232 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02232 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02232 { /* info for Javascript */
  display:none;
}
.l_c02232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02232:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02232 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02232.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02232;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02232{font-family:ff1_c02232;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02232;src:url('chunks/assets/font_fbac6ed8088a47fec6e4b2c1.woff2')format("woff");}.ff2_c02232{font-family:ff2_c02232;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:ff3_c02232;src:url('chunks/assets/font_d1f28da9018f2e453a1d6f08.woff2')format("woff");}.ff3_c02232{font-family:ff3_c02232;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02232{vertical-align:0.000000px;}
.ls0_c02232{letter-spacing:0.000000px;}
.sc__c02232{text-shadow:none;}
.sc0_c02232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02232{-webkit-text-stroke:0px transparent;}
.sc0_c02232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02232{word-spacing:0.000000px;}
._0_c02232{margin-left:-1.152000px;}
._1_c02232{width:1.416000px;}
._2_c02232{width:2.904000px;}
._5_c02232{width:4.752000px;}
._3_c02232{width:5.904000px;}
._4_c02232{width:7.488000px;}
._9_c02232{width:10.008000px;}
._7_c02232{width:11.376000px;}
._8_c02232{width:13.104000px;}
._b_c02232{width:15.120000px;}
._6_c02232{width:16.200000px;}
._a_c02232{width:22.824000px;}
.fc1_c02232{color:rgb(192,80,77);}
.fc3_c02232{color:rgb(255,255,255);}
.fc2_c02232{color:rgb(17,17,17);}
.fc0_c02232{color:rgb(0,0,0);}
.fs0_c02232{font-size:66.240000px;}
.fs1_c02232{font-size:72.000000px;}
.y0_c02232{bottom:0.000000px;}
.y17_c02232{bottom:4.140000px;}
.y8_c02232{bottom:4.500000px;}
.y3_c02232{bottom:4.680000px;}
.y2_c02232{bottom:41.796000px;}
.y1_c02232{bottom:75.456000px;}
.y2b_c02232{bottom:132.156000px;}
.y2a_c02232{bottom:163.110000px;}
.y29_c02232{bottom:194.250000px;}
.y28_c02232{bottom:225.210000px;}
.y27_c02232{bottom:256.350000px;}
.y26_c02232{bottom:287.355000px;}
.y25_c02232{bottom:318.495000px;}
.y24_c02232{bottom:349.455000px;}
.y23_c02232{bottom:380.595000px;}
.y22_c02232{bottom:411.555000px;}
.y21_c02232{bottom:442.695000px;}
.y20_c02232{bottom:473.655000px;}
.y1f_c02232{bottom:504.795000px;}
.y1e_c02232{bottom:535.785000px;}
.y1d_c02232{bottom:566.925000px;}
.y1c_c02232{bottom:597.885000px;}
.y1b_c02232{bottom:618.765000px;}
.y1a_c02232{bottom:639.465000px;}
.y19_c02232{bottom:660.165000px;}
.y18_c02232{bottom:680.865000px;}
.y16_c02232{bottom:697.785000px;}
.y15_c02232{bottom:719.205000px;}
.y14_c02232{bottom:740.805000px;}
.y13_c02232{bottom:762.225000px;}
.y12_c02232{bottom:783.645000px;}
.y11_c02232{bottom:805.110000px;}
.y10_c02232{bottom:826.530000px;}
.yf_c02232{bottom:847.950000px;}
.ye_c02232{bottom:869.550000px;}
.yd_c02232{bottom:890.970000px;}
.yc_c02232{bottom:912.390000px;}
.yb_c02232{bottom:933.810000px;}
.ya_c02232{bottom:955.230000px;}
.y9_c02232{bottom:976.650000px;}
.y7_c02232{bottom:998.070000px;}
.y6_c02232{bottom:1024.170000px;}
.y5_c02232{bottom:1044.870000px;}
.y4_c02232{bottom:1065.600000px;}
.h4_c02232{height:20.700000px;}
.h5_c02232{height:20.736000px;}
.h2_c02232{height:22.500000px;}
.h1_c02232{height:48.871406px;}
.h3_c02232{height:70.664062px;}
.h6_c02232{height:72.562500px;}
.h0_c02232{height:1188.000000px;}
.w1_c02232{width:66.636000px;}
.w2_c02232{width:308.370000px;}
.w3_c02232{width:309.855000px;}
.w0_c02232{width:918.000000px;}
.x0_c02232{left:0.000000px;}
.x3_c02232{left:16.560000px;}
.x9_c02232{left:84.450000px;}
.x10_c02232{left:113.220000px;}
.x11_c02232{left:116.280000px;}
.x12_c02232{left:120.465000px;}
.x13_c02232{left:122.805000px;}
.xb_c02232{left:126.225000px;}
.x1_c02232{left:127.656000px;}
.x8_c02232{left:131.265000px;}
.xd_c02232{left:133.245000px;}
.xc_c02232{left:135.225000px;}
.xf_c02232{left:136.845000px;}
.x14_c02232{left:141.330000px;}
.xe_c02232{left:145.830000px;}
.xa_c02232{left:150.330000px;}
.x7_c02232{left:179.310000px;}
.x15_c02232{left:187.050000px;}
.x5_c02232{left:232.590000px;}
.x4_c02232{left:440.175000px;}
.x6_c02232{left:488.775000px;}
.x2_c02232{left:820.950000px;}
@media print{
.v0_c02232{vertical-align:0.000000pt;}
.ls0_c02232{letter-spacing:0.000000pt;}
.ws0_c02232{word-spacing:0.000000pt;}
._0_c02232{margin-left:-1.024000pt;}
._1_c02232{width:1.258667pt;}
._2_c02232{width:2.581333pt;}
._5_c02232{width:4.224000pt;}
._3_c02232{width:5.248000pt;}
._4_c02232{width:6.656000pt;}
._9_c02232{width:8.896000pt;}
._7_c02232{width:10.112000pt;}
._8_c02232{width:11.648000pt;}
._b_c02232{width:13.440000pt;}
._6_c02232{width:14.400000pt;}
._a_c02232{width:20.288000pt;}
.fs0_c02232{font-size:58.880000pt;}
.fs1_c02232{font-size:64.000000pt;}
.y0_c02232{bottom:0.000000pt;}
.y17_c02232{bottom:3.680000pt;}
.y8_c02232{bottom:4.000000pt;}
.y3_c02232{bottom:4.160000pt;}
.y2_c02232{bottom:37.152000pt;}
.y1_c02232{bottom:67.072000pt;}
.y2b_c02232{bottom:117.472000pt;}
.y2a_c02232{bottom:144.986667pt;}
.y29_c02232{bottom:172.666667pt;}
.y28_c02232{bottom:200.186667pt;}
.y27_c02232{bottom:227.866667pt;}
.y26_c02232{bottom:255.426667pt;}
.y25_c02232{bottom:283.106667pt;}
.y24_c02232{bottom:310.626667pt;}
.y23_c02232{bottom:338.306667pt;}
.y22_c02232{bottom:365.826667pt;}
.y21_c02232{bottom:393.506667pt;}
.y20_c02232{bottom:421.026667pt;}
.y1f_c02232{bottom:448.706667pt;}
.y1e_c02232{bottom:476.253333pt;}
.y1d_c02232{bottom:503.933333pt;}
.y1c_c02232{bottom:531.453333pt;}
.y1b_c02232{bottom:550.013333pt;}
.y1a_c02232{bottom:568.413333pt;}
.y19_c02232{bottom:586.813333pt;}
.y18_c02232{bottom:605.213333pt;}
.y16_c02232{bottom:620.253333pt;}
.y15_c02232{bottom:639.293333pt;}
.y14_c02232{bottom:658.493333pt;}
.y13_c02232{bottom:677.533333pt;}
.y12_c02232{bottom:696.573333pt;}
.y11_c02232{bottom:715.653333pt;}
.y10_c02232{bottom:734.693333pt;}
.yf_c02232{bottom:753.733333pt;}
.ye_c02232{bottom:772.933333pt;}
.yd_c02232{bottom:791.973333pt;}
.yc_c02232{bottom:811.013333pt;}
.yb_c02232{bottom:830.053333pt;}
.ya_c02232{bottom:849.093333pt;}
.y9_c02232{bottom:868.133333pt;}
.y7_c02232{bottom:887.173333pt;}
.y6_c02232{bottom:910.373333pt;}
.y5_c02232{bottom:928.773333pt;}
.y4_c02232{bottom:947.200000pt;}
.h4_c02232{height:18.400000pt;}
.h5_c02232{height:18.432000pt;}
.h2_c02232{height:20.000000pt;}
.h1_c02232{height:43.441250pt;}
.h3_c02232{height:62.812500pt;}
.h6_c02232{height:64.500000pt;}
.h0_c02232{height:1056.000000pt;}
.w1_c02232{width:59.232000pt;}
.w2_c02232{width:274.106667pt;}
.w3_c02232{width:275.426667pt;}
.w0_c02232{width:816.000000pt;}
.x0_c02232{left:0.000000pt;}
.x3_c02232{left:14.720000pt;}
.x9_c02232{left:75.066667pt;}
.x10_c02232{left:100.640000pt;}
.x11_c02232{left:103.360000pt;}
.x12_c02232{left:107.080000pt;}
.x13_c02232{left:109.160000pt;}
.xb_c02232{left:112.200000pt;}
.x1_c02232{left:113.472000pt;}
.x8_c02232{left:116.680000pt;}
.xd_c02232{left:118.440000pt;}
.xc_c02232{left:120.200000pt;}
.xf_c02232{left:121.640000pt;}
.x14_c02232{left:125.626667pt;}
.xe_c02232{left:129.626667pt;}
.xa_c02232{left:133.626667pt;}
.x7_c02232{left:159.386667pt;}
.x15_c02232{left:166.266667pt;}
.x5_c02232{left:206.746667pt;}
.x4_c02232{left:391.266667pt;}
.x6_c02232{left:434.466667pt;}
.x2_c02232{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02233 {
    display:none;
  }
  .loading-indicator_c02233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02233 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02233 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02233" -> "#page-container .classname_c02233")
 */
.pf_c02233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02233 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02233 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02233 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02233 {overflow:visible;}
  }
}
.c_c02233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02233 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02233:after { /* webkit #35443 */
  content: '';
}
.t_c02233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02233 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02233 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02233 { /* info for Javascript */
  display:none;
}
.l_c02233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02233:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02233 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02233.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02233;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02233{font-family:ff1_c02233;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02233;src:url('chunks/assets/font_aa1f8aec2ba91e59d41fefff.woff2')format("woff");}.ff2_c02233{font-family:ff2_c02233;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;}
.m0_c02233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02233{vertical-align:0.000000px;}
.ls0_c02233{letter-spacing:0.000000px;}
.sc__c02233{text-shadow:none;}
.sc0_c02233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02233{-webkit-text-stroke:0px transparent;}
.sc0_c02233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02233{word-spacing:0.000000px;}
._1_c02233{margin-left:-1.080000px;}
._0_c02233{width:1.080000px;}
._6_c02233{width:2.160000px;}
._c_c02233{width:3.600000px;}
._9_c02233{width:4.896000px;}
._f_c02233{width:5.904000px;}
._2_c02233{width:6.984000px;}
._3_c02233{width:8.496000px;}
._4_c02233{width:10.080000px;}
._a_c02233{width:11.448000px;}
._b_c02233{width:12.456000px;}
._5_c02233{width:19.080000px;}
._7_c02233{width:21.384000px;}
._8_c02233{width:22.896000px;}
._d_c02233{width:43.632000px;}
._e_c02233{width:44.748000px;}
.fc1_c02233{color:rgb(192,80,77);}
.fc2_c02233{color:rgb(17,17,17);}
.fc0_c02233{color:rgb(0,0,0);}
.fs0_c02233{font-size:66.240000px;}
.fs1_c02233{font-size:72.000000px;}
.y0_c02233{bottom:0.000000px;}
.y3_c02233{bottom:4.680000px;}
.y2_c02233{bottom:41.796000px;}
.y1_c02233{bottom:75.456000px;}
.y1a_c02233{bottom:382.215000px;}
.y19_c02233{bottom:413.175000px;}
.y18_c02233{bottom:444.315000px;}
.y17_c02233{bottom:475.275000px;}
.y16_c02233{bottom:506.415000px;}
.y15_c02233{bottom:537.405000px;}
.y14_c02233{bottom:568.545000px;}
.y13_c02233{bottom:599.505000px;}
.y12_c02233{bottom:630.645000px;}
.y11_c02233{bottom:661.605000px;}
.y10_c02233{bottom:692.745000px;}
.yf_c02233{bottom:723.705000px;}
.ye_c02233{bottom:754.845000px;}
.yd_c02233{bottom:785.805000px;}
.yc_c02233{bottom:816.990000px;}
.yb_c02233{bottom:847.950000px;}
.ya_c02233{bottom:879.090000px;}
.y9_c02233{bottom:910.050000px;}
.y8_c02233{bottom:941.190000px;}
.y7_c02233{bottom:972.150000px;}
.y6_c02233{bottom:1003.290000px;}
.y5_c02233{bottom:1034.250000px;}
.y4_c02233{bottom:1065.420000px;}
.h2_c02233{height:22.500000px;}
.h1_c02233{height:48.871406px;}
.h3_c02233{height:70.664062px;}
.h0_c02233{height:1188.000000px;}
.w1_c02233{width:66.636000px;}
.w0_c02233{width:918.000000px;}
.x0_c02233{left:0.000000px;}
.x3_c02233{left:16.560000px;}
.x1_c02233{left:127.656000px;}
.x5_c02233{left:154.650000px;}
.x4_c02233{left:187.050000px;}
.x2_c02233{left:820.950000px;}
@media print{
.v0_c02233{vertical-align:0.000000pt;}
.ls0_c02233{letter-spacing:0.000000pt;}
.ws0_c02233{word-spacing:0.000000pt;}
._1_c02233{margin-left:-0.960000pt;}
._0_c02233{width:0.960000pt;}
._6_c02233{width:1.920000pt;}
._c_c02233{width:3.200000pt;}
._9_c02233{width:4.352000pt;}
._f_c02233{width:5.248000pt;}
._2_c02233{width:6.208000pt;}
._3_c02233{width:7.552000pt;}
._4_c02233{width:8.960000pt;}
._a_c02233{width:10.176000pt;}
._b_c02233{width:11.072000pt;}
._5_c02233{width:16.960000pt;}
._7_c02233{width:19.008000pt;}
._8_c02233{width:20.352000pt;}
._d_c02233{width:38.784000pt;}
._e_c02233{width:39.776000pt;}
.fs0_c02233{font-size:58.880000pt;}
.fs1_c02233{font-size:64.000000pt;}
.y0_c02233{bottom:0.000000pt;}
.y3_c02233{bottom:4.160000pt;}
.y2_c02233{bottom:37.152000pt;}
.y1_c02233{bottom:67.072000pt;}
.y1a_c02233{bottom:339.746667pt;}
.y19_c02233{bottom:367.266667pt;}
.y18_c02233{bottom:394.946667pt;}
.y17_c02233{bottom:422.466667pt;}
.y16_c02233{bottom:450.146667pt;}
.y15_c02233{bottom:477.693333pt;}
.y14_c02233{bottom:505.373333pt;}
.y13_c02233{bottom:532.893333pt;}
.y12_c02233{bottom:560.573333pt;}
.y11_c02233{bottom:588.093333pt;}
.y10_c02233{bottom:615.773333pt;}
.yf_c02233{bottom:643.293333pt;}
.ye_c02233{bottom:670.973333pt;}
.yd_c02233{bottom:698.493333pt;}
.yc_c02233{bottom:726.213333pt;}
.yb_c02233{bottom:753.733333pt;}
.ya_c02233{bottom:781.413333pt;}
.y9_c02233{bottom:808.933333pt;}
.y8_c02233{bottom:836.613333pt;}
.y7_c02233{bottom:864.133333pt;}
.y6_c02233{bottom:891.813333pt;}
.y5_c02233{bottom:919.333333pt;}
.y4_c02233{bottom:947.040000pt;}
.h2_c02233{height:20.000000pt;}
.h1_c02233{height:43.441250pt;}
.h3_c02233{height:62.812500pt;}
.h0_c02233{height:1056.000000pt;}
.w1_c02233{width:59.232000pt;}
.w0_c02233{width:816.000000pt;}
.x0_c02233{left:0.000000pt;}
.x3_c02233{left:14.720000pt;}
.x1_c02233{left:113.472000pt;}
.x5_c02233{left:137.466667pt;}
.x4_c02233{left:166.266667pt;}
.x2_c02233{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02234 {
    display:none;
  }
  .loading-indicator_c02234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02234 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02234 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02234" -> "#page-container .classname_c02234")
 */
.pf_c02234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02234 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02234 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02234 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02234 {overflow:visible;}
  }
}
.c_c02234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02234 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02234:after { /* webkit #35443 */
  content: '';
}
.t_c02234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02234 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02234 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02234 { /* info for Javascript */
  display:none;
}
.l_c02234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02234:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02234 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02234.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02234;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02234{font-family:ff1_c02234;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02234;src:url('chunks/assets/font_ea04a20daa7866dac1036ef8.woff2')format("woff");}.ff2_c02234{font-family:ff2_c02234;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:ff3_c02234;src:url('chunks/assets/font_d1f28da9018f2e453a1d6f08.woff2')format("woff");}.ff3_c02234{font-family:ff3_c02234;line-height:1.311035;font-style:normal;font-weight: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_c02234;src:url('chunks/assets/font_226efd77601482de74e6110f.woff2')format("woff");}.ff4_c02234{font-family:ff4_c02234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02234{vertical-align:0.000000px;}
.ls1_c02234{letter-spacing:-0.504000px;}
.ls0_c02234{letter-spacing:0.000000px;}
.sc__c02234{text-shadow:none;}
.sc0_c02234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02234{-webkit-text-stroke:0px transparent;}
.sc0_c02234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02234{word-spacing:-17.496000px;}
.ws1_c02234{word-spacing:0.000000px;}
._0_c02234{margin-left:-1.008000px;}
._1_c02234{width:1.224000px;}
._c_c02234{width:2.376000px;}
._a_c02234{width:4.536000px;}
._b_c02234{width:5.832000px;}
._2_c02234{width:7.848000px;}
._4_c02234{width:11.664000px;}
._5_c02234{width:12.672000px;}
._6_c02234{width:13.728000px;}
._7_c02234{width:14.880000px;}
._8_c02234{width:23.760000px;}
._9_c02234{width:25.416000px;}
._3_c02234{width:29.304000px;}
.fc1_c02234{color:rgb(192,80,77);}
.fc3_c02234{color:rgb(255,255,255);}
.fc2_c02234{color:rgb(17,17,17);}
.fc0_c02234{color:rgb(0,0,0);}
.fs0_c02234{font-size:66.240000px;}
.fs1_c02234{font-size:72.000000px;}
.y0_c02234{bottom:0.000000px;}
.y24_c02234{bottom:4.140000px;}
.y20_c02234{bottom:4.320000px;}
.y8_c02234{bottom:4.500000px;}
.y12_c02234{bottom:4.545000px;}
.y3_c02234{bottom:4.680000px;}
.y2_c02234{bottom:41.796000px;}
.y1_c02234{bottom:75.456000px;}
.y30_c02234{bottom:134.316000px;}
.y2f_c02234{bottom:165.270000px;}
.y2e_c02234{bottom:196.230000px;}
.y2d_c02234{bottom:227.370000px;}
.y2c_c02234{bottom:258.330000px;}
.y2b_c02234{bottom:289.515000px;}
.y2a_c02234{bottom:320.475000px;}
.y29_c02234{bottom:351.615000px;}
.y28_c02234{bottom:372.495000px;}
.y27_c02234{bottom:393.195000px;}
.y26_c02234{bottom:413.895000px;}
.y25_c02234{bottom:434.595000px;}
.y23_c02234{bottom:451.515000px;}
.y22_c02234{bottom:472.935000px;}
.y21_c02234{bottom:494.355000px;}
.y1f_c02234{bottom:515.955000px;}
.y1e_c02234{bottom:537.405000px;}
.y1d_c02234{bottom:558.825000px;}
.y1c_c02234{bottom:580.245000px;}
.y1b_c02234{bottom:601.665000px;}
.y1a_c02234{bottom:623.085000px;}
.y19_c02234{bottom:644.505000px;}
.y18_c02234{bottom:666.105000px;}
.y17_c02234{bottom:687.525000px;}
.y16_c02234{bottom:708.945000px;}
.y15_c02234{bottom:730.365000px;}
.y14_c02234{bottom:751.785000px;}
.y13_c02234{bottom:773.205000px;}
.y11_c02234{bottom:794.805000px;}
.y10_c02234{bottom:816.270000px;}
.yf_c02234{bottom:837.690000px;}
.ye_c02234{bottom:859.110000px;}
.yd_c02234{bottom:880.530000px;}
.yc_c02234{bottom:901.950000px;}
.yb_c02234{bottom:923.370000px;}
.ya_c02234{bottom:944.970000px;}
.y9_c02234{bottom:966.390000px;}
.y7_c02234{bottom:987.810000px;}
.y6_c02234{bottom:1023.990000px;}
.y5_c02234{bottom:1044.870000px;}
.y4_c02234{bottom:1065.600000px;}
.h6_c02234{height:20.556000px;}
.h4_c02234{height:20.700000px;}
.h5_c02234{height:20.736000px;}
.h2_c02234{height:22.500000px;}
.h1_c02234{height:48.871406px;}
.h3_c02234{height:70.664062px;}
.h7_c02234{height:72.562500px;}
.h0_c02234{height:1188.000000px;}
.w1_c02234{width:66.636000px;}
.w2_c02234{width:308.370000px;}
.w3_c02234{width:309.855000px;}
.w0_c02234{width:918.000000px;}
.x0_c02234{left:0.000000px;}
.x3_c02234{left:16.560000px;}
.x17_c02234{left:71.460000px;}
.x9_c02234{left:84.450000px;}
.x16_c02234{left:86.760000px;}
.x13_c02234{left:111.420000px;}
.xa_c02234{left:115.020000px;}
.x15_c02234{left:117.225000px;}
.x10_c02234{left:118.305000px;}
.xf_c02234{left:120.285000px;}
.x14_c02234{left:122.805000px;}
.x11_c02234{left:124.245000px;}
.x12_c02234{left:125.685000px;}
.x1_c02234{left:127.656000px;}
.x8_c02234{left:131.805000px;}
.xd_c02234{left:134.685000px;}
.xc_c02234{left:137.745000px;}
.x18_c02234{left:141.330000px;}
.xb_c02234{left:145.830000px;}
.xe_c02234{left:150.330000px;}
.x7_c02234{left:179.310000px;}
.x19_c02234{left:180.750000px;}
.x5_c02234{left:213.510000px;}
.x4_c02234{left:440.175000px;}
.x6_c02234{left:488.775000px;}
.x2_c02234{left:820.950000px;}
@media print{
.v0_c02234{vertical-align:0.000000pt;}
.ls1_c02234{letter-spacing:-0.448000pt;}
.ls0_c02234{letter-spacing:0.000000pt;}
.ws0_c02234{word-spacing:-15.552000pt;}
.ws1_c02234{word-spacing:0.000000pt;}
._0_c02234{margin-left:-0.896000pt;}
._1_c02234{width:1.088000pt;}
._c_c02234{width:2.112000pt;}
._a_c02234{width:4.032000pt;}
._b_c02234{width:5.184000pt;}
._2_c02234{width:6.976000pt;}
._4_c02234{width:10.368000pt;}
._5_c02234{width:11.264000pt;}
._6_c02234{width:12.202667pt;}
._7_c02234{width:13.226667pt;}
._8_c02234{width:21.120000pt;}
._9_c02234{width:22.592000pt;}
._3_c02234{width:26.048000pt;}
.fs0_c02234{font-size:58.880000pt;}
.fs1_c02234{font-size:64.000000pt;}
.y0_c02234{bottom:0.000000pt;}
.y24_c02234{bottom:3.680000pt;}
.y20_c02234{bottom:3.840000pt;}
.y8_c02234{bottom:4.000000pt;}
.y12_c02234{bottom:4.040000pt;}
.y3_c02234{bottom:4.160000pt;}
.y2_c02234{bottom:37.152000pt;}
.y1_c02234{bottom:67.072000pt;}
.y30_c02234{bottom:119.392000pt;}
.y2f_c02234{bottom:146.906667pt;}
.y2e_c02234{bottom:174.426667pt;}
.y2d_c02234{bottom:202.106667pt;}
.y2c_c02234{bottom:229.626667pt;}
.y2b_c02234{bottom:257.346667pt;}
.y2a_c02234{bottom:284.866667pt;}
.y29_c02234{bottom:312.546667pt;}
.y28_c02234{bottom:331.106667pt;}
.y27_c02234{bottom:349.506667pt;}
.y26_c02234{bottom:367.906667pt;}
.y25_c02234{bottom:386.306667pt;}
.y23_c02234{bottom:401.346667pt;}
.y22_c02234{bottom:420.386667pt;}
.y21_c02234{bottom:439.426667pt;}
.y1f_c02234{bottom:458.626667pt;}
.y1e_c02234{bottom:477.693333pt;}
.y1d_c02234{bottom:496.733333pt;}
.y1c_c02234{bottom:515.773333pt;}
.y1b_c02234{bottom:534.813333pt;}
.y1a_c02234{bottom:553.853333pt;}
.y19_c02234{bottom:572.893333pt;}
.y18_c02234{bottom:592.093333pt;}
.y17_c02234{bottom:611.133333pt;}
.y16_c02234{bottom:630.173333pt;}
.y15_c02234{bottom:649.213333pt;}
.y14_c02234{bottom:668.253333pt;}
.y13_c02234{bottom:687.293333pt;}
.y11_c02234{bottom:706.493333pt;}
.y10_c02234{bottom:725.573333pt;}
.yf_c02234{bottom:744.613333pt;}
.ye_c02234{bottom:763.653333pt;}
.yd_c02234{bottom:782.693333pt;}
.yc_c02234{bottom:801.733333pt;}
.yb_c02234{bottom:820.773333pt;}
.ya_c02234{bottom:839.973333pt;}
.y9_c02234{bottom:859.013333pt;}
.y7_c02234{bottom:878.053333pt;}
.y6_c02234{bottom:910.213333pt;}
.y5_c02234{bottom:928.773333pt;}
.y4_c02234{bottom:947.200000pt;}
.h6_c02234{height:18.272000pt;}
.h4_c02234{height:18.400000pt;}
.h5_c02234{height:18.432000pt;}
.h2_c02234{height:20.000000pt;}
.h1_c02234{height:43.441250pt;}
.h3_c02234{height:62.812500pt;}
.h7_c02234{height:64.500000pt;}
.h0_c02234{height:1056.000000pt;}
.w1_c02234{width:59.232000pt;}
.w2_c02234{width:274.106667pt;}
.w3_c02234{width:275.426667pt;}
.w0_c02234{width:816.000000pt;}
.x0_c02234{left:0.000000pt;}
.x3_c02234{left:14.720000pt;}
.x17_c02234{left:63.520000pt;}
.x9_c02234{left:75.066667pt;}
.x16_c02234{left:77.120000pt;}
.x13_c02234{left:99.040000pt;}
.xa_c02234{left:102.240000pt;}
.x15_c02234{left:104.200000pt;}
.x10_c02234{left:105.160000pt;}
.xf_c02234{left:106.920000pt;}
.x14_c02234{left:109.160000pt;}
.x11_c02234{left:110.440000pt;}
.x12_c02234{left:111.720000pt;}
.x1_c02234{left:113.472000pt;}
.x8_c02234{left:117.160000pt;}
.xd_c02234{left:119.720000pt;}
.xc_c02234{left:122.440000pt;}
.x18_c02234{left:125.626667pt;}
.xb_c02234{left:129.626667pt;}
.xe_c02234{left:133.626667pt;}
.x7_c02234{left:159.386667pt;}
.x19_c02234{left:160.666667pt;}
.x5_c02234{left:189.786667pt;}
.x4_c02234{left:391.266667pt;}
.x6_c02234{left:434.466667pt;}
.x2_c02234{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02235 {
    display:none;
  }
  .loading-indicator_c02235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02235 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02235 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02235" -> "#page-container .classname_c02235")
 */
.pf_c02235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02235 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02235 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02235 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02235 {overflow:visible;}
  }
}
.c_c02235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02235 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02235:after { /* webkit #35443 */
  content: '';
}
.t_c02235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02235 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02235 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02235 { /* info for Javascript */
  display:none;
}
.l_c02235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02235:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02235 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02235.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02235;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02235{font-family:ff1_c02235;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02235;src:url('chunks/assets/font_3ffda98ff940b4ee4f51951e.woff2')format("woff");}.ff2_c02235{font-family:ff2_c02235;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;}
.m0_c02235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02235{vertical-align:0.000000px;}
.ls0_c02235{letter-spacing:0.000000px;}
.sc__c02235{text-shadow:none;}
.sc0_c02235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02235{-webkit-text-stroke:0px transparent;}
.sc0_c02235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02235{word-spacing:0.000000px;}
._1_c02235{margin-left:-1.440000px;}
._2_c02235{width:1.368000px;}
._9_c02235{width:2.880000px;}
._5_c02235{width:4.392000px;}
._4_c02235{width:5.472000px;}
._3_c02235{width:6.912000px;}
._a_c02235{width:8.352000px;}
._d_c02235{width:11.880000px;}
._e_c02235{width:13.176000px;}
._6_c02235{width:15.552000px;}
._0_c02235{width:19.944000px;}
._7_c02235{width:23.688000px;}
._8_c02235{width:24.876000px;}
._b_c02235{width:32.112000px;}
._c_c02235{width:33.408000px;}
.fc1_c02235{color:rgb(192,80,77);}
.fc2_c02235{color:rgb(17,17,17);}
.fc0_c02235{color:rgb(0,0,0);}
.fs0_c02235{font-size:66.240000px;}
.fs1_c02235{font-size:72.000000px;}
.y0_c02235{bottom:0.000000px;}
.y3_c02235{bottom:4.680000px;}
.y2_c02235{bottom:41.796000px;}
.y1_c02235{bottom:75.456000px;}
.y22_c02235{bottom:133.776000px;}
.y21_c02235{bottom:164.910000px;}
.y20_c02235{bottom:195.870000px;}
.y1f_c02235{bottom:226.830000px;}
.y1e_c02235{bottom:257.970000px;}
.y1d_c02235{bottom:288.975000px;}
.y1c_c02235{bottom:320.115000px;}
.y1b_c02235{bottom:351.075000px;}
.y1a_c02235{bottom:382.215000px;}
.y19_c02235{bottom:413.175000px;}
.y18_c02235{bottom:444.315000px;}
.y17_c02235{bottom:475.275000px;}
.y16_c02235{bottom:506.415000px;}
.y15_c02235{bottom:537.405000px;}
.y14_c02235{bottom:568.545000px;}
.y13_c02235{bottom:599.505000px;}
.y12_c02235{bottom:630.645000px;}
.y11_c02235{bottom:661.605000px;}
.y10_c02235{bottom:692.745000px;}
.yf_c02235{bottom:723.705000px;}
.ye_c02235{bottom:754.845000px;}
.yd_c02235{bottom:785.805000px;}
.yc_c02235{bottom:816.990000px;}
.yb_c02235{bottom:847.950000px;}
.ya_c02235{bottom:879.090000px;}
.y9_c02235{bottom:910.050000px;}
.y8_c02235{bottom:941.190000px;}
.y7_c02235{bottom:972.150000px;}
.y6_c02235{bottom:1003.290000px;}
.y5_c02235{bottom:1034.250000px;}
.y4_c02235{bottom:1065.420000px;}
.h2_c02235{height:22.500000px;}
.h1_c02235{height:48.871406px;}
.h3_c02235{height:70.664062px;}
.h0_c02235{height:1188.000000px;}
.w1_c02235{width:66.636000px;}
.w0_c02235{width:918.000000px;}
.x0_c02235{left:0.000000px;}
.x3_c02235{left:16.560000px;}
.x1_c02235{left:127.656000px;}
.x5_c02235{left:154.650000px;}
.x4_c02235{left:180.750000px;}
.x6_c02235{left:187.050000px;}
.x2_c02235{left:820.950000px;}
@media print{
.v0_c02235{vertical-align:0.000000pt;}
.ls0_c02235{letter-spacing:0.000000pt;}
.ws0_c02235{word-spacing:0.000000pt;}
._1_c02235{margin-left:-1.280000pt;}
._2_c02235{width:1.216000pt;}
._9_c02235{width:2.560000pt;}
._5_c02235{width:3.904000pt;}
._4_c02235{width:4.864000pt;}
._3_c02235{width:6.144000pt;}
._a_c02235{width:7.424000pt;}
._d_c02235{width:10.560000pt;}
._e_c02235{width:11.712000pt;}
._6_c02235{width:13.824000pt;}
._0_c02235{width:17.728000pt;}
._7_c02235{width:21.056000pt;}
._8_c02235{width:22.112000pt;}
._b_c02235{width:28.544000pt;}
._c_c02235{width:29.696000pt;}
.fs0_c02235{font-size:58.880000pt;}
.fs1_c02235{font-size:64.000000pt;}
.y0_c02235{bottom:0.000000pt;}
.y3_c02235{bottom:4.160000pt;}
.y2_c02235{bottom:37.152000pt;}
.y1_c02235{bottom:67.072000pt;}
.y22_c02235{bottom:118.912000pt;}
.y21_c02235{bottom:146.586667pt;}
.y20_c02235{bottom:174.106667pt;}
.y1f_c02235{bottom:201.626667pt;}
.y1e_c02235{bottom:229.306667pt;}
.y1d_c02235{bottom:256.866667pt;}
.y1c_c02235{bottom:284.546667pt;}
.y1b_c02235{bottom:312.066667pt;}
.y1a_c02235{bottom:339.746667pt;}
.y19_c02235{bottom:367.266667pt;}
.y18_c02235{bottom:394.946667pt;}
.y17_c02235{bottom:422.466667pt;}
.y16_c02235{bottom:450.146667pt;}
.y15_c02235{bottom:477.693333pt;}
.y14_c02235{bottom:505.373333pt;}
.y13_c02235{bottom:532.893333pt;}
.y12_c02235{bottom:560.573333pt;}
.y11_c02235{bottom:588.093333pt;}
.y10_c02235{bottom:615.773333pt;}
.yf_c02235{bottom:643.293333pt;}
.ye_c02235{bottom:670.973333pt;}
.yd_c02235{bottom:698.493333pt;}
.yc_c02235{bottom:726.213333pt;}
.yb_c02235{bottom:753.733333pt;}
.ya_c02235{bottom:781.413333pt;}
.y9_c02235{bottom:808.933333pt;}
.y8_c02235{bottom:836.613333pt;}
.y7_c02235{bottom:864.133333pt;}
.y6_c02235{bottom:891.813333pt;}
.y5_c02235{bottom:919.333333pt;}
.y4_c02235{bottom:947.040000pt;}
.h2_c02235{height:20.000000pt;}
.h1_c02235{height:43.441250pt;}
.h3_c02235{height:62.812500pt;}
.h0_c02235{height:1056.000000pt;}
.w1_c02235{width:59.232000pt;}
.w0_c02235{width:816.000000pt;}
.x0_c02235{left:0.000000pt;}
.x3_c02235{left:14.720000pt;}
.x1_c02235{left:113.472000pt;}
.x5_c02235{left:137.466667pt;}
.x4_c02235{left:160.666667pt;}
.x6_c02235{left:166.266667pt;}
.x2_c02235{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02236 {
    display:none;
  }
  .loading-indicator_c02236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02236 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02236 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02236" -> "#page-container .classname_c02236")
 */
.pf_c02236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02236 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02236 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02236 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02236 {overflow:visible;}
  }
}
.c_c02236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02236 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02236:after { /* webkit #35443 */
  content: '';
}
.t_c02236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02236 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02236 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02236 { /* info for Javascript */
  display:none;
}
.l_c02236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02236:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02236 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02236.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02236;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02236{font-family:ff1_c02236;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02236;src:url('chunks/assets/font_65bf6cf7174fb40cd195f5f0.woff2')format("woff");}.ff2_c02236{font-family:ff2_c02236;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:ff3_c02236;src:url('chunks/assets/font_e717fd2084a04d340c81dfa2.woff2')format("woff");}.ff3_c02236{font-family:ff3_c02236;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02236{vertical-align:0.000000px;}
.ls0_c02236{letter-spacing:0.000000px;}
.ls1_c02236{letter-spacing:0.072000px;}
.sc__c02236{text-shadow:none;}
.sc0_c02236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02236{-webkit-text-stroke:0px transparent;}
.sc0_c02236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02236{word-spacing:-18.072000px;}
.ws1_c02236{word-spacing:0.000000px;}
._c_c02236{margin-left:-2.448000px;}
._2_c02236{margin-left:-1.368000px;}
._4_c02236{width:1.080000px;}
._3_c02236{width:2.520000px;}
._0_c02236{width:4.104000px;}
._1_c02236{width:5.112000px;}
._5_c02236{width:6.264000px;}
._6_c02236{width:7.488000px;}
._7_c02236{width:10.728000px;}
._8_c02236{width:12.384000px;}
._d_c02236{width:14.832000px;}
._9_c02236{width:16.344000px;}
._a_c02236{width:19.872000px;}
._b_c02236{width:21.888000px;}
._11_c02236{width:23.436000px;}
._f_c02236{width:24.552000px;}
._e_c02236{width:25.560000px;}
._10_c02236{width:27.072000px;}
.fc1_c02236{color:rgb(192,80,77);}
.fc2_c02236{color:rgb(17,17,17);}
.fc0_c02236{color:rgb(0,0,0);}
.fs0_c02236{font-size:66.240000px;}
.fs1_c02236{font-size:72.000000px;}
.y0_c02236{bottom:0.000000px;}
.y3_c02236{bottom:4.680000px;}
.y2_c02236{bottom:41.796000px;}
.y1_c02236{bottom:75.456000px;}
.y22_c02236{bottom:133.776000px;}
.y21_c02236{bottom:164.910000px;}
.y20_c02236{bottom:195.870000px;}
.y1f_c02236{bottom:226.830000px;}
.y1e_c02236{bottom:257.970000px;}
.y1d_c02236{bottom:288.975000px;}
.y1c_c02236{bottom:320.115000px;}
.y1b_c02236{bottom:351.075000px;}
.y1a_c02236{bottom:382.215000px;}
.y19_c02236{bottom:413.175000px;}
.y18_c02236{bottom:444.315000px;}
.y17_c02236{bottom:475.275000px;}
.y16_c02236{bottom:506.415000px;}
.y15_c02236{bottom:537.405000px;}
.y14_c02236{bottom:568.545000px;}
.y13_c02236{bottom:599.505000px;}
.y12_c02236{bottom:630.645000px;}
.y11_c02236{bottom:661.605000px;}
.y10_c02236{bottom:692.745000px;}
.yf_c02236{bottom:723.705000px;}
.ye_c02236{bottom:754.845000px;}
.yd_c02236{bottom:785.805000px;}
.yc_c02236{bottom:816.990000px;}
.yb_c02236{bottom:847.950000px;}
.ya_c02236{bottom:879.090000px;}
.y9_c02236{bottom:910.050000px;}
.y8_c02236{bottom:941.190000px;}
.y7_c02236{bottom:972.150000px;}
.y6_c02236{bottom:1003.290000px;}
.y5_c02236{bottom:1034.250000px;}
.y4_c02236{bottom:1065.420000px;}
.h2_c02236{height:22.500000px;}
.h1_c02236{height:48.871406px;}
.h4_c02236{height:64.546875px;}
.h3_c02236{height:70.664062px;}
.h0_c02236{height:1188.000000px;}
.w1_c02236{width:66.636000px;}
.w0_c02236{width:918.000000px;}
.x0_c02236{left:0.000000px;}
.x3_c02236{left:16.560000px;}
.x1_c02236{left:127.656000px;}
.x4_c02236{left:187.050000px;}
.x2_c02236{left:820.950000px;}
@media print{
.v0_c02236{vertical-align:0.000000pt;}
.ls0_c02236{letter-spacing:0.000000pt;}
.ls1_c02236{letter-spacing:0.064000pt;}
.ws0_c02236{word-spacing:-16.064000pt;}
.ws1_c02236{word-spacing:0.000000pt;}
._c_c02236{margin-left:-2.176000pt;}
._2_c02236{margin-left:-1.216000pt;}
._4_c02236{width:0.960000pt;}
._3_c02236{width:2.240000pt;}
._0_c02236{width:3.648000pt;}
._1_c02236{width:4.544000pt;}
._5_c02236{width:5.568000pt;}
._6_c02236{width:6.656000pt;}
._7_c02236{width:9.536000pt;}
._8_c02236{width:11.008000pt;}
._d_c02236{width:13.184000pt;}
._9_c02236{width:14.528000pt;}
._a_c02236{width:17.664000pt;}
._b_c02236{width:19.456000pt;}
._11_c02236{width:20.832000pt;}
._f_c02236{width:21.824000pt;}
._e_c02236{width:22.720000pt;}
._10_c02236{width:24.064000pt;}
.fs0_c02236{font-size:58.880000pt;}
.fs1_c02236{font-size:64.000000pt;}
.y0_c02236{bottom:0.000000pt;}
.y3_c02236{bottom:4.160000pt;}
.y2_c02236{bottom:37.152000pt;}
.y1_c02236{bottom:67.072000pt;}
.y22_c02236{bottom:118.912000pt;}
.y21_c02236{bottom:146.586667pt;}
.y20_c02236{bottom:174.106667pt;}
.y1f_c02236{bottom:201.626667pt;}
.y1e_c02236{bottom:229.306667pt;}
.y1d_c02236{bottom:256.866667pt;}
.y1c_c02236{bottom:284.546667pt;}
.y1b_c02236{bottom:312.066667pt;}
.y1a_c02236{bottom:339.746667pt;}
.y19_c02236{bottom:367.266667pt;}
.y18_c02236{bottom:394.946667pt;}
.y17_c02236{bottom:422.466667pt;}
.y16_c02236{bottom:450.146667pt;}
.y15_c02236{bottom:477.693333pt;}
.y14_c02236{bottom:505.373333pt;}
.y13_c02236{bottom:532.893333pt;}
.y12_c02236{bottom:560.573333pt;}
.y11_c02236{bottom:588.093333pt;}
.y10_c02236{bottom:615.773333pt;}
.yf_c02236{bottom:643.293333pt;}
.ye_c02236{bottom:670.973333pt;}
.yd_c02236{bottom:698.493333pt;}
.yc_c02236{bottom:726.213333pt;}
.yb_c02236{bottom:753.733333pt;}
.ya_c02236{bottom:781.413333pt;}
.y9_c02236{bottom:808.933333pt;}
.y8_c02236{bottom:836.613333pt;}
.y7_c02236{bottom:864.133333pt;}
.y6_c02236{bottom:891.813333pt;}
.y5_c02236{bottom:919.333333pt;}
.y4_c02236{bottom:947.040000pt;}
.h2_c02236{height:20.000000pt;}
.h1_c02236{height:43.441250pt;}
.h4_c02236{height:57.375000pt;}
.h3_c02236{height:62.812500pt;}
.h0_c02236{height:1056.000000pt;}
.w1_c02236{width:59.232000pt;}
.w0_c02236{width:816.000000pt;}
.x0_c02236{left:0.000000pt;}
.x3_c02236{left:14.720000pt;}
.x1_c02236{left:113.472000pt;}
.x4_c02236{left:166.266667pt;}
.x2_c02236{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02237 {
    display:none;
  }
  .loading-indicator_c02237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02237 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02237 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02237" -> "#page-container .classname_c02237")
 */
.pf_c02237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02237 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02237 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02237 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02237 {overflow:visible;}
  }
}
.c_c02237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02237 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02237:after { /* webkit #35443 */
  content: '';
}
.t_c02237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02237 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02237 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02237 { /* info for Javascript */
  display:none;
}
.l_c02237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02237:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02237 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02237.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02237;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02237{font-family:ff1_c02237;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02237;src:url('chunks/assets/font_4090940e2c0c3fedd15c2a49.woff2')format("woff");}.ff2_c02237{font-family:ff2_c02237;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:ff3_c02237;src:url('chunks/assets/font_7a658712c097c8f2f20049f0.woff2')format("woff");}.ff3_c02237{font-family:ff3_c02237;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02237{vertical-align:0.000000px;}
.ls0_c02237{letter-spacing:0.000000px;}
.sc__c02237{text-shadow:none;}
.sc0_c02237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02237{-webkit-text-stroke:0px transparent;}
.sc0_c02237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02237{word-spacing:0.000000px;}
._5_c02237{margin-left:-2.160000px;}
._2_c02237{margin-left:-1.008000px;}
._1_c02237{width:1.008000px;}
._14_c02237{width:2.160000px;}
._12_c02237{width:3.312000px;}
._e_c02237{width:4.752000px;}
._c_c02237{width:5.832000px;}
._d_c02237{width:7.452000px;}
._8_c02237{width:9.288000px;}
._9_c02237{width:10.440000px;}
._b_c02237{width:12.312000px;}
._11_c02237{width:13.968000px;}
._3_c02237{width:15.264000px;}
._7_c02237{width:16.704000px;}
._0_c02237{width:19.224000px;}
._a_c02237{width:24.120000px;}
._f_c02237{width:25.560000px;}
._10_c02237{width:26.568000px;}
._13_c02237{width:27.936000px;}
._6_c02237{width:32.760000px;}
._4_c02237{width:34.632000px;}
.fc1_c02237{color:rgb(192,80,77);}
.fc0_c02237{color:rgb(0,0,0);}
.fs0_c02237{font-size:66.240000px;}
.fs1_c02237{font-size:72.000000px;}
.y0_c02237{bottom:0.000000px;}
.y3_c02237{bottom:4.680000px;}
.y2_c02237{bottom:41.796000px;}
.y1_c02237{bottom:75.456000px;}
.y22_c02237{bottom:133.776000px;}
.y21_c02237{bottom:164.910000px;}
.y20_c02237{bottom:195.870000px;}
.y1f_c02237{bottom:226.830000px;}
.y1e_c02237{bottom:257.970000px;}
.y1d_c02237{bottom:288.975000px;}
.y1c_c02237{bottom:320.115000px;}
.y1b_c02237{bottom:351.075000px;}
.y1a_c02237{bottom:382.215000px;}
.y19_c02237{bottom:413.175000px;}
.y18_c02237{bottom:444.315000px;}
.y17_c02237{bottom:475.275000px;}
.y16_c02237{bottom:506.415000px;}
.y15_c02237{bottom:537.405000px;}
.y14_c02237{bottom:568.545000px;}
.y13_c02237{bottom:599.505000px;}
.y12_c02237{bottom:630.645000px;}
.y11_c02237{bottom:661.605000px;}
.y10_c02237{bottom:692.745000px;}
.yf_c02237{bottom:723.705000px;}
.ye_c02237{bottom:754.845000px;}
.yd_c02237{bottom:785.805000px;}
.yc_c02237{bottom:816.990000px;}
.yb_c02237{bottom:847.950000px;}
.ya_c02237{bottom:879.090000px;}
.y9_c02237{bottom:910.050000px;}
.y8_c02237{bottom:941.190000px;}
.y7_c02237{bottom:972.150000px;}
.y6_c02237{bottom:1003.290000px;}
.y5_c02237{bottom:1034.250000px;}
.y4_c02237{bottom:1065.420000px;}
.h2_c02237{height:22.500000px;}
.h1_c02237{height:48.871406px;}
.h4_c02237{height:64.546875px;}
.h3_c02237{height:70.664062px;}
.h0_c02237{height:1188.000000px;}
.w1_c02237{width:66.636000px;}
.w0_c02237{width:918.000000px;}
.x0_c02237{left:0.000000px;}
.x3_c02237{left:16.560000px;}
.x1_c02237{left:127.656000px;}
.x4_c02237{left:187.050000px;}
.x2_c02237{left:820.950000px;}
@media print{
.v0_c02237{vertical-align:0.000000pt;}
.ls0_c02237{letter-spacing:0.000000pt;}
.ws0_c02237{word-spacing:0.000000pt;}
._5_c02237{margin-left:-1.920000pt;}
._2_c02237{margin-left:-0.896000pt;}
._1_c02237{width:0.896000pt;}
._14_c02237{width:1.920000pt;}
._12_c02237{width:2.944000pt;}
._e_c02237{width:4.224000pt;}
._c_c02237{width:5.184000pt;}
._d_c02237{width:6.624000pt;}
._8_c02237{width:8.256000pt;}
._9_c02237{width:9.280000pt;}
._b_c02237{width:10.944000pt;}
._11_c02237{width:12.416000pt;}
._3_c02237{width:13.568000pt;}
._7_c02237{width:14.848000pt;}
._0_c02237{width:17.088000pt;}
._a_c02237{width:21.440000pt;}
._f_c02237{width:22.720000pt;}
._10_c02237{width:23.616000pt;}
._13_c02237{width:24.832000pt;}
._6_c02237{width:29.120000pt;}
._4_c02237{width:30.784000pt;}
.fs0_c02237{font-size:58.880000pt;}
.fs1_c02237{font-size:64.000000pt;}
.y0_c02237{bottom:0.000000pt;}
.y3_c02237{bottom:4.160000pt;}
.y2_c02237{bottom:37.152000pt;}
.y1_c02237{bottom:67.072000pt;}
.y22_c02237{bottom:118.912000pt;}
.y21_c02237{bottom:146.586667pt;}
.y20_c02237{bottom:174.106667pt;}
.y1f_c02237{bottom:201.626667pt;}
.y1e_c02237{bottom:229.306667pt;}
.y1d_c02237{bottom:256.866667pt;}
.y1c_c02237{bottom:284.546667pt;}
.y1b_c02237{bottom:312.066667pt;}
.y1a_c02237{bottom:339.746667pt;}
.y19_c02237{bottom:367.266667pt;}
.y18_c02237{bottom:394.946667pt;}
.y17_c02237{bottom:422.466667pt;}
.y16_c02237{bottom:450.146667pt;}
.y15_c02237{bottom:477.693333pt;}
.y14_c02237{bottom:505.373333pt;}
.y13_c02237{bottom:532.893333pt;}
.y12_c02237{bottom:560.573333pt;}
.y11_c02237{bottom:588.093333pt;}
.y10_c02237{bottom:615.773333pt;}
.yf_c02237{bottom:643.293333pt;}
.ye_c02237{bottom:670.973333pt;}
.yd_c02237{bottom:698.493333pt;}
.yc_c02237{bottom:726.213333pt;}
.yb_c02237{bottom:753.733333pt;}
.ya_c02237{bottom:781.413333pt;}
.y9_c02237{bottom:808.933333pt;}
.y8_c02237{bottom:836.613333pt;}
.y7_c02237{bottom:864.133333pt;}
.y6_c02237{bottom:891.813333pt;}
.y5_c02237{bottom:919.333333pt;}
.y4_c02237{bottom:947.040000pt;}
.h2_c02237{height:20.000000pt;}
.h1_c02237{height:43.441250pt;}
.h4_c02237{height:57.375000pt;}
.h3_c02237{height:62.812500pt;}
.h0_c02237{height:1056.000000pt;}
.w1_c02237{width:59.232000pt;}
.w0_c02237{width:816.000000pt;}
.x0_c02237{left:0.000000pt;}
.x3_c02237{left:14.720000pt;}
.x1_c02237{left:113.472000pt;}
.x4_c02237{left:166.266667pt;}
.x2_c02237{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02238 {
    display:none;
  }
  .loading-indicator_c02238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02238 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02238 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02238" -> "#page-container .classname_c02238")
 */
.pf_c02238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02238 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02238 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02238 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02238 {overflow:visible;}
  }
}
.c_c02238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02238 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02238:after { /* webkit #35443 */
  content: '';
}
.t_c02238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02238 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02238 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02238 { /* info for Javascript */
  display:none;
}
.l_c02238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02238:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02238 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02238.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02238;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02238{font-family:ff1_c02238;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02238;src:url('chunks/assets/font_0c41a1cb8c8f333afee01791.woff2')format("woff");}.ff2_c02238{font-family:ff2_c02238;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:ff3_c02238;src:url('chunks/assets/font_6ce5f563baa56e051dfa4f4c.woff2')format("woff");}.ff3_c02238{font-family:ff3_c02238;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02238{vertical-align:0.000000px;}
.ls0_c02238{letter-spacing:0.000000px;}
.sc__c02238{text-shadow:none;}
.sc0_c02238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02238{-webkit-text-stroke:0px transparent;}
.sc0_c02238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02238{word-spacing:0.000000px;}
._1_c02238{margin-left:-1.152000px;}
._2_c02238{width:1.008000px;}
._b_c02238{width:2.232000px;}
._9_c02238{width:3.816000px;}
._a_c02238{width:4.824000px;}
._0_c02238{width:5.904000px;}
._3_c02238{width:7.680000px;}
._8_c02238{width:9.144000px;}
._7_c02238{width:10.152000px;}
._e_c02238{width:13.464000px;}
._f_c02238{width:15.336000px;}
._6_c02238{width:20.016000px;}
._11_c02238{width:21.312000px;}
._4_c02238{width:22.608000px;}
._5_c02238{width:23.832000px;}
._c_c02238{width:28.224000px;}
._d_c02238{width:29.232000px;}
._12_c02238{width:30.456000px;}
._13_c02238{width:41.400000px;}
._10_c02238{width:42.840000px;}
.fc1_c02238{color:rgb(192,80,77);}
.fc0_c02238{color:rgb(0,0,0);}
.fs0_c02238{font-size:66.240000px;}
.fs1_c02238{font-size:72.000000px;}
.y0_c02238{bottom:0.000000px;}
.y3_c02238{bottom:4.680000px;}
.y2_c02238{bottom:41.796000px;}
.y1_c02238{bottom:75.456000px;}
.y21_c02238{bottom:164.910000px;}
.y20_c02238{bottom:195.870000px;}
.y1f_c02238{bottom:226.830000px;}
.y1e_c02238{bottom:257.970000px;}
.y1d_c02238{bottom:288.975000px;}
.y1c_c02238{bottom:320.115000px;}
.y1b_c02238{bottom:351.075000px;}
.y1a_c02238{bottom:382.215000px;}
.y19_c02238{bottom:413.175000px;}
.y18_c02238{bottom:444.315000px;}
.y17_c02238{bottom:475.275000px;}
.y16_c02238{bottom:506.415000px;}
.y15_c02238{bottom:537.405000px;}
.y14_c02238{bottom:568.545000px;}
.y13_c02238{bottom:599.505000px;}
.y12_c02238{bottom:630.645000px;}
.y11_c02238{bottom:661.605000px;}
.y10_c02238{bottom:692.745000px;}
.yf_c02238{bottom:723.705000px;}
.ye_c02238{bottom:754.845000px;}
.yd_c02238{bottom:785.805000px;}
.yc_c02238{bottom:816.990000px;}
.yb_c02238{bottom:847.950000px;}
.ya_c02238{bottom:879.090000px;}
.y9_c02238{bottom:910.050000px;}
.y8_c02238{bottom:941.190000px;}
.y7_c02238{bottom:972.150000px;}
.y6_c02238{bottom:1003.290000px;}
.y5_c02238{bottom:1034.250000px;}
.y4_c02238{bottom:1065.420000px;}
.h2_c02238{height:22.500000px;}
.h1_c02238{height:48.871406px;}
.h4_c02238{height:64.546875px;}
.h3_c02238{height:70.664062px;}
.h0_c02238{height:1188.000000px;}
.w1_c02238{width:66.636000px;}
.w0_c02238{width:918.000000px;}
.x0_c02238{left:0.000000px;}
.x3_c02238{left:16.560000px;}
.x1_c02238{left:127.656000px;}
.x4_c02238{left:187.050000px;}
.x2_c02238{left:820.950000px;}
@media print{
.v0_c02238{vertical-align:0.000000pt;}
.ls0_c02238{letter-spacing:0.000000pt;}
.ws0_c02238{word-spacing:0.000000pt;}
._1_c02238{margin-left:-1.024000pt;}
._2_c02238{width:0.896000pt;}
._b_c02238{width:1.984000pt;}
._9_c02238{width:3.392000pt;}
._a_c02238{width:4.288000pt;}
._0_c02238{width:5.248000pt;}
._3_c02238{width:6.826667pt;}
._8_c02238{width:8.128000pt;}
._7_c02238{width:9.024000pt;}
._e_c02238{width:11.968000pt;}
._f_c02238{width:13.632000pt;}
._6_c02238{width:17.792000pt;}
._11_c02238{width:18.944000pt;}
._4_c02238{width:20.096000pt;}
._5_c02238{width:21.184000pt;}
._c_c02238{width:25.088000pt;}
._d_c02238{width:25.984000pt;}
._12_c02238{width:27.072000pt;}
._13_c02238{width:36.800000pt;}
._10_c02238{width:38.080000pt;}
.fs0_c02238{font-size:58.880000pt;}
.fs1_c02238{font-size:64.000000pt;}
.y0_c02238{bottom:0.000000pt;}
.y3_c02238{bottom:4.160000pt;}
.y2_c02238{bottom:37.152000pt;}
.y1_c02238{bottom:67.072000pt;}
.y21_c02238{bottom:146.586667pt;}
.y20_c02238{bottom:174.106667pt;}
.y1f_c02238{bottom:201.626667pt;}
.y1e_c02238{bottom:229.306667pt;}
.y1d_c02238{bottom:256.866667pt;}
.y1c_c02238{bottom:284.546667pt;}
.y1b_c02238{bottom:312.066667pt;}
.y1a_c02238{bottom:339.746667pt;}
.y19_c02238{bottom:367.266667pt;}
.y18_c02238{bottom:394.946667pt;}
.y17_c02238{bottom:422.466667pt;}
.y16_c02238{bottom:450.146667pt;}
.y15_c02238{bottom:477.693333pt;}
.y14_c02238{bottom:505.373333pt;}
.y13_c02238{bottom:532.893333pt;}
.y12_c02238{bottom:560.573333pt;}
.y11_c02238{bottom:588.093333pt;}
.y10_c02238{bottom:615.773333pt;}
.yf_c02238{bottom:643.293333pt;}
.ye_c02238{bottom:670.973333pt;}
.yd_c02238{bottom:698.493333pt;}
.yc_c02238{bottom:726.213333pt;}
.yb_c02238{bottom:753.733333pt;}
.ya_c02238{bottom:781.413333pt;}
.y9_c02238{bottom:808.933333pt;}
.y8_c02238{bottom:836.613333pt;}
.y7_c02238{bottom:864.133333pt;}
.y6_c02238{bottom:891.813333pt;}
.y5_c02238{bottom:919.333333pt;}
.y4_c02238{bottom:947.040000pt;}
.h2_c02238{height:20.000000pt;}
.h1_c02238{height:43.441250pt;}
.h4_c02238{height:57.375000pt;}
.h3_c02238{height:62.812500pt;}
.h0_c02238{height:1056.000000pt;}
.w1_c02238{width:59.232000pt;}
.w0_c02238{width:816.000000pt;}
.x0_c02238{left:0.000000pt;}
.x3_c02238{left:14.720000pt;}
.x1_c02238{left:113.472000pt;}
.x4_c02238{left:166.266667pt;}
.x2_c02238{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02239 {
    display:none;
  }
  .loading-indicator_c02239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02239 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02239 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02239" -> "#page-container .classname_c02239")
 */
.pf_c02239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02239 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02239 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02239 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02239 {overflow:visible;}
  }
}
.c_c02239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02239 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02239:after { /* webkit #35443 */
  content: '';
}
.t_c02239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02239 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02239 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02239 { /* info for Javascript */
  display:none;
}
.l_c02239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02239:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02239 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02239.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02239;src:url('chunks/assets/font_40b57cb2d2dd6cb3ac62197f.woff2')format("woff");}.ff1_c02239{font-family:ff1_c02239;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02239;src:url('chunks/assets/font_bcacd54bdac5f82c6ee3befb.woff2')format("woff");}.ff2_c02239{font-family:ff2_c02239;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:ff3_c02239;src:url('chunks/assets/font_0f002dc03e15762e794d1b5f.woff2')format("woff");}.ff3_c02239{font-family:ff3_c02239;line-height:1.112305;font-style:normal;font-weight: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_c02239;src:url('chunks/assets/font_9a90a399201c1691450ce5e9.woff2')format("woff");}.ff4_c02239{font-family:ff4_c02239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02239{vertical-align:0.000000px;}
.ls1_c02239{letter-spacing:-0.216000px;}
.ls0_c02239{letter-spacing:0.000000px;}
.sc__c02239{text-shadow:none;}
.sc0_c02239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02239{-webkit-text-stroke:0px transparent;}
.sc0_c02239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02239{word-spacing:-18.000000px;}
.ws1_c02239{word-spacing:-17.784000px;}
.ws2_c02239{word-spacing:0.000000px;}
._d_c02239{margin-left:-2.160000px;}
._1_c02239{margin-left:-1.008000px;}
._4_c02239{width:1.224000px;}
._8_c02239{width:2.520000px;}
._7_c02239{width:3.528000px;}
._2_c02239{width:4.608000px;}
._3_c02239{width:5.832000px;}
._11_c02239{width:7.560000px;}
._0_c02239{width:9.144000px;}
._a_c02239{width:10.656000px;}
._e_c02239{width:12.096000px;}
._10_c02239{width:13.320000px;}
._b_c02239{width:14.544000px;}
._c_c02239{width:15.984000px;}
._9_c02239{width:20.160000px;}
._5_c02239{width:21.384000px;}
._f_c02239{width:23.760000px;}
._6_c02239{width:36.288000px;}
.fc1_c02239{color:rgb(192,80,77);}
.fc0_c02239{color:rgb(0,0,0);}
.fs0_c02239{font-size:66.240000px;}
.fs1_c02239{font-size:72.000000px;}
.y0_c02239{bottom:0.000000px;}
.y3_c02239{bottom:4.680000px;}
.y2_c02239{bottom:41.796000px;}
.y1_c02239{bottom:75.456000px;}
.y22_c02239{bottom:133.776000px;}
.y21_c02239{bottom:164.910000px;}
.y20_c02239{bottom:195.870000px;}
.y1f_c02239{bottom:226.830000px;}
.y1e_c02239{bottom:257.970000px;}
.y1d_c02239{bottom:288.975000px;}
.y1c_c02239{bottom:320.115000px;}
.y1b_c02239{bottom:351.075000px;}
.y1a_c02239{bottom:382.215000px;}
.y19_c02239{bottom:413.175000px;}
.y18_c02239{bottom:444.315000px;}
.y17_c02239{bottom:475.275000px;}
.y16_c02239{bottom:506.415000px;}
.y15_c02239{bottom:537.405000px;}
.y14_c02239{bottom:568.545000px;}
.y13_c02239{bottom:599.505000px;}
.y12_c02239{bottom:630.645000px;}
.y11_c02239{bottom:661.605000px;}
.y10_c02239{bottom:692.745000px;}
.yf_c02239{bottom:723.705000px;}
.ye_c02239{bottom:754.845000px;}
.yd_c02239{bottom:785.805000px;}
.yc_c02239{bottom:816.990000px;}
.yb_c02239{bottom:847.950000px;}
.ya_c02239{bottom:879.090000px;}
.y9_c02239{bottom:910.050000px;}
.y8_c02239{bottom:941.190000px;}
.y7_c02239{bottom:972.150000px;}
.y6_c02239{bottom:1003.290000px;}
.y5_c02239{bottom:1034.250000px;}
.y4_c02239{bottom:1065.420000px;}
.h2_c02239{height:22.500000px;}
.h1_c02239{height:48.871406px;}
.h4_c02239{height:64.546875px;}
.h3_c02239{height:70.664062px;}
.h0_c02239{height:1188.000000px;}
.w1_c02239{width:66.636000px;}
.w0_c02239{width:918.000000px;}
.x0_c02239{left:0.000000px;}
.x3_c02239{left:16.560000px;}
.x1_c02239{left:127.656000px;}
.x4_c02239{left:187.050000px;}
.x2_c02239{left:820.950000px;}
@media print{
.v0_c02239{vertical-align:0.000000pt;}
.ls1_c02239{letter-spacing:-0.192000pt;}
.ls0_c02239{letter-spacing:0.000000pt;}
.ws0_c02239{word-spacing:-16.000000pt;}
.ws1_c02239{word-spacing:-15.808000pt;}
.ws2_c02239{word-spacing:0.000000pt;}
._d_c02239{margin-left:-1.920000pt;}
._1_c02239{margin-left:-0.896000pt;}
._4_c02239{width:1.088000pt;}
._8_c02239{width:2.240000pt;}
._7_c02239{width:3.136000pt;}
._2_c02239{width:4.096000pt;}
._3_c02239{width:5.184000pt;}
._11_c02239{width:6.720000pt;}
._0_c02239{width:8.128000pt;}
._a_c02239{width:9.472000pt;}
._e_c02239{width:10.752000pt;}
._10_c02239{width:11.840000pt;}
._b_c02239{width:12.928000pt;}
._c_c02239{width:14.208000pt;}
._9_c02239{width:17.920000pt;}
._5_c02239{width:19.008000pt;}
._f_c02239{width:21.120000pt;}
._6_c02239{width:32.256000pt;}
.fs0_c02239{font-size:58.880000pt;}
.fs1_c02239{font-size:64.000000pt;}
.y0_c02239{bottom:0.000000pt;}
.y3_c02239{bottom:4.160000pt;}
.y2_c02239{bottom:37.152000pt;}
.y1_c02239{bottom:67.072000pt;}
.y22_c02239{bottom:118.912000pt;}
.y21_c02239{bottom:146.586667pt;}
.y20_c02239{bottom:174.106667pt;}
.y1f_c02239{bottom:201.626667pt;}
.y1e_c02239{bottom:229.306667pt;}
.y1d_c02239{bottom:256.866667pt;}
.y1c_c02239{bottom:284.546667pt;}
.y1b_c02239{bottom:312.066667pt;}
.y1a_c02239{bottom:339.746667pt;}
.y19_c02239{bottom:367.266667pt;}
.y18_c02239{bottom:394.946667pt;}
.y17_c02239{bottom:422.466667pt;}
.y16_c02239{bottom:450.146667pt;}
.y15_c02239{bottom:477.693333pt;}
.y14_c02239{bottom:505.373333pt;}
.y13_c02239{bottom:532.893333pt;}
.y12_c02239{bottom:560.573333pt;}
.y11_c02239{bottom:588.093333pt;}
.y10_c02239{bottom:615.773333pt;}
.yf_c02239{bottom:643.293333pt;}
.ye_c02239{bottom:670.973333pt;}
.yd_c02239{bottom:698.493333pt;}
.yc_c02239{bottom:726.213333pt;}
.yb_c02239{bottom:753.733333pt;}
.ya_c02239{bottom:781.413333pt;}
.y9_c02239{bottom:808.933333pt;}
.y8_c02239{bottom:836.613333pt;}
.y7_c02239{bottom:864.133333pt;}
.y6_c02239{bottom:891.813333pt;}
.y5_c02239{bottom:919.333333pt;}
.y4_c02239{bottom:947.040000pt;}
.h2_c02239{height:20.000000pt;}
.h1_c02239{height:43.441250pt;}
.h4_c02239{height:57.375000pt;}
.h3_c02239{height:62.812500pt;}
.h0_c02239{height:1056.000000pt;}
.w1_c02239{width:59.232000pt;}
.w0_c02239{width:816.000000pt;}
.x0_c02239{left:0.000000pt;}
.x3_c02239{left:14.720000pt;}
.x1_c02239{left:113.472000pt;}
.x4_c02239{left:166.266667pt;}
.x2_c02239{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02240 {
    display:none;
  }
  .loading-indicator_c02240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02240 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02240 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02240" -> "#page-container .classname_c02240")
 */
.pf_c02240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02240 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02240 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02240 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02240 {overflow:visible;}
  }
}
.c_c02240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02240 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02240:after { /* webkit #35443 */
  content: '';
}
.t_c02240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02240 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02240 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02240 { /* info for Javascript */
  display:none;
}
.l_c02240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02240:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02240 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02240.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02240;src:url('chunks/assets/font_0d4738a292e1122084f34b75.woff2')format("woff");}.ff1_c02240{font-family:ff1_c02240;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02240;src:url('chunks/assets/font_7dc92245a034ea4dbc6f546c.woff2')format("woff");}.ff2_c02240{font-family:ff2_c02240;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:ff3_c02240;src:url('chunks/assets/font_a366ebb10838a918fd02a798.woff2')format("woff");}.ff3_c02240{font-family:ff3_c02240;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02240{vertical-align:0.000000px;}
.ls0_c02240{letter-spacing:0.000000px;}
.sc__c02240{text-shadow:none;}
.sc0_c02240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02240{-webkit-text-stroke:0px transparent;}
.sc0_c02240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02240{word-spacing:0.000000px;}
._2_c02240{margin-left:-2.592000px;}
._0_c02240{margin-left:-1.080000px;}
._3_c02240{width:1.368000px;}
._4_c02240{width:2.412000px;}
._b_c02240{width:4.824000px;}
._8_c02240{width:6.552000px;}
._9_c02240{width:7.704000px;}
._a_c02240{width:9.360000px;}
._10_c02240{width:10.656000px;}
._11_c02240{width:12.384000px;}
._7_c02240{width:15.192000px;}
._1_c02240{width:16.560000px;}
._e_c02240{width:19.728000px;}
._5_c02240{width:20.736000px;}
._6_c02240{width:21.816000px;}
._12_c02240{width:23.040000px;}
._f_c02240{width:24.264000px;}
._c_c02240{width:35.424000px;}
._d_c02240{width:36.504000px;}
.fc1_c02240{color:rgb(192,80,77);}
.fc2_c02240{color:rgb(37,37,37);}
.fc0_c02240{color:rgb(0,0,0);}
.fs0_c02240{font-size:66.240000px;}
.fs1_c02240{font-size:72.000000px;}
.y0_c02240{bottom:0.000000px;}
.y3_c02240{bottom:4.680000px;}
.y2_c02240{bottom:41.796000px;}
.y1_c02240{bottom:75.456000px;}
.y22_c02240{bottom:133.776000px;}
.y21_c02240{bottom:164.910000px;}
.y20_c02240{bottom:195.870000px;}
.y1f_c02240{bottom:226.830000px;}
.y1e_c02240{bottom:257.970000px;}
.y1d_c02240{bottom:288.975000px;}
.y1c_c02240{bottom:320.115000px;}
.y1b_c02240{bottom:351.075000px;}
.y1a_c02240{bottom:382.215000px;}
.y19_c02240{bottom:413.175000px;}
.y18_c02240{bottom:444.315000px;}
.y17_c02240{bottom:475.275000px;}
.y16_c02240{bottom:506.415000px;}
.y15_c02240{bottom:537.405000px;}
.y14_c02240{bottom:568.545000px;}
.y13_c02240{bottom:599.505000px;}
.y12_c02240{bottom:630.645000px;}
.y11_c02240{bottom:661.605000px;}
.y10_c02240{bottom:692.745000px;}
.yf_c02240{bottom:723.705000px;}
.ye_c02240{bottom:754.845000px;}
.yd_c02240{bottom:785.805000px;}
.yc_c02240{bottom:816.990000px;}
.yb_c02240{bottom:847.950000px;}
.ya_c02240{bottom:879.090000px;}
.y9_c02240{bottom:910.050000px;}
.y8_c02240{bottom:941.190000px;}
.y7_c02240{bottom:972.150000px;}
.y6_c02240{bottom:1003.290000px;}
.y5_c02240{bottom:1034.250000px;}
.y4_c02240{bottom:1065.420000px;}
.h2_c02240{height:22.500000px;}
.h1_c02240{height:48.871406px;}
.h4_c02240{height:64.546875px;}
.h3_c02240{height:70.664062px;}
.h0_c02240{height:1188.000000px;}
.w1_c02240{width:66.636000px;}
.w0_c02240{width:918.000000px;}
.x0_c02240{left:0.000000px;}
.x3_c02240{left:16.560000px;}
.x1_c02240{left:127.656000px;}
.x4_c02240{left:187.050000px;}
.x2_c02240{left:820.950000px;}
@media print{
.v0_c02240{vertical-align:0.000000pt;}
.ls0_c02240{letter-spacing:0.000000pt;}
.ws0_c02240{word-spacing:0.000000pt;}
._2_c02240{margin-left:-2.304000pt;}
._0_c02240{margin-left:-0.960000pt;}
._3_c02240{width:1.216000pt;}
._4_c02240{width:2.144000pt;}
._b_c02240{width:4.288000pt;}
._8_c02240{width:5.824000pt;}
._9_c02240{width:6.848000pt;}
._a_c02240{width:8.320000pt;}
._10_c02240{width:9.472000pt;}
._11_c02240{width:11.008000pt;}
._7_c02240{width:13.504000pt;}
._1_c02240{width:14.720000pt;}
._e_c02240{width:17.536000pt;}
._5_c02240{width:18.432000pt;}
._6_c02240{width:19.392000pt;}
._12_c02240{width:20.480000pt;}
._f_c02240{width:21.568000pt;}
._c_c02240{width:31.488000pt;}
._d_c02240{width:32.448000pt;}
.fs0_c02240{font-size:58.880000pt;}
.fs1_c02240{font-size:64.000000pt;}
.y0_c02240{bottom:0.000000pt;}
.y3_c02240{bottom:4.160000pt;}
.y2_c02240{bottom:37.152000pt;}
.y1_c02240{bottom:67.072000pt;}
.y22_c02240{bottom:118.912000pt;}
.y21_c02240{bottom:146.586667pt;}
.y20_c02240{bottom:174.106667pt;}
.y1f_c02240{bottom:201.626667pt;}
.y1e_c02240{bottom:229.306667pt;}
.y1d_c02240{bottom:256.866667pt;}
.y1c_c02240{bottom:284.546667pt;}
.y1b_c02240{bottom:312.066667pt;}
.y1a_c02240{bottom:339.746667pt;}
.y19_c02240{bottom:367.266667pt;}
.y18_c02240{bottom:394.946667pt;}
.y17_c02240{bottom:422.466667pt;}
.y16_c02240{bottom:450.146667pt;}
.y15_c02240{bottom:477.693333pt;}
.y14_c02240{bottom:505.373333pt;}
.y13_c02240{bottom:532.893333pt;}
.y12_c02240{bottom:560.573333pt;}
.y11_c02240{bottom:588.093333pt;}
.y10_c02240{bottom:615.773333pt;}
.yf_c02240{bottom:643.293333pt;}
.ye_c02240{bottom:670.973333pt;}
.yd_c02240{bottom:698.493333pt;}
.yc_c02240{bottom:726.213333pt;}
.yb_c02240{bottom:753.733333pt;}
.ya_c02240{bottom:781.413333pt;}
.y9_c02240{bottom:808.933333pt;}
.y8_c02240{bottom:836.613333pt;}
.y7_c02240{bottom:864.133333pt;}
.y6_c02240{bottom:891.813333pt;}
.y5_c02240{bottom:919.333333pt;}
.y4_c02240{bottom:947.040000pt;}
.h2_c02240{height:20.000000pt;}
.h1_c02240{height:43.441250pt;}
.h4_c02240{height:57.375000pt;}
.h3_c02240{height:62.812500pt;}
.h0_c02240{height:1056.000000pt;}
.w1_c02240{width:59.232000pt;}
.w0_c02240{width:816.000000pt;}
.x0_c02240{left:0.000000pt;}
.x3_c02240{left:14.720000pt;}
.x1_c02240{left:113.472000pt;}
.x4_c02240{left:166.266667pt;}
.x2_c02240{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02241 {
    display:none;
  }
  .loading-indicator_c02241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02241 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02241 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02241" -> "#page-container .classname_c02241")
 */
.pf_c02241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02241 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02241 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02241 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02241 {overflow:visible;}
  }
}
.c_c02241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02241 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02241:after { /* webkit #35443 */
  content: '';
}
.t_c02241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02241 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02241 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02241 { /* info for Javascript */
  display:none;
}
.l_c02241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02241:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02241 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02241.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02241;src:url('chunks/assets/font_044dbdafc4387d37cb3ad241.woff2')format("woff");}.ff1_c02241{font-family:ff1_c02241;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02241;src:url('chunks/assets/font_989bcb7277fe95b5247a9d72.woff2')format("woff");}.ff2_c02241{font-family:ff2_c02241;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:ff3_c02241;src:url('chunks/assets/font_f78024c20a90e72c42a3a667.woff2')format("woff");}.ff3_c02241{font-family:ff3_c02241;line-height:1.112305;font-style:normal;font-weight: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_c02241;src:url('chunks/assets/font_d1f28da9018f2e453a1d6f08.woff2')format("woff");}.ff4_c02241{font-family:ff4_c02241;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02241{vertical-align:0.000000px;}
.ls0_c02241{letter-spacing:0.000000px;}
.ls1_c02241{letter-spacing:0.072000px;}
.sc__c02241{text-shadow:none;}
.sc0_c02241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02241{-webkit-text-stroke:0px transparent;}
.sc0_c02241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02241{word-spacing:-18.072000px;}
.ws1_c02241{word-spacing:-18.000000px;}
.ws2_c02241{word-spacing:0.000000px;}
._2_c02241{margin-left:-1.080000px;}
._0_c02241{width:1.584000px;}
._1_c02241{width:2.736000px;}
._4_c02241{width:4.104000px;}
._c_c02241{width:7.776000px;}
._3_c02241{width:9.504000px;}
._6_c02241{width:10.584000px;}
._7_c02241{width:11.736000px;}
._a_c02241{width:14.040000px;}
._b_c02241{width:15.552000px;}
._d_c02241{width:16.704000px;}
._8_c02241{width:19.224000px;}
._9_c02241{width:20.232000px;}
._5_c02241{width:29.304000px;}
.fc1_c02241{color:rgb(192,80,77);}
.fc3_c02241{color:rgb(255,255,255);}
.fc2_c02241{color:rgb(17,17,17);}
.fc0_c02241{color:rgb(0,0,0);}
.fs0_c02241{font-size:66.240000px;}
.fs1_c02241{font-size:72.000000px;}
.y0_c02241{bottom:0.000000px;}
.y18_c02241{bottom:4.140000px;}
.yc_c02241{bottom:4.500000px;}
.y3_c02241{bottom:4.680000px;}
.y14_c02241{bottom:25.200000px;}
.y2_c02241{bottom:41.796000px;}
.y1_c02241{bottom:75.456000px;}
.y2a_c02241{bottom:124.776000px;}
.y29_c02241{bottom:155.910000px;}
.y28_c02241{bottom:186.870000px;}
.y27_c02241{bottom:217.830000px;}
.y26_c02241{bottom:248.970000px;}
.y25_c02241{bottom:279.975000px;}
.y24_c02241{bottom:311.115000px;}
.y23_c02241{bottom:342.075000px;}
.y22_c02241{bottom:373.215000px;}
.y21_c02241{bottom:404.175000px;}
.y20_c02241{bottom:435.315000px;}
.y1f_c02241{bottom:466.275000px;}
.y1e_c02241{bottom:497.415000px;}
.y1d_c02241{bottom:528.375000px;}
.y1c_c02241{bottom:549.285000px;}
.y1b_c02241{bottom:569.985000px;}
.y1a_c02241{bottom:590.685000px;}
.y19_c02241{bottom:611.385000px;}
.y17_c02241{bottom:628.305000px;}
.y16_c02241{bottom:649.905000px;}
.y15_c02241{bottom:671.325000px;}
.y13_c02241{bottom:692.745000px;}
.y12_c02241{bottom:734.865000px;}
.y11_c02241{bottom:756.285000px;}
.y10_c02241{bottom:777.705000px;}
.yf_c02241{bottom:799.350000px;}
.ye_c02241{bottom:820.770000px;}
.yd_c02241{bottom:842.190000px;}
.yb_c02241{bottom:863.610000px;}
.ya_c02241{bottom:899.790000px;}
.y9_c02241{bottom:920.670000px;}
.y8_c02241{bottom:941.370000px;}
.y7_c02241{bottom:972.150000px;}
.y6_c02241{bottom:1003.290000px;}
.y5_c02241{bottom:1034.250000px;}
.y4_c02241{bottom:1065.420000px;}
.h4_c02241{height:20.700000px;}
.h5_c02241{height:20.736000px;}
.h2_c02241{height:22.500000px;}
.h6_c02241{height:41.400000px;}
.h1_c02241{height:48.871406px;}
.h8_c02241{height:64.546875px;}
.h3_c02241{height:70.664062px;}
.h7_c02241{height:72.562500px;}
.h0_c02241{height:1188.000000px;}
.w1_c02241{width:66.636000px;}
.w3_c02241{width:307.875000px;}
.w2_c02241{width:310.350000px;}
.w0_c02241{width:918.000000px;}
.x0_c02241{left:0.000000px;}
.x3_c02241{left:16.560000px;}
.x17_c02241{left:25.920000px;}
.x14_c02241{left:53.640000px;}
.x18_c02241{left:57.420000px;}
.xb_c02241{left:83.370000px;}
.x10_c02241{left:89.460000px;}
.x15_c02241{left:97.560000px;}
.xc_c02241{left:100.440000px;}
.xf_c02241{left:102.420000px;}
.x12_c02241{left:104.940000px;}
.xe_c02241{left:107.460000px;}
.x19_c02241{left:123.705000px;}
.x1_c02241{left:127.656000px;}
.x9_c02241{left:131.085000px;}
.x13_c02241{left:135.225000px;}
.x1a_c02241{left:140.430000px;}
.xd_c02241{left:144.930000px;}
.x11_c02241{left:149.430000px;}
.x16_c02241{left:153.930000px;}
.x8_c02241{left:179.310000px;}
.x1b_c02241{left:180.750000px;}
.x4_c02241{left:187.050000px;}
.x7_c02241{left:207.210000px;}
.x6_c02241{left:440.175000px;}
.x5_c02241{left:488.775000px;}
.xa_c02241{left:490.395000px;}
.x2_c02241{left:820.950000px;}
@media print{
.v0_c02241{vertical-align:0.000000pt;}
.ls0_c02241{letter-spacing:0.000000pt;}
.ls1_c02241{letter-spacing:0.064000pt;}
.ws0_c02241{word-spacing:-16.064000pt;}
.ws1_c02241{word-spacing:-16.000000pt;}
.ws2_c02241{word-spacing:0.000000pt;}
._2_c02241{margin-left:-0.960000pt;}
._0_c02241{width:1.408000pt;}
._1_c02241{width:2.432000pt;}
._4_c02241{width:3.648000pt;}
._c_c02241{width:6.912000pt;}
._3_c02241{width:8.448000pt;}
._6_c02241{width:9.408000pt;}
._7_c02241{width:10.432000pt;}
._a_c02241{width:12.480000pt;}
._b_c02241{width:13.824000pt;}
._d_c02241{width:14.848000pt;}
._8_c02241{width:17.088000pt;}
._9_c02241{width:17.984000pt;}
._5_c02241{width:26.048000pt;}
.fs0_c02241{font-size:58.880000pt;}
.fs1_c02241{font-size:64.000000pt;}
.y0_c02241{bottom:0.000000pt;}
.y18_c02241{bottom:3.680000pt;}
.yc_c02241{bottom:4.000000pt;}
.y3_c02241{bottom:4.160000pt;}
.y14_c02241{bottom:22.400000pt;}
.y2_c02241{bottom:37.152000pt;}
.y1_c02241{bottom:67.072000pt;}
.y2a_c02241{bottom:110.912000pt;}
.y29_c02241{bottom:138.586667pt;}
.y28_c02241{bottom:166.106667pt;}
.y27_c02241{bottom:193.626667pt;}
.y26_c02241{bottom:221.306667pt;}
.y25_c02241{bottom:248.866667pt;}
.y24_c02241{bottom:276.546667pt;}
.y23_c02241{bottom:304.066667pt;}
.y22_c02241{bottom:331.746667pt;}
.y21_c02241{bottom:359.266667pt;}
.y20_c02241{bottom:386.946667pt;}
.y1f_c02241{bottom:414.466667pt;}
.y1e_c02241{bottom:442.146667pt;}
.y1d_c02241{bottom:469.666667pt;}
.y1c_c02241{bottom:488.253333pt;}
.y1b_c02241{bottom:506.653333pt;}
.y1a_c02241{bottom:525.053333pt;}
.y19_c02241{bottom:543.453333pt;}
.y17_c02241{bottom:558.493333pt;}
.y16_c02241{bottom:577.693333pt;}
.y15_c02241{bottom:596.733333pt;}
.y13_c02241{bottom:615.773333pt;}
.y12_c02241{bottom:653.213333pt;}
.y11_c02241{bottom:672.253333pt;}
.y10_c02241{bottom:691.293333pt;}
.yf_c02241{bottom:710.533333pt;}
.ye_c02241{bottom:729.573333pt;}
.yd_c02241{bottom:748.613333pt;}
.yb_c02241{bottom:767.653333pt;}
.ya_c02241{bottom:799.813333pt;}
.y9_c02241{bottom:818.373333pt;}
.y8_c02241{bottom:836.773333pt;}
.y7_c02241{bottom:864.133333pt;}
.y6_c02241{bottom:891.813333pt;}
.y5_c02241{bottom:919.333333pt;}
.y4_c02241{bottom:947.040000pt;}
.h4_c02241{height:18.400000pt;}
.h5_c02241{height:18.432000pt;}
.h2_c02241{height:20.000000pt;}
.h6_c02241{height:36.800000pt;}
.h1_c02241{height:43.441250pt;}
.h8_c02241{height:57.375000pt;}
.h3_c02241{height:62.812500pt;}
.h7_c02241{height:64.500000pt;}
.h0_c02241{height:1056.000000pt;}
.w1_c02241{width:59.232000pt;}
.w3_c02241{width:273.666667pt;}
.w2_c02241{width:275.866667pt;}
.w0_c02241{width:816.000000pt;}
.x0_c02241{left:0.000000pt;}
.x3_c02241{left:14.720000pt;}
.x17_c02241{left:23.040000pt;}
.x14_c02241{left:47.680000pt;}
.x18_c02241{left:51.040000pt;}
.xb_c02241{left:74.106667pt;}
.x10_c02241{left:79.520000pt;}
.x15_c02241{left:86.720000pt;}
.xc_c02241{left:89.280000pt;}
.xf_c02241{left:91.040000pt;}
.x12_c02241{left:93.280000pt;}
.xe_c02241{left:95.520000pt;}
.x19_c02241{left:109.960000pt;}
.x1_c02241{left:113.472000pt;}
.x9_c02241{left:116.520000pt;}
.x13_c02241{left:120.200000pt;}
.x1a_c02241{left:124.826667pt;}
.xd_c02241{left:128.826667pt;}
.x11_c02241{left:132.826667pt;}
.x16_c02241{left:136.826667pt;}
.x8_c02241{left:159.386667pt;}
.x1b_c02241{left:160.666667pt;}
.x4_c02241{left:166.266667pt;}
.x7_c02241{left:184.186667pt;}
.x6_c02241{left:391.266667pt;}
.x5_c02241{left:434.466667pt;}
.xa_c02241{left:435.906667pt;}
.x2_c02241{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02242 {
    display:none;
  }
  .loading-indicator_c02242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02242 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02242 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02242" -> "#page-container .classname_c02242")
 */
.pf_c02242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02242 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02242 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02242 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02242 {overflow:visible;}
  }
}
.c_c02242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02242 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02242:after { /* webkit #35443 */
  content: '';
}
.t_c02242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02242 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02242 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02242 { /* info for Javascript */
  display:none;
}
.l_c02242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02242:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02242 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02242.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02242;src:url('chunks/assets/font_6a92061f9d52f8bf65f090a8.woff2')format("woff");}.ff1_c02242{font-family:ff1_c02242;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02242;src:url('chunks/assets/font_9b264384b3c927abb8e15a65.woff2')format("woff");}.ff2_c02242{font-family:ff2_c02242;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:ff3_c02242;src:url('chunks/assets/font_2656ea138c9e0ac69e3f2173.woff2')format("woff");}.ff3_c02242{font-family:ff3_c02242;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02242{vertical-align:0.000000px;}
.ls0_c02242{letter-spacing:0.000000px;}
.sc__c02242{text-shadow:none;}
.sc0_c02242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02242{-webkit-text-stroke:0px transparent;}
.sc0_c02242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02242{word-spacing:0.000000px;}
._5_c02242{margin-left:-1.116000px;}
._4_c02242{width:1.188000px;}
._0_c02242{width:2.880000px;}
._1_c02242{width:4.392000px;}
._9_c02242{width:5.472000px;}
._a_c02242{width:6.552000px;}
._b_c02242{width:7.668000px;}
._d_c02242{width:8.784000px;}
._8_c02242{width:10.224000px;}
._6_c02242{width:11.880000px;}
._7_c02242{width:13.356000px;}
._e_c02242{width:15.300000px;}
._13_c02242{width:16.884000px;}
._c_c02242{width:22.824000px;}
._2_c02242{width:24.408000px;}
._3_c02242{width:25.992000px;}
._11_c02242{width:27.432000px;}
._12_c02242{width:28.584000px;}
._f_c02242{width:32.184000px;}
._10_c02242{width:37.800000px;}
.fc1_c02242{color:rgb(192,80,77);}
.fc2_c02242{color:rgb(17,17,17);}
.fc0_c02242{color:rgb(0,0,0);}
.fs0_c02242{font-size:66.240000px;}
.fs1_c02242{font-size:72.000000px;}
.y0_c02242{bottom:0.000000px;}
.y3_c02242{bottom:4.680000px;}
.y2_c02242{bottom:41.796000px;}
.y1_c02242{bottom:75.456000px;}
.y22_c02242{bottom:133.776000px;}
.y21_c02242{bottom:164.910000px;}
.y20_c02242{bottom:195.870000px;}
.y1f_c02242{bottom:226.830000px;}
.y1e_c02242{bottom:257.970000px;}
.y1d_c02242{bottom:288.975000px;}
.y1c_c02242{bottom:320.115000px;}
.y1b_c02242{bottom:351.075000px;}
.y1a_c02242{bottom:382.215000px;}
.y19_c02242{bottom:413.175000px;}
.y18_c02242{bottom:444.315000px;}
.y17_c02242{bottom:475.275000px;}
.y16_c02242{bottom:506.415000px;}
.y15_c02242{bottom:537.405000px;}
.y14_c02242{bottom:568.545000px;}
.y13_c02242{bottom:599.505000px;}
.y12_c02242{bottom:630.645000px;}
.y11_c02242{bottom:661.605000px;}
.y10_c02242{bottom:692.745000px;}
.yf_c02242{bottom:723.705000px;}
.ye_c02242{bottom:754.845000px;}
.yd_c02242{bottom:785.805000px;}
.yc_c02242{bottom:816.990000px;}
.yb_c02242{bottom:847.950000px;}
.ya_c02242{bottom:879.090000px;}
.y9_c02242{bottom:910.050000px;}
.y8_c02242{bottom:941.190000px;}
.y7_c02242{bottom:972.150000px;}
.y6_c02242{bottom:1003.290000px;}
.y5_c02242{bottom:1034.250000px;}
.y4_c02242{bottom:1065.420000px;}
.h2_c02242{height:22.500000px;}
.h1_c02242{height:48.871406px;}
.h4_c02242{height:64.546875px;}
.h3_c02242{height:70.664062px;}
.h0_c02242{height:1188.000000px;}
.w1_c02242{width:66.636000px;}
.w0_c02242{width:918.000000px;}
.x0_c02242{left:0.000000px;}
.x3_c02242{left:16.560000px;}
.x1_c02242{left:127.656000px;}
.x4_c02242{left:187.050000px;}
.x2_c02242{left:820.950000px;}
@media print{
.v0_c02242{vertical-align:0.000000pt;}
.ls0_c02242{letter-spacing:0.000000pt;}
.ws0_c02242{word-spacing:0.000000pt;}
._5_c02242{margin-left:-0.992000pt;}
._4_c02242{width:1.056000pt;}
._0_c02242{width:2.560000pt;}
._1_c02242{width:3.904000pt;}
._9_c02242{width:4.864000pt;}
._a_c02242{width:5.824000pt;}
._b_c02242{width:6.816000pt;}
._d_c02242{width:7.808000pt;}
._8_c02242{width:9.088000pt;}
._6_c02242{width:10.560000pt;}
._7_c02242{width:11.872000pt;}
._e_c02242{width:13.600000pt;}
._13_c02242{width:15.008000pt;}
._c_c02242{width:20.288000pt;}
._2_c02242{width:21.696000pt;}
._3_c02242{width:23.104000pt;}
._11_c02242{width:24.384000pt;}
._12_c02242{width:25.408000pt;}
._f_c02242{width:28.608000pt;}
._10_c02242{width:33.600000pt;}
.fs0_c02242{font-size:58.880000pt;}
.fs1_c02242{font-size:64.000000pt;}
.y0_c02242{bottom:0.000000pt;}
.y3_c02242{bottom:4.160000pt;}
.y2_c02242{bottom:37.152000pt;}
.y1_c02242{bottom:67.072000pt;}
.y22_c02242{bottom:118.912000pt;}
.y21_c02242{bottom:146.586667pt;}
.y20_c02242{bottom:174.106667pt;}
.y1f_c02242{bottom:201.626667pt;}
.y1e_c02242{bottom:229.306667pt;}
.y1d_c02242{bottom:256.866667pt;}
.y1c_c02242{bottom:284.546667pt;}
.y1b_c02242{bottom:312.066667pt;}
.y1a_c02242{bottom:339.746667pt;}
.y19_c02242{bottom:367.266667pt;}
.y18_c02242{bottom:394.946667pt;}
.y17_c02242{bottom:422.466667pt;}
.y16_c02242{bottom:450.146667pt;}
.y15_c02242{bottom:477.693333pt;}
.y14_c02242{bottom:505.373333pt;}
.y13_c02242{bottom:532.893333pt;}
.y12_c02242{bottom:560.573333pt;}
.y11_c02242{bottom:588.093333pt;}
.y10_c02242{bottom:615.773333pt;}
.yf_c02242{bottom:643.293333pt;}
.ye_c02242{bottom:670.973333pt;}
.yd_c02242{bottom:698.493333pt;}
.yc_c02242{bottom:726.213333pt;}
.yb_c02242{bottom:753.733333pt;}
.ya_c02242{bottom:781.413333pt;}
.y9_c02242{bottom:808.933333pt;}
.y8_c02242{bottom:836.613333pt;}
.y7_c02242{bottom:864.133333pt;}
.y6_c02242{bottom:891.813333pt;}
.y5_c02242{bottom:919.333333pt;}
.y4_c02242{bottom:947.040000pt;}
.h2_c02242{height:20.000000pt;}
.h1_c02242{height:43.441250pt;}
.h4_c02242{height:57.375000pt;}
.h3_c02242{height:62.812500pt;}
.h0_c02242{height:1056.000000pt;}
.w1_c02242{width:59.232000pt;}
.w0_c02242{width:816.000000pt;}
.x0_c02242{left:0.000000pt;}
.x3_c02242{left:14.720000pt;}
.x1_c02242{left:113.472000pt;}
.x4_c02242{left:166.266667pt;}
.x2_c02242{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02243 {
    display:none;
  }
  .loading-indicator_c02243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02243 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02243 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02243" -> "#page-container .classname_c02243")
 */
.pf_c02243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02243 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02243 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02243 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02243 {overflow:visible;}
  }
}
.c_c02243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02243 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02243:after { /* webkit #35443 */
  content: '';
}
.t_c02243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02243 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02243 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02243 { /* info for Javascript */
  display:none;
}
.l_c02243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02243:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02243 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02243.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02243;src:url('chunks/assets/font_8dc2d45fb4c3425b49abd944.woff2')format("woff");}.ff1_c02243{font-family:ff1_c02243;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02243;src:url('chunks/assets/font_d1d66bd885bfc8a2134bb36f.woff2')format("woff");}.ff2_c02243{font-family:ff2_c02243;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;}
.m0_c02243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02243{vertical-align:0.000000px;}
.ls0_c02243{letter-spacing:0.000000px;}
.sc__c02243{text-shadow:none;}
.sc0_c02243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02243{-webkit-text-stroke:0px transparent;}
.sc0_c02243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02243{word-spacing:0.000000px;}
._1_c02243{margin-left:-1.224000px;}
._4_c02243{width:1.584000px;}
._b_c02243{width:3.312000px;}
._c_c02243{width:4.392000px;}
._10_c02243{width:6.120000px;}
._11_c02243{width:7.200000px;}
._12_c02243{width:8.208000px;}
._6_c02243{width:9.936000px;}
._7_c02243{width:10.944000px;}
._15_c02243{width:12.600000px;}
._16_c02243{width:13.836000px;}
._e_c02243{width:15.912000px;}
._f_c02243{width:16.992000px;}
._8_c02243{width:19.656000px;}
._2_c02243{width:20.952000px;}
._3_c02243{width:22.320000px;}
._5_c02243{width:23.472000px;}
._9_c02243{width:25.272000px;}
._0_c02243{width:29.808000px;}
._a_c02243{width:31.176000px;}
._d_c02243{width:32.616000px;}
._13_c02243{width:38.304000px;}
._14_c02243{width:39.312000px;}
.fc1_c02243{color:rgb(192,80,77);}
.fc0_c02243{color:rgb(0,0,0);}
.fs0_c02243{font-size:66.240000px;}
.fs1_c02243{font-size:72.000000px;}
.y0_c02243{bottom:0.000000px;}
.y3_c02243{bottom:4.680000px;}
.y2_c02243{bottom:41.796000px;}
.y1_c02243{bottom:75.456000px;}
.y22_c02243{bottom:133.776000px;}
.y21_c02243{bottom:164.910000px;}
.y20_c02243{bottom:195.870000px;}
.y1f_c02243{bottom:226.830000px;}
.y1e_c02243{bottom:257.970000px;}
.y1d_c02243{bottom:288.975000px;}
.y1c_c02243{bottom:320.115000px;}
.y1b_c02243{bottom:351.075000px;}
.y1a_c02243{bottom:382.215000px;}
.y19_c02243{bottom:413.175000px;}
.y18_c02243{bottom:444.315000px;}
.y17_c02243{bottom:475.275000px;}
.y16_c02243{bottom:506.415000px;}
.y15_c02243{bottom:537.405000px;}
.y14_c02243{bottom:568.545000px;}
.y13_c02243{bottom:599.505000px;}
.y12_c02243{bottom:630.645000px;}
.y11_c02243{bottom:661.605000px;}
.y10_c02243{bottom:692.745000px;}
.yf_c02243{bottom:723.705000px;}
.ye_c02243{bottom:754.845000px;}
.yd_c02243{bottom:785.805000px;}
.yc_c02243{bottom:816.990000px;}
.yb_c02243{bottom:847.950000px;}
.ya_c02243{bottom:879.090000px;}
.y9_c02243{bottom:910.050000px;}
.y8_c02243{bottom:941.190000px;}
.y7_c02243{bottom:972.150000px;}
.y6_c02243{bottom:1003.290000px;}
.y5_c02243{bottom:1034.250000px;}
.y4_c02243{bottom:1065.420000px;}
.h2_c02243{height:22.500000px;}
.h1_c02243{height:48.871406px;}
.h3_c02243{height:70.664062px;}
.h0_c02243{height:1188.000000px;}
.w1_c02243{width:66.636000px;}
.w0_c02243{width:918.000000px;}
.x0_c02243{left:0.000000px;}
.x3_c02243{left:16.560000px;}
.x1_c02243{left:127.656000px;}
.x4_c02243{left:187.050000px;}
.x2_c02243{left:820.950000px;}
@media print{
.v0_c02243{vertical-align:0.000000pt;}
.ls0_c02243{letter-spacing:0.000000pt;}
.ws0_c02243{word-spacing:0.000000pt;}
._1_c02243{margin-left:-1.088000pt;}
._4_c02243{width:1.408000pt;}
._b_c02243{width:2.944000pt;}
._c_c02243{width:3.904000pt;}
._10_c02243{width:5.440000pt;}
._11_c02243{width:6.400000pt;}
._12_c02243{width:7.296000pt;}
._6_c02243{width:8.832000pt;}
._7_c02243{width:9.728000pt;}
._15_c02243{width:11.200000pt;}
._16_c02243{width:12.298667pt;}
._e_c02243{width:14.144000pt;}
._f_c02243{width:15.104000pt;}
._8_c02243{width:17.472000pt;}
._2_c02243{width:18.624000pt;}
._3_c02243{width:19.840000pt;}
._5_c02243{width:20.864000pt;}
._9_c02243{width:22.464000pt;}
._0_c02243{width:26.496000pt;}
._a_c02243{width:27.712000pt;}
._d_c02243{width:28.992000pt;}
._13_c02243{width:34.048000pt;}
._14_c02243{width:34.944000pt;}
.fs0_c02243{font-size:58.880000pt;}
.fs1_c02243{font-size:64.000000pt;}
.y0_c02243{bottom:0.000000pt;}
.y3_c02243{bottom:4.160000pt;}
.y2_c02243{bottom:37.152000pt;}
.y1_c02243{bottom:67.072000pt;}
.y22_c02243{bottom:118.912000pt;}
.y21_c02243{bottom:146.586667pt;}
.y20_c02243{bottom:174.106667pt;}
.y1f_c02243{bottom:201.626667pt;}
.y1e_c02243{bottom:229.306667pt;}
.y1d_c02243{bottom:256.866667pt;}
.y1c_c02243{bottom:284.546667pt;}
.y1b_c02243{bottom:312.066667pt;}
.y1a_c02243{bottom:339.746667pt;}
.y19_c02243{bottom:367.266667pt;}
.y18_c02243{bottom:394.946667pt;}
.y17_c02243{bottom:422.466667pt;}
.y16_c02243{bottom:450.146667pt;}
.y15_c02243{bottom:477.693333pt;}
.y14_c02243{bottom:505.373333pt;}
.y13_c02243{bottom:532.893333pt;}
.y12_c02243{bottom:560.573333pt;}
.y11_c02243{bottom:588.093333pt;}
.y10_c02243{bottom:615.773333pt;}
.yf_c02243{bottom:643.293333pt;}
.ye_c02243{bottom:670.973333pt;}
.yd_c02243{bottom:698.493333pt;}
.yc_c02243{bottom:726.213333pt;}
.yb_c02243{bottom:753.733333pt;}
.ya_c02243{bottom:781.413333pt;}
.y9_c02243{bottom:808.933333pt;}
.y8_c02243{bottom:836.613333pt;}
.y7_c02243{bottom:864.133333pt;}
.y6_c02243{bottom:891.813333pt;}
.y5_c02243{bottom:919.333333pt;}
.y4_c02243{bottom:947.040000pt;}
.h2_c02243{height:20.000000pt;}
.h1_c02243{height:43.441250pt;}
.h3_c02243{height:62.812500pt;}
.h0_c02243{height:1056.000000pt;}
.w1_c02243{width:59.232000pt;}
.w0_c02243{width:816.000000pt;}
.x0_c02243{left:0.000000pt;}
.x3_c02243{left:14.720000pt;}
.x1_c02243{left:113.472000pt;}
.x4_c02243{left:166.266667pt;}
.x2_c02243{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02244 {
    display:none;
  }
  .loading-indicator_c02244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02244 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02244 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02244" -> "#page-container .classname_c02244")
 */
.pf_c02244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02244 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02244 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02244 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02244 {overflow:visible;}
  }
}
.c_c02244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02244 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02244:after { /* webkit #35443 */
  content: '';
}
.t_c02244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02244 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02244 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02244 { /* info for Javascript */
  display:none;
}
.l_c02244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02244:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02244 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02244.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02244;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff1_c02244{font-family:ff1_c02244;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02244;src:url('chunks/assets/font_dfd0095864f9d6d1439100ea.woff2')format("woff");}.ff2_c02244{font-family:ff2_c02244;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:ff3_c02244;src:url('chunks/assets/font_3eb260e3c9bbd3cb9de4cc1a.woff2')format("woff");}.ff3_c02244{font-family:ff3_c02244;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02244{vertical-align:0.000000px;}
.ls0_c02244{letter-spacing:0.000000px;}
.sc__c02244{text-shadow:none;}
.sc0_c02244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02244{-webkit-text-stroke:0px transparent;}
.sc0_c02244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02244{word-spacing:0.000000px;}
._1_c02244{margin-left:-1.008000px;}
._4_c02244{width:1.080000px;}
._b_c02244{width:2.952000px;}
._6_c02244{width:4.824000px;}
._7_c02244{width:6.120000px;}
._0_c02244{width:7.560000px;}
._5_c02244{width:8.856000px;}
._c_c02244{width:10.152000px;}
._11_c02244{width:11.448000px;}
._2_c02244{width:13.032000px;}
._3_c02244{width:14.400000px;}
._d_c02244{width:16.056000px;}
._f_c02244{width:19.584000px;}
._10_c02244{width:20.664000px;}
._e_c02244{width:22.464000px;}
._8_c02244{width:23.544000px;}
._12_c02244{width:26.064000px;}
._13_c02244{width:27.072000px;}
._14_c02244{width:28.872000px;}
._9_c02244{width:31.752000px;}
._a_c02244{width:32.832000px;}
.fc1_c02244{color:rgb(192,80,77);}
.fc2_c02244{color:rgb(17,17,17);}
.fc0_c02244{color:rgb(0,0,0);}
.fs0_c02244{font-size:66.240000px;}
.fs1_c02244{font-size:72.000000px;}
.y0_c02244{bottom:0.000000px;}
.y3_c02244{bottom:4.680000px;}
.y2_c02244{bottom:41.796000px;}
.y1_c02244{bottom:75.456000px;}
.y22_c02244{bottom:133.776000px;}
.y21_c02244{bottom:164.910000px;}
.y20_c02244{bottom:195.870000px;}
.y1f_c02244{bottom:226.830000px;}
.y1e_c02244{bottom:257.970000px;}
.y1d_c02244{bottom:288.975000px;}
.y1c_c02244{bottom:320.115000px;}
.y1b_c02244{bottom:351.075000px;}
.y1a_c02244{bottom:382.215000px;}
.y19_c02244{bottom:413.175000px;}
.y18_c02244{bottom:444.315000px;}
.y17_c02244{bottom:475.275000px;}
.y16_c02244{bottom:506.415000px;}
.y15_c02244{bottom:537.405000px;}
.y14_c02244{bottom:568.545000px;}
.y13_c02244{bottom:599.505000px;}
.y12_c02244{bottom:630.645000px;}
.y11_c02244{bottom:661.605000px;}
.y10_c02244{bottom:692.745000px;}
.yf_c02244{bottom:723.705000px;}
.ye_c02244{bottom:754.845000px;}
.yd_c02244{bottom:785.805000px;}
.yc_c02244{bottom:816.990000px;}
.yb_c02244{bottom:847.950000px;}
.ya_c02244{bottom:879.090000px;}
.y9_c02244{bottom:910.050000px;}
.y8_c02244{bottom:941.190000px;}
.y7_c02244{bottom:972.150000px;}
.y6_c02244{bottom:1003.290000px;}
.y5_c02244{bottom:1034.250000px;}
.y4_c02244{bottom:1065.420000px;}
.h2_c02244{height:22.500000px;}
.h1_c02244{height:48.871406px;}
.h4_c02244{height:64.546875px;}
.h3_c02244{height:70.664062px;}
.h0_c02244{height:1188.000000px;}
.w1_c02244{width:66.636000px;}
.w0_c02244{width:918.000000px;}
.x0_c02244{left:0.000000px;}
.x3_c02244{left:16.560000px;}
.x1_c02244{left:127.656000px;}
.x4_c02244{left:187.050000px;}
.x2_c02244{left:820.950000px;}
@media print{
.v0_c02244{vertical-align:0.000000pt;}
.ls0_c02244{letter-spacing:0.000000pt;}
.ws0_c02244{word-spacing:0.000000pt;}
._1_c02244{margin-left:-0.896000pt;}
._4_c02244{width:0.960000pt;}
._b_c02244{width:2.624000pt;}
._6_c02244{width:4.288000pt;}
._7_c02244{width:5.440000pt;}
._0_c02244{width:6.720000pt;}
._5_c02244{width:7.872000pt;}
._c_c02244{width:9.024000pt;}
._11_c02244{width:10.176000pt;}
._2_c02244{width:11.584000pt;}
._3_c02244{width:12.800000pt;}
._d_c02244{width:14.272000pt;}
._f_c02244{width:17.408000pt;}
._10_c02244{width:18.368000pt;}
._e_c02244{width:19.968000pt;}
._8_c02244{width:20.928000pt;}
._12_c02244{width:23.168000pt;}
._13_c02244{width:24.064000pt;}
._14_c02244{width:25.664000pt;}
._9_c02244{width:28.224000pt;}
._a_c02244{width:29.184000pt;}
.fs0_c02244{font-size:58.880000pt;}
.fs1_c02244{font-size:64.000000pt;}
.y0_c02244{bottom:0.000000pt;}
.y3_c02244{bottom:4.160000pt;}
.y2_c02244{bottom:37.152000pt;}
.y1_c02244{bottom:67.072000pt;}
.y22_c02244{bottom:118.912000pt;}
.y21_c02244{bottom:146.586667pt;}
.y20_c02244{bottom:174.106667pt;}
.y1f_c02244{bottom:201.626667pt;}
.y1e_c02244{bottom:229.306667pt;}
.y1d_c02244{bottom:256.866667pt;}
.y1c_c02244{bottom:284.546667pt;}
.y1b_c02244{bottom:312.066667pt;}
.y1a_c02244{bottom:339.746667pt;}
.y19_c02244{bottom:367.266667pt;}
.y18_c02244{bottom:394.946667pt;}
.y17_c02244{bottom:422.466667pt;}
.y16_c02244{bottom:450.146667pt;}
.y15_c02244{bottom:477.693333pt;}
.y14_c02244{bottom:505.373333pt;}
.y13_c02244{bottom:532.893333pt;}
.y12_c02244{bottom:560.573333pt;}
.y11_c02244{bottom:588.093333pt;}
.y10_c02244{bottom:615.773333pt;}
.yf_c02244{bottom:643.293333pt;}
.ye_c02244{bottom:670.973333pt;}
.yd_c02244{bottom:698.493333pt;}
.yc_c02244{bottom:726.213333pt;}
.yb_c02244{bottom:753.733333pt;}
.ya_c02244{bottom:781.413333pt;}
.y9_c02244{bottom:808.933333pt;}
.y8_c02244{bottom:836.613333pt;}
.y7_c02244{bottom:864.133333pt;}
.y6_c02244{bottom:891.813333pt;}
.y5_c02244{bottom:919.333333pt;}
.y4_c02244{bottom:947.040000pt;}
.h2_c02244{height:20.000000pt;}
.h1_c02244{height:43.441250pt;}
.h4_c02244{height:57.375000pt;}
.h3_c02244{height:62.812500pt;}
.h0_c02244{height:1056.000000pt;}
.w1_c02244{width:59.232000pt;}
.w0_c02244{width:816.000000pt;}
.x0_c02244{left:0.000000pt;}
.x3_c02244{left:14.720000pt;}
.x1_c02244{left:113.472000pt;}
.x4_c02244{left:166.266667pt;}
.x2_c02244{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02245 {
    display:none;
  }
  .loading-indicator_c02245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02245 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02245 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02245" -> "#page-container .classname_c02245")
 */
.pf_c02245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02245 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02245 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02245 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02245 {overflow:visible;}
  }
}
.c_c02245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02245 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02245:after { /* webkit #35443 */
  content: '';
}
.t_c02245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02245 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02245 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02245 { /* info for Javascript */
  display:none;
}
.l_c02245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02245:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02245 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02245.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02245;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02245{font-family:ff1_c02245;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02245;src:url('chunks/assets/font_7656c74d7a1a02d85d300c46.woff2')format("woff");}.ff2_c02245{font-family:ff2_c02245;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:ff3_c02245;src:url('chunks/assets/font_f9fc50f1bbd1acad40cbd733.woff2')format("woff");}.ff3_c02245{font-family:ff3_c02245;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02245{vertical-align:0.000000px;}
.ls1_c02245{letter-spacing:-0.288000px;}
.ls0_c02245{letter-spacing:0.000000px;}
.sc__c02245{text-shadow:none;}
.sc0_c02245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02245{-webkit-text-stroke:0px transparent;}
.sc0_c02245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02245{word-spacing:0.000000px;}
._2_c02245{margin-left:-1.296000px;}
._4_c02245{width:1.008000px;}
._7_c02245{width:2.808000px;}
._d_c02245{width:4.572000px;}
._e_c02245{width:5.724000px;}
._a_c02245{width:6.840000px;}
._8_c02245{width:8.064000px;}
._9_c02245{width:9.072000px;}
._6_c02245{width:10.800000px;}
._b_c02245{width:11.880000px;}
._c_c02245{width:13.032000px;}
._5_c02245{width:14.184000px;}
._3_c02245{width:16.128000px;}
._0_c02245{width:22.680000px;}
._1_c02245{width:24.264000px;}
._f_c02245{width:26.136000px;}
._10_c02245{width:27.144000px;}
.fc1_c02245{color:rgb(192,80,77);}
.fc2_c02245{color:rgb(17,17,17);}
.fc0_c02245{color:rgb(0,0,0);}
.fs0_c02245{font-size:66.240000px;}
.fs1_c02245{font-size:72.000000px;}
.y0_c02245{bottom:0.000000px;}
.y3_c02245{bottom:4.680000px;}
.y2_c02245{bottom:41.796000px;}
.y1_c02245{bottom:75.456000px;}
.y22_c02245{bottom:133.776000px;}
.y21_c02245{bottom:164.910000px;}
.y20_c02245{bottom:195.870000px;}
.y1f_c02245{bottom:226.830000px;}
.y1e_c02245{bottom:257.970000px;}
.y1d_c02245{bottom:288.975000px;}
.y1c_c02245{bottom:320.115000px;}
.y1b_c02245{bottom:351.075000px;}
.y1a_c02245{bottom:382.215000px;}
.y19_c02245{bottom:413.175000px;}
.y18_c02245{bottom:444.315000px;}
.y17_c02245{bottom:475.275000px;}
.y16_c02245{bottom:506.415000px;}
.y15_c02245{bottom:537.405000px;}
.y14_c02245{bottom:568.545000px;}
.y13_c02245{bottom:599.505000px;}
.y12_c02245{bottom:630.645000px;}
.y11_c02245{bottom:661.605000px;}
.y10_c02245{bottom:692.745000px;}
.yf_c02245{bottom:723.705000px;}
.ye_c02245{bottom:754.845000px;}
.yd_c02245{bottom:785.805000px;}
.yc_c02245{bottom:816.990000px;}
.yb_c02245{bottom:847.950000px;}
.ya_c02245{bottom:879.090000px;}
.y9_c02245{bottom:910.050000px;}
.y8_c02245{bottom:941.190000px;}
.y7_c02245{bottom:972.150000px;}
.y6_c02245{bottom:1003.290000px;}
.y5_c02245{bottom:1034.250000px;}
.y4_c02245{bottom:1065.420000px;}
.h2_c02245{height:22.500000px;}
.h1_c02245{height:48.871406px;}
.h4_c02245{height:64.546875px;}
.h3_c02245{height:70.664062px;}
.h0_c02245{height:1188.000000px;}
.w1_c02245{width:66.636000px;}
.w0_c02245{width:918.000000px;}
.x0_c02245{left:0.000000px;}
.x3_c02245{left:16.560000px;}
.x1_c02245{left:127.656000px;}
.x4_c02245{left:187.050000px;}
.x2_c02245{left:820.950000px;}
@media print{
.v0_c02245{vertical-align:0.000000pt;}
.ls1_c02245{letter-spacing:-0.256000pt;}
.ls0_c02245{letter-spacing:0.000000pt;}
.ws0_c02245{word-spacing:0.000000pt;}
._2_c02245{margin-left:-1.152000pt;}
._4_c02245{width:0.896000pt;}
._7_c02245{width:2.496000pt;}
._d_c02245{width:4.064000pt;}
._e_c02245{width:5.088000pt;}
._a_c02245{width:6.080000pt;}
._8_c02245{width:7.168000pt;}
._9_c02245{width:8.064000pt;}
._6_c02245{width:9.600000pt;}
._b_c02245{width:10.560000pt;}
._c_c02245{width:11.584000pt;}
._5_c02245{width:12.608000pt;}
._3_c02245{width:14.336000pt;}
._0_c02245{width:20.160000pt;}
._1_c02245{width:21.568000pt;}
._f_c02245{width:23.232000pt;}
._10_c02245{width:24.128000pt;}
.fs0_c02245{font-size:58.880000pt;}
.fs1_c02245{font-size:64.000000pt;}
.y0_c02245{bottom:0.000000pt;}
.y3_c02245{bottom:4.160000pt;}
.y2_c02245{bottom:37.152000pt;}
.y1_c02245{bottom:67.072000pt;}
.y22_c02245{bottom:118.912000pt;}
.y21_c02245{bottom:146.586667pt;}
.y20_c02245{bottom:174.106667pt;}
.y1f_c02245{bottom:201.626667pt;}
.y1e_c02245{bottom:229.306667pt;}
.y1d_c02245{bottom:256.866667pt;}
.y1c_c02245{bottom:284.546667pt;}
.y1b_c02245{bottom:312.066667pt;}
.y1a_c02245{bottom:339.746667pt;}
.y19_c02245{bottom:367.266667pt;}
.y18_c02245{bottom:394.946667pt;}
.y17_c02245{bottom:422.466667pt;}
.y16_c02245{bottom:450.146667pt;}
.y15_c02245{bottom:477.693333pt;}
.y14_c02245{bottom:505.373333pt;}
.y13_c02245{bottom:532.893333pt;}
.y12_c02245{bottom:560.573333pt;}
.y11_c02245{bottom:588.093333pt;}
.y10_c02245{bottom:615.773333pt;}
.yf_c02245{bottom:643.293333pt;}
.ye_c02245{bottom:670.973333pt;}
.yd_c02245{bottom:698.493333pt;}
.yc_c02245{bottom:726.213333pt;}
.yb_c02245{bottom:753.733333pt;}
.ya_c02245{bottom:781.413333pt;}
.y9_c02245{bottom:808.933333pt;}
.y8_c02245{bottom:836.613333pt;}
.y7_c02245{bottom:864.133333pt;}
.y6_c02245{bottom:891.813333pt;}
.y5_c02245{bottom:919.333333pt;}
.y4_c02245{bottom:947.040000pt;}
.h2_c02245{height:20.000000pt;}
.h1_c02245{height:43.441250pt;}
.h4_c02245{height:57.375000pt;}
.h3_c02245{height:62.812500pt;}
.h0_c02245{height:1056.000000pt;}
.w1_c02245{width:59.232000pt;}
.w0_c02245{width:816.000000pt;}
.x0_c02245{left:0.000000pt;}
.x3_c02245{left:14.720000pt;}
.x1_c02245{left:113.472000pt;}
.x4_c02245{left:166.266667pt;}
.x2_c02245{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02246 {
    display:none;
  }
  .loading-indicator_c02246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02246 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02246 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02246" -> "#page-container .classname_c02246")
 */
.pf_c02246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02246 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02246 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02246 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02246 {overflow:visible;}
  }
}
.c_c02246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02246 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02246:after { /* webkit #35443 */
  content: '';
}
.t_c02246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02246 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02246 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02246 { /* info for Javascript */
  display:none;
}
.l_c02246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02246:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02246 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02246.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02246;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02246{font-family:ff1_c02246;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02246;src:url('chunks/assets/font_2abd9fd2fdd1b69a93e90b92.woff2')format("woff");}.ff2_c02246{font-family:ff2_c02246;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:ff3_c02246;src:url('chunks/assets/font_170e2dd8b0497f22d5996a4d.woff2')format("woff");}.ff3_c02246{font-family:ff3_c02246;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02246{vertical-align:0.000000px;}
.ls1_c02246{letter-spacing:0.000000px;}
.ls0_c02246{letter-spacing:2.160000px;}
.sc__c02246{text-shadow:none;}
.sc0_c02246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02246{-webkit-text-stroke:0px transparent;}
.sc0_c02246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02246{word-spacing:-18.000000px;}
.ws1_c02246{word-spacing:0.000000px;}
._1_c02246{margin-left:-1.512000px;}
._0_c02246{width:1.440000px;}
._2_c02246{width:2.556000px;}
._b_c02246{width:3.780000px;}
._4_c02246{width:5.184000px;}
._5_c02246{width:6.696000px;}
._16_c02246{width:8.424000px;}
._12_c02246{width:10.512000px;}
._13_c02246{width:11.664000px;}
._d_c02246{width:12.744000px;}
._c_c02246{width:14.040000px;}
._7_c02246{width:15.696000px;}
._8_c02246{width:16.704000px;}
._f_c02246{width:19.008000px;}
._6_c02246{width:20.160000px;}
._17_c02246{width:22.824000px;}
._18_c02246{width:23.880000px;}
._e_c02246{width:26.568000px;}
._9_c02246{width:29.808000px;}
._a_c02246{width:31.248000px;}
._10_c02246{width:32.904000px;}
._11_c02246{width:33.912000px;}
._14_c02246{width:36.072000px;}
._15_c02246{width:37.368000px;}
._3_c02246{width:43.128000px;}
.fc1_c02246{color:rgb(192,80,77);}
.fc2_c02246{color:rgb(17,17,17);}
.fc0_c02246{color:rgb(0,0,0);}
.fs0_c02246{font-size:66.240000px;}
.fs1_c02246{font-size:72.000000px;}
.y0_c02246{bottom:0.000000px;}
.y3_c02246{bottom:4.680000px;}
.y2_c02246{bottom:41.796000px;}
.y1_c02246{bottom:75.456000px;}
.y22_c02246{bottom:133.776000px;}
.y21_c02246{bottom:164.910000px;}
.y20_c02246{bottom:195.870000px;}
.y1f_c02246{bottom:226.830000px;}
.y1e_c02246{bottom:257.970000px;}
.y1d_c02246{bottom:288.975000px;}
.y1c_c02246{bottom:320.115000px;}
.y1b_c02246{bottom:351.075000px;}
.y1a_c02246{bottom:382.215000px;}
.y19_c02246{bottom:413.175000px;}
.y18_c02246{bottom:444.315000px;}
.y17_c02246{bottom:475.275000px;}
.y16_c02246{bottom:506.415000px;}
.y15_c02246{bottom:537.405000px;}
.y14_c02246{bottom:568.545000px;}
.y13_c02246{bottom:599.505000px;}
.y12_c02246{bottom:630.645000px;}
.y11_c02246{bottom:661.605000px;}
.y10_c02246{bottom:692.745000px;}
.yf_c02246{bottom:723.705000px;}
.ye_c02246{bottom:754.845000px;}
.yd_c02246{bottom:785.805000px;}
.yc_c02246{bottom:816.990000px;}
.yb_c02246{bottom:847.950000px;}
.ya_c02246{bottom:879.090000px;}
.y9_c02246{bottom:910.050000px;}
.y8_c02246{bottom:941.190000px;}
.y7_c02246{bottom:972.150000px;}
.y6_c02246{bottom:1003.290000px;}
.y5_c02246{bottom:1034.250000px;}
.y4_c02246{bottom:1065.420000px;}
.h2_c02246{height:22.500000px;}
.h1_c02246{height:48.871406px;}
.h4_c02246{height:64.546875px;}
.h3_c02246{height:70.664062px;}
.h0_c02246{height:1188.000000px;}
.w1_c02246{width:66.636000px;}
.w0_c02246{width:918.000000px;}
.x0_c02246{left:0.000000px;}
.x3_c02246{left:16.560000px;}
.x1_c02246{left:127.656000px;}
.x4_c02246{left:187.050000px;}
.x2_c02246{left:820.950000px;}
@media print{
.v0_c02246{vertical-align:0.000000pt;}
.ls1_c02246{letter-spacing:0.000000pt;}
.ls0_c02246{letter-spacing:1.920000pt;}
.ws0_c02246{word-spacing:-16.000000pt;}
.ws1_c02246{word-spacing:0.000000pt;}
._1_c02246{margin-left:-1.344000pt;}
._0_c02246{width:1.280000pt;}
._2_c02246{width:2.272000pt;}
._b_c02246{width:3.360000pt;}
._4_c02246{width:4.608000pt;}
._5_c02246{width:5.952000pt;}
._16_c02246{width:7.488000pt;}
._12_c02246{width:9.344000pt;}
._13_c02246{width:10.368000pt;}
._d_c02246{width:11.328000pt;}
._c_c02246{width:12.480000pt;}
._7_c02246{width:13.952000pt;}
._8_c02246{width:14.848000pt;}
._f_c02246{width:16.896000pt;}
._6_c02246{width:17.920000pt;}
._17_c02246{width:20.288000pt;}
._18_c02246{width:21.226667pt;}
._e_c02246{width:23.616000pt;}
._9_c02246{width:26.496000pt;}
._a_c02246{width:27.776000pt;}
._10_c02246{width:29.248000pt;}
._11_c02246{width:30.144000pt;}
._14_c02246{width:32.064000pt;}
._15_c02246{width:33.216000pt;}
._3_c02246{width:38.336000pt;}
.fs0_c02246{font-size:58.880000pt;}
.fs1_c02246{font-size:64.000000pt;}
.y0_c02246{bottom:0.000000pt;}
.y3_c02246{bottom:4.160000pt;}
.y2_c02246{bottom:37.152000pt;}
.y1_c02246{bottom:67.072000pt;}
.y22_c02246{bottom:118.912000pt;}
.y21_c02246{bottom:146.586667pt;}
.y20_c02246{bottom:174.106667pt;}
.y1f_c02246{bottom:201.626667pt;}
.y1e_c02246{bottom:229.306667pt;}
.y1d_c02246{bottom:256.866667pt;}
.y1c_c02246{bottom:284.546667pt;}
.y1b_c02246{bottom:312.066667pt;}
.y1a_c02246{bottom:339.746667pt;}
.y19_c02246{bottom:367.266667pt;}
.y18_c02246{bottom:394.946667pt;}
.y17_c02246{bottom:422.466667pt;}
.y16_c02246{bottom:450.146667pt;}
.y15_c02246{bottom:477.693333pt;}
.y14_c02246{bottom:505.373333pt;}
.y13_c02246{bottom:532.893333pt;}
.y12_c02246{bottom:560.573333pt;}
.y11_c02246{bottom:588.093333pt;}
.y10_c02246{bottom:615.773333pt;}
.yf_c02246{bottom:643.293333pt;}
.ye_c02246{bottom:670.973333pt;}
.yd_c02246{bottom:698.493333pt;}
.yc_c02246{bottom:726.213333pt;}
.yb_c02246{bottom:753.733333pt;}
.ya_c02246{bottom:781.413333pt;}
.y9_c02246{bottom:808.933333pt;}
.y8_c02246{bottom:836.613333pt;}
.y7_c02246{bottom:864.133333pt;}
.y6_c02246{bottom:891.813333pt;}
.y5_c02246{bottom:919.333333pt;}
.y4_c02246{bottom:947.040000pt;}
.h2_c02246{height:20.000000pt;}
.h1_c02246{height:43.441250pt;}
.h4_c02246{height:57.375000pt;}
.h3_c02246{height:62.812500pt;}
.h0_c02246{height:1056.000000pt;}
.w1_c02246{width:59.232000pt;}
.w0_c02246{width:816.000000pt;}
.x0_c02246{left:0.000000pt;}
.x3_c02246{left:14.720000pt;}
.x1_c02246{left:113.472000pt;}
.x4_c02246{left:166.266667pt;}
.x2_c02246{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02247 {
    display:none;
  }
  .loading-indicator_c02247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02247 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02247 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02247" -> "#page-container .classname_c02247")
 */
.pf_c02247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02247 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02247 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02247 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02247 {overflow:visible;}
  }
}
.c_c02247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02247 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02247:after { /* webkit #35443 */
  content: '';
}
.t_c02247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02247 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02247 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02247 { /* info for Javascript */
  display:none;
}
.l_c02247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02247:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02247 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02247.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02247;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02247{font-family:ff1_c02247;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02247;src:url('chunks/assets/font_6d57092a156ab43e4049ed20.woff2')format("woff");}.ff2_c02247{font-family:ff2_c02247;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:ff3_c02247;src:url('chunks/assets/font_917179dffa757fb42874ff6a.woff2')format("woff");}.ff3_c02247{font-family:ff3_c02247;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02247{vertical-align:0.000000px;}
.ls2_c02247{letter-spacing:-0.144000px;}
.ls1_c02247{letter-spacing:0.000000px;}
.ls0_c02247{letter-spacing:4.320000px;}
.sc__c02247{text-shadow:none;}
.sc0_c02247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02247{-webkit-text-stroke:0px transparent;}
.sc0_c02247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02247{word-spacing:-17.856000px;}
.ws1_c02247{word-spacing:0.000000px;}
._4_c02247{margin-left:-1.440000px;}
._1_c02247{width:1.368000px;}
._12_c02247{width:2.520000px;}
._6_c02247{width:3.600000px;}
._5_c02247{width:5.112000px;}
._a_c02247{width:6.696000px;}
._b_c02247{width:7.776000px;}
._11_c02247{width:8.856000px;}
._18_c02247{width:9.876000px;}
._9_c02247{width:11.664000px;}
._0_c02247{width:13.176000px;}
._2_c02247{width:14.328000px;}
._f_c02247{width:15.480000px;}
._10_c02247{width:16.704000px;}
._13_c02247{width:19.800000px;}
._14_c02247{width:20.808000px;}
._17_c02247{width:21.816000px;}
._c_c02247{width:23.040000px;}
._d_c02247{width:25.920000px;}
._e_c02247{width:27.252000px;}
._3_c02247{width:32.904000px;}
._8_c02247{width:34.128000px;}
._7_c02247{width:35.424000px;}
._15_c02247{width:41.400000px;}
._16_c02247{width:42.480000px;}
.fc1_c02247{color:rgb(192,80,77);}
.fc2_c02247{color:rgb(17,17,17);}
.fc0_c02247{color:rgb(0,0,0);}
.fs0_c02247{font-size:66.240000px;}
.fs1_c02247{font-size:72.000000px;}
.y0_c02247{bottom:0.000000px;}
.y3_c02247{bottom:4.680000px;}
.y2_c02247{bottom:41.796000px;}
.y1_c02247{bottom:75.456000px;}
.y22_c02247{bottom:133.776000px;}
.y21_c02247{bottom:164.910000px;}
.y20_c02247{bottom:195.870000px;}
.y1f_c02247{bottom:226.830000px;}
.y1e_c02247{bottom:257.970000px;}
.y1d_c02247{bottom:288.975000px;}
.y1c_c02247{bottom:320.115000px;}
.y1b_c02247{bottom:351.075000px;}
.y1a_c02247{bottom:382.215000px;}
.y19_c02247{bottom:413.175000px;}
.y18_c02247{bottom:444.315000px;}
.y17_c02247{bottom:475.275000px;}
.y16_c02247{bottom:506.415000px;}
.y15_c02247{bottom:537.405000px;}
.y14_c02247{bottom:568.545000px;}
.y13_c02247{bottom:599.505000px;}
.y12_c02247{bottom:630.645000px;}
.y11_c02247{bottom:661.605000px;}
.y10_c02247{bottom:692.745000px;}
.yf_c02247{bottom:723.705000px;}
.ye_c02247{bottom:754.845000px;}
.yd_c02247{bottom:785.805000px;}
.yc_c02247{bottom:816.990000px;}
.yb_c02247{bottom:847.950000px;}
.ya_c02247{bottom:879.090000px;}
.y9_c02247{bottom:910.050000px;}
.y8_c02247{bottom:941.190000px;}
.y7_c02247{bottom:972.150000px;}
.y6_c02247{bottom:1003.290000px;}
.y5_c02247{bottom:1034.250000px;}
.y4_c02247{bottom:1065.420000px;}
.h2_c02247{height:22.500000px;}
.h1_c02247{height:48.871406px;}
.h4_c02247{height:64.546875px;}
.h3_c02247{height:70.664062px;}
.h0_c02247{height:1188.000000px;}
.w1_c02247{width:66.636000px;}
.w0_c02247{width:918.000000px;}
.x0_c02247{left:0.000000px;}
.x3_c02247{left:16.560000px;}
.x1_c02247{left:127.656000px;}
.x4_c02247{left:187.050000px;}
.x2_c02247{left:820.950000px;}
@media print{
.v0_c02247{vertical-align:0.000000pt;}
.ls2_c02247{letter-spacing:-0.128000pt;}
.ls1_c02247{letter-spacing:0.000000pt;}
.ls0_c02247{letter-spacing:3.840000pt;}
.ws0_c02247{word-spacing:-15.872000pt;}
.ws1_c02247{word-spacing:0.000000pt;}
._4_c02247{margin-left:-1.280000pt;}
._1_c02247{width:1.216000pt;}
._12_c02247{width:2.240000pt;}
._6_c02247{width:3.200000pt;}
._5_c02247{width:4.544000pt;}
._a_c02247{width:5.952000pt;}
._b_c02247{width:6.912000pt;}
._11_c02247{width:7.872000pt;}
._18_c02247{width:8.778667pt;}
._9_c02247{width:10.368000pt;}
._0_c02247{width:11.712000pt;}
._2_c02247{width:12.736000pt;}
._f_c02247{width:13.760000pt;}
._10_c02247{width:14.848000pt;}
._13_c02247{width:17.600000pt;}
._14_c02247{width:18.496000pt;}
._17_c02247{width:19.392000pt;}
._c_c02247{width:20.480000pt;}
._d_c02247{width:23.040000pt;}
._e_c02247{width:24.224000pt;}
._3_c02247{width:29.248000pt;}
._8_c02247{width:30.336000pt;}
._7_c02247{width:31.488000pt;}
._15_c02247{width:36.800000pt;}
._16_c02247{width:37.760000pt;}
.fs0_c02247{font-size:58.880000pt;}
.fs1_c02247{font-size:64.000000pt;}
.y0_c02247{bottom:0.000000pt;}
.y3_c02247{bottom:4.160000pt;}
.y2_c02247{bottom:37.152000pt;}
.y1_c02247{bottom:67.072000pt;}
.y22_c02247{bottom:118.912000pt;}
.y21_c02247{bottom:146.586667pt;}
.y20_c02247{bottom:174.106667pt;}
.y1f_c02247{bottom:201.626667pt;}
.y1e_c02247{bottom:229.306667pt;}
.y1d_c02247{bottom:256.866667pt;}
.y1c_c02247{bottom:284.546667pt;}
.y1b_c02247{bottom:312.066667pt;}
.y1a_c02247{bottom:339.746667pt;}
.y19_c02247{bottom:367.266667pt;}
.y18_c02247{bottom:394.946667pt;}
.y17_c02247{bottom:422.466667pt;}
.y16_c02247{bottom:450.146667pt;}
.y15_c02247{bottom:477.693333pt;}
.y14_c02247{bottom:505.373333pt;}
.y13_c02247{bottom:532.893333pt;}
.y12_c02247{bottom:560.573333pt;}
.y11_c02247{bottom:588.093333pt;}
.y10_c02247{bottom:615.773333pt;}
.yf_c02247{bottom:643.293333pt;}
.ye_c02247{bottom:670.973333pt;}
.yd_c02247{bottom:698.493333pt;}
.yc_c02247{bottom:726.213333pt;}
.yb_c02247{bottom:753.733333pt;}
.ya_c02247{bottom:781.413333pt;}
.y9_c02247{bottom:808.933333pt;}
.y8_c02247{bottom:836.613333pt;}
.y7_c02247{bottom:864.133333pt;}
.y6_c02247{bottom:891.813333pt;}
.y5_c02247{bottom:919.333333pt;}
.y4_c02247{bottom:947.040000pt;}
.h2_c02247{height:20.000000pt;}
.h1_c02247{height:43.441250pt;}
.h4_c02247{height:57.375000pt;}
.h3_c02247{height:62.812500pt;}
.h0_c02247{height:1056.000000pt;}
.w1_c02247{width:59.232000pt;}
.w0_c02247{width:816.000000pt;}
.x0_c02247{left:0.000000pt;}
.x3_c02247{left:14.720000pt;}
.x1_c02247{left:113.472000pt;}
.x4_c02247{left:166.266667pt;}
.x2_c02247{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02248 {
    display:none;
  }
  .loading-indicator_c02248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02248 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02248 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02248" -> "#page-container .classname_c02248")
 */
.pf_c02248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02248 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02248 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02248 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02248 {overflow:visible;}
  }
}
.c_c02248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02248 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02248:after { /* webkit #35443 */
  content: '';
}
.t_c02248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02248 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02248 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02248 { /* info for Javascript */
  display:none;
}
.l_c02248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02248:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02248 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02248.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02248;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02248{font-family:ff1_c02248;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02248;src:url('chunks/assets/font_c512784d4ee874e092d30dd9.woff2')format("woff");}.ff2_c02248{font-family:ff2_c02248;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;}
.m0_c02248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02248{vertical-align:0.000000px;}
.ls1_c02248{letter-spacing:-0.288000px;}
.ls0_c02248{letter-spacing:0.000000px;}
.sc__c02248{text-shadow:none;}
.sc0_c02248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02248{-webkit-text-stroke:0px transparent;}
.sc0_c02248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02248{word-spacing:0.000000px;}
._9_c02248{margin-left:-2.232000px;}
._3_c02248{margin-left:-1.152000px;}
._2_c02248{width:1.008000px;}
._5_c02248{width:2.712000px;}
._a_c02248{width:3.720000px;}
._0_c02248{width:6.984000px;}
._1_c02248{width:8.424000px;}
._4_c02248{width:10.368000px;}
._7_c02248{width:11.880000px;}
._8_c02248{width:13.032000px;}
._e_c02248{width:14.472000px;}
._f_c02248{width:15.840000px;}
._10_c02248{width:16.920000px;}
._b_c02248{width:21.384000px;}
._c_c02248{width:22.608000px;}
._d_c02248{width:24.480000px;}
._6_c02248{width:25.632000px;}
._11_c02248{width:26.784000px;}
.fc1_c02248{color:rgb(192,80,77);}
.fc0_c02248{color:rgb(0,0,0);}
.fs0_c02248{font-size:66.240000px;}
.fs1_c02248{font-size:72.000000px;}
.y0_c02248{bottom:0.000000px;}
.y3_c02248{bottom:4.680000px;}
.y2_c02248{bottom:41.796000px;}
.y1_c02248{bottom:75.456000px;}
.y22_c02248{bottom:133.776000px;}
.y21_c02248{bottom:164.910000px;}
.y20_c02248{bottom:195.870000px;}
.y1f_c02248{bottom:226.830000px;}
.y1e_c02248{bottom:257.970000px;}
.y1d_c02248{bottom:288.975000px;}
.y1c_c02248{bottom:320.115000px;}
.y1b_c02248{bottom:351.075000px;}
.y1a_c02248{bottom:382.215000px;}
.y19_c02248{bottom:413.175000px;}
.y18_c02248{bottom:444.315000px;}
.y17_c02248{bottom:475.275000px;}
.y16_c02248{bottom:506.415000px;}
.y15_c02248{bottom:537.405000px;}
.y14_c02248{bottom:568.545000px;}
.y13_c02248{bottom:599.505000px;}
.y12_c02248{bottom:630.645000px;}
.y11_c02248{bottom:661.605000px;}
.y10_c02248{bottom:692.745000px;}
.yf_c02248{bottom:723.705000px;}
.ye_c02248{bottom:754.845000px;}
.yd_c02248{bottom:785.805000px;}
.yc_c02248{bottom:816.990000px;}
.yb_c02248{bottom:847.950000px;}
.ya_c02248{bottom:879.090000px;}
.y9_c02248{bottom:910.050000px;}
.y8_c02248{bottom:941.190000px;}
.y7_c02248{bottom:972.150000px;}
.y6_c02248{bottom:1003.290000px;}
.y5_c02248{bottom:1034.250000px;}
.y4_c02248{bottom:1065.420000px;}
.h2_c02248{height:22.500000px;}
.h1_c02248{height:48.871406px;}
.h3_c02248{height:70.664062px;}
.h0_c02248{height:1188.000000px;}
.w1_c02248{width:66.636000px;}
.w0_c02248{width:918.000000px;}
.x0_c02248{left:0.000000px;}
.x3_c02248{left:16.560000px;}
.x1_c02248{left:127.656000px;}
.x4_c02248{left:187.050000px;}
.x2_c02248{left:820.950000px;}
@media print{
.v0_c02248{vertical-align:0.000000pt;}
.ls1_c02248{letter-spacing:-0.256000pt;}
.ls0_c02248{letter-spacing:0.000000pt;}
.ws0_c02248{word-spacing:0.000000pt;}
._9_c02248{margin-left:-1.984000pt;}
._3_c02248{margin-left:-1.024000pt;}
._2_c02248{width:0.896000pt;}
._5_c02248{width:2.410667pt;}
._a_c02248{width:3.306667pt;}
._0_c02248{width:6.208000pt;}
._1_c02248{width:7.488000pt;}
._4_c02248{width:9.216000pt;}
._7_c02248{width:10.560000pt;}
._8_c02248{width:11.584000pt;}
._e_c02248{width:12.864000pt;}
._f_c02248{width:14.080000pt;}
._10_c02248{width:15.040000pt;}
._b_c02248{width:19.008000pt;}
._c_c02248{width:20.096000pt;}
._d_c02248{width:21.760000pt;}
._6_c02248{width:22.784000pt;}
._11_c02248{width:23.808000pt;}
.fs0_c02248{font-size:58.880000pt;}
.fs1_c02248{font-size:64.000000pt;}
.y0_c02248{bottom:0.000000pt;}
.y3_c02248{bottom:4.160000pt;}
.y2_c02248{bottom:37.152000pt;}
.y1_c02248{bottom:67.072000pt;}
.y22_c02248{bottom:118.912000pt;}
.y21_c02248{bottom:146.586667pt;}
.y20_c02248{bottom:174.106667pt;}
.y1f_c02248{bottom:201.626667pt;}
.y1e_c02248{bottom:229.306667pt;}
.y1d_c02248{bottom:256.866667pt;}
.y1c_c02248{bottom:284.546667pt;}
.y1b_c02248{bottom:312.066667pt;}
.y1a_c02248{bottom:339.746667pt;}
.y19_c02248{bottom:367.266667pt;}
.y18_c02248{bottom:394.946667pt;}
.y17_c02248{bottom:422.466667pt;}
.y16_c02248{bottom:450.146667pt;}
.y15_c02248{bottom:477.693333pt;}
.y14_c02248{bottom:505.373333pt;}
.y13_c02248{bottom:532.893333pt;}
.y12_c02248{bottom:560.573333pt;}
.y11_c02248{bottom:588.093333pt;}
.y10_c02248{bottom:615.773333pt;}
.yf_c02248{bottom:643.293333pt;}
.ye_c02248{bottom:670.973333pt;}
.yd_c02248{bottom:698.493333pt;}
.yc_c02248{bottom:726.213333pt;}
.yb_c02248{bottom:753.733333pt;}
.ya_c02248{bottom:781.413333pt;}
.y9_c02248{bottom:808.933333pt;}
.y8_c02248{bottom:836.613333pt;}
.y7_c02248{bottom:864.133333pt;}
.y6_c02248{bottom:891.813333pt;}
.y5_c02248{bottom:919.333333pt;}
.y4_c02248{bottom:947.040000pt;}
.h2_c02248{height:20.000000pt;}
.h1_c02248{height:43.441250pt;}
.h3_c02248{height:62.812500pt;}
.h0_c02248{height:1056.000000pt;}
.w1_c02248{width:59.232000pt;}
.w0_c02248{width:816.000000pt;}
.x0_c02248{left:0.000000pt;}
.x3_c02248{left:14.720000pt;}
.x1_c02248{left:113.472000pt;}
.x4_c02248{left:166.266667pt;}
.x2_c02248{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02249 {
    display:none;
  }
  .loading-indicator_c02249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02249 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02249 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02249" -> "#page-container .classname_c02249")
 */
.pf_c02249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02249 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02249 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02249 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02249 {overflow:visible;}
  }
}
.c_c02249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02249 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02249:after { /* webkit #35443 */
  content: '';
}
.t_c02249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02249 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02249 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02249 { /* info for Javascript */
  display:none;
}
.l_c02249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02249:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02249 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02249.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02249;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02249{font-family:ff1_c02249;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02249;src:url('chunks/assets/font_69b65c452b41e00aa6af0a92.woff2')format("woff");}.ff2_c02249{font-family:ff2_c02249;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;}
.m0_c02249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02249{vertical-align:0.000000px;}
.ls0_c02249{letter-spacing:0.000000px;}
.sc__c02249{text-shadow:none;}
.sc0_c02249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02249{-webkit-text-stroke:0px transparent;}
.sc0_c02249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02249{word-spacing:0.000000px;}
._6_c02249{margin-left:-2.160000px;}
._1_c02249{margin-left:-1.080000px;}
._2_c02249{width:1.332000px;}
._a_c02249{width:2.448000px;}
._e_c02249{width:4.320000px;}
._d_c02249{width:5.616000px;}
._7_c02249{width:6.840000px;}
._5_c02249{width:8.064000px;}
._0_c02249{width:10.008000px;}
._10_c02249{width:11.448000px;}
._8_c02249{width:12.456000px;}
._9_c02249{width:14.112000px;}
._3_c02249{width:15.696000px;}
._4_c02249{width:16.848000px;}
._f_c02249{width:20.016000px;}
._b_c02249{width:21.960000px;}
._c_c02249{width:23.472000px;}
.fc1_c02249{color:rgb(192,80,77);}
.fc0_c02249{color:rgb(0,0,0);}
.fs0_c02249{font-size:66.240000px;}
.fs1_c02249{font-size:72.000000px;}
.y0_c02249{bottom:0.000000px;}
.y3_c02249{bottom:4.680000px;}
.y2_c02249{bottom:41.796000px;}
.y1_c02249{bottom:75.456000px;}
.y22_c02249{bottom:133.776000px;}
.y21_c02249{bottom:164.910000px;}
.y20_c02249{bottom:195.870000px;}
.y1f_c02249{bottom:226.830000px;}
.y1e_c02249{bottom:257.970000px;}
.y1d_c02249{bottom:288.975000px;}
.y1c_c02249{bottom:320.115000px;}
.y1b_c02249{bottom:351.075000px;}
.y1a_c02249{bottom:382.215000px;}
.y19_c02249{bottom:413.175000px;}
.y18_c02249{bottom:444.315000px;}
.y17_c02249{bottom:475.275000px;}
.y16_c02249{bottom:506.415000px;}
.y15_c02249{bottom:537.405000px;}
.y14_c02249{bottom:568.545000px;}
.y13_c02249{bottom:599.505000px;}
.y12_c02249{bottom:630.645000px;}
.y11_c02249{bottom:661.605000px;}
.y10_c02249{bottom:692.745000px;}
.yf_c02249{bottom:723.705000px;}
.ye_c02249{bottom:754.845000px;}
.yd_c02249{bottom:785.805000px;}
.yc_c02249{bottom:816.990000px;}
.yb_c02249{bottom:847.950000px;}
.ya_c02249{bottom:879.090000px;}
.y9_c02249{bottom:910.050000px;}
.y8_c02249{bottom:941.190000px;}
.y7_c02249{bottom:972.150000px;}
.y6_c02249{bottom:1003.290000px;}
.y5_c02249{bottom:1034.250000px;}
.y4_c02249{bottom:1065.420000px;}
.h2_c02249{height:22.500000px;}
.h1_c02249{height:48.871406px;}
.h3_c02249{height:70.664062px;}
.h0_c02249{height:1188.000000px;}
.w1_c02249{width:66.636000px;}
.w0_c02249{width:918.000000px;}
.x0_c02249{left:0.000000px;}
.x3_c02249{left:16.560000px;}
.x1_c02249{left:127.656000px;}
.x4_c02249{left:187.050000px;}
.x2_c02249{left:820.950000px;}
@media print{
.v0_c02249{vertical-align:0.000000pt;}
.ls0_c02249{letter-spacing:0.000000pt;}
.ws0_c02249{word-spacing:0.000000pt;}
._6_c02249{margin-left:-1.920000pt;}
._1_c02249{margin-left:-0.960000pt;}
._2_c02249{width:1.184000pt;}
._a_c02249{width:2.176000pt;}
._e_c02249{width:3.840000pt;}
._d_c02249{width:4.992000pt;}
._7_c02249{width:6.080000pt;}
._5_c02249{width:7.168000pt;}
._0_c02249{width:8.896000pt;}
._10_c02249{width:10.176000pt;}
._8_c02249{width:11.072000pt;}
._9_c02249{width:12.544000pt;}
._3_c02249{width:13.952000pt;}
._4_c02249{width:14.976000pt;}
._f_c02249{width:17.792000pt;}
._b_c02249{width:19.520000pt;}
._c_c02249{width:20.864000pt;}
.fs0_c02249{font-size:58.880000pt;}
.fs1_c02249{font-size:64.000000pt;}
.y0_c02249{bottom:0.000000pt;}
.y3_c02249{bottom:4.160000pt;}
.y2_c02249{bottom:37.152000pt;}
.y1_c02249{bottom:67.072000pt;}
.y22_c02249{bottom:118.912000pt;}
.y21_c02249{bottom:146.586667pt;}
.y20_c02249{bottom:174.106667pt;}
.y1f_c02249{bottom:201.626667pt;}
.y1e_c02249{bottom:229.306667pt;}
.y1d_c02249{bottom:256.866667pt;}
.y1c_c02249{bottom:284.546667pt;}
.y1b_c02249{bottom:312.066667pt;}
.y1a_c02249{bottom:339.746667pt;}
.y19_c02249{bottom:367.266667pt;}
.y18_c02249{bottom:394.946667pt;}
.y17_c02249{bottom:422.466667pt;}
.y16_c02249{bottom:450.146667pt;}
.y15_c02249{bottom:477.693333pt;}
.y14_c02249{bottom:505.373333pt;}
.y13_c02249{bottom:532.893333pt;}
.y12_c02249{bottom:560.573333pt;}
.y11_c02249{bottom:588.093333pt;}
.y10_c02249{bottom:615.773333pt;}
.yf_c02249{bottom:643.293333pt;}
.ye_c02249{bottom:670.973333pt;}
.yd_c02249{bottom:698.493333pt;}
.yc_c02249{bottom:726.213333pt;}
.yb_c02249{bottom:753.733333pt;}
.ya_c02249{bottom:781.413333pt;}
.y9_c02249{bottom:808.933333pt;}
.y8_c02249{bottom:836.613333pt;}
.y7_c02249{bottom:864.133333pt;}
.y6_c02249{bottom:891.813333pt;}
.y5_c02249{bottom:919.333333pt;}
.y4_c02249{bottom:947.040000pt;}
.h2_c02249{height:20.000000pt;}
.h1_c02249{height:43.441250pt;}
.h3_c02249{height:62.812500pt;}
.h0_c02249{height:1056.000000pt;}
.w1_c02249{width:59.232000pt;}
.w0_c02249{width:816.000000pt;}
.x0_c02249{left:0.000000pt;}
.x3_c02249{left:14.720000pt;}
.x1_c02249{left:113.472000pt;}
.x4_c02249{left:166.266667pt;}
.x2_c02249{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02250 {
    display:none;
  }
  .loading-indicator_c02250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02250 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02250 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02250" -> "#page-container .classname_c02250")
 */
.pf_c02250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02250 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02250 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02250 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02250 {overflow:visible;}
  }
}
.c_c02250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02250 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02250:after { /* webkit #35443 */
  content: '';
}
.t_c02250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02250 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02250 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02250 { /* info for Javascript */
  display:none;
}
.l_c02250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02250:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02250 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02250.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02250;src:url('chunks/assets/font_f92eef65ba27cf4373ef563f.woff2')format("woff");}.ff1_c02250{font-family:ff1_c02250;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02250;src:url('chunks/assets/font_a154851932d07c426d821dd7.woff2')format("woff");}.ff2_c02250{font-family:ff2_c02250;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:ff3_c02250;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02250{font-family:ff3_c02250;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02250{vertical-align:-82.080000px;}
.v0_c02250{vertical-align:0.000000px;}
.ls1_c02250{letter-spacing:0.000000px;}
.ls0_c02250{letter-spacing:111.600000px;}
.sc__c02250{text-shadow:none;}
.sc0_c02250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02250{-webkit-text-stroke:0px transparent;}
.sc0_c02250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02250{word-spacing:-18.000000px;}
.ws1_c02250{word-spacing:0.000000px;}
._3_c02250{margin-left:-1.440000px;}
._2_c02250{width:1.800000px;}
._7_c02250{width:2.880000px;}
._4_c02250{width:4.752000px;}
._5_c02250{width:5.760000px;}
._c_c02250{width:6.984000px;}
._0_c02250{width:7.992000px;}
._1_c02250{width:9.072000px;}
._10_c02250{width:10.152000px;}
._f_c02250{width:11.376000px;}
._8_c02250{width:12.744000px;}
._9_c02250{width:13.896000px;}
._6_c02250{width:16.344000px;}
._12_c02250{width:19.152000px;}
._13_c02250{width:20.808000px;}
._a_c02250{width:23.544000px;}
._b_c02250{width:24.840000px;}
._11_c02250{width:25.992000px;}
._d_c02250{width:27.288000px;}
._e_c02250{width:28.944000px;}
.fc1_c02250{color:rgb(192,80,77);}
.fc2_c02250{color:rgb(17,17,17);}
.fc0_c02250{color:rgb(0,0,0);}
.fs0_c02250{font-size:66.240000px;}
.fs1_c02250{font-size:72.000000px;}
.y0_c02250{bottom:0.000000px;}
.y3_c02250{bottom:4.680000px;}
.y2_c02250{bottom:41.796000px;}
.y1_c02250{bottom:75.456000px;}
.y22_c02250{bottom:113.076000px;}
.y21_c02250{bottom:144.216000px;}
.y20_c02250{bottom:175.170000px;}
.y1f_c02250{bottom:206.130000px;}
.y1e_c02250{bottom:257.790000px;}
.y1d_c02250{bottom:288.975000px;}
.y1c_c02250{bottom:320.115000px;}
.y1b_c02250{bottom:351.075000px;}
.y1a_c02250{bottom:382.215000px;}
.y19_c02250{bottom:413.175000px;}
.y18_c02250{bottom:444.315000px;}
.y17_c02250{bottom:475.275000px;}
.y16_c02250{bottom:506.415000px;}
.y15_c02250{bottom:537.405000px;}
.y14_c02250{bottom:568.545000px;}
.y13_c02250{bottom:599.505000px;}
.y12_c02250{bottom:630.645000px;}
.y11_c02250{bottom:661.605000px;}
.y10_c02250{bottom:692.745000px;}
.yf_c02250{bottom:723.705000px;}
.ye_c02250{bottom:754.845000px;}
.yd_c02250{bottom:785.805000px;}
.yc_c02250{bottom:816.990000px;}
.yb_c02250{bottom:847.950000px;}
.ya_c02250{bottom:879.090000px;}
.y9_c02250{bottom:910.050000px;}
.y8_c02250{bottom:941.190000px;}
.y7_c02250{bottom:972.150000px;}
.y6_c02250{bottom:1003.290000px;}
.y5_c02250{bottom:1034.250000px;}
.y4_c02250{bottom:1065.420000px;}
.h2_c02250{height:22.500000px;}
.h1_c02250{height:48.871406px;}
.h3_c02250{height:70.664062px;}
.h4_c02250{height:72.562500px;}
.h0_c02250{height:1188.000000px;}
.w1_c02250{width:66.636000px;}
.w0_c02250{width:918.000000px;}
.x0_c02250{left:0.000000px;}
.x3_c02250{left:16.560000px;}
.x1_c02250{left:127.656000px;}
.x5_c02250{left:154.650000px;}
.x4_c02250{left:187.050000px;}
.x2_c02250{left:820.950000px;}
@media print{
.v1_c02250{vertical-align:-72.960000pt;}
.v0_c02250{vertical-align:0.000000pt;}
.ls1_c02250{letter-spacing:0.000000pt;}
.ls0_c02250{letter-spacing:99.200000pt;}
.ws0_c02250{word-spacing:-16.000000pt;}
.ws1_c02250{word-spacing:0.000000pt;}
._3_c02250{margin-left:-1.280000pt;}
._2_c02250{width:1.600000pt;}
._7_c02250{width:2.560000pt;}
._4_c02250{width:4.224000pt;}
._5_c02250{width:5.120000pt;}
._c_c02250{width:6.208000pt;}
._0_c02250{width:7.104000pt;}
._1_c02250{width:8.064000pt;}
._10_c02250{width:9.024000pt;}
._f_c02250{width:10.112000pt;}
._8_c02250{width:11.328000pt;}
._9_c02250{width:12.352000pt;}
._6_c02250{width:14.528000pt;}
._12_c02250{width:17.024000pt;}
._13_c02250{width:18.496000pt;}
._a_c02250{width:20.928000pt;}
._b_c02250{width:22.080000pt;}
._11_c02250{width:23.104000pt;}
._d_c02250{width:24.256000pt;}
._e_c02250{width:25.728000pt;}
.fs0_c02250{font-size:58.880000pt;}
.fs1_c02250{font-size:64.000000pt;}
.y0_c02250{bottom:0.000000pt;}
.y3_c02250{bottom:4.160000pt;}
.y2_c02250{bottom:37.152000pt;}
.y1_c02250{bottom:67.072000pt;}
.y22_c02250{bottom:100.512000pt;}
.y21_c02250{bottom:128.192000pt;}
.y20_c02250{bottom:155.706667pt;}
.y1f_c02250{bottom:183.226667pt;}
.y1e_c02250{bottom:229.146667pt;}
.y1d_c02250{bottom:256.866667pt;}
.y1c_c02250{bottom:284.546667pt;}
.y1b_c02250{bottom:312.066667pt;}
.y1a_c02250{bottom:339.746667pt;}
.y19_c02250{bottom:367.266667pt;}
.y18_c02250{bottom:394.946667pt;}
.y17_c02250{bottom:422.466667pt;}
.y16_c02250{bottom:450.146667pt;}
.y15_c02250{bottom:477.693333pt;}
.y14_c02250{bottom:505.373333pt;}
.y13_c02250{bottom:532.893333pt;}
.y12_c02250{bottom:560.573333pt;}
.y11_c02250{bottom:588.093333pt;}
.y10_c02250{bottom:615.773333pt;}
.yf_c02250{bottom:643.293333pt;}
.ye_c02250{bottom:670.973333pt;}
.yd_c02250{bottom:698.493333pt;}
.yc_c02250{bottom:726.213333pt;}
.yb_c02250{bottom:753.733333pt;}
.ya_c02250{bottom:781.413333pt;}
.y9_c02250{bottom:808.933333pt;}
.y8_c02250{bottom:836.613333pt;}
.y7_c02250{bottom:864.133333pt;}
.y6_c02250{bottom:891.813333pt;}
.y5_c02250{bottom:919.333333pt;}
.y4_c02250{bottom:947.040000pt;}
.h2_c02250{height:20.000000pt;}
.h1_c02250{height:43.441250pt;}
.h3_c02250{height:62.812500pt;}
.h4_c02250{height:64.500000pt;}
.h0_c02250{height:1056.000000pt;}
.w1_c02250{width:59.232000pt;}
.w0_c02250{width:816.000000pt;}
.x0_c02250{left:0.000000pt;}
.x3_c02250{left:14.720000pt;}
.x1_c02250{left:113.472000pt;}
.x5_c02250{left:137.466667pt;}
.x4_c02250{left:166.266667pt;}
.x2_c02250{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02251 {
    display:none;
  }
  .loading-indicator_c02251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02251 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02251 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02251" -> "#page-container .classname_c02251")
 */
.pf_c02251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02251 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02251 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02251 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02251 {overflow:visible;}
  }
}
.c_c02251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02251 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02251:after { /* webkit #35443 */
  content: '';
}
.t_c02251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02251 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02251 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02251 { /* info for Javascript */
  display:none;
}
.l_c02251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02251:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02251 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02251.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02251;src:url('chunks/assets/font_5e4ddc77dc958b0a617b28da.woff2')format("woff");}.ff1_c02251{font-family:ff1_c02251;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02251;src:url('chunks/assets/font_7e44b165d66b82c631cbd763.woff2')format("woff");}.ff2_c02251{font-family:ff2_c02251;line-height:1.112305;font-style:normal;font-weight: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_c02251;src:url('chunks/assets/font_6b783bd2a51de3c0b629b0f6.woff2')format("woff");}.ff3_c02251{font-family:ff3_c02251;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;}
.m0_c02251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02251{vertical-align:0.000000px;}
.ls0_c02251{letter-spacing:0.000000px;}
.sc__c02251{text-shadow:none;}
.sc0_c02251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02251{-webkit-text-stroke:0px transparent;}
.sc0_c02251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02251{word-spacing:0.000000px;}
._14_c02251{margin-left:-2.784000px;}
._0_c02251{margin-left:-1.008000px;}
._1_c02251{width:1.080000px;}
._9_c02251{width:2.616000px;}
._a_c02251{width:4.896000px;}
._b_c02251{width:6.264000px;}
._13_c02251{width:9.936000px;}
._c_c02251{width:11.016000px;}
._3_c02251{width:12.744000px;}
._2_c02251{width:13.824000px;}
._4_c02251{width:14.976000px;}
._5_c02251{width:15.984000px;}
._d_c02251{width:16.992000px;}
._12_c02251{width:19.224000px;}
._f_c02251{width:21.324000px;}
._e_c02251{width:22.392000px;}
._6_c02251{width:23.832000px;}
._7_c02251{width:25.056000px;}
._8_c02251{width:26.832000px;}
._10_c02251{width:35.568000px;}
._11_c02251{width:36.576000px;}
.fc1_c02251{color:rgb(192,80,77);}
.fc0_c02251{color:rgb(0,0,0);}
.fs0_c02251{font-size:66.240000px;}
.fs1_c02251{font-size:72.000000px;}
.y0_c02251{bottom:0.000000px;}
.y3_c02251{bottom:4.680000px;}
.y2_c02251{bottom:41.796000px;}
.y1_c02251{bottom:75.456000px;}
.y22_c02251{bottom:133.776000px;}
.y21_c02251{bottom:164.910000px;}
.y20_c02251{bottom:195.870000px;}
.y1f_c02251{bottom:226.830000px;}
.y1e_c02251{bottom:257.970000px;}
.y1d_c02251{bottom:288.975000px;}
.y1c_c02251{bottom:320.115000px;}
.y1b_c02251{bottom:351.075000px;}
.y1a_c02251{bottom:382.215000px;}
.y19_c02251{bottom:413.175000px;}
.y18_c02251{bottom:444.315000px;}
.y17_c02251{bottom:475.275000px;}
.y16_c02251{bottom:506.415000px;}
.y15_c02251{bottom:537.405000px;}
.y14_c02251{bottom:568.545000px;}
.y13_c02251{bottom:599.505000px;}
.y12_c02251{bottom:630.645000px;}
.y11_c02251{bottom:661.605000px;}
.y10_c02251{bottom:692.745000px;}
.yf_c02251{bottom:723.705000px;}
.ye_c02251{bottom:754.845000px;}
.yd_c02251{bottom:785.805000px;}
.yc_c02251{bottom:816.990000px;}
.yb_c02251{bottom:847.950000px;}
.ya_c02251{bottom:879.090000px;}
.y9_c02251{bottom:910.050000px;}
.y8_c02251{bottom:941.190000px;}
.y7_c02251{bottom:972.150000px;}
.y6_c02251{bottom:1003.290000px;}
.y5_c02251{bottom:1034.250000px;}
.y4_c02251{bottom:1065.420000px;}
.h2_c02251{height:22.500000px;}
.h1_c02251{height:48.871406px;}
.h3_c02251{height:64.546875px;}
.h4_c02251{height:70.664062px;}
.h0_c02251{height:1188.000000px;}
.w1_c02251{width:66.636000px;}
.w0_c02251{width:918.000000px;}
.x0_c02251{left:0.000000px;}
.x3_c02251{left:16.560000px;}
.x1_c02251{left:127.656000px;}
.x4_c02251{left:187.050000px;}
.x2_c02251{left:820.950000px;}
@media print{
.v0_c02251{vertical-align:0.000000pt;}
.ls0_c02251{letter-spacing:0.000000pt;}
.ws0_c02251{word-spacing:0.000000pt;}
._14_c02251{margin-left:-2.474667pt;}
._0_c02251{margin-left:-0.896000pt;}
._1_c02251{width:0.960000pt;}
._9_c02251{width:2.325333pt;}
._a_c02251{width:4.352000pt;}
._b_c02251{width:5.568000pt;}
._13_c02251{width:8.832000pt;}
._c_c02251{width:9.792000pt;}
._3_c02251{width:11.328000pt;}
._2_c02251{width:12.288000pt;}
._4_c02251{width:13.312000pt;}
._5_c02251{width:14.208000pt;}
._d_c02251{width:15.104000pt;}
._12_c02251{width:17.088000pt;}
._f_c02251{width:18.954667pt;}
._e_c02251{width:19.904000pt;}
._6_c02251{width:21.184000pt;}
._7_c02251{width:22.272000pt;}
._8_c02251{width:23.850667pt;}
._10_c02251{width:31.616000pt;}
._11_c02251{width:32.512000pt;}
.fs0_c02251{font-size:58.880000pt;}
.fs1_c02251{font-size:64.000000pt;}
.y0_c02251{bottom:0.000000pt;}
.y3_c02251{bottom:4.160000pt;}
.y2_c02251{bottom:37.152000pt;}
.y1_c02251{bottom:67.072000pt;}
.y22_c02251{bottom:118.912000pt;}
.y21_c02251{bottom:146.586667pt;}
.y20_c02251{bottom:174.106667pt;}
.y1f_c02251{bottom:201.626667pt;}
.y1e_c02251{bottom:229.306667pt;}
.y1d_c02251{bottom:256.866667pt;}
.y1c_c02251{bottom:284.546667pt;}
.y1b_c02251{bottom:312.066667pt;}
.y1a_c02251{bottom:339.746667pt;}
.y19_c02251{bottom:367.266667pt;}
.y18_c02251{bottom:394.946667pt;}
.y17_c02251{bottom:422.466667pt;}
.y16_c02251{bottom:450.146667pt;}
.y15_c02251{bottom:477.693333pt;}
.y14_c02251{bottom:505.373333pt;}
.y13_c02251{bottom:532.893333pt;}
.y12_c02251{bottom:560.573333pt;}
.y11_c02251{bottom:588.093333pt;}
.y10_c02251{bottom:615.773333pt;}
.yf_c02251{bottom:643.293333pt;}
.ye_c02251{bottom:670.973333pt;}
.yd_c02251{bottom:698.493333pt;}
.yc_c02251{bottom:726.213333pt;}
.yb_c02251{bottom:753.733333pt;}
.ya_c02251{bottom:781.413333pt;}
.y9_c02251{bottom:808.933333pt;}
.y8_c02251{bottom:836.613333pt;}
.y7_c02251{bottom:864.133333pt;}
.y6_c02251{bottom:891.813333pt;}
.y5_c02251{bottom:919.333333pt;}
.y4_c02251{bottom:947.040000pt;}
.h2_c02251{height:20.000000pt;}
.h1_c02251{height:43.441250pt;}
.h3_c02251{height:57.375000pt;}
.h4_c02251{height:62.812500pt;}
.h0_c02251{height:1056.000000pt;}
.w1_c02251{width:59.232000pt;}
.w0_c02251{width:816.000000pt;}
.x0_c02251{left:0.000000pt;}
.x3_c02251{left:14.720000pt;}
.x1_c02251{left:113.472000pt;}
.x4_c02251{left:166.266667pt;}
.x2_c02251{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02252 {
    display:none;
  }
  .loading-indicator_c02252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02252 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02252 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02252" -> "#page-container .classname_c02252")
 */
.pf_c02252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02252 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02252 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02252 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02252 {overflow:visible;}
  }
}
.c_c02252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02252 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02252:after { /* webkit #35443 */
  content: '';
}
.t_c02252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02252 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02252 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02252 { /* info for Javascript */
  display:none;
}
.l_c02252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02252:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02252 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02252.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02252;src:url('chunks/assets/font_4551dd4e2f00730f24905c39.woff2')format("woff");}.ff1_c02252{font-family:ff1_c02252;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02252;src:url('chunks/assets/font_01a76a1d846ea704664b7400.woff2')format("woff");}.ff2_c02252{font-family:ff2_c02252;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:ff3_c02252;src:url('chunks/assets/font_f4506dfe7408114d55c9d48f.woff2')format("woff");}.ff3_c02252{font-family:ff3_c02252;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02252{vertical-align:0.000000px;}
.ls0_c02252{letter-spacing:0.000000px;}
.sc__c02252{text-shadow:none;}
.sc0_c02252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02252{-webkit-text-stroke:0px transparent;}
.sc0_c02252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02252{word-spacing:0.000000px;}
._2_c02252{margin-left:-1.440000px;}
._3_c02252{width:1.812000px;}
._8_c02252{width:3.372000px;}
._d_c02252{width:5.184000px;}
._7_c02252{width:6.264000px;}
._0_c02252{width:8.280000px;}
._1_c02252{width:9.288000px;}
._4_c02252{width:10.404000px;}
._10_c02252{width:11.412000px;}
._5_c02252{width:12.672000px;}
._6_c02252{width:14.544000px;}
._9_c02252{width:19.296000px;}
._a_c02252{width:21.312000px;}
._c_c02252{width:31.176000px;}
._b_c02252{width:32.184000px;}
._e_c02252{width:33.192000px;}
._f_c02252{width:34.380000px;}
._11_c02252{width:61.560000px;}
._12_c02252{width:62.628000px;}
.fc1_c02252{color:rgb(192,80,77);}
.fc0_c02252{color:rgb(0,0,0);}
.fs0_c02252{font-size:66.240000px;}
.fs1_c02252{font-size:72.000000px;}
.y0_c02252{bottom:0.000000px;}
.y3_c02252{bottom:4.680000px;}
.y2_c02252{bottom:41.796000px;}
.y1_c02252{bottom:75.456000px;}
.y22_c02252{bottom:133.776000px;}
.y21_c02252{bottom:164.910000px;}
.y20_c02252{bottom:195.870000px;}
.y1f_c02252{bottom:226.830000px;}
.y1e_c02252{bottom:257.970000px;}
.y1d_c02252{bottom:288.975000px;}
.y1c_c02252{bottom:320.115000px;}
.y1b_c02252{bottom:351.075000px;}
.y1a_c02252{bottom:382.215000px;}
.y19_c02252{bottom:413.175000px;}
.y18_c02252{bottom:444.315000px;}
.y17_c02252{bottom:475.275000px;}
.y16_c02252{bottom:506.415000px;}
.y15_c02252{bottom:537.405000px;}
.y14_c02252{bottom:568.545000px;}
.y13_c02252{bottom:599.505000px;}
.y12_c02252{bottom:630.645000px;}
.y11_c02252{bottom:661.605000px;}
.y10_c02252{bottom:692.745000px;}
.yf_c02252{bottom:723.705000px;}
.ye_c02252{bottom:754.845000px;}
.yd_c02252{bottom:785.805000px;}
.yc_c02252{bottom:816.990000px;}
.yb_c02252{bottom:847.950000px;}
.ya_c02252{bottom:879.090000px;}
.y9_c02252{bottom:910.050000px;}
.y8_c02252{bottom:941.190000px;}
.y7_c02252{bottom:972.150000px;}
.y6_c02252{bottom:1003.290000px;}
.y5_c02252{bottom:1034.250000px;}
.y4_c02252{bottom:1065.420000px;}
.h2_c02252{height:22.500000px;}
.h1_c02252{height:48.871406px;}
.h4_c02252{height:64.546875px;}
.h3_c02252{height:70.664062px;}
.h0_c02252{height:1188.000000px;}
.w1_c02252{width:66.636000px;}
.w0_c02252{width:918.000000px;}
.x0_c02252{left:0.000000px;}
.x3_c02252{left:16.560000px;}
.x1_c02252{left:127.656000px;}
.x4_c02252{left:187.050000px;}
.x2_c02252{left:820.950000px;}
@media print{
.v0_c02252{vertical-align:0.000000pt;}
.ls0_c02252{letter-spacing:0.000000pt;}
.ws0_c02252{word-spacing:0.000000pt;}
._2_c02252{margin-left:-1.280000pt;}
._3_c02252{width:1.610667pt;}
._8_c02252{width:2.997333pt;}
._d_c02252{width:4.608000pt;}
._7_c02252{width:5.568000pt;}
._0_c02252{width:7.360000pt;}
._1_c02252{width:8.256000pt;}
._4_c02252{width:9.248000pt;}
._10_c02252{width:10.144000pt;}
._5_c02252{width:11.264000pt;}
._6_c02252{width:12.928000pt;}
._9_c02252{width:17.152000pt;}
._a_c02252{width:18.944000pt;}
._c_c02252{width:27.712000pt;}
._b_c02252{width:28.608000pt;}
._e_c02252{width:29.504000pt;}
._f_c02252{width:30.560000pt;}
._11_c02252{width:54.720000pt;}
._12_c02252{width:55.669333pt;}
.fs0_c02252{font-size:58.880000pt;}
.fs1_c02252{font-size:64.000000pt;}
.y0_c02252{bottom:0.000000pt;}
.y3_c02252{bottom:4.160000pt;}
.y2_c02252{bottom:37.152000pt;}
.y1_c02252{bottom:67.072000pt;}
.y22_c02252{bottom:118.912000pt;}
.y21_c02252{bottom:146.586667pt;}
.y20_c02252{bottom:174.106667pt;}
.y1f_c02252{bottom:201.626667pt;}
.y1e_c02252{bottom:229.306667pt;}
.y1d_c02252{bottom:256.866667pt;}
.y1c_c02252{bottom:284.546667pt;}
.y1b_c02252{bottom:312.066667pt;}
.y1a_c02252{bottom:339.746667pt;}
.y19_c02252{bottom:367.266667pt;}
.y18_c02252{bottom:394.946667pt;}
.y17_c02252{bottom:422.466667pt;}
.y16_c02252{bottom:450.146667pt;}
.y15_c02252{bottom:477.693333pt;}
.y14_c02252{bottom:505.373333pt;}
.y13_c02252{bottom:532.893333pt;}
.y12_c02252{bottom:560.573333pt;}
.y11_c02252{bottom:588.093333pt;}
.y10_c02252{bottom:615.773333pt;}
.yf_c02252{bottom:643.293333pt;}
.ye_c02252{bottom:670.973333pt;}
.yd_c02252{bottom:698.493333pt;}
.yc_c02252{bottom:726.213333pt;}
.yb_c02252{bottom:753.733333pt;}
.ya_c02252{bottom:781.413333pt;}
.y9_c02252{bottom:808.933333pt;}
.y8_c02252{bottom:836.613333pt;}
.y7_c02252{bottom:864.133333pt;}
.y6_c02252{bottom:891.813333pt;}
.y5_c02252{bottom:919.333333pt;}
.y4_c02252{bottom:947.040000pt;}
.h2_c02252{height:20.000000pt;}
.h1_c02252{height:43.441250pt;}
.h4_c02252{height:57.375000pt;}
.h3_c02252{height:62.812500pt;}
.h0_c02252{height:1056.000000pt;}
.w1_c02252{width:59.232000pt;}
.w0_c02252{width:816.000000pt;}
.x0_c02252{left:0.000000pt;}
.x3_c02252{left:14.720000pt;}
.x1_c02252{left:113.472000pt;}
.x4_c02252{left:166.266667pt;}
.x2_c02252{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02253 {
    display:none;
  }
  .loading-indicator_c02253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02253 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02253 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02253" -> "#page-container .classname_c02253")
 */
.pf_c02253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02253 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02253 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02253 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02253 {overflow:visible;}
  }
}
.c_c02253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02253 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02253:after { /* webkit #35443 */
  content: '';
}
.t_c02253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02253 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02253 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02253 { /* info for Javascript */
  display:none;
}
.l_c02253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02253:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02253 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02253.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02253;src:url('chunks/assets/font_102189ec2932551816d6596c.woff2')format("woff");}.ff1_c02253{font-family:ff1_c02253;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02253;src:url('chunks/assets/font_05a4187389255796743f0f78.woff2')format("woff");}.ff2_c02253{font-family:ff2_c02253;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;}
.m0_c02253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02253{vertical-align:0.000000px;}
.ls0_c02253{letter-spacing:0.000000px;}
.sc__c02253{text-shadow:none;}
.sc0_c02253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02253{-webkit-text-stroke:0px transparent;}
.sc0_c02253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02253{word-spacing:0.000000px;}
._3_c02253{margin-left:-3.024000px;}
._14_c02253{margin-left:-2.016000px;}
._0_c02253{margin-left:-1.008000px;}
._4_c02253{width:1.008000px;}
._2_c02253{width:2.376000px;}
._1_c02253{width:4.248000px;}
._b_c02253{width:5.472000px;}
._c_c02253{width:7.200000px;}
._e_c02253{width:9.012000px;}
._d_c02253{width:10.080000px;}
._13_c02253{width:11.268000px;}
._12_c02253{width:12.312000px;}
._16_c02253{width:13.320000px;}
._9_c02253{width:14.400000px;}
._a_c02253{width:15.408000px;}
._f_c02253{width:16.488000px;}
._7_c02253{width:19.728000px;}
._8_c02253{width:21.024000px;}
._5_c02253{width:24.120000px;}
._6_c02253{width:25.344000px;}
._15_c02253{width:26.568000px;}
._10_c02253{width:36.648000px;}
._11_c02253{width:37.728000px;}
.fc1_c02253{color:rgb(192,80,77);}
.fc0_c02253{color:rgb(0,0,0);}
.fs0_c02253{font-size:66.240000px;}
.fs1_c02253{font-size:72.000000px;}
.y0_c02253{bottom:0.000000px;}
.y3_c02253{bottom:4.680000px;}
.y2_c02253{bottom:41.796000px;}
.y1_c02253{bottom:75.456000px;}
.y22_c02253{bottom:133.776000px;}
.y21_c02253{bottom:164.910000px;}
.y20_c02253{bottom:195.870000px;}
.y1f_c02253{bottom:226.830000px;}
.y1e_c02253{bottom:257.970000px;}
.y1d_c02253{bottom:288.975000px;}
.y1c_c02253{bottom:320.115000px;}
.y1b_c02253{bottom:351.075000px;}
.y1a_c02253{bottom:382.215000px;}
.y19_c02253{bottom:413.175000px;}
.y18_c02253{bottom:444.315000px;}
.y17_c02253{bottom:475.275000px;}
.y16_c02253{bottom:506.415000px;}
.y15_c02253{bottom:537.405000px;}
.y14_c02253{bottom:568.545000px;}
.y13_c02253{bottom:599.505000px;}
.y12_c02253{bottom:630.645000px;}
.y11_c02253{bottom:661.605000px;}
.y10_c02253{bottom:692.745000px;}
.yf_c02253{bottom:723.705000px;}
.ye_c02253{bottom:754.845000px;}
.yd_c02253{bottom:785.805000px;}
.yc_c02253{bottom:816.990000px;}
.yb_c02253{bottom:847.950000px;}
.ya_c02253{bottom:879.090000px;}
.y9_c02253{bottom:910.050000px;}
.y8_c02253{bottom:941.190000px;}
.y7_c02253{bottom:972.150000px;}
.y6_c02253{bottom:1003.290000px;}
.y5_c02253{bottom:1034.250000px;}
.y4_c02253{bottom:1065.420000px;}
.h2_c02253{height:22.500000px;}
.h1_c02253{height:48.871406px;}
.h3_c02253{height:70.664062px;}
.h0_c02253{height:1188.000000px;}
.w1_c02253{width:66.636000px;}
.w0_c02253{width:918.000000px;}
.x0_c02253{left:0.000000px;}
.x3_c02253{left:16.560000px;}
.x1_c02253{left:127.656000px;}
.x4_c02253{left:187.050000px;}
.x2_c02253{left:820.950000px;}
@media print{
.v0_c02253{vertical-align:0.000000pt;}
.ls0_c02253{letter-spacing:0.000000pt;}
.ws0_c02253{word-spacing:0.000000pt;}
._3_c02253{margin-left:-2.688000pt;}
._14_c02253{margin-left:-1.792000pt;}
._0_c02253{margin-left:-0.896000pt;}
._4_c02253{width:0.896000pt;}
._2_c02253{width:2.112000pt;}
._1_c02253{width:3.776000pt;}
._b_c02253{width:4.864000pt;}
._c_c02253{width:6.400000pt;}
._e_c02253{width:8.010667pt;}
._d_c02253{width:8.960000pt;}
._13_c02253{width:10.016000pt;}
._12_c02253{width:10.944000pt;}
._16_c02253{width:11.840000pt;}
._9_c02253{width:12.800000pt;}
._a_c02253{width:13.696000pt;}
._f_c02253{width:14.656000pt;}
._7_c02253{width:17.536000pt;}
._8_c02253{width:18.688000pt;}
._5_c02253{width:21.440000pt;}
._6_c02253{width:22.528000pt;}
._15_c02253{width:23.616000pt;}
._10_c02253{width:32.576000pt;}
._11_c02253{width:33.536000pt;}
.fs0_c02253{font-size:58.880000pt;}
.fs1_c02253{font-size:64.000000pt;}
.y0_c02253{bottom:0.000000pt;}
.y3_c02253{bottom:4.160000pt;}
.y2_c02253{bottom:37.152000pt;}
.y1_c02253{bottom:67.072000pt;}
.y22_c02253{bottom:118.912000pt;}
.y21_c02253{bottom:146.586667pt;}
.y20_c02253{bottom:174.106667pt;}
.y1f_c02253{bottom:201.626667pt;}
.y1e_c02253{bottom:229.306667pt;}
.y1d_c02253{bottom:256.866667pt;}
.y1c_c02253{bottom:284.546667pt;}
.y1b_c02253{bottom:312.066667pt;}
.y1a_c02253{bottom:339.746667pt;}
.y19_c02253{bottom:367.266667pt;}
.y18_c02253{bottom:394.946667pt;}
.y17_c02253{bottom:422.466667pt;}
.y16_c02253{bottom:450.146667pt;}
.y15_c02253{bottom:477.693333pt;}
.y14_c02253{bottom:505.373333pt;}
.y13_c02253{bottom:532.893333pt;}
.y12_c02253{bottom:560.573333pt;}
.y11_c02253{bottom:588.093333pt;}
.y10_c02253{bottom:615.773333pt;}
.yf_c02253{bottom:643.293333pt;}
.ye_c02253{bottom:670.973333pt;}
.yd_c02253{bottom:698.493333pt;}
.yc_c02253{bottom:726.213333pt;}
.yb_c02253{bottom:753.733333pt;}
.ya_c02253{bottom:781.413333pt;}
.y9_c02253{bottom:808.933333pt;}
.y8_c02253{bottom:836.613333pt;}
.y7_c02253{bottom:864.133333pt;}
.y6_c02253{bottom:891.813333pt;}
.y5_c02253{bottom:919.333333pt;}
.y4_c02253{bottom:947.040000pt;}
.h2_c02253{height:20.000000pt;}
.h1_c02253{height:43.441250pt;}
.h3_c02253{height:62.812500pt;}
.h0_c02253{height:1056.000000pt;}
.w1_c02253{width:59.232000pt;}
.w0_c02253{width:816.000000pt;}
.x0_c02253{left:0.000000pt;}
.x3_c02253{left:14.720000pt;}
.x1_c02253{left:113.472000pt;}
.x4_c02253{left:166.266667pt;}
.x2_c02253{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02254 {
    display:none;
  }
  .loading-indicator_c02254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02254 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02254 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02254" -> "#page-container .classname_c02254")
 */
.pf_c02254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02254 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02254 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02254 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02254 {overflow:visible;}
  }
}
.c_c02254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02254 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02254:after { /* webkit #35443 */
  content: '';
}
.t_c02254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02254 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02254 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02254 { /* info for Javascript */
  display:none;
}
.l_c02254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02254:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02254 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02254.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02254;src:url('chunks/assets/font_12a0079209aaa9bfa61662db.woff2')format("woff");}.ff1_c02254{font-family:ff1_c02254;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02254;src:url('chunks/assets/font_63ec62a73b720fc3e8b29269.woff2')format("woff");}.ff2_c02254{font-family:ff2_c02254;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:ff3_c02254;src:url('chunks/assets/font_eb563db74574feade21c6b16.woff2')format("woff");}.ff3_c02254{font-family:ff3_c02254;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02254{vertical-align:0.000000px;}
.ls0_c02254{letter-spacing:0.000000px;}
.sc__c02254{text-shadow:none;}
.sc0_c02254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02254{-webkit-text-stroke:0px transparent;}
.sc0_c02254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02254{word-spacing:0.000000px;}
._f_c02254{margin-left:-2.196000px;}
._0_c02254{margin-left:-1.152000px;}
._3_c02254{width:1.164000px;}
._4_c02254{width:2.376000px;}
._9_c02254{width:4.128000px;}
._a_c02254{width:5.256000px;}
._16_c02254{width:6.408000px;}
._17_c02254{width:7.476000px;}
._18_c02254{width:8.532000px;}
._10_c02254{width:9.576000px;}
._8_c02254{width:11.160000px;}
._7_c02254{width:12.240000px;}
._e_c02254{width:13.464000px;}
._5_c02254{width:14.472000px;}
._6_c02254{width:16.104000px;}
._b_c02254{width:19.356000px;}
._11_c02254{width:20.520000px;}
._12_c02254{width:22.572000px;}
._15_c02254{width:24.336000px;}
._19_c02254{width:28.224000px;}
._13_c02254{width:29.592000px;}
._14_c02254{width:30.744000px;}
._2_c02254{width:34.056000px;}
._1_c02254{width:35.208000px;}
._c_c02254{width:43.200000px;}
._d_c02254{width:44.628000px;}
.fc1_c02254{color:rgb(192,80,77);}
.fc0_c02254{color:rgb(0,0,0);}
.fs0_c02254{font-size:66.240000px;}
.fs1_c02254{font-size:72.000000px;}
.y0_c02254{bottom:0.000000px;}
.y3_c02254{bottom:4.680000px;}
.y2_c02254{bottom:41.796000px;}
.y1_c02254{bottom:75.456000px;}
.y22_c02254{bottom:133.776000px;}
.y21_c02254{bottom:164.910000px;}
.y20_c02254{bottom:195.870000px;}
.y1f_c02254{bottom:226.830000px;}
.y1e_c02254{bottom:257.970000px;}
.y1d_c02254{bottom:288.975000px;}
.y1c_c02254{bottom:320.115000px;}
.y1b_c02254{bottom:351.075000px;}
.y1a_c02254{bottom:382.215000px;}
.y19_c02254{bottom:413.175000px;}
.y18_c02254{bottom:444.315000px;}
.y17_c02254{bottom:475.275000px;}
.y16_c02254{bottom:506.415000px;}
.y15_c02254{bottom:537.405000px;}
.y14_c02254{bottom:568.545000px;}
.y13_c02254{bottom:599.505000px;}
.y12_c02254{bottom:630.645000px;}
.y11_c02254{bottom:661.605000px;}
.y10_c02254{bottom:692.745000px;}
.yf_c02254{bottom:723.705000px;}
.ye_c02254{bottom:754.845000px;}
.yd_c02254{bottom:785.805000px;}
.yc_c02254{bottom:816.990000px;}
.yb_c02254{bottom:847.950000px;}
.ya_c02254{bottom:879.090000px;}
.y9_c02254{bottom:910.050000px;}
.y8_c02254{bottom:941.190000px;}
.y7_c02254{bottom:972.150000px;}
.y6_c02254{bottom:1003.290000px;}
.y5_c02254{bottom:1034.250000px;}
.y4_c02254{bottom:1065.420000px;}
.h2_c02254{height:22.500000px;}
.h1_c02254{height:48.871406px;}
.h4_c02254{height:64.546875px;}
.h3_c02254{height:70.664062px;}
.h0_c02254{height:1188.000000px;}
.w1_c02254{width:66.636000px;}
.w0_c02254{width:918.000000px;}
.x0_c02254{left:0.000000px;}
.x3_c02254{left:16.560000px;}
.x1_c02254{left:127.656000px;}
.x4_c02254{left:187.050000px;}
.x2_c02254{left:820.950000px;}
@media print{
.v0_c02254{vertical-align:0.000000pt;}
.ls0_c02254{letter-spacing:0.000000pt;}
.ws0_c02254{word-spacing:0.000000pt;}
._f_c02254{margin-left:-1.952000pt;}
._0_c02254{margin-left:-1.024000pt;}
._3_c02254{width:1.034667pt;}
._4_c02254{width:2.112000pt;}
._9_c02254{width:3.669333pt;}
._a_c02254{width:4.672000pt;}
._16_c02254{width:5.696000pt;}
._17_c02254{width:6.645333pt;}
._18_c02254{width:7.584000pt;}
._10_c02254{width:8.512000pt;}
._8_c02254{width:9.920000pt;}
._7_c02254{width:10.880000pt;}
._e_c02254{width:11.968000pt;}
._5_c02254{width:12.864000pt;}
._6_c02254{width:14.314667pt;}
._b_c02254{width:17.205333pt;}
._11_c02254{width:18.240000pt;}
._12_c02254{width:20.064000pt;}
._15_c02254{width:21.632000pt;}
._19_c02254{width:25.088000pt;}
._13_c02254{width:26.304000pt;}
._14_c02254{width:27.328000pt;}
._2_c02254{width:30.272000pt;}
._1_c02254{width:31.296000pt;}
._c_c02254{width:38.400000pt;}
._d_c02254{width:39.669333pt;}
.fs0_c02254{font-size:58.880000pt;}
.fs1_c02254{font-size:64.000000pt;}
.y0_c02254{bottom:0.000000pt;}
.y3_c02254{bottom:4.160000pt;}
.y2_c02254{bottom:37.152000pt;}
.y1_c02254{bottom:67.072000pt;}
.y22_c02254{bottom:118.912000pt;}
.y21_c02254{bottom:146.586667pt;}
.y20_c02254{bottom:174.106667pt;}
.y1f_c02254{bottom:201.626667pt;}
.y1e_c02254{bottom:229.306667pt;}
.y1d_c02254{bottom:256.866667pt;}
.y1c_c02254{bottom:284.546667pt;}
.y1b_c02254{bottom:312.066667pt;}
.y1a_c02254{bottom:339.746667pt;}
.y19_c02254{bottom:367.266667pt;}
.y18_c02254{bottom:394.946667pt;}
.y17_c02254{bottom:422.466667pt;}
.y16_c02254{bottom:450.146667pt;}
.y15_c02254{bottom:477.693333pt;}
.y14_c02254{bottom:505.373333pt;}
.y13_c02254{bottom:532.893333pt;}
.y12_c02254{bottom:560.573333pt;}
.y11_c02254{bottom:588.093333pt;}
.y10_c02254{bottom:615.773333pt;}
.yf_c02254{bottom:643.293333pt;}
.ye_c02254{bottom:670.973333pt;}
.yd_c02254{bottom:698.493333pt;}
.yc_c02254{bottom:726.213333pt;}
.yb_c02254{bottom:753.733333pt;}
.ya_c02254{bottom:781.413333pt;}
.y9_c02254{bottom:808.933333pt;}
.y8_c02254{bottom:836.613333pt;}
.y7_c02254{bottom:864.133333pt;}
.y6_c02254{bottom:891.813333pt;}
.y5_c02254{bottom:919.333333pt;}
.y4_c02254{bottom:947.040000pt;}
.h2_c02254{height:20.000000pt;}
.h1_c02254{height:43.441250pt;}
.h4_c02254{height:57.375000pt;}
.h3_c02254{height:62.812500pt;}
.h0_c02254{height:1056.000000pt;}
.w1_c02254{width:59.232000pt;}
.w0_c02254{width:816.000000pt;}
.x0_c02254{left:0.000000pt;}
.x3_c02254{left:14.720000pt;}
.x1_c02254{left:113.472000pt;}
.x4_c02254{left:166.266667pt;}
.x2_c02254{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02255 {
    display:none;
  }
  .loading-indicator_c02255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02255 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02255 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02255" -> "#page-container .classname_c02255")
 */
.pf_c02255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02255 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02255 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02255 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02255 {overflow:visible;}
  }
}
.c_c02255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02255 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02255:after { /* webkit #35443 */
  content: '';
}
.t_c02255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02255 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02255 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02255 { /* info for Javascript */
  display:none;
}
.l_c02255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02255:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02255 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02255.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02255;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02255{font-family:ff1_c02255;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02255;src:url('chunks/assets/font_5c80ab3007dafb2ee1bda768.woff2')format("woff");}.ff2_c02255{font-family:ff2_c02255;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:ff3_c02255;src:url('chunks/assets/font_2b1ee5bde30dee8ddab0ca8c.woff2')format("woff");}.ff3_c02255{font-family:ff3_c02255;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02255{vertical-align:0.000000px;}
.ls1_c02255{letter-spacing:0.000000px;}
.ls0_c02255{letter-spacing:0.072000px;}
.sc__c02255{text-shadow:none;}
.sc0_c02255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02255{-webkit-text-stroke:0px transparent;}
.sc0_c02255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02255{word-spacing:0.000000px;}
._7_c02255{margin-left:-1.008000px;}
._2_c02255{width:1.008000px;}
._3_c02255{width:2.232000px;}
._c_c02255{width:3.240000px;}
._d_c02255{width:4.872000px;}
._4_c02255{width:7.056000px;}
._5_c02255{width:8.064000px;}
._6_c02255{width:9.936000px;}
._8_c02255{width:11.016000px;}
._0_c02255{width:12.240000px;}
._1_c02255{width:13.392000px;}
._a_c02255{width:14.760000px;}
._9_c02255{width:16.128000px;}
._b_c02255{width:19.440000px;}
._e_c02255{width:28.008000px;}
._f_c02255{width:29.232000px;}
.fc1_c02255{color:rgb(192,80,77);}
.fc2_c02255{color:rgb(17,17,17);}
.fc0_c02255{color:rgb(0,0,0);}
.fs0_c02255{font-size:66.240000px;}
.fs1_c02255{font-size:72.000000px;}
.y0_c02255{bottom:0.000000px;}
.y3_c02255{bottom:4.680000px;}
.y2_c02255{bottom:41.796000px;}
.y1_c02255{bottom:75.456000px;}
.y18_c02255{bottom:444.315000px;}
.y17_c02255{bottom:475.275000px;}
.y16_c02255{bottom:506.415000px;}
.y15_c02255{bottom:537.405000px;}
.y14_c02255{bottom:568.545000px;}
.y13_c02255{bottom:599.505000px;}
.y12_c02255{bottom:630.645000px;}
.y11_c02255{bottom:661.605000px;}
.y10_c02255{bottom:692.745000px;}
.yf_c02255{bottom:723.705000px;}
.ye_c02255{bottom:754.845000px;}
.yd_c02255{bottom:785.805000px;}
.yc_c02255{bottom:816.990000px;}
.yb_c02255{bottom:847.950000px;}
.ya_c02255{bottom:879.090000px;}
.y9_c02255{bottom:910.050000px;}
.y8_c02255{bottom:941.190000px;}
.y7_c02255{bottom:972.150000px;}
.y6_c02255{bottom:1003.290000px;}
.y5_c02255{bottom:1034.250000px;}
.y4_c02255{bottom:1065.420000px;}
.h2_c02255{height:22.500000px;}
.h1_c02255{height:48.871406px;}
.h4_c02255{height:64.546875px;}
.h3_c02255{height:70.664062px;}
.h0_c02255{height:1188.000000px;}
.w1_c02255{width:66.636000px;}
.w0_c02255{width:918.000000px;}
.x0_c02255{left:0.000000px;}
.x3_c02255{left:16.560000px;}
.x1_c02255{left:127.656000px;}
.x4_c02255{left:187.050000px;}
.x2_c02255{left:820.950000px;}
@media print{
.v0_c02255{vertical-align:0.000000pt;}
.ls1_c02255{letter-spacing:0.000000pt;}
.ls0_c02255{letter-spacing:0.064000pt;}
.ws0_c02255{word-spacing:0.000000pt;}
._7_c02255{margin-left:-0.896000pt;}
._2_c02255{width:0.896000pt;}
._3_c02255{width:1.984000pt;}
._c_c02255{width:2.880000pt;}
._d_c02255{width:4.330667pt;}
._4_c02255{width:6.272000pt;}
._5_c02255{width:7.168000pt;}
._6_c02255{width:8.832000pt;}
._8_c02255{width:9.792000pt;}
._0_c02255{width:10.880000pt;}
._1_c02255{width:11.904000pt;}
._a_c02255{width:13.120000pt;}
._9_c02255{width:14.336000pt;}
._b_c02255{width:17.280000pt;}
._e_c02255{width:24.896000pt;}
._f_c02255{width:25.984000pt;}
.fs0_c02255{font-size:58.880000pt;}
.fs1_c02255{font-size:64.000000pt;}
.y0_c02255{bottom:0.000000pt;}
.y3_c02255{bottom:4.160000pt;}
.y2_c02255{bottom:37.152000pt;}
.y1_c02255{bottom:67.072000pt;}
.y18_c02255{bottom:394.946667pt;}
.y17_c02255{bottom:422.466667pt;}
.y16_c02255{bottom:450.146667pt;}
.y15_c02255{bottom:477.693333pt;}
.y14_c02255{bottom:505.373333pt;}
.y13_c02255{bottom:532.893333pt;}
.y12_c02255{bottom:560.573333pt;}
.y11_c02255{bottom:588.093333pt;}
.y10_c02255{bottom:615.773333pt;}
.yf_c02255{bottom:643.293333pt;}
.ye_c02255{bottom:670.973333pt;}
.yd_c02255{bottom:698.493333pt;}
.yc_c02255{bottom:726.213333pt;}
.yb_c02255{bottom:753.733333pt;}
.ya_c02255{bottom:781.413333pt;}
.y9_c02255{bottom:808.933333pt;}
.y8_c02255{bottom:836.613333pt;}
.y7_c02255{bottom:864.133333pt;}
.y6_c02255{bottom:891.813333pt;}
.y5_c02255{bottom:919.333333pt;}
.y4_c02255{bottom:947.040000pt;}
.h2_c02255{height:20.000000pt;}
.h1_c02255{height:43.441250pt;}
.h4_c02255{height:57.375000pt;}
.h3_c02255{height:62.812500pt;}
.h0_c02255{height:1056.000000pt;}
.w1_c02255{width:59.232000pt;}
.w0_c02255{width:816.000000pt;}
.x0_c02255{left:0.000000pt;}
.x3_c02255{left:14.720000pt;}
.x1_c02255{left:113.472000pt;}
.x4_c02255{left:166.266667pt;}
.x2_c02255{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02256 {
    display:none;
  }
  .loading-indicator_c02256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02256 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02256 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02256" -> "#page-container .classname_c02256")
 */
.pf_c02256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02256 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02256 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02256 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02256 {overflow:visible;}
  }
}
.c_c02256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02256 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02256:after { /* webkit #35443 */
  content: '';
}
.t_c02256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02256 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02256 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02256 { /* info for Javascript */
  display:none;
}
.l_c02256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02256:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02256 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02256.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02256;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02256{font-family:ff1_c02256;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02256;src:url('chunks/assets/font_c854fd9f883f013d14da29e2.woff2')format("woff");}.ff2_c02256{font-family:ff2_c02256;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;}
.m0_c02256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02256{vertical-align:0.000000px;}
.ls0_c02256{letter-spacing:0.000000px;}
.sc__c02256{text-shadow:none;}
.sc0_c02256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02256{-webkit-text-stroke:0px transparent;}
.sc0_c02256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02256{word-spacing:0.000000px;}
._4_c02256{margin-left:-2.160000px;}
._0_c02256{margin-left:-1.080000px;}
._1_c02256{width:1.164000px;}
._8_c02256{width:2.508000px;}
._7_c02256{width:3.528000px;}
._5_c02256{width:4.896000px;}
._a_c02256{width:5.964000px;}
._2_c02256{width:6.984000px;}
._3_c02256{width:8.496000px;}
._9_c02256{width:9.624000px;}
._6_c02256{width:16.416000px;}
.fc1_c02256{color:rgb(192,80,77);}
.fc3_c02256{color:rgb(255,255,255);}
.fc2_c02256{color:rgb(17,17,17);}
.fc0_c02256{color:rgb(0,0,0);}
.fs0_c02256{font-size:66.240000px;}
.fs1_c02256{font-size:72.000000px;}
.y0_c02256{bottom:0.000000px;}
.yb_c02256{bottom:4.500000px;}
.y3_c02256{bottom:4.680000px;}
.y9_c02256{bottom:8.640000px;}
.y2_c02256{bottom:41.796000px;}
.y1_c02256{bottom:75.456000px;}
.y21_c02256{bottom:401.475000px;}
.y20_c02256{bottom:432.615000px;}
.y1f_c02256{bottom:463.575000px;}
.y1e_c02256{bottom:494.715000px;}
.y1d_c02256{bottom:525.675000px;}
.y1c_c02256{bottom:556.845000px;}
.y1b_c02256{bottom:587.805000px;}
.y1a_c02256{bottom:618.945000px;}
.y19_c02256{bottom:649.905000px;}
.y18_c02256{bottom:681.045000px;}
.y17_c02256{bottom:701.925000px;}
.y16_c02256{bottom:722.625000px;}
.y15_c02256{bottom:743.325000px;}
.y14_c02256{bottom:764.025000px;}
.y13_c02256{bottom:784.725000px;}
.y12_c02256{bottom:801.690000px;}
.y11_c02256{bottom:823.110000px;}
.y10_c02256{bottom:844.530000px;}
.yf_c02256{bottom:865.950000px;}
.ye_c02256{bottom:887.370000px;}
.yd_c02256{bottom:908.970000px;}
.yc_c02256{bottom:930.390000px;}
.ya_c02256{bottom:951.810000px;}
.y8_c02256{bottom:973.230000px;}
.y7_c02256{bottom:1003.470000px;}
.y6_c02256{bottom:1024.170000px;}
.y5_c02256{bottom:1044.870000px;}
.y4_c02256{bottom:1065.600000px;}
.h5_c02256{height:20.700000px;}
.h2_c02256{height:22.500000px;}
.h4_c02256{height:24.840000px;}
.h1_c02256{height:48.871406px;}
.h3_c02256{height:70.664062px;}
.h0_c02256{height:1188.000000px;}
.w1_c02256{width:66.636000px;}
.w3_c02256{width:169.410000px;}
.w2_c02256{width:437.115000px;}
.w0_c02256{width:918.000000px;}
.x0_c02256{left:0.000000px;}
.xa_c02256{left:14.220000px;}
.x3_c02256{left:16.560000px;}
.xc_c02256{left:71.100000px;}
.x12_c02256{left:75.645000px;}
.xe_c02256{left:80.145000px;}
.x1_c02256{left:127.656000px;}
.xd_c02256{left:154.845000px;}
.xb_c02256{left:160.785000px;}
.xf_c02256{left:167.265000px;}
.x10_c02256{left:173.205000px;}
.x7_c02256{left:179.310000px;}
.x11_c02256{left:183.465000px;}
.x14_c02256{left:187.050000px;}
.x8_c02256{left:190.485000px;}
.x13_c02256{left:198.585000px;}
.x5_c02256{left:293.790000px;}
.x6_c02256{left:390.855000px;}
.x4_c02256{left:440.175000px;}
.x9_c02256{left:617.145000px;}
.x2_c02256{left:820.950000px;}
@media print{
.v0_c02256{vertical-align:0.000000pt;}
.ls0_c02256{letter-spacing:0.000000pt;}
.ws0_c02256{word-spacing:0.000000pt;}
._4_c02256{margin-left:-1.920000pt;}
._0_c02256{margin-left:-0.960000pt;}
._1_c02256{width:1.034667pt;}
._8_c02256{width:2.229333pt;}
._7_c02256{width:3.136000pt;}
._5_c02256{width:4.352000pt;}
._a_c02256{width:5.301333pt;}
._2_c02256{width:6.208000pt;}
._3_c02256{width:7.552000pt;}
._9_c02256{width:8.554667pt;}
._6_c02256{width:14.592000pt;}
.fs0_c02256{font-size:58.880000pt;}
.fs1_c02256{font-size:64.000000pt;}
.y0_c02256{bottom:0.000000pt;}
.yb_c02256{bottom:4.000000pt;}
.y3_c02256{bottom:4.160000pt;}
.y9_c02256{bottom:7.680000pt;}
.y2_c02256{bottom:37.152000pt;}
.y1_c02256{bottom:67.072000pt;}
.y21_c02256{bottom:356.866667pt;}
.y20_c02256{bottom:384.546667pt;}
.y1f_c02256{bottom:412.066667pt;}
.y1e_c02256{bottom:439.746667pt;}
.y1d_c02256{bottom:467.266667pt;}
.y1c_c02256{bottom:494.973333pt;}
.y1b_c02256{bottom:522.493333pt;}
.y1a_c02256{bottom:550.173333pt;}
.y19_c02256{bottom:577.693333pt;}
.y18_c02256{bottom:605.373333pt;}
.y17_c02256{bottom:623.933333pt;}
.y16_c02256{bottom:642.333333pt;}
.y15_c02256{bottom:660.733333pt;}
.y14_c02256{bottom:679.133333pt;}
.y13_c02256{bottom:697.533333pt;}
.y12_c02256{bottom:712.613333pt;}
.y11_c02256{bottom:731.653333pt;}
.y10_c02256{bottom:750.693333pt;}
.yf_c02256{bottom:769.733333pt;}
.ye_c02256{bottom:788.773333pt;}
.yd_c02256{bottom:807.973333pt;}
.yc_c02256{bottom:827.013333pt;}
.ya_c02256{bottom:846.053333pt;}
.y8_c02256{bottom:865.093333pt;}
.y7_c02256{bottom:891.973333pt;}
.y6_c02256{bottom:910.373333pt;}
.y5_c02256{bottom:928.773333pt;}
.y4_c02256{bottom:947.200000pt;}
.h5_c02256{height:18.400000pt;}
.h2_c02256{height:20.000000pt;}
.h4_c02256{height:22.080000pt;}
.h1_c02256{height:43.441250pt;}
.h3_c02256{height:62.812500pt;}
.h0_c02256{height:1056.000000pt;}
.w1_c02256{width:59.232000pt;}
.w3_c02256{width:150.586667pt;}
.w2_c02256{width:388.546667pt;}
.w0_c02256{width:816.000000pt;}
.x0_c02256{left:0.000000pt;}
.xa_c02256{left:12.640000pt;}
.x3_c02256{left:14.720000pt;}
.xc_c02256{left:63.200000pt;}
.x12_c02256{left:67.240000pt;}
.xe_c02256{left:71.240000pt;}
.x1_c02256{left:113.472000pt;}
.xd_c02256{left:137.640000pt;}
.xb_c02256{left:142.920000pt;}
.xf_c02256{left:148.680000pt;}
.x10_c02256{left:153.960000pt;}
.x7_c02256{left:159.386667pt;}
.x11_c02256{left:163.080000pt;}
.x14_c02256{left:166.266667pt;}
.x8_c02256{left:169.320000pt;}
.x13_c02256{left:176.520000pt;}
.x5_c02256{left:261.146667pt;}
.x6_c02256{left:347.426667pt;}
.x4_c02256{left:391.266667pt;}
.x9_c02256{left:548.573333pt;}
.x2_c02256{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02257 {
    display:none;
  }
  .loading-indicator_c02257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02257 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02257 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02257" -> "#page-container .classname_c02257")
 */
.pf_c02257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02257 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02257 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02257 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02257 {overflow:visible;}
  }
}
.c_c02257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02257 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02257:after { /* webkit #35443 */
  content: '';
}
.t_c02257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02257 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02257 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02257 { /* info for Javascript */
  display:none;
}
.l_c02257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02257:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02257 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02257.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02257;src:url('chunks/assets/font_40b57cb2d2dd6cb3ac62197f.woff2')format("woff");}.ff1_c02257{font-family:ff1_c02257;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02257;src:url('chunks/assets/font_821c4b929db0916739450a55.woff2')format("woff");}.ff2_c02257{font-family:ff2_c02257;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:ff3_c02257;src:url('chunks/assets/font_d1f28da9018f2e453a1d6f08.woff2')format("woff");}.ff3_c02257{font-family:ff3_c02257;line-height:1.311035;font-style:normal;font-weight: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_c02257;src:url('chunks/assets/font_6ef9a19382f31087dd664757.woff2')format("woff");}.ff4_c02257{font-family:ff4_c02257;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02257{vertical-align:0.000000px;}
.ls1_c02257{letter-spacing:0.000000px;}
.ls0_c02257{letter-spacing:19.440000px;}
.sc__c02257{text-shadow:none;}
.sc0_c02257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02257{-webkit-text-stroke:0px transparent;}
.sc0_c02257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02257{word-spacing:0.000000px;}
._0_c02257{margin-left:-1.080000px;}
._1_c02257{width:1.512000px;}
._13_c02257{width:2.592000px;}
._2_c02257{width:4.248000px;}
._3_c02257{width:5.544000px;}
._12_c02257{width:6.768000px;}
._e_c02257{width:7.776000px;}
._b_c02257{width:9.288000px;}
._11_c02257{width:11.016000px;}
._6_c02257{width:12.168000px;}
._4_c02257{width:13.176000px;}
._5_c02257{width:14.472000px;}
._9_c02257{width:16.344000px;}
._c_c02257{width:19.368000px;}
._d_c02257{width:20.844000px;}
._7_c02257{width:23.760000px;}
._8_c02257{width:25.704000px;}
._a_c02257{width:26.712000px;}
._f_c02257{width:30.096000px;}
._10_c02257{width:31.536000px;}
.fc1_c02257{color:rgb(192,80,77);}
.fc3_c02257{color:rgb(255,255,255);}
.fc2_c02257{color:rgb(17,17,17);}
.fc0_c02257{color:rgb(0,0,0);}
.fs0_c02257{font-size:66.240000px;}
.fs1_c02257{font-size:72.000000px;}
.y0_c02257{bottom:0.000000px;}
.ye_c02257{bottom:4.140000px;}
.y9_c02257{bottom:4.500000px;}
.y3_c02257{bottom:4.680000px;}
.y2_c02257{bottom:41.796000px;}
.y1_c02257{bottom:75.456000px;}
.y28_c02257{bottom:129.276000px;}
.y27_c02257{bottom:160.410000px;}
.y26_c02257{bottom:191.370000px;}
.y25_c02257{bottom:222.330000px;}
.y24_c02257{bottom:253.470000px;}
.y23_c02257{bottom:284.475000px;}
.y22_c02257{bottom:315.615000px;}
.y21_c02257{bottom:346.575000px;}
.y20_c02257{bottom:377.715000px;}
.y1f_c02257{bottom:408.675000px;}
.y1e_c02257{bottom:439.815000px;}
.y1d_c02257{bottom:470.775000px;}
.y1c_c02257{bottom:501.915000px;}
.y1b_c02257{bottom:532.875000px;}
.y1a_c02257{bottom:564.045000px;}
.y19_c02257{bottom:595.005000px;}
.y18_c02257{bottom:626.145000px;}
.y17_c02257{bottom:657.105000px;}
.y16_c02257{bottom:688.245000px;}
.y15_c02257{bottom:719.205000px;}
.y14_c02257{bottom:750.345000px;}
.y13_c02257{bottom:781.305000px;}
.y12_c02257{bottom:802.230000px;}
.y11_c02257{bottom:822.930000px;}
.y10_c02257{bottom:843.630000px;}
.yf_c02257{bottom:864.330000px;}
.yd_c02257{bottom:881.250000px;}
.yc_c02257{bottom:902.670000px;}
.yb_c02257{bottom:924.270000px;}
.ya_c02257{bottom:945.690000px;}
.y8_c02257{bottom:967.110000px;}
.y7_c02257{bottom:1003.290000px;}
.y6_c02257{bottom:1024.170000px;}
.y5_c02257{bottom:1044.870000px;}
.y4_c02257{bottom:1065.600000px;}
.h4_c02257{height:20.700000px;}
.h2_c02257{height:22.500000px;}
.h1_c02257{height:48.871406px;}
.h6_c02257{height:64.546875px;}
.h3_c02257{height:70.664062px;}
.h5_c02257{height:72.562500px;}
.h0_c02257{height:1188.000000px;}
.w1_c02257{width:66.636000px;}
.w3_c02257{width:308.235000px;}
.w2_c02257{width:309.990000px;}
.w0_c02257{width:918.000000px;}
.x0_c02257{left:0.000000px;}
.x3_c02257{left:16.560000px;}
.xb_c02257{left:83.730000px;}
.x9_c02257{left:117.585000px;}
.xe_c02257{left:122.445000px;}
.x11_c02257{left:123.525000px;}
.xc_c02257{left:126.045000px;}
.x1_c02257{left:127.656000px;}
.x10_c02257{left:130.545000px;}
.x12_c02257{left:140.610000px;}
.xd_c02257{left:145.110000px;}
.xf_c02257{left:149.610000px;}
.x8_c02257{left:179.310000px;}
.x13_c02257{left:187.050000px;}
.x6_c02257{left:302.115000px;}
.x5_c02257{left:373.575000px;}
.x4_c02257{left:440.175000px;}
.x7_c02257{left:488.775000px;}
.xa_c02257{left:490.035000px;}
.x2_c02257{left:820.950000px;}
@media print{
.v0_c02257{vertical-align:0.000000pt;}
.ls1_c02257{letter-spacing:0.000000pt;}
.ls0_c02257{letter-spacing:17.280000pt;}
.ws0_c02257{word-spacing:0.000000pt;}
._0_c02257{margin-left:-0.960000pt;}
._1_c02257{width:1.344000pt;}
._13_c02257{width:2.304000pt;}
._2_c02257{width:3.776000pt;}
._3_c02257{width:4.928000pt;}
._12_c02257{width:6.016000pt;}
._e_c02257{width:6.912000pt;}
._b_c02257{width:8.256000pt;}
._11_c02257{width:9.792000pt;}
._6_c02257{width:10.816000pt;}
._4_c02257{width:11.712000pt;}
._5_c02257{width:12.864000pt;}
._9_c02257{width:14.528000pt;}
._c_c02257{width:17.216000pt;}
._d_c02257{width:18.528000pt;}
._7_c02257{width:21.120000pt;}
._8_c02257{width:22.848000pt;}
._a_c02257{width:23.744000pt;}
._f_c02257{width:26.752000pt;}
._10_c02257{width:28.032000pt;}
.fs0_c02257{font-size:58.880000pt;}
.fs1_c02257{font-size:64.000000pt;}
.y0_c02257{bottom:0.000000pt;}
.ye_c02257{bottom:3.680000pt;}
.y9_c02257{bottom:4.000000pt;}
.y3_c02257{bottom:4.160000pt;}
.y2_c02257{bottom:37.152000pt;}
.y1_c02257{bottom:67.072000pt;}
.y28_c02257{bottom:114.912000pt;}
.y27_c02257{bottom:142.586667pt;}
.y26_c02257{bottom:170.106667pt;}
.y25_c02257{bottom:197.626667pt;}
.y24_c02257{bottom:225.306667pt;}
.y23_c02257{bottom:252.866667pt;}
.y22_c02257{bottom:280.546667pt;}
.y21_c02257{bottom:308.066667pt;}
.y20_c02257{bottom:335.746667pt;}
.y1f_c02257{bottom:363.266667pt;}
.y1e_c02257{bottom:390.946667pt;}
.y1d_c02257{bottom:418.466667pt;}
.y1c_c02257{bottom:446.146667pt;}
.y1b_c02257{bottom:473.666667pt;}
.y1a_c02257{bottom:501.373333pt;}
.y19_c02257{bottom:528.893333pt;}
.y18_c02257{bottom:556.573333pt;}
.y17_c02257{bottom:584.093333pt;}
.y16_c02257{bottom:611.773333pt;}
.y15_c02257{bottom:639.293333pt;}
.y14_c02257{bottom:666.973333pt;}
.y13_c02257{bottom:694.493333pt;}
.y12_c02257{bottom:713.093333pt;}
.y11_c02257{bottom:731.493333pt;}
.y10_c02257{bottom:749.893333pt;}
.yf_c02257{bottom:768.293333pt;}
.yd_c02257{bottom:783.333333pt;}
.yc_c02257{bottom:802.373333pt;}
.yb_c02257{bottom:821.573333pt;}
.ya_c02257{bottom:840.613333pt;}
.y8_c02257{bottom:859.653333pt;}
.y7_c02257{bottom:891.813333pt;}
.y6_c02257{bottom:910.373333pt;}
.y5_c02257{bottom:928.773333pt;}
.y4_c02257{bottom:947.200000pt;}
.h4_c02257{height:18.400000pt;}
.h2_c02257{height:20.000000pt;}
.h1_c02257{height:43.441250pt;}
.h6_c02257{height:57.375000pt;}
.h3_c02257{height:62.812500pt;}
.h5_c02257{height:64.500000pt;}
.h0_c02257{height:1056.000000pt;}
.w1_c02257{width:59.232000pt;}
.w3_c02257{width:273.986667pt;}
.w2_c02257{width:275.546667pt;}
.w0_c02257{width:816.000000pt;}
.x0_c02257{left:0.000000pt;}
.x3_c02257{left:14.720000pt;}
.xb_c02257{left:74.426667pt;}
.x9_c02257{left:104.520000pt;}
.xe_c02257{left:108.840000pt;}
.x11_c02257{left:109.800000pt;}
.xc_c02257{left:112.040000pt;}
.x1_c02257{left:113.472000pt;}
.x10_c02257{left:116.040000pt;}
.x12_c02257{left:124.986667pt;}
.xd_c02257{left:128.986667pt;}
.xf_c02257{left:132.986667pt;}
.x8_c02257{left:159.386667pt;}
.x13_c02257{left:166.266667pt;}
.x6_c02257{left:268.546667pt;}
.x5_c02257{left:332.066667pt;}
.x4_c02257{left:391.266667pt;}
.x7_c02257{left:434.466667pt;}
.xa_c02257{left:435.586667pt;}
.x2_c02257{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02258 {
    display:none;
  }
  .loading-indicator_c02258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02258 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02258 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02258" -> "#page-container .classname_c02258")
 */
.pf_c02258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02258 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02258 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02258 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02258 {overflow:visible;}
  }
}
.c_c02258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02258 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02258:after { /* webkit #35443 */
  content: '';
}
.t_c02258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02258 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02258 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02258 { /* info for Javascript */
  display:none;
}
.l_c02258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02258:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02258 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02258.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02258;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02258{font-family:ff1_c02258;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02258;src:url('chunks/assets/font_308bdbaaebc1c8afd9ad1574.woff2')format("woff");}.ff2_c02258{font-family:ff2_c02258;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:ff3_c02258;src:url('chunks/assets/font_93951573d9a9331128b0ac60.woff2')format("woff");}.ff3_c02258{font-family:ff3_c02258;line-height:1.311035;font-style:normal;font-weight: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_c02258;src:url('chunks/assets/font_4cd0df4adb19394a4d6ad018.woff2')format("woff");}.ff4_c02258{font-family:ff4_c02258;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02258{vertical-align:0.000000px;}
.ls1_c02258{letter-spacing:-0.288000px;}
.ls0_c02258{letter-spacing:0.000000px;}
.sc__c02258{text-shadow:none;}
.sc0_c02258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02258{-webkit-text-stroke:0px transparent;}
.sc0_c02258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02258{word-spacing:-17.712000px;}
.ws1_c02258{word-spacing:0.000000px;}
._0_c02258{margin-left:-1.152000px;}
._1_c02258{width:1.560000px;}
._2_c02258{width:3.888000px;}
._3_c02258{width:5.040000px;}
._4_c02258{width:6.696000px;}
._5_c02258{width:7.848000px;}
._b_c02258{width:11.880000px;}
._a_c02258{width:13.392000px;}
._c_c02258{width:14.544000px;}
._9_c02258{width:15.840000px;}
._6_c02258{width:16.992000px;}
._7_c02258{width:19.512000px;}
._8_c02258{width:20.520000px;}
._e_c02258{width:27.216000px;}
._d_c02258{width:28.368000px;}
.fc1_c02258{color:rgb(192,80,77);}
.fc3_c02258{color:rgb(255,255,255);}
.fc2_c02258{color:rgb(17,17,17);}
.fc0_c02258{color:rgb(0,0,0);}
.fs0_c02258{font-size:66.240000px;}
.fs1_c02258{font-size:72.000000px;}
.y0_c02258{bottom:0.000000px;}
.yf_c02258{bottom:4.140000px;}
.yc_c02258{bottom:4.500000px;}
.y3_c02258{bottom:4.680000px;}
.yd_c02258{bottom:4.860000px;}
.ya_c02258{bottom:5.220000px;}
.y15_c02258{bottom:25.200000px;}
.y9_c02258{bottom:25.920000px;}
.y2_c02258{bottom:41.796000px;}
.y1_c02258{bottom:75.456000px;}
.y2c_c02258{bottom:155.010000px;}
.y2b_c02258{bottom:186.150000px;}
.y2a_c02258{bottom:217.110000px;}
.y29_c02258{bottom:248.250000px;}
.y28_c02258{bottom:279.255000px;}
.y27_c02258{bottom:310.395000px;}
.y26_c02258{bottom:341.355000px;}
.y25_c02258{bottom:372.495000px;}
.y24_c02258{bottom:403.455000px;}
.y23_c02258{bottom:434.595000px;}
.y22_c02258{bottom:465.555000px;}
.y21_c02258{bottom:496.695000px;}
.y20_c02258{bottom:527.655000px;}
.y1f_c02258{bottom:558.825000px;}
.y1e_c02258{bottom:589.785000px;}
.y1d_c02258{bottom:610.665000px;}
.y1c_c02258{bottom:631.365000px;}
.y1b_c02258{bottom:652.065000px;}
.y1a_c02258{bottom:672.765000px;}
.y19_c02258{bottom:689.685000px;}
.y18_c02258{bottom:711.105000px;}
.y17_c02258{bottom:732.705000px;}
.y16_c02258{bottom:754.125000px;}
.y14_c02258{bottom:796.290000px;}
.y13_c02258{bottom:838.410000px;}
.y12_c02258{bottom:859.830000px;}
.y11_c02258{bottom:881.250000px;}
.y10_c02258{bottom:902.670000px;}
.ye_c02258{bottom:924.270000px;}
.y8_c02258{bottom:945.690000px;}
.yb_c02258{bottom:967.110000px;}
.y7_c02258{bottom:1003.290000px;}
.y6_c02258{bottom:1024.170000px;}
.y5_c02258{bottom:1044.870000px;}
.y4_c02258{bottom:1065.600000px;}
.h5_c02258{height:20.700000px;}
.h2_c02258{height:22.500000px;}
.h7_c02258{height:41.400000px;}
.h8_c02258{height:41.436000px;}
.h4_c02258{height:42.120000px;}
.h1_c02258{height:48.871406px;}
.h9_c02258{height:64.546875px;}
.h3_c02258{height:70.664062px;}
.h6_c02258{height:72.562500px;}
.h0_c02258{height:1188.000000px;}
.w1_c02258{width:66.636000px;}
.w4_c02258{width:78.480000px;}
.w7_c02258{width:80.676000px;}
.w6_c02258{width:94.860000px;}
.w5_c02258{width:94.896000px;}
.w2_c02258{width:266.970000px;}
.w3_c02258{width:272.055000px;}
.w0_c02258{width:918.000000px;}
.x0_c02258{left:0.000000px;}
.xf_c02258{left:7.740000px;}
.x12_c02258{left:14.760000px;}
.x3_c02258{left:16.560000px;}
.x10_c02258{left:18.540000px;}
.x24_c02258{left:25.740000px;}
.x17_c02258{left:30.240000px;}
.x16_c02258{left:31.320000px;}
.x1a_c02258{left:34.740000px;}
.x19_c02258{left:35.820000px;}
.xe_c02258{left:39.240000px;}
.x20_c02258{left:40.320000px;}
.x15_c02258{left:43.020000px;}
.x1f_c02258{left:47.550000px;}
.x18_c02258{left:67.680000px;}
.x1e_c02258{left:75.960000px;}
.x1c_c02258{left:78.660000px;}
.x14_c02258{left:80.640000px;}
.x1d_c02258{left:83.160000px;}
.x1b_c02258{left:85.680000px;}
.xc_c02258{left:98.490000px;}
.x23_c02258{left:101.880000px;}
.x21_c02258{left:105.660000px;}
.xa_c02258{left:109.440000px;}
.x22_c02258{left:113.400000px;}
.x1_c02258{left:127.656000px;}
.x9_c02258{left:133.425000px;}
.x8_c02258{left:179.310000px;}
.x25_c02258{left:187.050000px;}
.x6_c02258{left:302.115000px;}
.x5_c02258{left:343.515000px;}
.x4_c02258{left:440.175000px;}
.xb_c02258{left:447.015000px;}
.x7_c02258{left:488.775000px;}
.x11_c02258{left:542.805000px;}
.x13_c02258{left:638.385000px;}
.xd_c02258{left:719.790000px;}
.x2_c02258{left:820.950000px;}
@media print{
.v0_c02258{vertical-align:0.000000pt;}
.ls1_c02258{letter-spacing:-0.256000pt;}
.ls0_c02258{letter-spacing:0.000000pt;}
.ws0_c02258{word-spacing:-15.744000pt;}
.ws1_c02258{word-spacing:0.000000pt;}
._0_c02258{margin-left:-1.024000pt;}
._1_c02258{width:1.386667pt;}
._2_c02258{width:3.456000pt;}
._3_c02258{width:4.480000pt;}
._4_c02258{width:5.952000pt;}
._5_c02258{width:6.976000pt;}
._b_c02258{width:10.560000pt;}
._a_c02258{width:11.904000pt;}
._c_c02258{width:12.928000pt;}
._9_c02258{width:14.080000pt;}
._6_c02258{width:15.104000pt;}
._7_c02258{width:17.344000pt;}
._8_c02258{width:18.240000pt;}
._e_c02258{width:24.192000pt;}
._d_c02258{width:25.216000pt;}
.fs0_c02258{font-size:58.880000pt;}
.fs1_c02258{font-size:64.000000pt;}
.y0_c02258{bottom:0.000000pt;}
.yf_c02258{bottom:3.680000pt;}
.yc_c02258{bottom:4.000000pt;}
.y3_c02258{bottom:4.160000pt;}
.yd_c02258{bottom:4.320000pt;}
.ya_c02258{bottom:4.640000pt;}
.y15_c02258{bottom:22.400000pt;}
.y9_c02258{bottom:23.040000pt;}
.y2_c02258{bottom:37.152000pt;}
.y1_c02258{bottom:67.072000pt;}
.y2c_c02258{bottom:137.786667pt;}
.y2b_c02258{bottom:165.466667pt;}
.y2a_c02258{bottom:192.986667pt;}
.y29_c02258{bottom:220.666667pt;}
.y28_c02258{bottom:248.226667pt;}
.y27_c02258{bottom:275.906667pt;}
.y26_c02258{bottom:303.426667pt;}
.y25_c02258{bottom:331.106667pt;}
.y24_c02258{bottom:358.626667pt;}
.y23_c02258{bottom:386.306667pt;}
.y22_c02258{bottom:413.826667pt;}
.y21_c02258{bottom:441.506667pt;}
.y20_c02258{bottom:469.026667pt;}
.y1f_c02258{bottom:496.733333pt;}
.y1e_c02258{bottom:524.253333pt;}
.y1d_c02258{bottom:542.813333pt;}
.y1c_c02258{bottom:561.213333pt;}
.y1b_c02258{bottom:579.613333pt;}
.y1a_c02258{bottom:598.013333pt;}
.y19_c02258{bottom:613.053333pt;}
.y18_c02258{bottom:632.093333pt;}
.y17_c02258{bottom:651.293333pt;}
.y16_c02258{bottom:670.333333pt;}
.y14_c02258{bottom:707.813333pt;}
.y13_c02258{bottom:745.253333pt;}
.y12_c02258{bottom:764.293333pt;}
.y11_c02258{bottom:783.333333pt;}
.y10_c02258{bottom:802.373333pt;}
.ye_c02258{bottom:821.573333pt;}
.y8_c02258{bottom:840.613333pt;}
.yb_c02258{bottom:859.653333pt;}
.y7_c02258{bottom:891.813333pt;}
.y6_c02258{bottom:910.373333pt;}
.y5_c02258{bottom:928.773333pt;}
.y4_c02258{bottom:947.200000pt;}
.h5_c02258{height:18.400000pt;}
.h2_c02258{height:20.000000pt;}
.h7_c02258{height:36.800000pt;}
.h8_c02258{height:36.832000pt;}
.h4_c02258{height:37.440000pt;}
.h1_c02258{height:43.441250pt;}
.h9_c02258{height:57.375000pt;}
.h3_c02258{height:62.812500pt;}
.h6_c02258{height:64.500000pt;}
.h0_c02258{height:1056.000000pt;}
.w1_c02258{width:59.232000pt;}
.w4_c02258{width:69.760000pt;}
.w7_c02258{width:71.712000pt;}
.w6_c02258{width:84.320000pt;}
.w5_c02258{width:84.352000pt;}
.w2_c02258{width:237.306667pt;}
.w3_c02258{width:241.826667pt;}
.w0_c02258{width:816.000000pt;}
.x0_c02258{left:0.000000pt;}
.xf_c02258{left:6.880000pt;}
.x12_c02258{left:13.120000pt;}
.x3_c02258{left:14.720000pt;}
.x10_c02258{left:16.480000pt;}
.x24_c02258{left:22.880000pt;}
.x17_c02258{left:26.880000pt;}
.x16_c02258{left:27.840000pt;}
.x1a_c02258{left:30.880000pt;}
.x19_c02258{left:31.840000pt;}
.xe_c02258{left:34.880000pt;}
.x20_c02258{left:35.840000pt;}
.x15_c02258{left:38.240000pt;}
.x1f_c02258{left:42.266667pt;}
.x18_c02258{left:60.160000pt;}
.x1e_c02258{left:67.520000pt;}
.x1c_c02258{left:69.920000pt;}
.x14_c02258{left:71.680000pt;}
.x1d_c02258{left:73.920000pt;}
.x1b_c02258{left:76.160000pt;}
.xc_c02258{left:87.546667pt;}
.x23_c02258{left:90.560000pt;}
.x21_c02258{left:93.920000pt;}
.xa_c02258{left:97.280000pt;}
.x22_c02258{left:100.800000pt;}
.x1_c02258{left:113.472000pt;}
.x9_c02258{left:118.600000pt;}
.x8_c02258{left:159.386667pt;}
.x25_c02258{left:166.266667pt;}
.x6_c02258{left:268.546667pt;}
.x5_c02258{left:305.346667pt;}
.x4_c02258{left:391.266667pt;}
.xb_c02258{left:397.346667pt;}
.x7_c02258{left:434.466667pt;}
.x11_c02258{left:482.493333pt;}
.x13_c02258{left:567.453333pt;}
.xd_c02258{left:639.813333pt;}
.x2_c02258{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02259 {
    display:none;
  }
  .loading-indicator_c02259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02259 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02259 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02259" -> "#page-container .classname_c02259")
 */
.pf_c02259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02259 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02259 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02259 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02259 {overflow:visible;}
  }
}
.c_c02259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02259 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02259:after { /* webkit #35443 */
  content: '';
}
.t_c02259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02259 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02259 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02259 { /* info for Javascript */
  display:none;
}
.l_c02259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02259:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02259 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02259.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02259;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02259{font-family:ff1_c02259;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02259;src:url('chunks/assets/font_29c9a8ba3633201a3ec41499.woff2')format("woff");}.ff2_c02259{font-family:ff2_c02259;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:ff3_c02259;src:url('chunks/assets/font_2d4249facdcd482575472203.woff2')format("woff");}.ff3_c02259{font-family:ff3_c02259;line-height:1.311035;font-style:normal;font-weight: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_c02259;src:url('chunks/assets/font_cd5f578ff31e340a531bb7f5.woff2')format("woff");}.ff4_c02259{font-family:ff4_c02259;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02259{vertical-align:0.000000px;}
.ls0_c02259{letter-spacing:0.000000px;}
.sc__c02259{text-shadow:none;}
.sc0_c02259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02259{-webkit-text-stroke:0px transparent;}
.sc0_c02259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02259{word-spacing:0.000000px;}
._1_c02259{margin-left:-1.224000px;}
._0_c02259{width:1.080000px;}
._9_c02259{width:2.304000px;}
._8_c02259{width:3.888000px;}
._2_c02259{width:5.616000px;}
._3_c02259{width:6.840000px;}
._4_c02259{width:7.920000px;}
._a_c02259{width:9.168000px;}
._5_c02259{width:10.416000px;}
._6_c02259{width:12.456000px;}
._7_c02259{width:13.572000px;}
._d_c02259{width:16.992000px;}
._b_c02259{width:19.512000px;}
._c_c02259{width:20.952000px;}
.fc1_c02259{color:rgb(192,80,77);}
.fc3_c02259{color:rgb(255,255,255);}
.fc2_c02259{color:rgb(17,17,17);}
.fc0_c02259{color:rgb(0,0,0);}
.fs0_c02259{font-size:66.240000px;}
.fs1_c02259{font-size:72.000000px;}
.y0_c02259{bottom:0.000000px;}
.y12_c02259{bottom:4.140000px;}
.yf_c02259{bottom:4.500000px;}
.y3_c02259{bottom:4.680000px;}
.y10_c02259{bottom:5.040000px;}
.yd_c02259{bottom:5.400000px;}
.y19_c02259{bottom:24.840000px;}
.y18_c02259{bottom:25.200000px;}
.yc_c02259{bottom:26.100000px;}
.y2_c02259{bottom:41.796000px;}
.y1_c02259{bottom:75.456000px;}
.y2d_c02259{bottom:155.010000px;}
.y2c_c02259{bottom:186.150000px;}
.y2b_c02259{bottom:217.110000px;}
.y2a_c02259{bottom:248.250000px;}
.y29_c02259{bottom:279.255000px;}
.y28_c02259{bottom:310.395000px;}
.y27_c02259{bottom:341.355000px;}
.y26_c02259{bottom:372.495000px;}
.y25_c02259{bottom:403.455000px;}
.y24_c02259{bottom:434.595000px;}
.y23_c02259{bottom:465.555000px;}
.y22_c02259{bottom:496.695000px;}
.y21_c02259{bottom:517.575000px;}
.y20_c02259{bottom:538.305000px;}
.y1f_c02259{bottom:559.005000px;}
.y1e_c02259{bottom:579.705000px;}
.y1d_c02259{bottom:596.625000px;}
.y1c_c02259{bottom:618.045000px;}
.y1b_c02259{bottom:639.465000px;}
.y1a_c02259{bottom:660.885000px;}
.y17_c02259{bottom:703.005000px;}
.y16_c02259{bottom:745.305000px;}
.y15_c02259{bottom:766.725000px;}
.y14_c02259{bottom:788.145000px;}
.y13_c02259{bottom:809.610000px;}
.y11_c02259{bottom:831.030000px;}
.yb_c02259{bottom:852.450000px;}
.ye_c02259{bottom:874.050000px;}
.ya_c02259{bottom:910.050000px;}
.y9_c02259{bottom:930.930000px;}
.y8_c02259{bottom:951.630000px;}
.y7_c02259{bottom:972.330000px;}
.y6_c02259{bottom:1003.290000px;}
.y5_c02259{bottom:1034.250000px;}
.y4_c02259{bottom:1065.420000px;}
.h5_c02259{height:20.700000px;}
.h7_c02259{height:20.736000px;}
.h2_c02259{height:22.500000px;}
.h8_c02259{height:41.400000px;}
.h4_c02259{height:42.300000px;}
.h1_c02259{height:48.871406px;}
.h9_c02259{height:64.546875px;}
.h3_c02259{height:70.664062px;}
.h6_c02259{height:72.562500px;}
.h0_c02259{height:1188.000000px;}
.w1_c02259{width:66.636000px;}
.w4_c02259{width:79.020000px;}
.w7_c02259{width:92.016000px;}
.w5_c02259{width:94.356000px;}
.w6_c02259{width:96.120000px;}
.w2_c02259{width:254.550000px;}
.w3_c02259{width:283.935000px;}
.w0_c02259{width:918.000000px;}
.x0_c02259{left:0.000000px;}
.xf_c02259{left:7.920000px;}
.x12_c02259{left:15.480000px;}
.x3_c02259{left:16.560000px;}
.x10_c02259{left:18.180000px;}
.x14_c02259{left:21.420000px;}
.x1e_c02259{left:25.740000px;}
.x1b_c02259{left:30.420000px;}
.x18_c02259{left:34.920000px;}
.x25_c02259{left:36.900000px;}
.xe_c02259{left:39.420000px;}
.x17_c02259{left:41.400000px;}
.x16_c02259{left:42.660000px;}
.x21_c02259{left:45.900000px;}
.x20_c02259{left:47.160000px;}
.x19_c02259{left:61.560000px;}
.x1f_c02259{left:69.660000px;}
.x1c_c02259{left:72.540000px;}
.x15_c02259{left:74.520000px;}
.x1d_c02259{left:77.040000px;}
.x1a_c02259{left:79.560000px;}
.x24_c02259{left:95.760000px;}
.xa_c02259{left:103.140000px;}
.xc_c02259{left:104.430000px;}
.x22_c02259{left:106.200000px;}
.x23_c02259{left:107.280000px;}
.x1_c02259{left:127.656000px;}
.x9_c02259{left:179.310000px;}
.x4_c02259{left:187.050000px;}
.x8_c02259{left:276.870000px;}
.x7_c02259{left:284.070000px;}
.xb_c02259{left:434.595000px;}
.x6_c02259{left:440.175000px;}
.x5_c02259{left:488.775000px;}
.x11_c02259{left:529.665000px;}
.x13_c02259{left:626.505000px;}
.xd_c02259{left:719.250000px;}
.x2_c02259{left:820.950000px;}
@media print{
.v0_c02259{vertical-align:0.000000pt;}
.ls0_c02259{letter-spacing:0.000000pt;}
.ws0_c02259{word-spacing:0.000000pt;}
._1_c02259{margin-left:-1.088000pt;}
._0_c02259{width:0.960000pt;}
._9_c02259{width:2.048000pt;}
._8_c02259{width:3.456000pt;}
._2_c02259{width:4.992000pt;}
._3_c02259{width:6.080000pt;}
._4_c02259{width:7.040000pt;}
._a_c02259{width:8.149333pt;}
._5_c02259{width:9.258667pt;}
._6_c02259{width:11.072000pt;}
._7_c02259{width:12.064000pt;}
._d_c02259{width:15.104000pt;}
._b_c02259{width:17.344000pt;}
._c_c02259{width:18.624000pt;}
.fs0_c02259{font-size:58.880000pt;}
.fs1_c02259{font-size:64.000000pt;}
.y0_c02259{bottom:0.000000pt;}
.y12_c02259{bottom:3.680000pt;}
.yf_c02259{bottom:4.000000pt;}
.y3_c02259{bottom:4.160000pt;}
.y10_c02259{bottom:4.480000pt;}
.yd_c02259{bottom:4.800000pt;}
.y19_c02259{bottom:22.080000pt;}
.y18_c02259{bottom:22.400000pt;}
.yc_c02259{bottom:23.200000pt;}
.y2_c02259{bottom:37.152000pt;}
.y1_c02259{bottom:67.072000pt;}
.y2d_c02259{bottom:137.786667pt;}
.y2c_c02259{bottom:165.466667pt;}
.y2b_c02259{bottom:192.986667pt;}
.y2a_c02259{bottom:220.666667pt;}
.y29_c02259{bottom:248.226667pt;}
.y28_c02259{bottom:275.906667pt;}
.y27_c02259{bottom:303.426667pt;}
.y26_c02259{bottom:331.106667pt;}
.y25_c02259{bottom:358.626667pt;}
.y24_c02259{bottom:386.306667pt;}
.y23_c02259{bottom:413.826667pt;}
.y22_c02259{bottom:441.506667pt;}
.y21_c02259{bottom:460.066667pt;}
.y20_c02259{bottom:478.493333pt;}
.y1f_c02259{bottom:496.893333pt;}
.y1e_c02259{bottom:515.293333pt;}
.y1d_c02259{bottom:530.333333pt;}
.y1c_c02259{bottom:549.373333pt;}
.y1b_c02259{bottom:568.413333pt;}
.y1a_c02259{bottom:587.453333pt;}
.y17_c02259{bottom:624.893333pt;}
.y16_c02259{bottom:662.493333pt;}
.y15_c02259{bottom:681.533333pt;}
.y14_c02259{bottom:700.573333pt;}
.y13_c02259{bottom:719.653333pt;}
.y11_c02259{bottom:738.693333pt;}
.yb_c02259{bottom:757.733333pt;}
.ye_c02259{bottom:776.933333pt;}
.ya_c02259{bottom:808.933333pt;}
.y9_c02259{bottom:827.493333pt;}
.y8_c02259{bottom:845.893333pt;}
.y7_c02259{bottom:864.293333pt;}
.y6_c02259{bottom:891.813333pt;}
.y5_c02259{bottom:919.333333pt;}
.y4_c02259{bottom:947.040000pt;}
.h5_c02259{height:18.400000pt;}
.h7_c02259{height:18.432000pt;}
.h2_c02259{height:20.000000pt;}
.h8_c02259{height:36.800000pt;}
.h4_c02259{height:37.600000pt;}
.h1_c02259{height:43.441250pt;}
.h9_c02259{height:57.375000pt;}
.h3_c02259{height:62.812500pt;}
.h6_c02259{height:64.500000pt;}
.h0_c02259{height:1056.000000pt;}
.w1_c02259{width:59.232000pt;}
.w4_c02259{width:70.240000pt;}
.w7_c02259{width:81.792000pt;}
.w5_c02259{width:83.872000pt;}
.w6_c02259{width:85.440000pt;}
.w2_c02259{width:226.266667pt;}
.w3_c02259{width:252.386667pt;}
.w0_c02259{width:816.000000pt;}
.x0_c02259{left:0.000000pt;}
.xf_c02259{left:7.040000pt;}
.x12_c02259{left:13.760000pt;}
.x3_c02259{left:14.720000pt;}
.x10_c02259{left:16.160000pt;}
.x14_c02259{left:19.040000pt;}
.x1e_c02259{left:22.880000pt;}
.x1b_c02259{left:27.040000pt;}
.x18_c02259{left:31.040000pt;}
.x25_c02259{left:32.800000pt;}
.xe_c02259{left:35.040000pt;}
.x17_c02259{left:36.800000pt;}
.x16_c02259{left:37.920000pt;}
.x21_c02259{left:40.800000pt;}
.x20_c02259{left:41.920000pt;}
.x19_c02259{left:54.720000pt;}
.x1f_c02259{left:61.920000pt;}
.x1c_c02259{left:64.480000pt;}
.x15_c02259{left:66.240000pt;}
.x1d_c02259{left:68.480000pt;}
.x1a_c02259{left:70.720000pt;}
.x24_c02259{left:85.120000pt;}
.xa_c02259{left:91.680000pt;}
.xc_c02259{left:92.826667pt;}
.x22_c02259{left:94.400000pt;}
.x23_c02259{left:95.360000pt;}
.x1_c02259{left:113.472000pt;}
.x9_c02259{left:159.386667pt;}
.x4_c02259{left:166.266667pt;}
.x8_c02259{left:246.106667pt;}
.x7_c02259{left:252.506667pt;}
.xb_c02259{left:386.306667pt;}
.x6_c02259{left:391.266667pt;}
.x5_c02259{left:434.466667pt;}
.x11_c02259{left:470.813333pt;}
.x13_c02259{left:556.893333pt;}
.xd_c02259{left:639.333333pt;}
.x2_c02259{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02260 {
    display:none;
  }
  .loading-indicator_c02260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02260 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02260 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02260" -> "#page-container .classname_c02260")
 */
.pf_c02260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02260 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02260 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02260 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02260 {overflow:visible;}
  }
}
.c_c02260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02260 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02260:after { /* webkit #35443 */
  content: '';
}
.t_c02260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02260 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02260 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02260 { /* info for Javascript */
  display:none;
}
.l_c02260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02260:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02260 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02260.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02260;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02260{font-family:ff1_c02260;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02260;src:url('chunks/assets/font_175404946eab9c37d179df73.woff2')format("woff");}.ff2_c02260{font-family:ff2_c02260;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:ff3_c02260;src:url('chunks/assets/font_455b51366de00ca10b498d2d.woff2')format("woff");}.ff3_c02260{font-family:ff3_c02260;line-height:1.311035;font-style:normal;font-weight: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_c02260;src:url('chunks/assets/font_158a1ff2a42a798653cdbc90.woff2')format("woff");}.ff4_c02260{font-family:ff4_c02260;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02260{vertical-align:0.000000px;}
.ls0_c02260{letter-spacing:0.000000px;}
.sc__c02260{text-shadow:none;}
.sc0_c02260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02260{-webkit-text-stroke:0px transparent;}
.sc0_c02260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02260{word-spacing:0.000000px;}
._3_c02260{margin-left:-1.080000px;}
._1_c02260{width:1.368000px;}
._0_c02260{width:2.376000px;}
._4_c02260{width:3.528000px;}
._7_c02260{width:5.112000px;}
._8_c02260{width:6.984000px;}
._a_c02260{width:11.448000px;}
._b_c02260{width:12.456000px;}
._5_c02260{width:20.736000px;}
._6_c02260{width:21.888000px;}
._9_c02260{width:24.264000px;}
._2_c02260{width:28.008000px;}
._c_c02260{width:29.448000px;}
.fc1_c02260{color:rgb(192,80,77);}
.fc3_c02260{color:rgb(255,255,255);}
.fc2_c02260{color:rgb(17,17,17);}
.fc0_c02260{color:rgb(0,0,0);}
.fs0_c02260{font-size:66.240000px;}
.fs1_c02260{font-size:72.000000px;}
.y0_c02260{bottom:0.000000px;}
.y21_c02260{bottom:3.960000px;}
.y15_c02260{bottom:4.140000px;}
.y20_c02260{bottom:4.320000px;}
.y12_c02260{bottom:4.500000px;}
.y3_c02260{bottom:4.680000px;}
.y13_c02260{bottom:4.860000px;}
.y10_c02260{bottom:5.220000px;}
.y1c_c02260{bottom:24.840000px;}
.y1b_c02260{bottom:25.200000px;}
.yf_c02260{bottom:25.920000px;}
.y2_c02260{bottom:41.796000px;}
.y1_c02260{bottom:75.456000px;}
.y2f_c02260{bottom:155.010000px;}
.y2e_c02260{bottom:186.150000px;}
.y2d_c02260{bottom:217.110000px;}
.y2c_c02260{bottom:248.250000px;}
.y2b_c02260{bottom:279.255000px;}
.y2a_c02260{bottom:310.395000px;}
.y29_c02260{bottom:341.355000px;}
.y28_c02260{bottom:372.495000px;}
.y27_c02260{bottom:403.455000px;}
.y26_c02260{bottom:424.335000px;}
.y25_c02260{bottom:445.035000px;}
.y24_c02260{bottom:465.735000px;}
.y23_c02260{bottom:486.435000px;}
.y22_c02260{bottom:503.355000px;}
.y1f_c02260{bottom:524.955000px;}
.y1e_c02260{bottom:546.405000px;}
.y1d_c02260{bottom:567.825000px;}
.y1a_c02260{bottom:609.945000px;}
.y19_c02260{bottom:652.065000px;}
.y18_c02260{bottom:673.485000px;}
.y17_c02260{bottom:694.905000px;}
.y16_c02260{bottom:716.505000px;}
.y14_c02260{bottom:737.925000px;}
.ye_c02260{bottom:759.345000px;}
.y11_c02260{bottom:780.765000px;}
.yd_c02260{bottom:816.990000px;}
.yc_c02260{bottom:837.870000px;}
.yb_c02260{bottom:858.570000px;}
.ya_c02260{bottom:879.270000px;}
.y9_c02260{bottom:910.050000px;}
.y8_c02260{bottom:941.190000px;}
.y7_c02260{bottom:972.150000px;}
.y6_c02260{bottom:1003.290000px;}
.y5_c02260{bottom:1034.250000px;}
.y4_c02260{bottom:1065.420000px;}
.h9_c02260{height:20.556000px;}
.h7_c02260{height:20.700000px;}
.h5_c02260{height:20.736000px;}
.h2_c02260{height:22.500000px;}
.h8_c02260{height:41.400000px;}
.h4_c02260{height:42.156000px;}
.h1_c02260{height:48.871406px;}
.ha_c02260{height:64.546875px;}
.h3_c02260{height:70.664062px;}
.h6_c02260{height:72.562500px;}
.h0_c02260{height:1188.000000px;}
.w1_c02260{width:66.636000px;}
.w4_c02260{width:79.020000px;}
.w7_c02260{width:92.016000px;}
.w5_c02260{width:94.356000px;}
.w6_c02260{width:96.120000px;}
.w2_c02260{width:254.550000px;}
.w3_c02260{width:283.935000px;}
.w0_c02260{width:918.000000px;}
.x0_c02260{left:0.000000px;}
.xf_c02260{left:7.920000px;}
.x12_c02260{left:15.480000px;}
.x3_c02260{left:16.560000px;}
.x10_c02260{left:18.180000px;}
.x14_c02260{left:21.420000px;}
.x1d_c02260{left:25.740000px;}
.x21_c02260{left:28.080000px;}
.x23_c02260{left:29.520000px;}
.x18_c02260{left:34.920000px;}
.x26_c02260{left:36.900000px;}
.xe_c02260{left:39.420000px;}
.x17_c02260{left:41.400000px;}
.x16_c02260{left:42.660000px;}
.x20_c02260{left:45.900000px;}
.x1f_c02260{left:47.160000px;}
.x19_c02260{left:61.560000px;}
.x1e_c02260{left:69.660000px;}
.x1b_c02260{left:72.540000px;}
.x15_c02260{left:74.520000px;}
.x1c_c02260{left:77.040000px;}
.x1a_c02260{left:79.560000px;}
.x25_c02260{left:95.760000px;}
.x22_c02260{left:99.540000px;}
.xa_c02260{left:103.140000px;}
.xc_c02260{left:104.430000px;}
.x24_c02260{left:107.280000px;}
.x1_c02260{left:127.656000px;}
.x9_c02260{left:179.310000px;}
.x4_c02260{left:187.050000px;}
.x8_c02260{left:276.870000px;}
.x7_c02260{left:306.795000px;}
.xb_c02260{left:434.595000px;}
.x6_c02260{left:440.175000px;}
.x5_c02260{left:488.775000px;}
.x11_c02260{left:529.665000px;}
.x13_c02260{left:626.505000px;}
.xd_c02260{left:719.250000px;}
.x2_c02260{left:820.950000px;}
@media print{
.v0_c02260{vertical-align:0.000000pt;}
.ls0_c02260{letter-spacing:0.000000pt;}
.ws0_c02260{word-spacing:0.000000pt;}
._3_c02260{margin-left:-0.960000pt;}
._1_c02260{width:1.216000pt;}
._0_c02260{width:2.112000pt;}
._4_c02260{width:3.136000pt;}
._7_c02260{width:4.544000pt;}
._8_c02260{width:6.208000pt;}
._a_c02260{width:10.176000pt;}
._b_c02260{width:11.072000pt;}
._5_c02260{width:18.432000pt;}
._6_c02260{width:19.456000pt;}
._9_c02260{width:21.568000pt;}
._2_c02260{width:24.896000pt;}
._c_c02260{width:26.176000pt;}
.fs0_c02260{font-size:58.880000pt;}
.fs1_c02260{font-size:64.000000pt;}
.y0_c02260{bottom:0.000000pt;}
.y21_c02260{bottom:3.520000pt;}
.y15_c02260{bottom:3.680000pt;}
.y20_c02260{bottom:3.840000pt;}
.y12_c02260{bottom:4.000000pt;}
.y3_c02260{bottom:4.160000pt;}
.y13_c02260{bottom:4.320000pt;}
.y10_c02260{bottom:4.640000pt;}
.y1c_c02260{bottom:22.080000pt;}
.y1b_c02260{bottom:22.400000pt;}
.yf_c02260{bottom:23.040000pt;}
.y2_c02260{bottom:37.152000pt;}
.y1_c02260{bottom:67.072000pt;}
.y2f_c02260{bottom:137.786667pt;}
.y2e_c02260{bottom:165.466667pt;}
.y2d_c02260{bottom:192.986667pt;}
.y2c_c02260{bottom:220.666667pt;}
.y2b_c02260{bottom:248.226667pt;}
.y2a_c02260{bottom:275.906667pt;}
.y29_c02260{bottom:303.426667pt;}
.y28_c02260{bottom:331.106667pt;}
.y27_c02260{bottom:358.626667pt;}
.y26_c02260{bottom:377.186667pt;}
.y25_c02260{bottom:395.586667pt;}
.y24_c02260{bottom:413.986667pt;}
.y23_c02260{bottom:432.386667pt;}
.y22_c02260{bottom:447.426667pt;}
.y1f_c02260{bottom:466.626667pt;}
.y1e_c02260{bottom:485.693333pt;}
.y1d_c02260{bottom:504.733333pt;}
.y1a_c02260{bottom:542.173333pt;}
.y19_c02260{bottom:579.613333pt;}
.y18_c02260{bottom:598.653333pt;}
.y17_c02260{bottom:617.693333pt;}
.y16_c02260{bottom:636.893333pt;}
.y14_c02260{bottom:655.933333pt;}
.ye_c02260{bottom:674.973333pt;}
.y11_c02260{bottom:694.013333pt;}
.yd_c02260{bottom:726.213333pt;}
.yc_c02260{bottom:744.773333pt;}
.yb_c02260{bottom:763.173333pt;}
.ya_c02260{bottom:781.573333pt;}
.y9_c02260{bottom:808.933333pt;}
.y8_c02260{bottom:836.613333pt;}
.y7_c02260{bottom:864.133333pt;}
.y6_c02260{bottom:891.813333pt;}
.y5_c02260{bottom:919.333333pt;}
.y4_c02260{bottom:947.040000pt;}
.h9_c02260{height:18.272000pt;}
.h7_c02260{height:18.400000pt;}
.h5_c02260{height:18.432000pt;}
.h2_c02260{height:20.000000pt;}
.h8_c02260{height:36.800000pt;}
.h4_c02260{height:37.472000pt;}
.h1_c02260{height:43.441250pt;}
.ha_c02260{height:57.375000pt;}
.h3_c02260{height:62.812500pt;}
.h6_c02260{height:64.500000pt;}
.h0_c02260{height:1056.000000pt;}
.w1_c02260{width:59.232000pt;}
.w4_c02260{width:70.240000pt;}
.w7_c02260{width:81.792000pt;}
.w5_c02260{width:83.872000pt;}
.w6_c02260{width:85.440000pt;}
.w2_c02260{width:226.266667pt;}
.w3_c02260{width:252.386667pt;}
.w0_c02260{width:816.000000pt;}
.x0_c02260{left:0.000000pt;}
.xf_c02260{left:7.040000pt;}
.x12_c02260{left:13.760000pt;}
.x3_c02260{left:14.720000pt;}
.x10_c02260{left:16.160000pt;}
.x14_c02260{left:19.040000pt;}
.x1d_c02260{left:22.880000pt;}
.x21_c02260{left:24.960000pt;}
.x23_c02260{left:26.240000pt;}
.x18_c02260{left:31.040000pt;}
.x26_c02260{left:32.800000pt;}
.xe_c02260{left:35.040000pt;}
.x17_c02260{left:36.800000pt;}
.x16_c02260{left:37.920000pt;}
.x20_c02260{left:40.800000pt;}
.x1f_c02260{left:41.920000pt;}
.x19_c02260{left:54.720000pt;}
.x1e_c02260{left:61.920000pt;}
.x1b_c02260{left:64.480000pt;}
.x15_c02260{left:66.240000pt;}
.x1c_c02260{left:68.480000pt;}
.x1a_c02260{left:70.720000pt;}
.x25_c02260{left:85.120000pt;}
.x22_c02260{left:88.480000pt;}
.xa_c02260{left:91.680000pt;}
.xc_c02260{left:92.826667pt;}
.x24_c02260{left:95.360000pt;}
.x1_c02260{left:113.472000pt;}
.x9_c02260{left:159.386667pt;}
.x4_c02260{left:166.266667pt;}
.x8_c02260{left:246.106667pt;}
.x7_c02260{left:272.706667pt;}
.xb_c02260{left:386.306667pt;}
.x6_c02260{left:391.266667pt;}
.x5_c02260{left:434.466667pt;}
.x11_c02260{left:470.813333pt;}
.x13_c02260{left:556.893333pt;}
.xd_c02260{left:639.333333pt;}
.x2_c02260{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02261 {
    display:none;
  }
  .loading-indicator_c02261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02261 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02261 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02261" -> "#page-container .classname_c02261")
 */
.pf_c02261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02261 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02261 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02261 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02261 {overflow:visible;}
  }
}
.c_c02261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02261 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02261:after { /* webkit #35443 */
  content: '';
}
.t_c02261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02261 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02261 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02261 { /* info for Javascript */
  display:none;
}
.l_c02261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02261:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02261 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02261.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02261;src:url('chunks/assets/font_c22c8f5e13fa89f02f917d16.woff2')format("woff");}.ff1_c02261{font-family:ff1_c02261;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02261;src:url('chunks/assets/font_532bf0980ece58f1df77fcb8.woff2')format("woff");}.ff2_c02261{font-family:ff2_c02261;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:ff3_c02261;src:url('chunks/assets/font_15fcb06275e91c48aa523085.woff2')format("woff");}.ff3_c02261{font-family:ff3_c02261;line-height:1.112305;font-style:normal;font-weight: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_c02261;src:url('chunks/assets/font_05be706ecca383f6b11e53ed.woff2')format("woff");}.ff4_c02261{font-family:ff4_c02261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02261{vertical-align:0.000000px;}
.ls0_c02261{letter-spacing:0.000000px;}
.sc__c02261{text-shadow:none;}
.sc0_c02261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02261{-webkit-text-stroke:0px transparent;}
.sc0_c02261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02261{word-spacing:-18.000000px;}
.ws1_c02261{word-spacing:0.000000px;}
._0_c02261{margin-left:-1.296000px;}
._2_c02261{width:1.800000px;}
._3_c02261{width:2.952000px;}
._9_c02261{width:4.104000px;}
._5_c02261{width:5.112000px;}
._6_c02261{width:6.804000px;}
._4_c02261{width:11.880000px;}
._a_c02261{width:16.992000px;}
._1_c02261{width:19.512000px;}
._7_c02261{width:24.120000px;}
._8_c02261{width:25.200000px;}
.fc1_c02261{color:rgb(192,80,77);}
.fc3_c02261{color:rgb(255,255,255);}
.fc2_c02261{color:rgb(17,17,17);}
.fc0_c02261{color:rgb(0,0,0);}
.fs0_c02261{font-size:66.240000px;}
.fs1_c02261{font-size:72.000000px;}
.y0_c02261{bottom:0.000000px;}
.y16_c02261{bottom:4.140000px;}
.y13_c02261{bottom:4.500000px;}
.y3_c02261{bottom:4.680000px;}
.y14_c02261{bottom:5.040000px;}
.y11_c02261{bottom:5.400000px;}
.y1d_c02261{bottom:24.840000px;}
.y1c_c02261{bottom:25.200000px;}
.y10_c02261{bottom:26.100000px;}
.y2_c02261{bottom:41.796000px;}
.y1_c02261{bottom:75.456000px;}
.y2e_c02261{bottom:124.056000px;}
.y2d_c02261{bottom:155.010000px;}
.y2c_c02261{bottom:186.150000px;}
.y2b_c02261{bottom:217.110000px;}
.y2a_c02261{bottom:248.250000px;}
.y29_c02261{bottom:279.255000px;}
.y28_c02261{bottom:310.395000px;}
.y27_c02261{bottom:341.355000px;}
.y26_c02261{bottom:372.495000px;}
.y25_c02261{bottom:393.375000px;}
.y24_c02261{bottom:414.075000px;}
.y23_c02261{bottom:434.775000px;}
.y22_c02261{bottom:455.475000px;}
.y21_c02261{bottom:472.395000px;}
.y20_c02261{bottom:493.815000px;}
.y1f_c02261{bottom:515.235000px;}
.y1e_c02261{bottom:536.685000px;}
.y1b_c02261{bottom:578.805000px;}
.y1a_c02261{bottom:621.105000px;}
.y19_c02261{bottom:642.525000px;}
.y18_c02261{bottom:663.945000px;}
.y17_c02261{bottom:685.365000px;}
.y15_c02261{bottom:706.785000px;}
.yf_c02261{bottom:728.205000px;}
.y12_c02261{bottom:749.805000px;}
.ye_c02261{bottom:785.805000px;}
.yd_c02261{bottom:806.730000px;}
.yc_c02261{bottom:827.430000px;}
.yb_c02261{bottom:848.130000px;}
.ya_c02261{bottom:879.090000px;}
.y9_c02261{bottom:910.050000px;}
.y8_c02261{bottom:941.190000px;}
.y7_c02261{bottom:972.150000px;}
.y6_c02261{bottom:1003.290000px;}
.y5_c02261{bottom:1034.250000px;}
.y4_c02261{bottom:1065.420000px;}
.h5_c02261{height:20.700000px;}
.h8_c02261{height:20.736000px;}
.h2_c02261{height:22.500000px;}
.h7_c02261{height:41.400000px;}
.h4_c02261{height:42.300000px;}
.h1_c02261{height:48.871406px;}
.h9_c02261{height:64.546875px;}
.h3_c02261{height:70.664062px;}
.h6_c02261{height:72.562500px;}
.h0_c02261{height:1188.000000px;}
.w1_c02261{width:66.636000px;}
.w4_c02261{width:79.020000px;}
.w7_c02261{width:92.016000px;}
.w5_c02261{width:94.356000px;}
.w6_c02261{width:96.120000px;}
.w2_c02261{width:254.550000px;}
.w3_c02261{width:283.935000px;}
.w0_c02261{width:918.000000px;}
.x0_c02261{left:0.000000px;}
.xf_c02261{left:7.920000px;}
.x12_c02261{left:15.480000px;}
.x3_c02261{left:16.560000px;}
.x10_c02261{left:18.180000px;}
.x14_c02261{left:21.420000px;}
.x1d_c02261{left:25.740000px;}
.x21_c02261{left:28.080000px;}
.x23_c02261{left:29.520000px;}
.x18_c02261{left:34.920000px;}
.x26_c02261{left:36.900000px;}
.xe_c02261{left:39.420000px;}
.x17_c02261{left:41.400000px;}
.x16_c02261{left:42.660000px;}
.x20_c02261{left:45.900000px;}
.x1f_c02261{left:47.160000px;}
.x19_c02261{left:61.560000px;}
.x1e_c02261{left:69.660000px;}
.x1b_c02261{left:72.540000px;}
.x15_c02261{left:74.520000px;}
.x1c_c02261{left:77.040000px;}
.x1a_c02261{left:79.560000px;}
.x25_c02261{left:95.760000px;}
.x22_c02261{left:99.540000px;}
.xa_c02261{left:103.140000px;}
.xc_c02261{left:104.430000px;}
.x24_c02261{left:107.280000px;}
.x1_c02261{left:127.656000px;}
.x9_c02261{left:179.310000px;}
.x4_c02261{left:187.050000px;}
.x7_c02261{left:276.510000px;}
.x8_c02261{left:302.115000px;}
.xb_c02261{left:434.595000px;}
.x6_c02261{left:440.175000px;}
.x5_c02261{left:488.775000px;}
.x11_c02261{left:529.665000px;}
.x13_c02261{left:626.505000px;}
.xd_c02261{left:719.250000px;}
.x2_c02261{left:820.950000px;}
@media print{
.v0_c02261{vertical-align:0.000000pt;}
.ls0_c02261{letter-spacing:0.000000pt;}
.ws0_c02261{word-spacing:-16.000000pt;}
.ws1_c02261{word-spacing:0.000000pt;}
._0_c02261{margin-left:-1.152000pt;}
._2_c02261{width:1.600000pt;}
._3_c02261{width:2.624000pt;}
._9_c02261{width:3.648000pt;}
._5_c02261{width:4.544000pt;}
._6_c02261{width:6.048000pt;}
._4_c02261{width:10.560000pt;}
._a_c02261{width:15.104000pt;}
._1_c02261{width:17.344000pt;}
._7_c02261{width:21.440000pt;}
._8_c02261{width:22.400000pt;}
.fs0_c02261{font-size:58.880000pt;}
.fs1_c02261{font-size:64.000000pt;}
.y0_c02261{bottom:0.000000pt;}
.y16_c02261{bottom:3.680000pt;}
.y13_c02261{bottom:4.000000pt;}
.y3_c02261{bottom:4.160000pt;}
.y14_c02261{bottom:4.480000pt;}
.y11_c02261{bottom:4.800000pt;}
.y1d_c02261{bottom:22.080000pt;}
.y1c_c02261{bottom:22.400000pt;}
.y10_c02261{bottom:23.200000pt;}
.y2_c02261{bottom:37.152000pt;}
.y1_c02261{bottom:67.072000pt;}
.y2e_c02261{bottom:110.272000pt;}
.y2d_c02261{bottom:137.786667pt;}
.y2c_c02261{bottom:165.466667pt;}
.y2b_c02261{bottom:192.986667pt;}
.y2a_c02261{bottom:220.666667pt;}
.y29_c02261{bottom:248.226667pt;}
.y28_c02261{bottom:275.906667pt;}
.y27_c02261{bottom:303.426667pt;}
.y26_c02261{bottom:331.106667pt;}
.y25_c02261{bottom:349.666667pt;}
.y24_c02261{bottom:368.066667pt;}
.y23_c02261{bottom:386.466667pt;}
.y22_c02261{bottom:404.866667pt;}
.y21_c02261{bottom:419.906667pt;}
.y20_c02261{bottom:438.946667pt;}
.y1f_c02261{bottom:457.986667pt;}
.y1e_c02261{bottom:477.053333pt;}
.y1b_c02261{bottom:514.493333pt;}
.y1a_c02261{bottom:552.093333pt;}
.y19_c02261{bottom:571.133333pt;}
.y18_c02261{bottom:590.173333pt;}
.y17_c02261{bottom:609.213333pt;}
.y15_c02261{bottom:628.253333pt;}
.yf_c02261{bottom:647.293333pt;}
.y12_c02261{bottom:666.493333pt;}
.ye_c02261{bottom:698.493333pt;}
.yd_c02261{bottom:717.093333pt;}
.yc_c02261{bottom:735.493333pt;}
.yb_c02261{bottom:753.893333pt;}
.ya_c02261{bottom:781.413333pt;}
.y9_c02261{bottom:808.933333pt;}
.y8_c02261{bottom:836.613333pt;}
.y7_c02261{bottom:864.133333pt;}
.y6_c02261{bottom:891.813333pt;}
.y5_c02261{bottom:919.333333pt;}
.y4_c02261{bottom:947.040000pt;}
.h5_c02261{height:18.400000pt;}
.h8_c02261{height:18.432000pt;}
.h2_c02261{height:20.000000pt;}
.h7_c02261{height:36.800000pt;}
.h4_c02261{height:37.600000pt;}
.h1_c02261{height:43.441250pt;}
.h9_c02261{height:57.375000pt;}
.h3_c02261{height:62.812500pt;}
.h6_c02261{height:64.500000pt;}
.h0_c02261{height:1056.000000pt;}
.w1_c02261{width:59.232000pt;}
.w4_c02261{width:70.240000pt;}
.w7_c02261{width:81.792000pt;}
.w5_c02261{width:83.872000pt;}
.w6_c02261{width:85.440000pt;}
.w2_c02261{width:226.266667pt;}
.w3_c02261{width:252.386667pt;}
.w0_c02261{width:816.000000pt;}
.x0_c02261{left:0.000000pt;}
.xf_c02261{left:7.040000pt;}
.x12_c02261{left:13.760000pt;}
.x3_c02261{left:14.720000pt;}
.x10_c02261{left:16.160000pt;}
.x14_c02261{left:19.040000pt;}
.x1d_c02261{left:22.880000pt;}
.x21_c02261{left:24.960000pt;}
.x23_c02261{left:26.240000pt;}
.x18_c02261{left:31.040000pt;}
.x26_c02261{left:32.800000pt;}
.xe_c02261{left:35.040000pt;}
.x17_c02261{left:36.800000pt;}
.x16_c02261{left:37.920000pt;}
.x20_c02261{left:40.800000pt;}
.x1f_c02261{left:41.920000pt;}
.x19_c02261{left:54.720000pt;}
.x1e_c02261{left:61.920000pt;}
.x1b_c02261{left:64.480000pt;}
.x15_c02261{left:66.240000pt;}
.x1c_c02261{left:68.480000pt;}
.x1a_c02261{left:70.720000pt;}
.x25_c02261{left:85.120000pt;}
.x22_c02261{left:88.480000pt;}
.xa_c02261{left:91.680000pt;}
.xc_c02261{left:92.826667pt;}
.x24_c02261{left:95.360000pt;}
.x1_c02261{left:113.472000pt;}
.x9_c02261{left:159.386667pt;}
.x4_c02261{left:166.266667pt;}
.x7_c02261{left:245.786667pt;}
.x8_c02261{left:268.546667pt;}
.xb_c02261{left:386.306667pt;}
.x6_c02261{left:391.266667pt;}
.x5_c02261{left:434.466667pt;}
.x11_c02261{left:470.813333pt;}
.x13_c02261{left:556.893333pt;}
.xd_c02261{left:639.333333pt;}
.x2_c02261{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02262 {
    display:none;
  }
  .loading-indicator_c02262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02262 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02262 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02262" -> "#page-container .classname_c02262")
 */
.pf_c02262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02262 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02262 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02262 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02262 {overflow:visible;}
  }
}
.c_c02262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02262 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02262:after { /* webkit #35443 */
  content: '';
}
.t_c02262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02262 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02262 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02262 { /* info for Javascript */
  display:none;
}
.l_c02262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02262:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02262 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02262.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02262;src:url('chunks/assets/font_52169edc073ecb9f2629879a.woff2')format("woff");}.ff1_c02262{font-family:ff1_c02262;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02262;src:url('chunks/assets/font_4e806f34ef3f35c14dc048d8.woff2')format("woff");}.ff2_c02262{font-family:ff2_c02262;line-height:1.112305;font-style:normal;font-weight: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_c02262;src:url('chunks/assets/font_1d0e8a8b33f7d9ad400cdcc2.woff2')format("woff");}.ff3_c02262{font-family:ff3_c02262;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_c02262;src:url('chunks/assets/font_fd8e96f153e70d9068a7c289.woff2')format("woff");}.ff4_c02262{font-family:ff4_c02262;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02262{vertical-align:0.000000px;}
.ls0_c02262{letter-spacing:0.000000px;}
.sc__c02262{text-shadow:none;}
.sc0_c02262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02262{-webkit-text-stroke:0px transparent;}
.sc0_c02262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02262{word-spacing:0.000000px;}
._2_c02262{margin-left:-1.440000px;}
._3_c02262{width:1.560000px;}
._6_c02262{width:3.528000px;}
._7_c02262{width:5.028000px;}
._b_c02262{width:6.036000px;}
._c_c02262{width:7.848000px;}
._8_c02262{width:9.288000px;}
._9_c02262{width:10.368000px;}
._d_c02262{width:11.520000px;}
._e_c02262{width:12.696000px;}
._4_c02262{width:14.256000px;}
._5_c02262{width:15.336000px;}
._0_c02262{width:16.992000px;}
._1_c02262{width:19.152000px;}
._a_c02262{width:21.396000px;}
.fc1_c02262{color:rgb(192,80,77);}
.fc3_c02262{color:rgb(255,255,255);}
.fc2_c02262{color:rgb(17,17,17);}
.fc0_c02262{color:rgb(0,0,0);}
.fs0_c02262{font-size:66.240000px;}
.fs1_c02262{font-size:72.000000px;}
.y0_c02262{bottom:0.000000px;}
.y18_c02262{bottom:4.140000px;}
.y15_c02262{bottom:4.500000px;}
.y3_c02262{bottom:4.680000px;}
.y16_c02262{bottom:4.860000px;}
.y13_c02262{bottom:5.220000px;}
.y22_c02262{bottom:24.840000px;}
.y1f_c02262{bottom:24.870000px;}
.y21_c02262{bottom:25.200000px;}
.y1e_c02262{bottom:25.230000px;}
.y12_c02262{bottom:25.920000px;}
.y2_c02262{bottom:41.796000px;}
.y1_c02262{bottom:75.456000px;}
.y30_c02262{bottom:134.316000px;}
.y2f_c02262{bottom:165.450000px;}
.y2e_c02262{bottom:196.410000px;}
.y2d_c02262{bottom:227.550000px;}
.y2c_c02262{bottom:258.510000px;}
.y2b_c02262{bottom:289.695000px;}
.y2a_c02262{bottom:320.655000px;}
.y29_c02262{bottom:341.535000px;}
.y28_c02262{bottom:362.235000px;}
.y27_c02262{bottom:382.935000px;}
.y26_c02262{bottom:403.635000px;}
.y25_c02262{bottom:420.555000px;}
.y24_c02262{bottom:442.155000px;}
.y23_c02262{bottom:463.575000px;}
.y20_c02262{bottom:484.995000px;}
.y1d_c02262{bottom:527.115000px;}
.y1c_c02262{bottom:569.265000px;}
.y1b_c02262{bottom:590.685000px;}
.y1a_c02262{bottom:612.105000px;}
.y19_c02262{bottom:633.705000px;}
.y17_c02262{bottom:655.125000px;}
.y11_c02262{bottom:676.545000px;}
.y14_c02262{bottom:697.965000px;}
.y10_c02262{bottom:723.885000px;}
.yf_c02262{bottom:744.585000px;}
.ye_c02262{bottom:765.285000px;}
.yd_c02262{bottom:785.985000px;}
.yc_c02262{bottom:816.990000px;}
.yb_c02262{bottom:847.950000px;}
.ya_c02262{bottom:879.090000px;}
.y9_c02262{bottom:910.050000px;}
.y8_c02262{bottom:941.190000px;}
.y7_c02262{bottom:972.150000px;}
.y6_c02262{bottom:1003.290000px;}
.y5_c02262{bottom:1034.250000px;}
.y4_c02262{bottom:1065.420000px;}
.h5_c02262{height:20.700000px;}
.h2_c02262{height:22.500000px;}
.h8_c02262{height:41.400000px;}
.h7_c02262{height:41.436000px;}
.h4_c02262{height:42.120000px;}
.h1_c02262{height:48.871406px;}
.h9_c02262{height:64.546875px;}
.h3_c02262{height:70.664062px;}
.h6_c02262{height:72.562500px;}
.h0_c02262{height:1188.000000px;}
.w1_c02262{width:66.636000px;}
.w4_c02262{width:79.020000px;}
.w7_c02262{width:92.016000px;}
.w5_c02262{width:94.356000px;}
.w6_c02262{width:96.120000px;}
.w2_c02262{width:254.550000px;}
.w3_c02262{width:283.935000px;}
.w0_c02262{width:918.000000px;}
.x0_c02262{left:0.000000px;}
.xf_c02262{left:7.920000px;}
.x12_c02262{left:15.480000px;}
.x3_c02262{left:16.560000px;}
.x10_c02262{left:18.180000px;}
.x14_c02262{left:21.420000px;}
.x1d_c02262{left:25.740000px;}
.x21_c02262{left:28.080000px;}
.x23_c02262{left:29.520000px;}
.x18_c02262{left:34.920000px;}
.xe_c02262{left:39.420000px;}
.x17_c02262{left:41.400000px;}
.x16_c02262{left:42.660000px;}
.x20_c02262{left:45.900000px;}
.x1f_c02262{left:47.160000px;}
.x19_c02262{left:61.560000px;}
.x1e_c02262{left:69.660000px;}
.x1b_c02262{left:72.540000px;}
.x15_c02262{left:74.520000px;}
.x1c_c02262{left:77.040000px;}
.x1a_c02262{left:79.560000px;}
.x25_c02262{left:95.760000px;}
.x22_c02262{left:99.540000px;}
.xa_c02262{left:103.140000px;}
.xc_c02262{left:104.430000px;}
.x24_c02262{left:107.280000px;}
.x1_c02262{left:127.656000px;}
.x9_c02262{left:179.310000px;}
.x4_c02262{left:187.050000px;}
.x8_c02262{left:276.870000px;}
.x7_c02262{left:303.735000px;}
.xb_c02262{left:434.595000px;}
.x6_c02262{left:440.175000px;}
.x5_c02262{left:488.775000px;}
.x11_c02262{left:529.665000px;}
.x13_c02262{left:626.505000px;}
.xd_c02262{left:719.250000px;}
.x2_c02262{left:820.950000px;}
@media print{
.v0_c02262{vertical-align:0.000000pt;}
.ls0_c02262{letter-spacing:0.000000pt;}
.ws0_c02262{word-spacing:0.000000pt;}
._2_c02262{margin-left:-1.280000pt;}
._3_c02262{width:1.386667pt;}
._6_c02262{width:3.136000pt;}
._7_c02262{width:4.469333pt;}
._b_c02262{width:5.365333pt;}
._c_c02262{width:6.976000pt;}
._8_c02262{width:8.256000pt;}
._9_c02262{width:9.216000pt;}
._d_c02262{width:10.240000pt;}
._e_c02262{width:11.285333pt;}
._4_c02262{width:12.672000pt;}
._5_c02262{width:13.632000pt;}
._0_c02262{width:15.104000pt;}
._1_c02262{width:17.024000pt;}
._a_c02262{width:19.018667pt;}
.fs0_c02262{font-size:58.880000pt;}
.fs1_c02262{font-size:64.000000pt;}
.y0_c02262{bottom:0.000000pt;}
.y18_c02262{bottom:3.680000pt;}
.y15_c02262{bottom:4.000000pt;}
.y3_c02262{bottom:4.160000pt;}
.y16_c02262{bottom:4.320000pt;}
.y13_c02262{bottom:4.640000pt;}
.y22_c02262{bottom:22.080000pt;}
.y1f_c02262{bottom:22.106667pt;}
.y21_c02262{bottom:22.400000pt;}
.y1e_c02262{bottom:22.426667pt;}
.y12_c02262{bottom:23.040000pt;}
.y2_c02262{bottom:37.152000pt;}
.y1_c02262{bottom:67.072000pt;}
.y30_c02262{bottom:119.392000pt;}
.y2f_c02262{bottom:147.066667pt;}
.y2e_c02262{bottom:174.586667pt;}
.y2d_c02262{bottom:202.266667pt;}
.y2c_c02262{bottom:229.786667pt;}
.y2b_c02262{bottom:257.506667pt;}
.y2a_c02262{bottom:285.026667pt;}
.y29_c02262{bottom:303.586667pt;}
.y28_c02262{bottom:321.986667pt;}
.y27_c02262{bottom:340.386667pt;}
.y26_c02262{bottom:358.786667pt;}
.y25_c02262{bottom:373.826667pt;}
.y24_c02262{bottom:393.026667pt;}
.y23_c02262{bottom:412.066667pt;}
.y20_c02262{bottom:431.106667pt;}
.y1d_c02262{bottom:468.546667pt;}
.y1c_c02262{bottom:506.013333pt;}
.y1b_c02262{bottom:525.053333pt;}
.y1a_c02262{bottom:544.093333pt;}
.y19_c02262{bottom:563.293333pt;}
.y17_c02262{bottom:582.333333pt;}
.y11_c02262{bottom:601.373333pt;}
.y14_c02262{bottom:620.413333pt;}
.y10_c02262{bottom:643.453333pt;}
.yf_c02262{bottom:661.853333pt;}
.ye_c02262{bottom:680.253333pt;}
.yd_c02262{bottom:698.653333pt;}
.yc_c02262{bottom:726.213333pt;}
.yb_c02262{bottom:753.733333pt;}
.ya_c02262{bottom:781.413333pt;}
.y9_c02262{bottom:808.933333pt;}
.y8_c02262{bottom:836.613333pt;}
.y7_c02262{bottom:864.133333pt;}
.y6_c02262{bottom:891.813333pt;}
.y5_c02262{bottom:919.333333pt;}
.y4_c02262{bottom:947.040000pt;}
.h5_c02262{height:18.400000pt;}
.h2_c02262{height:20.000000pt;}
.h8_c02262{height:36.800000pt;}
.h7_c02262{height:36.832000pt;}
.h4_c02262{height:37.440000pt;}
.h1_c02262{height:43.441250pt;}
.h9_c02262{height:57.375000pt;}
.h3_c02262{height:62.812500pt;}
.h6_c02262{height:64.500000pt;}
.h0_c02262{height:1056.000000pt;}
.w1_c02262{width:59.232000pt;}
.w4_c02262{width:70.240000pt;}
.w7_c02262{width:81.792000pt;}
.w5_c02262{width:83.872000pt;}
.w6_c02262{width:85.440000pt;}
.w2_c02262{width:226.266667pt;}
.w3_c02262{width:252.386667pt;}
.w0_c02262{width:816.000000pt;}
.x0_c02262{left:0.000000pt;}
.xf_c02262{left:7.040000pt;}
.x12_c02262{left:13.760000pt;}
.x3_c02262{left:14.720000pt;}
.x10_c02262{left:16.160000pt;}
.x14_c02262{left:19.040000pt;}
.x1d_c02262{left:22.880000pt;}
.x21_c02262{left:24.960000pt;}
.x23_c02262{left:26.240000pt;}
.x18_c02262{left:31.040000pt;}
.xe_c02262{left:35.040000pt;}
.x17_c02262{left:36.800000pt;}
.x16_c02262{left:37.920000pt;}
.x20_c02262{left:40.800000pt;}
.x1f_c02262{left:41.920000pt;}
.x19_c02262{left:54.720000pt;}
.x1e_c02262{left:61.920000pt;}
.x1b_c02262{left:64.480000pt;}
.x15_c02262{left:66.240000pt;}
.x1c_c02262{left:68.480000pt;}
.x1a_c02262{left:70.720000pt;}
.x25_c02262{left:85.120000pt;}
.x22_c02262{left:88.480000pt;}
.xa_c02262{left:91.680000pt;}
.xc_c02262{left:92.826667pt;}
.x24_c02262{left:95.360000pt;}
.x1_c02262{left:113.472000pt;}
.x9_c02262{left:159.386667pt;}
.x4_c02262{left:166.266667pt;}
.x8_c02262{left:246.106667pt;}
.x7_c02262{left:269.986667pt;}
.xb_c02262{left:386.306667pt;}
.x6_c02262{left:391.266667pt;}
.x5_c02262{left:434.466667pt;}
.x11_c02262{left:470.813333pt;}
.x13_c02262{left:556.893333pt;}
.xd_c02262{left:639.333333pt;}
.x2_c02262{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02263 {
    display:none;
  }
  .loading-indicator_c02263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02263 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02263 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02263" -> "#page-container .classname_c02263")
 */
.pf_c02263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02263 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02263 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02263 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02263 {overflow:visible;}
  }
}
.c_c02263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02263 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02263:after { /* webkit #35443 */
  content: '';
}
.t_c02263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02263 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02263 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02263 { /* info for Javascript */
  display:none;
}
.l_c02263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02263:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02263 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02263.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02263;src:url('chunks/assets/font_05066d4ea3c69537df5ba298.woff2')format("woff");}.ff1_c02263{font-family:ff1_c02263;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02263;src:url('chunks/assets/font_249ad59d01a083acb8b384e1.woff2')format("woff");}.ff2_c02263{font-family:ff2_c02263;line-height:1.112305;font-style:normal;font-weight: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_c02263;src:url('chunks/assets/font_a07ad70ad9f924da8a890bce.woff2')format("woff");}.ff3_c02263{font-family:ff3_c02263;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_c02263;src:url('chunks/assets/font_aa5b8a513611b760bdcff323.woff2')format("woff");}.ff4_c02263{font-family:ff4_c02263;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02263{vertical-align:0.000000px;}
.ls0_c02263{letter-spacing:0.000000px;}
.sc__c02263{text-shadow:none;}
.sc0_c02263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02263{-webkit-text-stroke:0px transparent;}
.sc0_c02263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02263{word-spacing:0.000000px;}
._6_c02263{margin-left:-2.160000px;}
._1_c02263{margin-left:-1.152000px;}
._4_c02263{width:1.008000px;}
._8_c02263{width:2.160000px;}
._9_c02263{width:3.240000px;}
._b_c02263{width:5.112000px;}
._c_c02263{width:6.336000px;}
._f_c02263{width:7.560000px;}
._3_c02263{width:8.568000px;}
._7_c02263{width:10.224000px;}
._5_c02263{width:11.304000px;}
._e_c02263{width:13.752000px;}
._d_c02263{width:15.048000px;}
._a_c02263{width:16.416000px;}
._0_c02263{width:24.840000px;}
._2_c02263{width:25.992000px;}
.fc1_c02263{color:rgb(192,80,77);}
.fc3_c02263{color:rgb(255,255,255);}
.fc2_c02263{color:rgb(17,17,17);}
.fc0_c02263{color:rgb(0,0,0);}
.fs0_c02263{font-size:66.240000px;}
.fs1_c02263{font-size:72.000000px;}
.y0_c02263{bottom:0.000000px;}
.y16_c02263{bottom:4.140000px;}
.y14_c02263{bottom:4.500000px;}
.y12_c02263{bottom:4.545000px;}
.y3_c02263{bottom:4.680000px;}
.y13_c02263{bottom:5.040000px;}
.y10_c02263{bottom:5.400000px;}
.y1d_c02263{bottom:24.840000px;}
.y1c_c02263{bottom:25.200000px;}
.yf_c02263{bottom:26.145000px;}
.y2_c02263{bottom:41.796000px;}
.y1_c02263{bottom:75.456000px;}
.y2f_c02263{bottom:134.316000px;}
.y2e_c02263{bottom:165.450000px;}
.y2d_c02263{bottom:196.410000px;}
.y2c_c02263{bottom:227.550000px;}
.y2b_c02263{bottom:258.510000px;}
.y2a_c02263{bottom:289.695000px;}
.y29_c02263{bottom:320.655000px;}
.y28_c02263{bottom:351.795000px;}
.y27_c02263{bottom:382.755000px;}
.y26_c02263{bottom:413.895000px;}
.y25_c02263{bottom:434.775000px;}
.y24_c02263{bottom:455.475000px;}
.y23_c02263{bottom:476.175000px;}
.y22_c02263{bottom:496.875000px;}
.y21_c02263{bottom:513.795000px;}
.y20_c02263{bottom:535.245000px;}
.y1f_c02263{bottom:556.665000px;}
.y1e_c02263{bottom:578.085000px;}
.y1b_c02263{bottom:620.205000px;}
.y1a_c02263{bottom:662.505000px;}
.y19_c02263{bottom:683.925000px;}
.y18_c02263{bottom:705.345000px;}
.y17_c02263{bottom:726.765000px;}
.y15_c02263{bottom:748.185000px;}
.ye_c02263{bottom:769.605000px;}
.y11_c02263{bottom:791.205000px;}
.yd_c02263{bottom:817.170000px;}
.yc_c02263{bottom:837.870000px;}
.yb_c02263{bottom:858.570000px;}
.ya_c02263{bottom:879.270000px;}
.y9_c02263{bottom:910.050000px;}
.y8_c02263{bottom:941.190000px;}
.y7_c02263{bottom:972.150000px;}
.y6_c02263{bottom:1003.290000px;}
.y5_c02263{bottom:1034.250000px;}
.y4_c02263{bottom:1065.420000px;}
.h8_c02263{height:20.700000px;}
.h6_c02263{height:20.736000px;}
.h2_c02263{height:22.500000px;}
.h9_c02263{height:41.400000px;}
.h5_c02263{height:42.336000px;}
.h1_c02263{height:48.871406px;}
.h3_c02263{height:64.546875px;}
.h4_c02263{height:70.664062px;}
.h7_c02263{height:72.562500px;}
.h0_c02263{height:1188.000000px;}
.w1_c02263{width:66.636000px;}
.w4_c02263{width:79.020000px;}
.w7_c02263{width:92.016000px;}
.w5_c02263{width:94.356000px;}
.w6_c02263{width:96.120000px;}
.w2_c02263{width:254.550000px;}
.w3_c02263{width:283.935000px;}
.w0_c02263{width:918.000000px;}
.x0_c02263{left:0.000000px;}
.xf_c02263{left:7.920000px;}
.x12_c02263{left:15.480000px;}
.x3_c02263{left:16.560000px;}
.x10_c02263{left:18.180000px;}
.x14_c02263{left:21.420000px;}
.x1d_c02263{left:25.740000px;}
.x21_c02263{left:28.080000px;}
.x23_c02263{left:29.520000px;}
.x18_c02263{left:34.920000px;}
.xe_c02263{left:39.420000px;}
.x17_c02263{left:41.400000px;}
.x16_c02263{left:42.660000px;}
.x20_c02263{left:45.900000px;}
.x1f_c02263{left:47.160000px;}
.x19_c02263{left:61.560000px;}
.x1e_c02263{left:69.660000px;}
.x1b_c02263{left:72.540000px;}
.x15_c02263{left:74.520000px;}
.x1c_c02263{left:77.040000px;}
.x1a_c02263{left:79.560000px;}
.x25_c02263{left:95.760000px;}
.x22_c02263{left:99.540000px;}
.xa_c02263{left:103.140000px;}
.xc_c02263{left:104.430000px;}
.x24_c02263{left:107.280000px;}
.x1_c02263{left:127.656000px;}
.x9_c02263{left:179.310000px;}
.x4_c02263{left:187.050000px;}
.x8_c02263{left:276.870000px;}
.x7_c02263{left:300.315000px;}
.xb_c02263{left:434.595000px;}
.x6_c02263{left:440.175000px;}
.x5_c02263{left:488.775000px;}
.x11_c02263{left:529.665000px;}
.x13_c02263{left:626.505000px;}
.xd_c02263{left:719.250000px;}
.x2_c02263{left:820.950000px;}
@media print{
.v0_c02263{vertical-align:0.000000pt;}
.ls0_c02263{letter-spacing:0.000000pt;}
.ws0_c02263{word-spacing:0.000000pt;}
._6_c02263{margin-left:-1.920000pt;}
._1_c02263{margin-left:-1.024000pt;}
._4_c02263{width:0.896000pt;}
._8_c02263{width:1.920000pt;}
._9_c02263{width:2.880000pt;}
._b_c02263{width:4.544000pt;}
._c_c02263{width:5.632000pt;}
._f_c02263{width:6.720000pt;}
._3_c02263{width:7.616000pt;}
._7_c02263{width:9.088000pt;}
._5_c02263{width:10.048000pt;}
._e_c02263{width:12.224000pt;}
._d_c02263{width:13.376000pt;}
._a_c02263{width:14.592000pt;}
._0_c02263{width:22.080000pt;}
._2_c02263{width:23.104000pt;}
.fs0_c02263{font-size:58.880000pt;}
.fs1_c02263{font-size:64.000000pt;}
.y0_c02263{bottom:0.000000pt;}
.y16_c02263{bottom:3.680000pt;}
.y14_c02263{bottom:4.000000pt;}
.y12_c02263{bottom:4.040000pt;}
.y3_c02263{bottom:4.160000pt;}
.y13_c02263{bottom:4.480000pt;}
.y10_c02263{bottom:4.800000pt;}
.y1d_c02263{bottom:22.080000pt;}
.y1c_c02263{bottom:22.400000pt;}
.yf_c02263{bottom:23.240000pt;}
.y2_c02263{bottom:37.152000pt;}
.y1_c02263{bottom:67.072000pt;}
.y2f_c02263{bottom:119.392000pt;}
.y2e_c02263{bottom:147.066667pt;}
.y2d_c02263{bottom:174.586667pt;}
.y2c_c02263{bottom:202.266667pt;}
.y2b_c02263{bottom:229.786667pt;}
.y2a_c02263{bottom:257.506667pt;}
.y29_c02263{bottom:285.026667pt;}
.y28_c02263{bottom:312.706667pt;}
.y27_c02263{bottom:340.226667pt;}
.y26_c02263{bottom:367.906667pt;}
.y25_c02263{bottom:386.466667pt;}
.y24_c02263{bottom:404.866667pt;}
.y23_c02263{bottom:423.266667pt;}
.y22_c02263{bottom:441.666667pt;}
.y21_c02263{bottom:456.706667pt;}
.y20_c02263{bottom:475.773333pt;}
.y1f_c02263{bottom:494.813333pt;}
.y1e_c02263{bottom:513.853333pt;}
.y1b_c02263{bottom:551.293333pt;}
.y1a_c02263{bottom:588.893333pt;}
.y19_c02263{bottom:607.933333pt;}
.y18_c02263{bottom:626.973333pt;}
.y17_c02263{bottom:646.013333pt;}
.y15_c02263{bottom:665.053333pt;}
.ye_c02263{bottom:684.093333pt;}
.y11_c02263{bottom:703.293333pt;}
.yd_c02263{bottom:726.373333pt;}
.yc_c02263{bottom:744.773333pt;}
.yb_c02263{bottom:763.173333pt;}
.ya_c02263{bottom:781.573333pt;}
.y9_c02263{bottom:808.933333pt;}
.y8_c02263{bottom:836.613333pt;}
.y7_c02263{bottom:864.133333pt;}
.y6_c02263{bottom:891.813333pt;}
.y5_c02263{bottom:919.333333pt;}
.y4_c02263{bottom:947.040000pt;}
.h8_c02263{height:18.400000pt;}
.h6_c02263{height:18.432000pt;}
.h2_c02263{height:20.000000pt;}
.h9_c02263{height:36.800000pt;}
.h5_c02263{height:37.632000pt;}
.h1_c02263{height:43.441250pt;}
.h3_c02263{height:57.375000pt;}
.h4_c02263{height:62.812500pt;}
.h7_c02263{height:64.500000pt;}
.h0_c02263{height:1056.000000pt;}
.w1_c02263{width:59.232000pt;}
.w4_c02263{width:70.240000pt;}
.w7_c02263{width:81.792000pt;}
.w5_c02263{width:83.872000pt;}
.w6_c02263{width:85.440000pt;}
.w2_c02263{width:226.266667pt;}
.w3_c02263{width:252.386667pt;}
.w0_c02263{width:816.000000pt;}
.x0_c02263{left:0.000000pt;}
.xf_c02263{left:7.040000pt;}
.x12_c02263{left:13.760000pt;}
.x3_c02263{left:14.720000pt;}
.x10_c02263{left:16.160000pt;}
.x14_c02263{left:19.040000pt;}
.x1d_c02263{left:22.880000pt;}
.x21_c02263{left:24.960000pt;}
.x23_c02263{left:26.240000pt;}
.x18_c02263{left:31.040000pt;}
.xe_c02263{left:35.040000pt;}
.x17_c02263{left:36.800000pt;}
.x16_c02263{left:37.920000pt;}
.x20_c02263{left:40.800000pt;}
.x1f_c02263{left:41.920000pt;}
.x19_c02263{left:54.720000pt;}
.x1e_c02263{left:61.920000pt;}
.x1b_c02263{left:64.480000pt;}
.x15_c02263{left:66.240000pt;}
.x1c_c02263{left:68.480000pt;}
.x1a_c02263{left:70.720000pt;}
.x25_c02263{left:85.120000pt;}
.x22_c02263{left:88.480000pt;}
.xa_c02263{left:91.680000pt;}
.xc_c02263{left:92.826667pt;}
.x24_c02263{left:95.360000pt;}
.x1_c02263{left:113.472000pt;}
.x9_c02263{left:159.386667pt;}
.x4_c02263{left:166.266667pt;}
.x8_c02263{left:246.106667pt;}
.x7_c02263{left:266.946667pt;}
.xb_c02263{left:386.306667pt;}
.x6_c02263{left:391.266667pt;}
.x5_c02263{left:434.466667pt;}
.x11_c02263{left:470.813333pt;}
.x13_c02263{left:556.893333pt;}
.xd_c02263{left:639.333333pt;}
.x2_c02263{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02264 {
    display:none;
  }
  .loading-indicator_c02264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02264 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02264 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02264" -> "#page-container .classname_c02264")
 */
.pf_c02264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02264 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02264 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02264 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02264 {overflow:visible;}
  }
}
.c_c02264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02264 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02264:after { /* webkit #35443 */
  content: '';
}
.t_c02264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02264 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02264 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02264 { /* info for Javascript */
  display:none;
}
.l_c02264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02264:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02264 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02264.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02264;src:url('chunks/assets/font_bb01a55bf8bdc0a089d519e3.woff2')format("woff");}.ff1_c02264{font-family:ff1_c02264;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02264;src:url('chunks/assets/font_26b9e2c522932d75fd75d835.woff2')format("woff");}.ff2_c02264{font-family:ff2_c02264;line-height:1.112305;font-style:normal;font-weight: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_c02264;src:url('chunks/assets/font_dcb472fb498c3dedcebd13df.woff2')format("woff");}.ff3_c02264{font-family:ff3_c02264;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_c02264;src:url('chunks/assets/font_9c41afadba791af943414124.woff2')format("woff");}.ff4_c02264{font-family:ff4_c02264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02264{vertical-align:0.000000px;}
.ls0_c02264{letter-spacing:0.000000px;}
.sc__c02264{text-shadow:none;}
.sc0_c02264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02264{-webkit-text-stroke:0px transparent;}
.sc0_c02264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02264{word-spacing:0.000000px;}
._0_c02264{margin-left:-1.152000px;}
._1_c02264{width:1.008000px;}
._2_c02264{width:2.016000px;}
._5_c02264{width:3.456000px;}
._6_c02264{width:4.752000px;}
._7_c02264{width:5.940000px;}
._a_c02264{width:7.380000px;}
._8_c02264{width:11.808000px;}
._9_c02264{width:13.104000px;}
._b_c02264{width:19.296000px;}
._c_c02264{width:20.664000px;}
._3_c02264{width:27.720000px;}
._4_c02264{width:29.016000px;}
.fc1_c02264{color:rgb(192,80,77);}
.fc3_c02264{color:rgb(255,255,255);}
.fc2_c02264{color:rgb(17,17,17);}
.fc0_c02264{color:rgb(0,0,0);}
.fs0_c02264{font-size:66.240000px;}
.fs1_c02264{font-size:72.000000px;}
.y0_c02264{bottom:0.000000px;}
.y1a_c02264{bottom:4.140000px;}
.y17_c02264{bottom:4.500000px;}
.y3_c02264{bottom:4.680000px;}
.y18_c02264{bottom:5.040000px;}
.y15_c02264{bottom:5.400000px;}
.y21_c02264{bottom:24.840000px;}
.y20_c02264{bottom:25.200000px;}
.y14_c02264{bottom:26.100000px;}
.y2_c02264{bottom:41.796000px;}
.y1_c02264{bottom:75.456000px;}
.y2e_c02264{bottom:124.056000px;}
.y2d_c02264{bottom:155.010000px;}
.y2c_c02264{bottom:186.150000px;}
.y2b_c02264{bottom:217.110000px;}
.y2a_c02264{bottom:248.250000px;}
.y29_c02264{bottom:269.130000px;}
.y28_c02264{bottom:289.875000px;}
.y27_c02264{bottom:310.575000px;}
.y26_c02264{bottom:331.275000px;}
.y25_c02264{bottom:348.195000px;}
.y24_c02264{bottom:369.615000px;}
.y23_c02264{bottom:391.035000px;}
.y22_c02264{bottom:412.455000px;}
.y1f_c02264{bottom:454.755000px;}
.y1e_c02264{bottom:496.875000px;}
.y1d_c02264{bottom:518.295000px;}
.y1c_c02264{bottom:539.745000px;}
.y1b_c02264{bottom:561.165000px;}
.y19_c02264{bottom:582.585000px;}
.y13_c02264{bottom:604.005000px;}
.y16_c02264{bottom:625.605000px;}
.y12_c02264{bottom:661.605000px;}
.y11_c02264{bottom:682.485000px;}
.y10_c02264{bottom:703.185000px;}
.yf_c02264{bottom:723.885000px;}
.ye_c02264{bottom:754.845000px;}
.yd_c02264{bottom:785.805000px;}
.yc_c02264{bottom:816.990000px;}
.yb_c02264{bottom:847.950000px;}
.ya_c02264{bottom:879.090000px;}
.y9_c02264{bottom:910.050000px;}
.y8_c02264{bottom:941.190000px;}
.y7_c02264{bottom:972.150000px;}
.y6_c02264{bottom:1003.290000px;}
.y5_c02264{bottom:1034.250000px;}
.y4_c02264{bottom:1065.420000px;}
.h6_c02264{height:20.700000px;}
.h8_c02264{height:20.736000px;}
.h2_c02264{height:22.500000px;}
.h9_c02264{height:41.400000px;}
.h5_c02264{height:42.300000px;}
.h1_c02264{height:48.871406px;}
.h3_c02264{height:64.546875px;}
.h4_c02264{height:70.664062px;}
.h7_c02264{height:72.562500px;}
.h0_c02264{height:1188.000000px;}
.w1_c02264{width:66.636000px;}
.w4_c02264{width:79.020000px;}
.w7_c02264{width:92.016000px;}
.w5_c02264{width:94.356000px;}
.w6_c02264{width:96.120000px;}
.w2_c02264{width:254.550000px;}
.w3_c02264{width:283.935000px;}
.w0_c02264{width:918.000000px;}
.x0_c02264{left:0.000000px;}
.xf_c02264{left:7.920000px;}
.x12_c02264{left:15.480000px;}
.x3_c02264{left:16.560000px;}
.x10_c02264{left:18.180000px;}
.x14_c02264{left:21.420000px;}
.x1d_c02264{left:25.740000px;}
.x21_c02264{left:28.080000px;}
.x23_c02264{left:29.520000px;}
.x18_c02264{left:34.920000px;}
.xe_c02264{left:39.420000px;}
.x17_c02264{left:41.400000px;}
.x16_c02264{left:42.660000px;}
.x20_c02264{left:45.900000px;}
.x1f_c02264{left:47.160000px;}
.x19_c02264{left:61.560000px;}
.x1e_c02264{left:69.660000px;}
.x1b_c02264{left:72.540000px;}
.x15_c02264{left:74.520000px;}
.x1c_c02264{left:77.040000px;}
.x1a_c02264{left:79.560000px;}
.x25_c02264{left:95.760000px;}
.x22_c02264{left:99.540000px;}
.xa_c02264{left:103.140000px;}
.xc_c02264{left:104.430000px;}
.x24_c02264{left:107.280000px;}
.x1_c02264{left:127.656000px;}
.x9_c02264{left:179.310000px;}
.x4_c02264{left:187.050000px;}
.x8_c02264{left:276.870000px;}
.x7_c02264{left:304.275000px;}
.xb_c02264{left:434.595000px;}
.x6_c02264{left:440.175000px;}
.x5_c02264{left:488.775000px;}
.x11_c02264{left:529.665000px;}
.x13_c02264{left:626.505000px;}
.xd_c02264{left:719.250000px;}
.x2_c02264{left:820.950000px;}
@media print{
.v0_c02264{vertical-align:0.000000pt;}
.ls0_c02264{letter-spacing:0.000000pt;}
.ws0_c02264{word-spacing:0.000000pt;}
._0_c02264{margin-left:-1.024000pt;}
._1_c02264{width:0.896000pt;}
._2_c02264{width:1.792000pt;}
._5_c02264{width:3.072000pt;}
._6_c02264{width:4.224000pt;}
._7_c02264{width:5.280000pt;}
._a_c02264{width:6.560000pt;}
._8_c02264{width:10.496000pt;}
._9_c02264{width:11.648000pt;}
._b_c02264{width:17.152000pt;}
._c_c02264{width:18.368000pt;}
._3_c02264{width:24.640000pt;}
._4_c02264{width:25.792000pt;}
.fs0_c02264{font-size:58.880000pt;}
.fs1_c02264{font-size:64.000000pt;}
.y0_c02264{bottom:0.000000pt;}
.y1a_c02264{bottom:3.680000pt;}
.y17_c02264{bottom:4.000000pt;}
.y3_c02264{bottom:4.160000pt;}
.y18_c02264{bottom:4.480000pt;}
.y15_c02264{bottom:4.800000pt;}
.y21_c02264{bottom:22.080000pt;}
.y20_c02264{bottom:22.400000pt;}
.y14_c02264{bottom:23.200000pt;}
.y2_c02264{bottom:37.152000pt;}
.y1_c02264{bottom:67.072000pt;}
.y2e_c02264{bottom:110.272000pt;}
.y2d_c02264{bottom:137.786667pt;}
.y2c_c02264{bottom:165.466667pt;}
.y2b_c02264{bottom:192.986667pt;}
.y2a_c02264{bottom:220.666667pt;}
.y29_c02264{bottom:239.226667pt;}
.y28_c02264{bottom:257.666667pt;}
.y27_c02264{bottom:276.066667pt;}
.y26_c02264{bottom:294.466667pt;}
.y25_c02264{bottom:309.506667pt;}
.y24_c02264{bottom:328.546667pt;}
.y23_c02264{bottom:347.586667pt;}
.y22_c02264{bottom:366.626667pt;}
.y1f_c02264{bottom:404.226667pt;}
.y1e_c02264{bottom:441.666667pt;}
.y1d_c02264{bottom:460.706667pt;}
.y1c_c02264{bottom:479.773333pt;}
.y1b_c02264{bottom:498.813333pt;}
.y19_c02264{bottom:517.853333pt;}
.y13_c02264{bottom:536.893333pt;}
.y16_c02264{bottom:556.093333pt;}
.y12_c02264{bottom:588.093333pt;}
.y11_c02264{bottom:606.653333pt;}
.y10_c02264{bottom:625.053333pt;}
.yf_c02264{bottom:643.453333pt;}
.ye_c02264{bottom:670.973333pt;}
.yd_c02264{bottom:698.493333pt;}
.yc_c02264{bottom:726.213333pt;}
.yb_c02264{bottom:753.733333pt;}
.ya_c02264{bottom:781.413333pt;}
.y9_c02264{bottom:808.933333pt;}
.y8_c02264{bottom:836.613333pt;}
.y7_c02264{bottom:864.133333pt;}
.y6_c02264{bottom:891.813333pt;}
.y5_c02264{bottom:919.333333pt;}
.y4_c02264{bottom:947.040000pt;}
.h6_c02264{height:18.400000pt;}
.h8_c02264{height:18.432000pt;}
.h2_c02264{height:20.000000pt;}
.h9_c02264{height:36.800000pt;}
.h5_c02264{height:37.600000pt;}
.h1_c02264{height:43.441250pt;}
.h3_c02264{height:57.375000pt;}
.h4_c02264{height:62.812500pt;}
.h7_c02264{height:64.500000pt;}
.h0_c02264{height:1056.000000pt;}
.w1_c02264{width:59.232000pt;}
.w4_c02264{width:70.240000pt;}
.w7_c02264{width:81.792000pt;}
.w5_c02264{width:83.872000pt;}
.w6_c02264{width:85.440000pt;}
.w2_c02264{width:226.266667pt;}
.w3_c02264{width:252.386667pt;}
.w0_c02264{width:816.000000pt;}
.x0_c02264{left:0.000000pt;}
.xf_c02264{left:7.040000pt;}
.x12_c02264{left:13.760000pt;}
.x3_c02264{left:14.720000pt;}
.x10_c02264{left:16.160000pt;}
.x14_c02264{left:19.040000pt;}
.x1d_c02264{left:22.880000pt;}
.x21_c02264{left:24.960000pt;}
.x23_c02264{left:26.240000pt;}
.x18_c02264{left:31.040000pt;}
.xe_c02264{left:35.040000pt;}
.x17_c02264{left:36.800000pt;}
.x16_c02264{left:37.920000pt;}
.x20_c02264{left:40.800000pt;}
.x1f_c02264{left:41.920000pt;}
.x19_c02264{left:54.720000pt;}
.x1e_c02264{left:61.920000pt;}
.x1b_c02264{left:64.480000pt;}
.x15_c02264{left:66.240000pt;}
.x1c_c02264{left:68.480000pt;}
.x1a_c02264{left:70.720000pt;}
.x25_c02264{left:85.120000pt;}
.x22_c02264{left:88.480000pt;}
.xa_c02264{left:91.680000pt;}
.xc_c02264{left:92.826667pt;}
.x24_c02264{left:95.360000pt;}
.x1_c02264{left:113.472000pt;}
.x9_c02264{left:159.386667pt;}
.x4_c02264{left:166.266667pt;}
.x8_c02264{left:246.106667pt;}
.x7_c02264{left:270.466667pt;}
.xb_c02264{left:386.306667pt;}
.x6_c02264{left:391.266667pt;}
.x5_c02264{left:434.466667pt;}
.x11_c02264{left:470.813333pt;}
.x13_c02264{left:556.893333pt;}
.xd_c02264{left:639.333333pt;}
.x2_c02264{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02265 {
    display:none;
  }
  .loading-indicator_c02265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02265 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02265 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02265" -> "#page-container .classname_c02265")
 */
.pf_c02265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02265 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02265 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02265 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02265 {overflow:visible;}
  }
}
.c_c02265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02265 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02265:after { /* webkit #35443 */
  content: '';
}
.t_c02265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02265 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02265 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02265 { /* info for Javascript */
  display:none;
}
.l_c02265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02265:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02265 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02265.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02265;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02265{font-family:ff1_c02265;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02265;src:url('chunks/assets/font_9d4a81ee59c594e36fa704de.woff2')format("woff");}.ff2_c02265{font-family:ff2_c02265;line-height:1.112305;font-style:normal;font-weight: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_c02265;src:url('chunks/assets/font_01a289746f1c0c6336faf3c0.woff2')format("woff");}.ff3_c02265{font-family:ff3_c02265;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_c02265;src:url('chunks/assets/font_97a46c1b3aad043ffcb7ecf9.woff2')format("woff");}.ff4_c02265{font-family:ff4_c02265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02265{vertical-align:0.000000px;}
.ls1_c02265{letter-spacing:-0.288000px;}
.ls0_c02265{letter-spacing:0.000000px;}
.sc__c02265{text-shadow:none;}
.sc0_c02265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02265{-webkit-text-stroke:0px transparent;}
.sc0_c02265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02265{word-spacing:-18.000000px;}
.ws1_c02265{word-spacing:0.000000px;}
._1_c02265{margin-left:-1.224000px;}
._2_c02265{width:1.044000px;}
._4_c02265{width:2.916000px;}
._0_c02265{width:4.248000px;}
._3_c02265{width:5.256000px;}
._b_c02265{width:6.264000px;}
._7_c02265{width:8.928000px;}
._8_c02265{width:10.008000px;}
._5_c02265{width:11.664000px;}
._6_c02265{width:13.392000px;}
._a_c02265{width:16.560000px;}
._c_c02265{width:19.296000px;}
._d_c02265{width:20.340000px;}
._9_c02265{width:22.248000px;}
.fc1_c02265{color:rgb(192,80,77);}
.fc3_c02265{color:rgb(255,255,255);}
.fc2_c02265{color:rgb(17,17,17);}
.fc0_c02265{color:rgb(0,0,0);}
.fs0_c02265{font-size:66.240000px;}
.fs1_c02265{font-size:72.000000px;}
.y0_c02265{bottom:0.000000px;}
.y1a_c02265{bottom:4.140000px;}
.y17_c02265{bottom:4.500000px;}
.y3_c02265{bottom:4.680000px;}
.y18_c02265{bottom:5.040000px;}
.y15_c02265{bottom:5.400000px;}
.y21_c02265{bottom:24.840000px;}
.y20_c02265{bottom:25.200000px;}
.y14_c02265{bottom:26.100000px;}
.y2_c02265{bottom:41.796000px;}
.y1_c02265{bottom:75.456000px;}
.y2e_c02265{bottom:124.056000px;}
.y2d_c02265{bottom:155.010000px;}
.y2c_c02265{bottom:186.150000px;}
.y2b_c02265{bottom:217.110000px;}
.y2a_c02265{bottom:248.250000px;}
.y29_c02265{bottom:269.130000px;}
.y28_c02265{bottom:289.875000px;}
.y27_c02265{bottom:310.575000px;}
.y26_c02265{bottom:331.275000px;}
.y25_c02265{bottom:348.195000px;}
.y24_c02265{bottom:369.615000px;}
.y23_c02265{bottom:391.035000px;}
.y22_c02265{bottom:412.455000px;}
.y1f_c02265{bottom:454.755000px;}
.y1e_c02265{bottom:496.875000px;}
.y1d_c02265{bottom:518.295000px;}
.y1c_c02265{bottom:539.745000px;}
.y1b_c02265{bottom:561.165000px;}
.y19_c02265{bottom:582.585000px;}
.y13_c02265{bottom:604.005000px;}
.y16_c02265{bottom:625.605000px;}
.y12_c02265{bottom:661.605000px;}
.y11_c02265{bottom:682.485000px;}
.y10_c02265{bottom:703.185000px;}
.yf_c02265{bottom:723.885000px;}
.ye_c02265{bottom:754.845000px;}
.yd_c02265{bottom:785.805000px;}
.yc_c02265{bottom:816.990000px;}
.yb_c02265{bottom:847.950000px;}
.ya_c02265{bottom:879.090000px;}
.y9_c02265{bottom:910.050000px;}
.y8_c02265{bottom:941.190000px;}
.y7_c02265{bottom:972.150000px;}
.y6_c02265{bottom:1003.290000px;}
.y5_c02265{bottom:1034.250000px;}
.y4_c02265{bottom:1065.420000px;}
.h6_c02265{height:20.700000px;}
.h8_c02265{height:20.736000px;}
.h2_c02265{height:22.500000px;}
.h9_c02265{height:41.400000px;}
.h5_c02265{height:42.300000px;}
.h1_c02265{height:48.871406px;}
.h3_c02265{height:64.546875px;}
.h4_c02265{height:70.664062px;}
.h7_c02265{height:72.562500px;}
.h0_c02265{height:1188.000000px;}
.w1_c02265{width:66.636000px;}
.w4_c02265{width:79.020000px;}
.w7_c02265{width:92.016000px;}
.w5_c02265{width:94.356000px;}
.w6_c02265{width:96.120000px;}
.w2_c02265{width:254.550000px;}
.w3_c02265{width:283.935000px;}
.w0_c02265{width:918.000000px;}
.x0_c02265{left:0.000000px;}
.xf_c02265{left:7.920000px;}
.x12_c02265{left:15.480000px;}
.x3_c02265{left:16.560000px;}
.x10_c02265{left:18.180000px;}
.x14_c02265{left:21.420000px;}
.x1d_c02265{left:25.740000px;}
.x21_c02265{left:28.080000px;}
.x23_c02265{left:29.520000px;}
.x18_c02265{left:34.920000px;}
.xe_c02265{left:39.420000px;}
.x17_c02265{left:41.400000px;}
.x16_c02265{left:42.660000px;}
.x20_c02265{left:45.900000px;}
.x1f_c02265{left:47.160000px;}
.x19_c02265{left:61.560000px;}
.x1e_c02265{left:69.660000px;}
.x1b_c02265{left:72.540000px;}
.x15_c02265{left:74.520000px;}
.x1c_c02265{left:77.040000px;}
.x1a_c02265{left:79.560000px;}
.x25_c02265{left:95.760000px;}
.x22_c02265{left:99.540000px;}
.xa_c02265{left:103.140000px;}
.xc_c02265{left:104.430000px;}
.x24_c02265{left:107.280000px;}
.x1_c02265{left:127.656000px;}
.x9_c02265{left:179.310000px;}
.x26_c02265{left:180.750000px;}
.x4_c02265{left:187.050000px;}
.x8_c02265{left:276.870000px;}
.x7_c02265{left:300.855000px;}
.xb_c02265{left:434.595000px;}
.x6_c02265{left:440.175000px;}
.x5_c02265{left:488.775000px;}
.x11_c02265{left:529.665000px;}
.x13_c02265{left:626.505000px;}
.xd_c02265{left:719.250000px;}
.x2_c02265{left:820.950000px;}
@media print{
.v0_c02265{vertical-align:0.000000pt;}
.ls1_c02265{letter-spacing:-0.256000pt;}
.ls0_c02265{letter-spacing:0.000000pt;}
.ws0_c02265{word-spacing:-16.000000pt;}
.ws1_c02265{word-spacing:0.000000pt;}
._1_c02265{margin-left:-1.088000pt;}
._2_c02265{width:0.928000pt;}
._4_c02265{width:2.592000pt;}
._0_c02265{width:3.776000pt;}
._3_c02265{width:4.672000pt;}
._b_c02265{width:5.568000pt;}
._7_c02265{width:7.936000pt;}
._8_c02265{width:8.896000pt;}
._5_c02265{width:10.368000pt;}
._6_c02265{width:11.904000pt;}
._a_c02265{width:14.720000pt;}
._c_c02265{width:17.152000pt;}
._d_c02265{width:18.080000pt;}
._9_c02265{width:19.776000pt;}
.fs0_c02265{font-size:58.880000pt;}
.fs1_c02265{font-size:64.000000pt;}
.y0_c02265{bottom:0.000000pt;}
.y1a_c02265{bottom:3.680000pt;}
.y17_c02265{bottom:4.000000pt;}
.y3_c02265{bottom:4.160000pt;}
.y18_c02265{bottom:4.480000pt;}
.y15_c02265{bottom:4.800000pt;}
.y21_c02265{bottom:22.080000pt;}
.y20_c02265{bottom:22.400000pt;}
.y14_c02265{bottom:23.200000pt;}
.y2_c02265{bottom:37.152000pt;}
.y1_c02265{bottom:67.072000pt;}
.y2e_c02265{bottom:110.272000pt;}
.y2d_c02265{bottom:137.786667pt;}
.y2c_c02265{bottom:165.466667pt;}
.y2b_c02265{bottom:192.986667pt;}
.y2a_c02265{bottom:220.666667pt;}
.y29_c02265{bottom:239.226667pt;}
.y28_c02265{bottom:257.666667pt;}
.y27_c02265{bottom:276.066667pt;}
.y26_c02265{bottom:294.466667pt;}
.y25_c02265{bottom:309.506667pt;}
.y24_c02265{bottom:328.546667pt;}
.y23_c02265{bottom:347.586667pt;}
.y22_c02265{bottom:366.626667pt;}
.y1f_c02265{bottom:404.226667pt;}
.y1e_c02265{bottom:441.666667pt;}
.y1d_c02265{bottom:460.706667pt;}
.y1c_c02265{bottom:479.773333pt;}
.y1b_c02265{bottom:498.813333pt;}
.y19_c02265{bottom:517.853333pt;}
.y13_c02265{bottom:536.893333pt;}
.y16_c02265{bottom:556.093333pt;}
.y12_c02265{bottom:588.093333pt;}
.y11_c02265{bottom:606.653333pt;}
.y10_c02265{bottom:625.053333pt;}
.yf_c02265{bottom:643.453333pt;}
.ye_c02265{bottom:670.973333pt;}
.yd_c02265{bottom:698.493333pt;}
.yc_c02265{bottom:726.213333pt;}
.yb_c02265{bottom:753.733333pt;}
.ya_c02265{bottom:781.413333pt;}
.y9_c02265{bottom:808.933333pt;}
.y8_c02265{bottom:836.613333pt;}
.y7_c02265{bottom:864.133333pt;}
.y6_c02265{bottom:891.813333pt;}
.y5_c02265{bottom:919.333333pt;}
.y4_c02265{bottom:947.040000pt;}
.h6_c02265{height:18.400000pt;}
.h8_c02265{height:18.432000pt;}
.h2_c02265{height:20.000000pt;}
.h9_c02265{height:36.800000pt;}
.h5_c02265{height:37.600000pt;}
.h1_c02265{height:43.441250pt;}
.h3_c02265{height:57.375000pt;}
.h4_c02265{height:62.812500pt;}
.h7_c02265{height:64.500000pt;}
.h0_c02265{height:1056.000000pt;}
.w1_c02265{width:59.232000pt;}
.w4_c02265{width:70.240000pt;}
.w7_c02265{width:81.792000pt;}
.w5_c02265{width:83.872000pt;}
.w6_c02265{width:85.440000pt;}
.w2_c02265{width:226.266667pt;}
.w3_c02265{width:252.386667pt;}
.w0_c02265{width:816.000000pt;}
.x0_c02265{left:0.000000pt;}
.xf_c02265{left:7.040000pt;}
.x12_c02265{left:13.760000pt;}
.x3_c02265{left:14.720000pt;}
.x10_c02265{left:16.160000pt;}
.x14_c02265{left:19.040000pt;}
.x1d_c02265{left:22.880000pt;}
.x21_c02265{left:24.960000pt;}
.x23_c02265{left:26.240000pt;}
.x18_c02265{left:31.040000pt;}
.xe_c02265{left:35.040000pt;}
.x17_c02265{left:36.800000pt;}
.x16_c02265{left:37.920000pt;}
.x20_c02265{left:40.800000pt;}
.x1f_c02265{left:41.920000pt;}
.x19_c02265{left:54.720000pt;}
.x1e_c02265{left:61.920000pt;}
.x1b_c02265{left:64.480000pt;}
.x15_c02265{left:66.240000pt;}
.x1c_c02265{left:68.480000pt;}
.x1a_c02265{left:70.720000pt;}
.x25_c02265{left:85.120000pt;}
.x22_c02265{left:88.480000pt;}
.xa_c02265{left:91.680000pt;}
.xc_c02265{left:92.826667pt;}
.x24_c02265{left:95.360000pt;}
.x1_c02265{left:113.472000pt;}
.x9_c02265{left:159.386667pt;}
.x26_c02265{left:160.666667pt;}
.x4_c02265{left:166.266667pt;}
.x8_c02265{left:246.106667pt;}
.x7_c02265{left:267.426667pt;}
.xb_c02265{left:386.306667pt;}
.x6_c02265{left:391.266667pt;}
.x5_c02265{left:434.466667pt;}
.x11_c02265{left:470.813333pt;}
.x13_c02265{left:556.893333pt;}
.xd_c02265{left:639.333333pt;}
.x2_c02265{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02266 {
    display:none;
  }
  .loading-indicator_c02266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02266 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02266 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02266" -> "#page-container .classname_c02266")
 */
.pf_c02266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02266 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02266 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02266 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02266 {overflow:visible;}
  }
}
.c_c02266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02266 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02266:after { /* webkit #35443 */
  content: '';
}
.t_c02266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02266 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02266 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02266 { /* info for Javascript */
  display:none;
}
.l_c02266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02266:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02266 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02266.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02266;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02266{font-family:ff1_c02266;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02266;src:url('chunks/assets/font_599d7f87680346535d8390a9.woff2')format("woff");}.ff2_c02266{font-family:ff2_c02266;line-height:1.112305;font-style:normal;font-weight: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_c02266;src:url('chunks/assets/font_9489fe0fe8b15d123363298a.woff2')format("woff");}.ff3_c02266{font-family:ff3_c02266;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_c02266;src:url('chunks/assets/font_3ec305c6526cc343e5ffe18d.woff2')format("woff");}.ff4_c02266{font-family:ff4_c02266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02266{vertical-align:0.000000px;}
.ls1_c02266{letter-spacing:-0.216000px;}
.ls0_c02266{letter-spacing:0.000000px;}
.sc__c02266{text-shadow:none;}
.sc0_c02266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02266{-webkit-text-stroke:0px transparent;}
.sc0_c02266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02266{word-spacing:-18.000000px;}
.ws1_c02266{word-spacing:-17.784000px;}
.ws2_c02266{word-spacing:0.000000px;}
._3_c02266{margin-left:-1.440000px;}
._1_c02266{width:1.440000px;}
._7_c02266{width:4.680000px;}
._8_c02266{width:5.772000px;}
._0_c02266{width:6.840000px;}
._2_c02266{width:8.064000px;}
._6_c02266{width:9.648000px;}
._5_c02266{width:10.728000px;}
._b_c02266{width:12.240000px;}
._a_c02266{width:13.680000px;}
._9_c02266{width:15.048000px;}
._4_c02266{width:16.128000px;}
.fc1_c02266{color:rgb(192,80,77);}
.fc3_c02266{color:rgb(255,255,255);}
.fc2_c02266{color:rgb(17,17,17);}
.fc0_c02266{color:rgb(0,0,0);}
.fs0_c02266{font-size:66.240000px;}
.fs1_c02266{font-size:72.000000px;}
.y0_c02266{bottom:0.000000px;}
.y1a_c02266{bottom:4.140000px;}
.y17_c02266{bottom:4.500000px;}
.y3_c02266{bottom:4.680000px;}
.y18_c02266{bottom:5.040000px;}
.y15_c02266{bottom:5.400000px;}
.y21_c02266{bottom:24.840000px;}
.y20_c02266{bottom:25.200000px;}
.y14_c02266{bottom:26.100000px;}
.y2_c02266{bottom:41.796000px;}
.y1_c02266{bottom:75.456000px;}
.y2e_c02266{bottom:124.056000px;}
.y2d_c02266{bottom:155.010000px;}
.y2c_c02266{bottom:186.150000px;}
.y2b_c02266{bottom:217.110000px;}
.y2a_c02266{bottom:248.250000px;}
.y29_c02266{bottom:269.130000px;}
.y28_c02266{bottom:289.875000px;}
.y27_c02266{bottom:310.575000px;}
.y26_c02266{bottom:331.275000px;}
.y25_c02266{bottom:348.195000px;}
.y24_c02266{bottom:369.615000px;}
.y23_c02266{bottom:391.035000px;}
.y22_c02266{bottom:412.455000px;}
.y1f_c02266{bottom:454.755000px;}
.y1e_c02266{bottom:496.875000px;}
.y1d_c02266{bottom:518.295000px;}
.y1c_c02266{bottom:539.745000px;}
.y1b_c02266{bottom:561.165000px;}
.y19_c02266{bottom:582.585000px;}
.y13_c02266{bottom:604.005000px;}
.y16_c02266{bottom:625.605000px;}
.y12_c02266{bottom:661.605000px;}
.y11_c02266{bottom:682.485000px;}
.y10_c02266{bottom:703.185000px;}
.yf_c02266{bottom:723.885000px;}
.ye_c02266{bottom:754.845000px;}
.yd_c02266{bottom:785.805000px;}
.yc_c02266{bottom:816.990000px;}
.yb_c02266{bottom:847.950000px;}
.ya_c02266{bottom:879.090000px;}
.y9_c02266{bottom:910.050000px;}
.y8_c02266{bottom:941.190000px;}
.y7_c02266{bottom:972.150000px;}
.y6_c02266{bottom:1003.290000px;}
.y5_c02266{bottom:1034.250000px;}
.y4_c02266{bottom:1065.420000px;}
.h6_c02266{height:20.700000px;}
.h8_c02266{height:20.736000px;}
.h2_c02266{height:22.500000px;}
.h9_c02266{height:41.400000px;}
.h5_c02266{height:42.300000px;}
.h1_c02266{height:48.871406px;}
.h3_c02266{height:64.546875px;}
.h4_c02266{height:70.664062px;}
.h7_c02266{height:72.562500px;}
.h0_c02266{height:1188.000000px;}
.w1_c02266{width:66.636000px;}
.w4_c02266{width:79.020000px;}
.w7_c02266{width:92.016000px;}
.w5_c02266{width:94.356000px;}
.w6_c02266{width:96.120000px;}
.w2_c02266{width:254.550000px;}
.w3_c02266{width:283.935000px;}
.w0_c02266{width:918.000000px;}
.x0_c02266{left:0.000000px;}
.xf_c02266{left:7.920000px;}
.x12_c02266{left:15.480000px;}
.x3_c02266{left:16.560000px;}
.x10_c02266{left:18.180000px;}
.x14_c02266{left:21.420000px;}
.x1d_c02266{left:25.740000px;}
.x21_c02266{left:28.080000px;}
.x23_c02266{left:29.520000px;}
.x18_c02266{left:34.920000px;}
.xe_c02266{left:39.420000px;}
.x17_c02266{left:41.400000px;}
.x16_c02266{left:42.660000px;}
.x20_c02266{left:45.900000px;}
.x1f_c02266{left:47.160000px;}
.x19_c02266{left:61.560000px;}
.x1e_c02266{left:69.660000px;}
.x1b_c02266{left:72.540000px;}
.x15_c02266{left:74.520000px;}
.x1c_c02266{left:77.040000px;}
.x1a_c02266{left:79.560000px;}
.x25_c02266{left:95.760000px;}
.x22_c02266{left:99.540000px;}
.xa_c02266{left:103.140000px;}
.xc_c02266{left:104.430000px;}
.x24_c02266{left:107.280000px;}
.x1_c02266{left:127.656000px;}
.x9_c02266{left:179.310000px;}
.x4_c02266{left:180.750000px;}
.x26_c02266{left:187.050000px;}
.x8_c02266{left:276.870000px;}
.x7_c02266{left:289.290000px;}
.xb_c02266{left:434.595000px;}
.x6_c02266{left:440.175000px;}
.x5_c02266{left:488.775000px;}
.x11_c02266{left:529.665000px;}
.x13_c02266{left:626.505000px;}
.xd_c02266{left:719.250000px;}
.x2_c02266{left:820.950000px;}
@media print{
.v0_c02266{vertical-align:0.000000pt;}
.ls1_c02266{letter-spacing:-0.192000pt;}
.ls0_c02266{letter-spacing:0.000000pt;}
.ws0_c02266{word-spacing:-16.000000pt;}
.ws1_c02266{word-spacing:-15.808000pt;}
.ws2_c02266{word-spacing:0.000000pt;}
._3_c02266{margin-left:-1.280000pt;}
._1_c02266{width:1.280000pt;}
._7_c02266{width:4.160000pt;}
._8_c02266{width:5.130667pt;}
._0_c02266{width:6.080000pt;}
._2_c02266{width:7.168000pt;}
._6_c02266{width:8.576000pt;}
._5_c02266{width:9.536000pt;}
._b_c02266{width:10.880000pt;}
._a_c02266{width:12.160000pt;}
._9_c02266{width:13.376000pt;}
._4_c02266{width:14.336000pt;}
.fs0_c02266{font-size:58.880000pt;}
.fs1_c02266{font-size:64.000000pt;}
.y0_c02266{bottom:0.000000pt;}
.y1a_c02266{bottom:3.680000pt;}
.y17_c02266{bottom:4.000000pt;}
.y3_c02266{bottom:4.160000pt;}
.y18_c02266{bottom:4.480000pt;}
.y15_c02266{bottom:4.800000pt;}
.y21_c02266{bottom:22.080000pt;}
.y20_c02266{bottom:22.400000pt;}
.y14_c02266{bottom:23.200000pt;}
.y2_c02266{bottom:37.152000pt;}
.y1_c02266{bottom:67.072000pt;}
.y2e_c02266{bottom:110.272000pt;}
.y2d_c02266{bottom:137.786667pt;}
.y2c_c02266{bottom:165.466667pt;}
.y2b_c02266{bottom:192.986667pt;}
.y2a_c02266{bottom:220.666667pt;}
.y29_c02266{bottom:239.226667pt;}
.y28_c02266{bottom:257.666667pt;}
.y27_c02266{bottom:276.066667pt;}
.y26_c02266{bottom:294.466667pt;}
.y25_c02266{bottom:309.506667pt;}
.y24_c02266{bottom:328.546667pt;}
.y23_c02266{bottom:347.586667pt;}
.y22_c02266{bottom:366.626667pt;}
.y1f_c02266{bottom:404.226667pt;}
.y1e_c02266{bottom:441.666667pt;}
.y1d_c02266{bottom:460.706667pt;}
.y1c_c02266{bottom:479.773333pt;}
.y1b_c02266{bottom:498.813333pt;}
.y19_c02266{bottom:517.853333pt;}
.y13_c02266{bottom:536.893333pt;}
.y16_c02266{bottom:556.093333pt;}
.y12_c02266{bottom:588.093333pt;}
.y11_c02266{bottom:606.653333pt;}
.y10_c02266{bottom:625.053333pt;}
.yf_c02266{bottom:643.453333pt;}
.ye_c02266{bottom:670.973333pt;}
.yd_c02266{bottom:698.493333pt;}
.yc_c02266{bottom:726.213333pt;}
.yb_c02266{bottom:753.733333pt;}
.ya_c02266{bottom:781.413333pt;}
.y9_c02266{bottom:808.933333pt;}
.y8_c02266{bottom:836.613333pt;}
.y7_c02266{bottom:864.133333pt;}
.y6_c02266{bottom:891.813333pt;}
.y5_c02266{bottom:919.333333pt;}
.y4_c02266{bottom:947.040000pt;}
.h6_c02266{height:18.400000pt;}
.h8_c02266{height:18.432000pt;}
.h2_c02266{height:20.000000pt;}
.h9_c02266{height:36.800000pt;}
.h5_c02266{height:37.600000pt;}
.h1_c02266{height:43.441250pt;}
.h3_c02266{height:57.375000pt;}
.h4_c02266{height:62.812500pt;}
.h7_c02266{height:64.500000pt;}
.h0_c02266{height:1056.000000pt;}
.w1_c02266{width:59.232000pt;}
.w4_c02266{width:70.240000pt;}
.w7_c02266{width:81.792000pt;}
.w5_c02266{width:83.872000pt;}
.w6_c02266{width:85.440000pt;}
.w2_c02266{width:226.266667pt;}
.w3_c02266{width:252.386667pt;}
.w0_c02266{width:816.000000pt;}
.x0_c02266{left:0.000000pt;}
.xf_c02266{left:7.040000pt;}
.x12_c02266{left:13.760000pt;}
.x3_c02266{left:14.720000pt;}
.x10_c02266{left:16.160000pt;}
.x14_c02266{left:19.040000pt;}
.x1d_c02266{left:22.880000pt;}
.x21_c02266{left:24.960000pt;}
.x23_c02266{left:26.240000pt;}
.x18_c02266{left:31.040000pt;}
.xe_c02266{left:35.040000pt;}
.x17_c02266{left:36.800000pt;}
.x16_c02266{left:37.920000pt;}
.x20_c02266{left:40.800000pt;}
.x1f_c02266{left:41.920000pt;}
.x19_c02266{left:54.720000pt;}
.x1e_c02266{left:61.920000pt;}
.x1b_c02266{left:64.480000pt;}
.x15_c02266{left:66.240000pt;}
.x1c_c02266{left:68.480000pt;}
.x1a_c02266{left:70.720000pt;}
.x25_c02266{left:85.120000pt;}
.x22_c02266{left:88.480000pt;}
.xa_c02266{left:91.680000pt;}
.xc_c02266{left:92.826667pt;}
.x24_c02266{left:95.360000pt;}
.x1_c02266{left:113.472000pt;}
.x9_c02266{left:159.386667pt;}
.x4_c02266{left:160.666667pt;}
.x26_c02266{left:166.266667pt;}
.x8_c02266{left:246.106667pt;}
.x7_c02266{left:257.146667pt;}
.xb_c02266{left:386.306667pt;}
.x6_c02266{left:391.266667pt;}
.x5_c02266{left:434.466667pt;}
.x11_c02266{left:470.813333pt;}
.x13_c02266{left:556.893333pt;}
.xd_c02266{left:639.333333pt;}
.x2_c02266{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02267 {
    display:none;
  }
  .loading-indicator_c02267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02267 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02267 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02267" -> "#page-container .classname_c02267")
 */
.pf_c02267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02267 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02267 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02267 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02267 {overflow:visible;}
  }
}
.c_c02267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02267 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02267:after { /* webkit #35443 */
  content: '';
}
.t_c02267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02267 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02267 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02267 { /* info for Javascript */
  display:none;
}
.l_c02267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02267:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02267 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02267.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02267;src:url('chunks/assets/font_0d4738a292e1122084f34b75.woff2')format("woff");}.ff1_c02267{font-family:ff1_c02267;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02267;src:url('chunks/assets/font_f0b91e00a238bfb6ed98de41.woff2')format("woff");}.ff2_c02267{font-family:ff2_c02267;line-height:1.112305;font-style:normal;font-weight: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_c02267;src:url('chunks/assets/font_4ab65a5904a90525d93f6f62.woff2')format("woff");}.ff3_c02267{font-family:ff3_c02267;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_c02267;src:url('chunks/assets/font_54785c2d042ea0e134c1205b.woff2')format("woff");}.ff4_c02267{font-family:ff4_c02267;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02267{vertical-align:0.000000px;}
.ls0_c02267{letter-spacing:0.000000px;}
.sc__c02267{text-shadow:none;}
.sc0_c02267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02267{-webkit-text-stroke:0px transparent;}
.sc0_c02267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02267{word-spacing:0.000000px;}
._7_c02267{margin-left:-1.440000px;}
._2_c02267{width:1.512000px;}
._e_c02267{width:2.640000px;}
._d_c02267{width:3.888000px;}
._c_c02267{width:5.112000px;}
._a_c02267{width:6.480000px;}
._0_c02267{width:7.488000px;}
._1_c02267{width:8.640000px;}
._b_c02267{width:9.660000px;}
._5_c02267{width:15.624000px;}
._6_c02267{width:16.776000px;}
._3_c02267{width:20.160000px;}
._4_c02267{width:22.104000px;}
._8_c02267{width:27.216000px;}
._9_c02267{width:28.224000px;}
.fc1_c02267{color:rgb(192,80,77);}
.fc3_c02267{color:rgb(255,255,255);}
.fc2_c02267{color:rgb(17,17,17);}
.fc0_c02267{color:rgb(0,0,0);}
.fs0_c02267{font-size:66.240000px;}
.fs1_c02267{font-size:72.000000px;}
.y0_c02267{bottom:0.000000px;}
.y19_c02267{bottom:4.140000px;}
.y16_c02267{bottom:4.500000px;}
.y3_c02267{bottom:4.680000px;}
.y17_c02267{bottom:4.860000px;}
.y14_c02267{bottom:5.220000px;}
.y20_c02267{bottom:24.840000px;}
.y1f_c02267{bottom:25.200000px;}
.y13_c02267{bottom:25.920000px;}
.y2_c02267{bottom:41.796000px;}
.y1_c02267{bottom:75.456000px;}
.y2e_c02267{bottom:124.056000px;}
.y2d_c02267{bottom:155.010000px;}
.y2c_c02267{bottom:186.150000px;}
.y2b_c02267{bottom:217.110000px;}
.y2a_c02267{bottom:248.250000px;}
.y29_c02267{bottom:279.255000px;}
.y28_c02267{bottom:300.135000px;}
.y27_c02267{bottom:320.835000px;}
.y26_c02267{bottom:341.535000px;}
.y25_c02267{bottom:362.235000px;}
.y24_c02267{bottom:379.155000px;}
.y23_c02267{bottom:400.755000px;}
.y22_c02267{bottom:422.175000px;}
.y21_c02267{bottom:443.595000px;}
.y1e_c02267{bottom:485.715000px;}
.y1d_c02267{bottom:527.835000px;}
.y1c_c02267{bottom:549.285000px;}
.y1b_c02267{bottom:570.705000px;}
.y1a_c02267{bottom:592.305000px;}
.y18_c02267{bottom:613.725000px;}
.y12_c02267{bottom:635.145000px;}
.y15_c02267{bottom:656.565000px;}
.y11_c02267{bottom:692.745000px;}
.y10_c02267{bottom:713.625000px;}
.yf_c02267{bottom:734.325000px;}
.ye_c02267{bottom:755.025000px;}
.yd_c02267{bottom:785.805000px;}
.yc_c02267{bottom:816.990000px;}
.yb_c02267{bottom:847.950000px;}
.ya_c02267{bottom:879.090000px;}
.y9_c02267{bottom:910.050000px;}
.y8_c02267{bottom:941.190000px;}
.y7_c02267{bottom:972.150000px;}
.y6_c02267{bottom:1003.290000px;}
.y5_c02267{bottom:1034.250000px;}
.y4_c02267{bottom:1065.420000px;}
.h6_c02267{height:20.700000px;}
.h8_c02267{height:20.736000px;}
.h2_c02267{height:22.500000px;}
.h9_c02267{height:41.400000px;}
.h5_c02267{height:42.120000px;}
.h1_c02267{height:48.871406px;}
.h3_c02267{height:64.546875px;}
.h4_c02267{height:70.664062px;}
.h7_c02267{height:72.562500px;}
.h0_c02267{height:1188.000000px;}
.w1_c02267{width:66.636000px;}
.w4_c02267{width:79.020000px;}
.w7_c02267{width:92.016000px;}
.w5_c02267{width:94.356000px;}
.w6_c02267{width:96.120000px;}
.w2_c02267{width:254.550000px;}
.w3_c02267{width:283.935000px;}
.w0_c02267{width:918.000000px;}
.x0_c02267{left:0.000000px;}
.xf_c02267{left:7.920000px;}
.x12_c02267{left:15.480000px;}
.x3_c02267{left:16.560000px;}
.x10_c02267{left:18.180000px;}
.x14_c02267{left:21.420000px;}
.x1d_c02267{left:25.740000px;}
.x21_c02267{left:28.080000px;}
.x23_c02267{left:29.520000px;}
.x18_c02267{left:34.920000px;}
.xe_c02267{left:39.420000px;}
.x17_c02267{left:41.400000px;}
.x16_c02267{left:42.660000px;}
.x20_c02267{left:45.900000px;}
.x1f_c02267{left:47.160000px;}
.x19_c02267{left:61.560000px;}
.x1e_c02267{left:69.660000px;}
.x1b_c02267{left:72.540000px;}
.x15_c02267{left:74.520000px;}
.x1c_c02267{left:77.040000px;}
.x1a_c02267{left:79.560000px;}
.x25_c02267{left:95.760000px;}
.x22_c02267{left:99.540000px;}
.xa_c02267{left:103.140000px;}
.xc_c02267{left:104.430000px;}
.x24_c02267{left:107.280000px;}
.x1_c02267{left:127.656000px;}
.x9_c02267{left:179.310000px;}
.x4_c02267{left:180.750000px;}
.x26_c02267{left:187.050000px;}
.x8_c02267{left:276.870000px;}
.x7_c02267{left:287.310000px;}
.xb_c02267{left:434.595000px;}
.x6_c02267{left:440.175000px;}
.x5_c02267{left:488.775000px;}
.x11_c02267{left:529.665000px;}
.x13_c02267{left:626.505000px;}
.xd_c02267{left:719.250000px;}
.x2_c02267{left:820.950000px;}
@media print{
.v0_c02267{vertical-align:0.000000pt;}
.ls0_c02267{letter-spacing:0.000000pt;}
.ws0_c02267{word-spacing:0.000000pt;}
._7_c02267{margin-left:-1.280000pt;}
._2_c02267{width:1.344000pt;}
._e_c02267{width:2.346667pt;}
._d_c02267{width:3.456000pt;}
._c_c02267{width:4.544000pt;}
._a_c02267{width:5.760000pt;}
._0_c02267{width:6.656000pt;}
._1_c02267{width:7.680000pt;}
._b_c02267{width:8.586667pt;}
._5_c02267{width:13.888000pt;}
._6_c02267{width:14.912000pt;}
._3_c02267{width:17.920000pt;}
._4_c02267{width:19.648000pt;}
._8_c02267{width:24.192000pt;}
._9_c02267{width:25.088000pt;}
.fs0_c02267{font-size:58.880000pt;}
.fs1_c02267{font-size:64.000000pt;}
.y0_c02267{bottom:0.000000pt;}
.y19_c02267{bottom:3.680000pt;}
.y16_c02267{bottom:4.000000pt;}
.y3_c02267{bottom:4.160000pt;}
.y17_c02267{bottom:4.320000pt;}
.y14_c02267{bottom:4.640000pt;}
.y20_c02267{bottom:22.080000pt;}
.y1f_c02267{bottom:22.400000pt;}
.y13_c02267{bottom:23.040000pt;}
.y2_c02267{bottom:37.152000pt;}
.y1_c02267{bottom:67.072000pt;}
.y2e_c02267{bottom:110.272000pt;}
.y2d_c02267{bottom:137.786667pt;}
.y2c_c02267{bottom:165.466667pt;}
.y2b_c02267{bottom:192.986667pt;}
.y2a_c02267{bottom:220.666667pt;}
.y29_c02267{bottom:248.226667pt;}
.y28_c02267{bottom:266.786667pt;}
.y27_c02267{bottom:285.186667pt;}
.y26_c02267{bottom:303.586667pt;}
.y25_c02267{bottom:321.986667pt;}
.y24_c02267{bottom:337.026667pt;}
.y23_c02267{bottom:356.226667pt;}
.y22_c02267{bottom:375.266667pt;}
.y21_c02267{bottom:394.306667pt;}
.y1e_c02267{bottom:431.746667pt;}
.y1d_c02267{bottom:469.186667pt;}
.y1c_c02267{bottom:488.253333pt;}
.y1b_c02267{bottom:507.293333pt;}
.y1a_c02267{bottom:526.493333pt;}
.y18_c02267{bottom:545.533333pt;}
.y12_c02267{bottom:564.573333pt;}
.y15_c02267{bottom:583.613333pt;}
.y11_c02267{bottom:615.773333pt;}
.y10_c02267{bottom:634.333333pt;}
.yf_c02267{bottom:652.733333pt;}
.ye_c02267{bottom:671.133333pt;}
.yd_c02267{bottom:698.493333pt;}
.yc_c02267{bottom:726.213333pt;}
.yb_c02267{bottom:753.733333pt;}
.ya_c02267{bottom:781.413333pt;}
.y9_c02267{bottom:808.933333pt;}
.y8_c02267{bottom:836.613333pt;}
.y7_c02267{bottom:864.133333pt;}
.y6_c02267{bottom:891.813333pt;}
.y5_c02267{bottom:919.333333pt;}
.y4_c02267{bottom:947.040000pt;}
.h6_c02267{height:18.400000pt;}
.h8_c02267{height:18.432000pt;}
.h2_c02267{height:20.000000pt;}
.h9_c02267{height:36.800000pt;}
.h5_c02267{height:37.440000pt;}
.h1_c02267{height:43.441250pt;}
.h3_c02267{height:57.375000pt;}
.h4_c02267{height:62.812500pt;}
.h7_c02267{height:64.500000pt;}
.h0_c02267{height:1056.000000pt;}
.w1_c02267{width:59.232000pt;}
.w4_c02267{width:70.240000pt;}
.w7_c02267{width:81.792000pt;}
.w5_c02267{width:83.872000pt;}
.w6_c02267{width:85.440000pt;}
.w2_c02267{width:226.266667pt;}
.w3_c02267{width:252.386667pt;}
.w0_c02267{width:816.000000pt;}
.x0_c02267{left:0.000000pt;}
.xf_c02267{left:7.040000pt;}
.x12_c02267{left:13.760000pt;}
.x3_c02267{left:14.720000pt;}
.x10_c02267{left:16.160000pt;}
.x14_c02267{left:19.040000pt;}
.x1d_c02267{left:22.880000pt;}
.x21_c02267{left:24.960000pt;}
.x23_c02267{left:26.240000pt;}
.x18_c02267{left:31.040000pt;}
.xe_c02267{left:35.040000pt;}
.x17_c02267{left:36.800000pt;}
.x16_c02267{left:37.920000pt;}
.x20_c02267{left:40.800000pt;}
.x1f_c02267{left:41.920000pt;}
.x19_c02267{left:54.720000pt;}
.x1e_c02267{left:61.920000pt;}
.x1b_c02267{left:64.480000pt;}
.x15_c02267{left:66.240000pt;}
.x1c_c02267{left:68.480000pt;}
.x1a_c02267{left:70.720000pt;}
.x25_c02267{left:85.120000pt;}
.x22_c02267{left:88.480000pt;}
.xa_c02267{left:91.680000pt;}
.xc_c02267{left:92.826667pt;}
.x24_c02267{left:95.360000pt;}
.x1_c02267{left:113.472000pt;}
.x9_c02267{left:159.386667pt;}
.x4_c02267{left:160.666667pt;}
.x26_c02267{left:166.266667pt;}
.x8_c02267{left:246.106667pt;}
.x7_c02267{left:255.386667pt;}
.xb_c02267{left:386.306667pt;}
.x6_c02267{left:391.266667pt;}
.x5_c02267{left:434.466667pt;}
.x11_c02267{left:470.813333pt;}
.x13_c02267{left:556.893333pt;}
.xd_c02267{left:639.333333pt;}
.x2_c02267{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02268 {
    display:none;
  }
  .loading-indicator_c02268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02268 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02268 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02268" -> "#page-container .classname_c02268")
 */
.pf_c02268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02268 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02268 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02268 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02268 {overflow:visible;}
  }
}
.c_c02268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02268 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02268:after { /* webkit #35443 */
  content: '';
}
.t_c02268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02268 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02268 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02268 { /* info for Javascript */
  display:none;
}
.l_c02268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02268:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02268 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02268.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02268;src:url('chunks/assets/font_f92eef65ba27cf4373ef563f.woff2')format("woff");}.ff1_c02268{font-family:ff1_c02268;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02268;src:url('chunks/assets/font_bad79ba981a95dc240b8c80c.woff2')format("woff");}.ff2_c02268{font-family:ff2_c02268;line-height:1.112305;font-style:normal;font-weight: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_c02268;src:url('chunks/assets/font_36961835b228f174b206ff33.woff2')format("woff");}.ff3_c02268{font-family:ff3_c02268;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_c02268;src:url('chunks/assets/font_12fd988aea3da6daea8e403c.woff2')format("woff");}.ff4_c02268{font-family:ff4_c02268;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02268{vertical-align:0.000000px;}
.ls0_c02268{letter-spacing:0.000000px;}
.ls1_c02268{letter-spacing:0.256200px;}
.sc__c02268{text-shadow:none;}
.sc0_c02268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02268{-webkit-text-stroke:0px transparent;}
.sc0_c02268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02268{word-spacing:-15.226440px;}
.ws1_c02268{word-spacing:0.000000px;}
._0_c02268{margin-left:-1.439520px;}
._3_c02268{width:1.008000px;}
._8_c02268{width:2.520000px;}
._6_c02268{width:5.544000px;}
._7_c02268{width:7.200000px;}
._1_c02268{width:11.160000px;}
._2_c02268{width:12.384000px;}
._9_c02268{width:13.680000px;}
._4_c02268{width:15.624000px;}
._5_c02268{width:16.776000px;}
._a_c02268{width:19.655520px;}
.fc1_c02268{color:rgb(192,80,77);}
.fc3_c02268{color:rgb(255,255,255);}
.fc2_c02268{color:rgb(17,17,17);}
.fc0_c02268{color:rgb(0,0,0);}
.fs0_c02268{font-size:66.240000px;}
.fs1_c02268{font-size:72.000000px;}
.y0_c02268{bottom:0.000000px;}
.y17_c02268{bottom:4.140000px;}
.y14_c02268{bottom:4.500000px;}
.y3_c02268{bottom:4.680000px;}
.y15_c02268{bottom:4.860000px;}
.y12_c02268{bottom:5.220000px;}
.y1e_c02268{bottom:24.840000px;}
.y1d_c02268{bottom:25.200000px;}
.y11_c02268{bottom:25.920000px;}
.y2_c02268{bottom:41.796000px;}
.y1_c02268{bottom:75.456000px;}
.y2e_c02268{bottom:124.056000px;}
.y2d_c02268{bottom:155.010000px;}
.y2c_c02268{bottom:186.150000px;}
.y2b_c02268{bottom:217.110000px;}
.y2a_c02268{bottom:248.250000px;}
.y29_c02268{bottom:279.255000px;}
.y28_c02268{bottom:310.395000px;}
.y27_c02268{bottom:341.355000px;}
.y26_c02268{bottom:362.235000px;}
.y25_c02268{bottom:382.935000px;}
.y24_c02268{bottom:403.635000px;}
.y23_c02268{bottom:424.335000px;}
.y22_c02268{bottom:441.255000px;}
.y21_c02268{bottom:462.855000px;}
.y20_c02268{bottom:484.275000px;}
.y1f_c02268{bottom:505.695000px;}
.y1c_c02268{bottom:547.845000px;}
.y1b_c02268{bottom:589.965000px;}
.y1a_c02268{bottom:611.385000px;}
.y19_c02268{bottom:632.805000px;}
.y18_c02268{bottom:654.405000px;}
.y16_c02268{bottom:675.825000px;}
.y10_c02268{bottom:697.245000px;}
.y13_c02268{bottom:718.665000px;}
.yf_c02268{bottom:754.845000px;}
.ye_c02268{bottom:775.725000px;}
.yd_c02268{bottom:796.470000px;}
.yc_c02268{bottom:817.170000px;}
.yb_c02268{bottom:847.950000px;}
.ya_c02268{bottom:879.090000px;}
.y9_c02268{bottom:910.050000px;}
.y8_c02268{bottom:941.190000px;}
.y7_c02268{bottom:972.150000px;}
.y6_c02268{bottom:1003.290000px;}
.y5_c02268{bottom:1034.250000px;}
.y4_c02268{bottom:1065.420000px;}
.h6_c02268{height:20.700000px;}
.h2_c02268{height:22.500000px;}
.h8_c02268{height:41.400000px;}
.h9_c02268{height:41.436000px;}
.h5_c02268{height:42.120000px;}
.h1_c02268{height:48.871406px;}
.h3_c02268{height:64.546875px;}
.h4_c02268{height:70.664062px;}
.h7_c02268{height:72.562500px;}
.h0_c02268{height:1188.000000px;}
.w1_c02268{width:66.636000px;}
.w4_c02268{width:79.020000px;}
.w7_c02268{width:92.016000px;}
.w5_c02268{width:94.356000px;}
.w6_c02268{width:96.120000px;}
.w2_c02268{width:254.550000px;}
.w3_c02268{width:283.935000px;}
.w0_c02268{width:918.000000px;}
.x0_c02268{left:0.000000px;}
.xf_c02268{left:7.920000px;}
.x12_c02268{left:15.480000px;}
.x3_c02268{left:16.560000px;}
.x10_c02268{left:18.180000px;}
.x14_c02268{left:21.420000px;}
.x1d_c02268{left:25.740000px;}
.x21_c02268{left:28.080000px;}
.x23_c02268{left:29.520000px;}
.x18_c02268{left:34.920000px;}
.xe_c02268{left:39.420000px;}
.x17_c02268{left:41.400000px;}
.x16_c02268{left:42.660000px;}
.x20_c02268{left:45.900000px;}
.x1f_c02268{left:47.160000px;}
.x19_c02268{left:61.560000px;}
.x1e_c02268{left:69.660000px;}
.x1b_c02268{left:72.540000px;}
.x15_c02268{left:74.520000px;}
.x1c_c02268{left:77.040000px;}
.x1a_c02268{left:79.560000px;}
.x25_c02268{left:95.760000px;}
.x22_c02268{left:99.540000px;}
.xa_c02268{left:103.140000px;}
.xc_c02268{left:104.430000px;}
.x24_c02268{left:107.280000px;}
.x1_c02268{left:127.656000px;}
.x9_c02268{left:179.310000px;}
.x4_c02268{left:180.750000px;}
.x26_c02268{left:187.050000px;}
.x8_c02268{left:276.870000px;}
.x7_c02268{left:293.250000px;}
.xb_c02268{left:434.595000px;}
.x6_c02268{left:440.175000px;}
.x5_c02268{left:488.775000px;}
.x11_c02268{left:529.665000px;}
.x13_c02268{left:626.505000px;}
.xd_c02268{left:719.250000px;}
.x2_c02268{left:820.950000px;}
@media print{
.v0_c02268{vertical-align:0.000000pt;}
.ls0_c02268{letter-spacing:0.000000pt;}
.ls1_c02268{letter-spacing:0.227733pt;}
.ws0_c02268{word-spacing:-13.534613pt;}
.ws1_c02268{word-spacing:0.000000pt;}
._0_c02268{margin-left:-1.279573pt;}
._3_c02268{width:0.896000pt;}
._8_c02268{width:2.240000pt;}
._6_c02268{width:4.928000pt;}
._7_c02268{width:6.400000pt;}
._1_c02268{width:9.920000pt;}
._2_c02268{width:11.008000pt;}
._9_c02268{width:12.160000pt;}
._4_c02268{width:13.888000pt;}
._5_c02268{width:14.912000pt;}
._a_c02268{width:17.471573pt;}
.fs0_c02268{font-size:58.880000pt;}
.fs1_c02268{font-size:64.000000pt;}
.y0_c02268{bottom:0.000000pt;}
.y17_c02268{bottom:3.680000pt;}
.y14_c02268{bottom:4.000000pt;}
.y3_c02268{bottom:4.160000pt;}
.y15_c02268{bottom:4.320000pt;}
.y12_c02268{bottom:4.640000pt;}
.y1e_c02268{bottom:22.080000pt;}
.y1d_c02268{bottom:22.400000pt;}
.y11_c02268{bottom:23.040000pt;}
.y2_c02268{bottom:37.152000pt;}
.y1_c02268{bottom:67.072000pt;}
.y2e_c02268{bottom:110.272000pt;}
.y2d_c02268{bottom:137.786667pt;}
.y2c_c02268{bottom:165.466667pt;}
.y2b_c02268{bottom:192.986667pt;}
.y2a_c02268{bottom:220.666667pt;}
.y29_c02268{bottom:248.226667pt;}
.y28_c02268{bottom:275.906667pt;}
.y27_c02268{bottom:303.426667pt;}
.y26_c02268{bottom:321.986667pt;}
.y25_c02268{bottom:340.386667pt;}
.y24_c02268{bottom:358.786667pt;}
.y23_c02268{bottom:377.186667pt;}
.y22_c02268{bottom:392.226667pt;}
.y21_c02268{bottom:411.426667pt;}
.y20_c02268{bottom:430.466667pt;}
.y1f_c02268{bottom:449.506667pt;}
.y1c_c02268{bottom:486.973333pt;}
.y1b_c02268{bottom:524.413333pt;}
.y1a_c02268{bottom:543.453333pt;}
.y19_c02268{bottom:562.493333pt;}
.y18_c02268{bottom:581.693333pt;}
.y16_c02268{bottom:600.733333pt;}
.y10_c02268{bottom:619.773333pt;}
.y13_c02268{bottom:638.813333pt;}
.yf_c02268{bottom:670.973333pt;}
.ye_c02268{bottom:689.533333pt;}
.yd_c02268{bottom:707.973333pt;}
.yc_c02268{bottom:726.373333pt;}
.yb_c02268{bottom:753.733333pt;}
.ya_c02268{bottom:781.413333pt;}
.y9_c02268{bottom:808.933333pt;}
.y8_c02268{bottom:836.613333pt;}
.y7_c02268{bottom:864.133333pt;}
.y6_c02268{bottom:891.813333pt;}
.y5_c02268{bottom:919.333333pt;}
.y4_c02268{bottom:947.040000pt;}
.h6_c02268{height:18.400000pt;}
.h2_c02268{height:20.000000pt;}
.h8_c02268{height:36.800000pt;}
.h9_c02268{height:36.832000pt;}
.h5_c02268{height:37.440000pt;}
.h1_c02268{height:43.441250pt;}
.h3_c02268{height:57.375000pt;}
.h4_c02268{height:62.812500pt;}
.h7_c02268{height:64.500000pt;}
.h0_c02268{height:1056.000000pt;}
.w1_c02268{width:59.232000pt;}
.w4_c02268{width:70.240000pt;}
.w7_c02268{width:81.792000pt;}
.w5_c02268{width:83.872000pt;}
.w6_c02268{width:85.440000pt;}
.w2_c02268{width:226.266667pt;}
.w3_c02268{width:252.386667pt;}
.w0_c02268{width:816.000000pt;}
.x0_c02268{left:0.000000pt;}
.xf_c02268{left:7.040000pt;}
.x12_c02268{left:13.760000pt;}
.x3_c02268{left:14.720000pt;}
.x10_c02268{left:16.160000pt;}
.x14_c02268{left:19.040000pt;}
.x1d_c02268{left:22.880000pt;}
.x21_c02268{left:24.960000pt;}
.x23_c02268{left:26.240000pt;}
.x18_c02268{left:31.040000pt;}
.xe_c02268{left:35.040000pt;}
.x17_c02268{left:36.800000pt;}
.x16_c02268{left:37.920000pt;}
.x20_c02268{left:40.800000pt;}
.x1f_c02268{left:41.920000pt;}
.x19_c02268{left:54.720000pt;}
.x1e_c02268{left:61.920000pt;}
.x1b_c02268{left:64.480000pt;}
.x15_c02268{left:66.240000pt;}
.x1c_c02268{left:68.480000pt;}
.x1a_c02268{left:70.720000pt;}
.x25_c02268{left:85.120000pt;}
.x22_c02268{left:88.480000pt;}
.xa_c02268{left:91.680000pt;}
.xc_c02268{left:92.826667pt;}
.x24_c02268{left:95.360000pt;}
.x1_c02268{left:113.472000pt;}
.x9_c02268{left:159.386667pt;}
.x4_c02268{left:160.666667pt;}
.x26_c02268{left:166.266667pt;}
.x8_c02268{left:246.106667pt;}
.x7_c02268{left:260.666667pt;}
.xb_c02268{left:386.306667pt;}
.x6_c02268{left:391.266667pt;}
.x5_c02268{left:434.466667pt;}
.x11_c02268{left:470.813333pt;}
.x13_c02268{left:556.893333pt;}
.xd_c02268{left:639.333333pt;}
.x2_c02268{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02269 {
    display:none;
  }
  .loading-indicator_c02269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02269 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02269 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02269" -> "#page-container .classname_c02269")
 */
.pf_c02269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02269 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02269 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02269 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02269 {overflow:visible;}
  }
}
.c_c02269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02269 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02269:after { /* webkit #35443 */
  content: '';
}
.t_c02269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02269 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02269 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02269 { /* info for Javascript */
  display:none;
}
.l_c02269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02269:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02269 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02269.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02269;src:url('chunks/assets/font_7057c201508b1649b3a60cd1.woff2')format("woff");}.ff1_c02269{font-family:ff1_c02269;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02269;src:url('chunks/assets/font_56211f48790e8c87857d22ad.woff2')format("woff");}.ff2_c02269{font-family:ff2_c02269;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:ff3_c02269;src:url('chunks/assets/font_4dadf0be39c2c133db855463.woff2')format("woff");}.ff3_c02269{font-family:ff3_c02269;line-height:1.112305;font-style:normal;font-weight: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_c02269;src:url('chunks/assets/font_93c4939501fc11b5a27fee10.woff2')format("woff");}.ff4_c02269{font-family:ff4_c02269;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02269{vertical-align:0.000000px;}
.ls0_c02269{letter-spacing:0.000000px;}
.sc__c02269{text-shadow:none;}
.sc0_c02269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02269{-webkit-text-stroke:0px transparent;}
.sc0_c02269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02269{word-spacing:0.000000px;}
._4_c02269{margin-left:-1.152000px;}
._0_c02269{width:1.008000px;}
._1_c02269{width:2.028000px;}
._5_c02269{width:3.336000px;}
._2_c02269{width:4.536000px;}
._3_c02269{width:5.760000px;}
._b_c02269{width:8.352000px;}
._9_c02269{width:12.024000px;}
._8_c02269{width:13.032000px;}
._a_c02269{width:14.256000px;}
._c_c02269{width:15.264000px;}
._6_c02269{width:21.384000px;}
._7_c02269{width:22.680000px;}
.fc1_c02269{color:rgb(192,80,77);}
.fc3_c02269{color:rgb(255,255,255);}
.fc2_c02269{color:rgb(17,17,17);}
.fc0_c02269{color:rgb(0,0,0);}
.fs0_c02269{font-size:66.240000px;}
.fs1_c02269{font-size:72.000000px;}
.y0_c02269{bottom:0.000000px;}
.y1a_c02269{bottom:4.140000px;}
.y17_c02269{bottom:4.500000px;}
.y3_c02269{bottom:4.680000px;}
.y18_c02269{bottom:5.040000px;}
.y15_c02269{bottom:5.400000px;}
.y21_c02269{bottom:24.840000px;}
.y20_c02269{bottom:25.200000px;}
.y14_c02269{bottom:26.100000px;}
.y2_c02269{bottom:41.796000px;}
.y1_c02269{bottom:75.456000px;}
.y2e_c02269{bottom:124.056000px;}
.y2d_c02269{bottom:155.010000px;}
.y2c_c02269{bottom:186.150000px;}
.y2b_c02269{bottom:217.110000px;}
.y2a_c02269{bottom:248.250000px;}
.y29_c02269{bottom:269.130000px;}
.y28_c02269{bottom:289.875000px;}
.y27_c02269{bottom:310.575000px;}
.y26_c02269{bottom:331.275000px;}
.y25_c02269{bottom:348.195000px;}
.y24_c02269{bottom:369.615000px;}
.y23_c02269{bottom:391.035000px;}
.y22_c02269{bottom:412.455000px;}
.y1f_c02269{bottom:454.755000px;}
.y1e_c02269{bottom:496.875000px;}
.y1d_c02269{bottom:518.295000px;}
.y1c_c02269{bottom:539.745000px;}
.y1b_c02269{bottom:561.165000px;}
.y19_c02269{bottom:582.585000px;}
.y13_c02269{bottom:604.005000px;}
.y16_c02269{bottom:625.605000px;}
.y12_c02269{bottom:661.605000px;}
.y11_c02269{bottom:682.485000px;}
.y10_c02269{bottom:703.185000px;}
.yf_c02269{bottom:723.885000px;}
.ye_c02269{bottom:754.845000px;}
.yd_c02269{bottom:785.805000px;}
.yc_c02269{bottom:816.990000px;}
.yb_c02269{bottom:847.950000px;}
.ya_c02269{bottom:879.090000px;}
.y9_c02269{bottom:910.050000px;}
.y8_c02269{bottom:941.190000px;}
.y7_c02269{bottom:972.150000px;}
.y6_c02269{bottom:1003.290000px;}
.y5_c02269{bottom:1034.250000px;}
.y4_c02269{bottom:1065.420000px;}
.h6_c02269{height:20.700000px;}
.h8_c02269{height:20.736000px;}
.h2_c02269{height:22.500000px;}
.h9_c02269{height:41.400000px;}
.h5_c02269{height:42.300000px;}
.h1_c02269{height:48.871406px;}
.h4_c02269{height:64.546875px;}
.h3_c02269{height:70.664062px;}
.h7_c02269{height:72.562500px;}
.h0_c02269{height:1188.000000px;}
.w1_c02269{width:66.636000px;}
.w4_c02269{width:79.020000px;}
.w7_c02269{width:92.016000px;}
.w5_c02269{width:94.356000px;}
.w6_c02269{width:96.120000px;}
.w2_c02269{width:254.550000px;}
.w3_c02269{width:283.935000px;}
.w0_c02269{width:918.000000px;}
.x0_c02269{left:0.000000px;}
.xf_c02269{left:7.920000px;}
.x12_c02269{left:15.480000px;}
.x3_c02269{left:16.560000px;}
.x10_c02269{left:18.180000px;}
.x14_c02269{left:21.420000px;}
.x1d_c02269{left:25.740000px;}
.x21_c02269{left:28.080000px;}
.x23_c02269{left:29.520000px;}
.x18_c02269{left:34.920000px;}
.xe_c02269{left:39.420000px;}
.x17_c02269{left:41.400000px;}
.x16_c02269{left:42.660000px;}
.x20_c02269{left:45.900000px;}
.x1f_c02269{left:47.160000px;}
.x19_c02269{left:61.560000px;}
.x1e_c02269{left:69.660000px;}
.x1b_c02269{left:72.540000px;}
.x15_c02269{left:74.520000px;}
.x1c_c02269{left:77.040000px;}
.x1a_c02269{left:79.560000px;}
.x25_c02269{left:95.760000px;}
.x22_c02269{left:99.540000px;}
.xa_c02269{left:103.140000px;}
.xc_c02269{left:104.430000px;}
.x24_c02269{left:107.280000px;}
.x1_c02269{left:127.656000px;}
.x9_c02269{left:179.310000px;}
.x4_c02269{left:180.750000px;}
.x26_c02269{left:187.050000px;}
.x8_c02269{left:276.870000px;}
.x7_c02269{left:294.690000px;}
.xb_c02269{left:434.595000px;}
.x6_c02269{left:440.175000px;}
.x5_c02269{left:488.775000px;}
.x11_c02269{left:529.665000px;}
.x13_c02269{left:626.505000px;}
.xd_c02269{left:719.250000px;}
.x2_c02269{left:820.950000px;}
@media print{
.v0_c02269{vertical-align:0.000000pt;}
.ls0_c02269{letter-spacing:0.000000pt;}
.ws0_c02269{word-spacing:0.000000pt;}
._4_c02269{margin-left:-1.024000pt;}
._0_c02269{width:0.896000pt;}
._1_c02269{width:1.802667pt;}
._5_c02269{width:2.965333pt;}
._2_c02269{width:4.032000pt;}
._3_c02269{width:5.120000pt;}
._b_c02269{width:7.424000pt;}
._9_c02269{width:10.688000pt;}
._8_c02269{width:11.584000pt;}
._a_c02269{width:12.672000pt;}
._c_c02269{width:13.568000pt;}
._6_c02269{width:19.008000pt;}
._7_c02269{width:20.160000pt;}
.fs0_c02269{font-size:58.880000pt;}
.fs1_c02269{font-size:64.000000pt;}
.y0_c02269{bottom:0.000000pt;}
.y1a_c02269{bottom:3.680000pt;}
.y17_c02269{bottom:4.000000pt;}
.y3_c02269{bottom:4.160000pt;}
.y18_c02269{bottom:4.480000pt;}
.y15_c02269{bottom:4.800000pt;}
.y21_c02269{bottom:22.080000pt;}
.y20_c02269{bottom:22.400000pt;}
.y14_c02269{bottom:23.200000pt;}
.y2_c02269{bottom:37.152000pt;}
.y1_c02269{bottom:67.072000pt;}
.y2e_c02269{bottom:110.272000pt;}
.y2d_c02269{bottom:137.786667pt;}
.y2c_c02269{bottom:165.466667pt;}
.y2b_c02269{bottom:192.986667pt;}
.y2a_c02269{bottom:220.666667pt;}
.y29_c02269{bottom:239.226667pt;}
.y28_c02269{bottom:257.666667pt;}
.y27_c02269{bottom:276.066667pt;}
.y26_c02269{bottom:294.466667pt;}
.y25_c02269{bottom:309.506667pt;}
.y24_c02269{bottom:328.546667pt;}
.y23_c02269{bottom:347.586667pt;}
.y22_c02269{bottom:366.626667pt;}
.y1f_c02269{bottom:404.226667pt;}
.y1e_c02269{bottom:441.666667pt;}
.y1d_c02269{bottom:460.706667pt;}
.y1c_c02269{bottom:479.773333pt;}
.y1b_c02269{bottom:498.813333pt;}
.y19_c02269{bottom:517.853333pt;}
.y13_c02269{bottom:536.893333pt;}
.y16_c02269{bottom:556.093333pt;}
.y12_c02269{bottom:588.093333pt;}
.y11_c02269{bottom:606.653333pt;}
.y10_c02269{bottom:625.053333pt;}
.yf_c02269{bottom:643.453333pt;}
.ye_c02269{bottom:670.973333pt;}
.yd_c02269{bottom:698.493333pt;}
.yc_c02269{bottom:726.213333pt;}
.yb_c02269{bottom:753.733333pt;}
.ya_c02269{bottom:781.413333pt;}
.y9_c02269{bottom:808.933333pt;}
.y8_c02269{bottom:836.613333pt;}
.y7_c02269{bottom:864.133333pt;}
.y6_c02269{bottom:891.813333pt;}
.y5_c02269{bottom:919.333333pt;}
.y4_c02269{bottom:947.040000pt;}
.h6_c02269{height:18.400000pt;}
.h8_c02269{height:18.432000pt;}
.h2_c02269{height:20.000000pt;}
.h9_c02269{height:36.800000pt;}
.h5_c02269{height:37.600000pt;}
.h1_c02269{height:43.441250pt;}
.h4_c02269{height:57.375000pt;}
.h3_c02269{height:62.812500pt;}
.h7_c02269{height:64.500000pt;}
.h0_c02269{height:1056.000000pt;}
.w1_c02269{width:59.232000pt;}
.w4_c02269{width:70.240000pt;}
.w7_c02269{width:81.792000pt;}
.w5_c02269{width:83.872000pt;}
.w6_c02269{width:85.440000pt;}
.w2_c02269{width:226.266667pt;}
.w3_c02269{width:252.386667pt;}
.w0_c02269{width:816.000000pt;}
.x0_c02269{left:0.000000pt;}
.xf_c02269{left:7.040000pt;}
.x12_c02269{left:13.760000pt;}
.x3_c02269{left:14.720000pt;}
.x10_c02269{left:16.160000pt;}
.x14_c02269{left:19.040000pt;}
.x1d_c02269{left:22.880000pt;}
.x21_c02269{left:24.960000pt;}
.x23_c02269{left:26.240000pt;}
.x18_c02269{left:31.040000pt;}
.xe_c02269{left:35.040000pt;}
.x17_c02269{left:36.800000pt;}
.x16_c02269{left:37.920000pt;}
.x20_c02269{left:40.800000pt;}
.x1f_c02269{left:41.920000pt;}
.x19_c02269{left:54.720000pt;}
.x1e_c02269{left:61.920000pt;}
.x1b_c02269{left:64.480000pt;}
.x15_c02269{left:66.240000pt;}
.x1c_c02269{left:68.480000pt;}
.x1a_c02269{left:70.720000pt;}
.x25_c02269{left:85.120000pt;}
.x22_c02269{left:88.480000pt;}
.xa_c02269{left:91.680000pt;}
.xc_c02269{left:92.826667pt;}
.x24_c02269{left:95.360000pt;}
.x1_c02269{left:113.472000pt;}
.x9_c02269{left:159.386667pt;}
.x4_c02269{left:160.666667pt;}
.x26_c02269{left:166.266667pt;}
.x8_c02269{left:246.106667pt;}
.x7_c02269{left:261.946667pt;}
.xb_c02269{left:386.306667pt;}
.x6_c02269{left:391.266667pt;}
.x5_c02269{left:434.466667pt;}
.x11_c02269{left:470.813333pt;}
.x13_c02269{left:556.893333pt;}
.xd_c02269{left:639.333333pt;}
.x2_c02269{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02270 {
    display:none;
  }
  .loading-indicator_c02270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02270 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02270 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02270" -> "#page-container .classname_c02270")
 */
.pf_c02270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02270 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02270 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02270 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02270 {overflow:visible;}
  }
}
.c_c02270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02270 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02270:after { /* webkit #35443 */
  content: '';
}
.t_c02270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02270 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02270 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02270 { /* info for Javascript */
  display:none;
}
.l_c02270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02270:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02270 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02270.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02270;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02270{font-family:ff1_c02270;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02270;src:url('chunks/assets/font_cd0434fba1c191dbb53c224f.woff2')format("woff");}.ff2_c02270{font-family:ff2_c02270;line-height:1.112305;font-style:normal;font-weight: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_c02270;src:url('chunks/assets/font_560784ee5aa784334603c7ae.woff2')format("woff");}.ff3_c02270{font-family:ff3_c02270;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_c02270;src:url('chunks/assets/font_93c4939501fc11b5a27fee10.woff2')format("woff");}.ff4_c02270{font-family:ff4_c02270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02270{vertical-align:0.000000px;}
.ls0_c02270{letter-spacing:0.000000px;}
.sc__c02270{text-shadow:none;}
.sc0_c02270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02270{-webkit-text-stroke:0px transparent;}
.sc0_c02270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02270{word-spacing:0.000000px;}
._2_c02270{margin-left:-1.368000px;}
._3_c02270{width:1.116000px;}
._a_c02270{width:2.196000px;}
._1_c02270{width:3.456000px;}
._4_c02270{width:4.608000px;}
._9_c02270{width:5.904000px;}
._8_c02270{width:6.984000px;}
._7_c02270{width:8.352000px;}
._6_c02270{width:10.080000px;}
._0_c02270{width:11.088000px;}
._5_c02270{width:22.176000px;}
.fc1_c02270{color:rgb(192,80,77);}
.fc3_c02270{color:rgb(255,255,255);}
.fc2_c02270{color:rgb(17,17,17);}
.fc0_c02270{color:rgb(0,0,0);}
.fs0_c02270{font-size:66.240000px;}
.fs1_c02270{font-size:72.000000px;}
.y0_c02270{bottom:0.000000px;}
.y19_c02270{bottom:4.140000px;}
.y16_c02270{bottom:4.500000px;}
.y3_c02270{bottom:4.680000px;}
.y17_c02270{bottom:4.860000px;}
.y14_c02270{bottom:5.220000px;}
.y20_c02270{bottom:24.840000px;}
.y1f_c02270{bottom:25.200000px;}
.y13_c02270{bottom:25.920000px;}
.y2_c02270{bottom:41.796000px;}
.y1_c02270{bottom:75.456000px;}
.y2e_c02270{bottom:124.056000px;}
.y2d_c02270{bottom:155.010000px;}
.y2c_c02270{bottom:186.150000px;}
.y2b_c02270{bottom:217.110000px;}
.y2a_c02270{bottom:248.250000px;}
.y29_c02270{bottom:279.255000px;}
.y28_c02270{bottom:300.135000px;}
.y27_c02270{bottom:320.835000px;}
.y26_c02270{bottom:341.535000px;}
.y25_c02270{bottom:362.235000px;}
.y24_c02270{bottom:379.155000px;}
.y23_c02270{bottom:400.755000px;}
.y22_c02270{bottom:422.175000px;}
.y21_c02270{bottom:443.595000px;}
.y1e_c02270{bottom:485.715000px;}
.y1d_c02270{bottom:527.835000px;}
.y1c_c02270{bottom:549.285000px;}
.y1b_c02270{bottom:570.705000px;}
.y1a_c02270{bottom:592.305000px;}
.y18_c02270{bottom:613.725000px;}
.y12_c02270{bottom:635.145000px;}
.y15_c02270{bottom:656.565000px;}
.y11_c02270{bottom:692.745000px;}
.y10_c02270{bottom:713.625000px;}
.yf_c02270{bottom:734.325000px;}
.ye_c02270{bottom:755.025000px;}
.yd_c02270{bottom:785.805000px;}
.yc_c02270{bottom:816.990000px;}
.yb_c02270{bottom:847.950000px;}
.ya_c02270{bottom:879.090000px;}
.y9_c02270{bottom:910.050000px;}
.y8_c02270{bottom:941.190000px;}
.y7_c02270{bottom:972.150000px;}
.y6_c02270{bottom:1003.290000px;}
.y5_c02270{bottom:1034.250000px;}
.y4_c02270{bottom:1065.420000px;}
.h6_c02270{height:20.700000px;}
.h8_c02270{height:20.736000px;}
.h2_c02270{height:22.500000px;}
.h9_c02270{height:41.400000px;}
.h5_c02270{height:42.120000px;}
.h1_c02270{height:48.871406px;}
.h3_c02270{height:64.546875px;}
.h4_c02270{height:70.664062px;}
.h7_c02270{height:72.562500px;}
.h0_c02270{height:1188.000000px;}
.w1_c02270{width:66.636000px;}
.w4_c02270{width:79.020000px;}
.w7_c02270{width:92.016000px;}
.w5_c02270{width:94.356000px;}
.w6_c02270{width:96.120000px;}
.w2_c02270{width:254.550000px;}
.w3_c02270{width:283.935000px;}
.w0_c02270{width:918.000000px;}
.x0_c02270{left:0.000000px;}
.xf_c02270{left:7.920000px;}
.x12_c02270{left:15.480000px;}
.x3_c02270{left:16.560000px;}
.x10_c02270{left:18.180000px;}
.x14_c02270{left:21.420000px;}
.x1d_c02270{left:25.740000px;}
.x21_c02270{left:28.080000px;}
.x23_c02270{left:29.520000px;}
.x18_c02270{left:34.920000px;}
.xe_c02270{left:39.420000px;}
.x17_c02270{left:41.400000px;}
.x16_c02270{left:42.660000px;}
.x20_c02270{left:45.900000px;}
.x1f_c02270{left:47.160000px;}
.x19_c02270{left:61.560000px;}
.x1e_c02270{left:69.660000px;}
.x1b_c02270{left:72.540000px;}
.x15_c02270{left:74.520000px;}
.x1c_c02270{left:77.040000px;}
.x1a_c02270{left:79.560000px;}
.x25_c02270{left:95.760000px;}
.x22_c02270{left:99.540000px;}
.xa_c02270{left:103.140000px;}
.xc_c02270{left:104.430000px;}
.x24_c02270{left:107.280000px;}
.x1_c02270{left:127.656000px;}
.x9_c02270{left:179.310000px;}
.x4_c02270{left:180.750000px;}
.x26_c02270{left:187.050000px;}
.x8_c02270{left:276.870000px;}
.x7_c02270{left:280.470000px;}
.xb_c02270{left:434.595000px;}
.x6_c02270{left:440.175000px;}
.x5_c02270{left:488.775000px;}
.x11_c02270{left:529.665000px;}
.x13_c02270{left:626.505000px;}
.xd_c02270{left:719.250000px;}
.x2_c02270{left:820.950000px;}
@media print{
.v0_c02270{vertical-align:0.000000pt;}
.ls0_c02270{letter-spacing:0.000000pt;}
.ws0_c02270{word-spacing:0.000000pt;}
._2_c02270{margin-left:-1.216000pt;}
._3_c02270{width:0.992000pt;}
._a_c02270{width:1.952000pt;}
._1_c02270{width:3.072000pt;}
._4_c02270{width:4.096000pt;}
._9_c02270{width:5.248000pt;}
._8_c02270{width:6.208000pt;}
._7_c02270{width:7.424000pt;}
._6_c02270{width:8.960000pt;}
._0_c02270{width:9.856000pt;}
._5_c02270{width:19.712000pt;}
.fs0_c02270{font-size:58.880000pt;}
.fs1_c02270{font-size:64.000000pt;}
.y0_c02270{bottom:0.000000pt;}
.y19_c02270{bottom:3.680000pt;}
.y16_c02270{bottom:4.000000pt;}
.y3_c02270{bottom:4.160000pt;}
.y17_c02270{bottom:4.320000pt;}
.y14_c02270{bottom:4.640000pt;}
.y20_c02270{bottom:22.080000pt;}
.y1f_c02270{bottom:22.400000pt;}
.y13_c02270{bottom:23.040000pt;}
.y2_c02270{bottom:37.152000pt;}
.y1_c02270{bottom:67.072000pt;}
.y2e_c02270{bottom:110.272000pt;}
.y2d_c02270{bottom:137.786667pt;}
.y2c_c02270{bottom:165.466667pt;}
.y2b_c02270{bottom:192.986667pt;}
.y2a_c02270{bottom:220.666667pt;}
.y29_c02270{bottom:248.226667pt;}
.y28_c02270{bottom:266.786667pt;}
.y27_c02270{bottom:285.186667pt;}
.y26_c02270{bottom:303.586667pt;}
.y25_c02270{bottom:321.986667pt;}
.y24_c02270{bottom:337.026667pt;}
.y23_c02270{bottom:356.226667pt;}
.y22_c02270{bottom:375.266667pt;}
.y21_c02270{bottom:394.306667pt;}
.y1e_c02270{bottom:431.746667pt;}
.y1d_c02270{bottom:469.186667pt;}
.y1c_c02270{bottom:488.253333pt;}
.y1b_c02270{bottom:507.293333pt;}
.y1a_c02270{bottom:526.493333pt;}
.y18_c02270{bottom:545.533333pt;}
.y12_c02270{bottom:564.573333pt;}
.y15_c02270{bottom:583.613333pt;}
.y11_c02270{bottom:615.773333pt;}
.y10_c02270{bottom:634.333333pt;}
.yf_c02270{bottom:652.733333pt;}
.ye_c02270{bottom:671.133333pt;}
.yd_c02270{bottom:698.493333pt;}
.yc_c02270{bottom:726.213333pt;}
.yb_c02270{bottom:753.733333pt;}
.ya_c02270{bottom:781.413333pt;}
.y9_c02270{bottom:808.933333pt;}
.y8_c02270{bottom:836.613333pt;}
.y7_c02270{bottom:864.133333pt;}
.y6_c02270{bottom:891.813333pt;}
.y5_c02270{bottom:919.333333pt;}
.y4_c02270{bottom:947.040000pt;}
.h6_c02270{height:18.400000pt;}
.h8_c02270{height:18.432000pt;}
.h2_c02270{height:20.000000pt;}
.h9_c02270{height:36.800000pt;}
.h5_c02270{height:37.440000pt;}
.h1_c02270{height:43.441250pt;}
.h3_c02270{height:57.375000pt;}
.h4_c02270{height:62.812500pt;}
.h7_c02270{height:64.500000pt;}
.h0_c02270{height:1056.000000pt;}
.w1_c02270{width:59.232000pt;}
.w4_c02270{width:70.240000pt;}
.w7_c02270{width:81.792000pt;}
.w5_c02270{width:83.872000pt;}
.w6_c02270{width:85.440000pt;}
.w2_c02270{width:226.266667pt;}
.w3_c02270{width:252.386667pt;}
.w0_c02270{width:816.000000pt;}
.x0_c02270{left:0.000000pt;}
.xf_c02270{left:7.040000pt;}
.x12_c02270{left:13.760000pt;}
.x3_c02270{left:14.720000pt;}
.x10_c02270{left:16.160000pt;}
.x14_c02270{left:19.040000pt;}
.x1d_c02270{left:22.880000pt;}
.x21_c02270{left:24.960000pt;}
.x23_c02270{left:26.240000pt;}
.x18_c02270{left:31.040000pt;}
.xe_c02270{left:35.040000pt;}
.x17_c02270{left:36.800000pt;}
.x16_c02270{left:37.920000pt;}
.x20_c02270{left:40.800000pt;}
.x1f_c02270{left:41.920000pt;}
.x19_c02270{left:54.720000pt;}
.x1e_c02270{left:61.920000pt;}
.x1b_c02270{left:64.480000pt;}
.x15_c02270{left:66.240000pt;}
.x1c_c02270{left:68.480000pt;}
.x1a_c02270{left:70.720000pt;}
.x25_c02270{left:85.120000pt;}
.x22_c02270{left:88.480000pt;}
.xa_c02270{left:91.680000pt;}
.xc_c02270{left:92.826667pt;}
.x24_c02270{left:95.360000pt;}
.x1_c02270{left:113.472000pt;}
.x9_c02270{left:159.386667pt;}
.x4_c02270{left:160.666667pt;}
.x26_c02270{left:166.266667pt;}
.x8_c02270{left:246.106667pt;}
.x7_c02270{left:249.306667pt;}
.xb_c02270{left:386.306667pt;}
.x6_c02270{left:391.266667pt;}
.x5_c02270{left:434.466667pt;}
.x11_c02270{left:470.813333pt;}
.x13_c02270{left:556.893333pt;}
.xd_c02270{left:639.333333pt;}
.x2_c02270{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02271 {
    display:none;
  }
  .loading-indicator_c02271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02271 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02271 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02271" -> "#page-container .classname_c02271")
 */
.pf_c02271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02271 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02271 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02271 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02271 {overflow:visible;}
  }
}
.c_c02271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02271 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02271:after { /* webkit #35443 */
  content: '';
}
.t_c02271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02271 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02271 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02271 { /* info for Javascript */
  display:none;
}
.l_c02271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02271:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02271 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02271.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02271;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02271{font-family:ff1_c02271;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02271;src:url('chunks/assets/font_f6591c6997ceaa992f6c289d.woff2')format("woff");}.ff2_c02271{font-family:ff2_c02271;line-height:1.112305;font-style:normal;font-weight: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_c02271;src:url('chunks/assets/font_7b509b7bbc2543ae6dd88f57.woff2')format("woff");}.ff3_c02271{font-family:ff3_c02271;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_c02271;src:url('chunks/assets/font_5b71403320222a8d9a33ffad.woff2')format("woff");}.ff4_c02271{font-family:ff4_c02271;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02271{vertical-align:0.000000px;}
.ls0_c02271{letter-spacing:0.000000px;}
.sc__c02271{text-shadow:none;}
.sc0_c02271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02271{-webkit-text-stroke:0px transparent;}
.sc0_c02271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02271{word-spacing:-18.000000px;}
.ws1_c02271{word-spacing:0.000000px;}
._11_c02271{margin-left:-2.160000px;}
._0_c02271{margin-left:-1.008000px;}
._3_c02271{width:1.296000px;}
._e_c02271{width:2.304000px;}
._a_c02271{width:3.456000px;}
._b_c02271{width:4.680000px;}
._6_c02271{width:6.192000px;}
._5_c02271{width:7.632000px;}
._7_c02271{width:8.640000px;}
._c_c02271{width:9.864000px;}
._d_c02271{width:10.944000px;}
._8_c02271{width:12.888000px;}
._9_c02271{width:14.256000px;}
._1_c02271{width:16.992000px;}
._2_c02271{width:28.800000px;}
._4_c02271{width:29.808000px;}
._f_c02271{width:37.728000px;}
._10_c02271{width:38.808000px;}
.fc1_c02271{color:rgb(192,80,77);}
.fc3_c02271{color:rgb(255,255,255);}
.fc2_c02271{color:rgb(17,17,17);}
.fc0_c02271{color:rgb(0,0,0);}
.fs0_c02271{font-size:66.240000px;}
.fs1_c02271{font-size:72.000000px;}
.y0_c02271{bottom:0.000000px;}
.y16_c02271{bottom:4.140000px;}
.y13_c02271{bottom:4.500000px;}
.y3_c02271{bottom:4.680000px;}
.y14_c02271{bottom:5.040000px;}
.y11_c02271{bottom:5.400000px;}
.y1d_c02271{bottom:24.840000px;}
.y1c_c02271{bottom:25.200000px;}
.y10_c02271{bottom:26.100000px;}
.y2_c02271{bottom:41.796000px;}
.y1_c02271{bottom:75.456000px;}
.y2e_c02271{bottom:124.056000px;}
.y2d_c02271{bottom:155.010000px;}
.y2c_c02271{bottom:186.150000px;}
.y2b_c02271{bottom:217.110000px;}
.y2a_c02271{bottom:248.250000px;}
.y29_c02271{bottom:279.255000px;}
.y28_c02271{bottom:310.395000px;}
.y27_c02271{bottom:341.355000px;}
.y26_c02271{bottom:372.495000px;}
.y25_c02271{bottom:393.375000px;}
.y24_c02271{bottom:414.075000px;}
.y23_c02271{bottom:434.775000px;}
.y22_c02271{bottom:455.475000px;}
.y21_c02271{bottom:472.395000px;}
.y20_c02271{bottom:493.815000px;}
.y1f_c02271{bottom:515.235000px;}
.y1e_c02271{bottom:536.685000px;}
.y1b_c02271{bottom:578.805000px;}
.y1a_c02271{bottom:621.105000px;}
.y19_c02271{bottom:642.525000px;}
.y18_c02271{bottom:663.945000px;}
.y17_c02271{bottom:685.365000px;}
.y15_c02271{bottom:706.785000px;}
.yf_c02271{bottom:728.205000px;}
.y12_c02271{bottom:749.805000px;}
.ye_c02271{bottom:785.805000px;}
.yd_c02271{bottom:806.730000px;}
.yc_c02271{bottom:827.430000px;}
.yb_c02271{bottom:848.130000px;}
.ya_c02271{bottom:879.090000px;}
.y9_c02271{bottom:910.050000px;}
.y8_c02271{bottom:941.190000px;}
.y7_c02271{bottom:972.150000px;}
.y6_c02271{bottom:1003.290000px;}
.y5_c02271{bottom:1034.250000px;}
.y4_c02271{bottom:1065.420000px;}
.h6_c02271{height:20.700000px;}
.h9_c02271{height:20.736000px;}
.h2_c02271{height:22.500000px;}
.h8_c02271{height:41.400000px;}
.h5_c02271{height:42.300000px;}
.h1_c02271{height:48.871406px;}
.h3_c02271{height:64.546875px;}
.h4_c02271{height:70.664062px;}
.h7_c02271{height:72.562500px;}
.h0_c02271{height:1188.000000px;}
.w1_c02271{width:66.636000px;}
.w4_c02271{width:79.020000px;}
.w7_c02271{width:92.016000px;}
.w5_c02271{width:94.356000px;}
.w6_c02271{width:96.120000px;}
.w2_c02271{width:254.550000px;}
.w3_c02271{width:283.935000px;}
.w0_c02271{width:918.000000px;}
.x0_c02271{left:0.000000px;}
.xf_c02271{left:7.920000px;}
.x12_c02271{left:15.480000px;}
.x3_c02271{left:16.560000px;}
.x10_c02271{left:18.180000px;}
.x14_c02271{left:21.420000px;}
.x1d_c02271{left:25.740000px;}
.x21_c02271{left:28.080000px;}
.x23_c02271{left:29.520000px;}
.x18_c02271{left:34.920000px;}
.xe_c02271{left:39.420000px;}
.x17_c02271{left:41.400000px;}
.x16_c02271{left:42.660000px;}
.x20_c02271{left:45.900000px;}
.x1f_c02271{left:47.160000px;}
.x19_c02271{left:61.560000px;}
.x1e_c02271{left:69.660000px;}
.x1b_c02271{left:72.540000px;}
.x15_c02271{left:74.520000px;}
.x1c_c02271{left:77.040000px;}
.x1a_c02271{left:79.560000px;}
.x25_c02271{left:95.760000px;}
.x22_c02271{left:99.540000px;}
.xa_c02271{left:103.140000px;}
.xc_c02271{left:104.430000px;}
.x24_c02271{left:107.280000px;}
.x1_c02271{left:127.656000px;}
.x9_c02271{left:179.310000px;}
.x4_c02271{left:180.750000px;}
.x26_c02271{left:187.050000px;}
.x8_c02271{left:276.870000px;}
.x7_c02271{left:280.650000px;}
.xb_c02271{left:434.595000px;}
.x6_c02271{left:440.175000px;}
.x5_c02271{left:488.775000px;}
.x11_c02271{left:529.665000px;}
.x13_c02271{left:626.505000px;}
.xd_c02271{left:719.250000px;}
.x2_c02271{left:820.950000px;}
@media print{
.v0_c02271{vertical-align:0.000000pt;}
.ls0_c02271{letter-spacing:0.000000pt;}
.ws0_c02271{word-spacing:-16.000000pt;}
.ws1_c02271{word-spacing:0.000000pt;}
._11_c02271{margin-left:-1.920000pt;}
._0_c02271{margin-left:-0.896000pt;}
._3_c02271{width:1.152000pt;}
._e_c02271{width:2.048000pt;}
._a_c02271{width:3.072000pt;}
._b_c02271{width:4.160000pt;}
._6_c02271{width:5.504000pt;}
._5_c02271{width:6.784000pt;}
._7_c02271{width:7.680000pt;}
._c_c02271{width:8.768000pt;}
._d_c02271{width:9.728000pt;}
._8_c02271{width:11.456000pt;}
._9_c02271{width:12.672000pt;}
._1_c02271{width:15.104000pt;}
._2_c02271{width:25.600000pt;}
._4_c02271{width:26.496000pt;}
._f_c02271{width:33.536000pt;}
._10_c02271{width:34.496000pt;}
.fs0_c02271{font-size:58.880000pt;}
.fs1_c02271{font-size:64.000000pt;}
.y0_c02271{bottom:0.000000pt;}
.y16_c02271{bottom:3.680000pt;}
.y13_c02271{bottom:4.000000pt;}
.y3_c02271{bottom:4.160000pt;}
.y14_c02271{bottom:4.480000pt;}
.y11_c02271{bottom:4.800000pt;}
.y1d_c02271{bottom:22.080000pt;}
.y1c_c02271{bottom:22.400000pt;}
.y10_c02271{bottom:23.200000pt;}
.y2_c02271{bottom:37.152000pt;}
.y1_c02271{bottom:67.072000pt;}
.y2e_c02271{bottom:110.272000pt;}
.y2d_c02271{bottom:137.786667pt;}
.y2c_c02271{bottom:165.466667pt;}
.y2b_c02271{bottom:192.986667pt;}
.y2a_c02271{bottom:220.666667pt;}
.y29_c02271{bottom:248.226667pt;}
.y28_c02271{bottom:275.906667pt;}
.y27_c02271{bottom:303.426667pt;}
.y26_c02271{bottom:331.106667pt;}
.y25_c02271{bottom:349.666667pt;}
.y24_c02271{bottom:368.066667pt;}
.y23_c02271{bottom:386.466667pt;}
.y22_c02271{bottom:404.866667pt;}
.y21_c02271{bottom:419.906667pt;}
.y20_c02271{bottom:438.946667pt;}
.y1f_c02271{bottom:457.986667pt;}
.y1e_c02271{bottom:477.053333pt;}
.y1b_c02271{bottom:514.493333pt;}
.y1a_c02271{bottom:552.093333pt;}
.y19_c02271{bottom:571.133333pt;}
.y18_c02271{bottom:590.173333pt;}
.y17_c02271{bottom:609.213333pt;}
.y15_c02271{bottom:628.253333pt;}
.yf_c02271{bottom:647.293333pt;}
.y12_c02271{bottom:666.493333pt;}
.ye_c02271{bottom:698.493333pt;}
.yd_c02271{bottom:717.093333pt;}
.yc_c02271{bottom:735.493333pt;}
.yb_c02271{bottom:753.893333pt;}
.ya_c02271{bottom:781.413333pt;}
.y9_c02271{bottom:808.933333pt;}
.y8_c02271{bottom:836.613333pt;}
.y7_c02271{bottom:864.133333pt;}
.y6_c02271{bottom:891.813333pt;}
.y5_c02271{bottom:919.333333pt;}
.y4_c02271{bottom:947.040000pt;}
.h6_c02271{height:18.400000pt;}
.h9_c02271{height:18.432000pt;}
.h2_c02271{height:20.000000pt;}
.h8_c02271{height:36.800000pt;}
.h5_c02271{height:37.600000pt;}
.h1_c02271{height:43.441250pt;}
.h3_c02271{height:57.375000pt;}
.h4_c02271{height:62.812500pt;}
.h7_c02271{height:64.500000pt;}
.h0_c02271{height:1056.000000pt;}
.w1_c02271{width:59.232000pt;}
.w4_c02271{width:70.240000pt;}
.w7_c02271{width:81.792000pt;}
.w5_c02271{width:83.872000pt;}
.w6_c02271{width:85.440000pt;}
.w2_c02271{width:226.266667pt;}
.w3_c02271{width:252.386667pt;}
.w0_c02271{width:816.000000pt;}
.x0_c02271{left:0.000000pt;}
.xf_c02271{left:7.040000pt;}
.x12_c02271{left:13.760000pt;}
.x3_c02271{left:14.720000pt;}
.x10_c02271{left:16.160000pt;}
.x14_c02271{left:19.040000pt;}
.x1d_c02271{left:22.880000pt;}
.x21_c02271{left:24.960000pt;}
.x23_c02271{left:26.240000pt;}
.x18_c02271{left:31.040000pt;}
.xe_c02271{left:35.040000pt;}
.x17_c02271{left:36.800000pt;}
.x16_c02271{left:37.920000pt;}
.x20_c02271{left:40.800000pt;}
.x1f_c02271{left:41.920000pt;}
.x19_c02271{left:54.720000pt;}
.x1e_c02271{left:61.920000pt;}
.x1b_c02271{left:64.480000pt;}
.x15_c02271{left:66.240000pt;}
.x1c_c02271{left:68.480000pt;}
.x1a_c02271{left:70.720000pt;}
.x25_c02271{left:85.120000pt;}
.x22_c02271{left:88.480000pt;}
.xa_c02271{left:91.680000pt;}
.xc_c02271{left:92.826667pt;}
.x24_c02271{left:95.360000pt;}
.x1_c02271{left:113.472000pt;}
.x9_c02271{left:159.386667pt;}
.x4_c02271{left:160.666667pt;}
.x26_c02271{left:166.266667pt;}
.x8_c02271{left:246.106667pt;}
.x7_c02271{left:249.466667pt;}
.xb_c02271{left:386.306667pt;}
.x6_c02271{left:391.266667pt;}
.x5_c02271{left:434.466667pt;}
.x11_c02271{left:470.813333pt;}
.x13_c02271{left:556.893333pt;}
.xd_c02271{left:639.333333pt;}
.x2_c02271{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02272 {
    display:none;
  }
  .loading-indicator_c02272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02272 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02272 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02272" -> "#page-container .classname_c02272")
 */
.pf_c02272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02272 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02272 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02272 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02272 {overflow:visible;}
  }
}
.c_c02272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02272 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02272:after { /* webkit #35443 */
  content: '';
}
.t_c02272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02272 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02272 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02272 { /* info for Javascript */
  display:none;
}
.l_c02272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02272:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02272 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02272.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02272;src:url('chunks/assets/font_8d1ddbbbbc493781a023a5ce.woff2')format("woff");}.ff1_c02272{font-family:ff1_c02272;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02272;src:url('chunks/assets/font_db5c5df46ef2b8d474cdb590.woff2')format("woff");}.ff2_c02272{font-family:ff2_c02272;line-height:1.112305;font-style:normal;font-weight: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_c02272;src:url('chunks/assets/font_6b2432df2b7e97788106e4ab.woff2')format("woff");}.ff3_c02272{font-family:ff3_c02272;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_c02272;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff4_c02272{font-family:ff4_c02272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02272{vertical-align:0.000000px;}
.ls0_c02272{letter-spacing:0.000000px;}
.sc__c02272{text-shadow:none;}
.sc0_c02272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02272{-webkit-text-stroke:0px transparent;}
.sc0_c02272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02272{word-spacing:0.000000px;}
._1_c02272{margin-left:-1.440000px;}
._3_c02272{width:1.080000px;}
._7_c02272{width:2.160000px;}
._b_c02272{width:3.240000px;}
._2_c02272{width:4.248000px;}
._0_c02272{width:5.400000px;}
._6_c02272{width:6.552000px;}
._8_c02272{width:7.920000px;}
._9_c02272{width:9.072000px;}
._a_c02272{width:10.152000px;}
._4_c02272{width:11.376000px;}
._5_c02272{width:12.780000px;}
._c_c02272{width:14.040000px;}
._d_c02272{width:15.624000px;}
._f_c02272{width:24.624000px;}
._e_c02272{width:25.632000px;}
.fc1_c02272{color:rgb(192,80,77);}
.fc3_c02272{color:rgb(255,255,255);}
.fc2_c02272{color:rgb(17,17,17);}
.fc0_c02272{color:rgb(0,0,0);}
.fs0_c02272{font-size:66.240000px;}
.fs1_c02272{font-size:72.000000px;}
.y0_c02272{bottom:0.000000px;}
.y13_c02272{bottom:4.140000px;}
.yf_c02272{bottom:4.320000px;}
.y11_c02272{bottom:4.500000px;}
.y3_c02272{bottom:4.680000px;}
.y10_c02272{bottom:5.040000px;}
.yd_c02272{bottom:5.400000px;}
.y1a_c02272{bottom:24.840000px;}
.y19_c02272{bottom:25.200000px;}
.yc_c02272{bottom:25.920000px;}
.y2_c02272{bottom:41.796000px;}
.y1_c02272{bottom:75.456000px;}
.y30_c02272{bottom:113.616000px;}
.y2f_c02272{bottom:144.756000px;}
.y2e_c02272{bottom:175.710000px;}
.y2d_c02272{bottom:206.850000px;}
.y2c_c02272{bottom:237.810000px;}
.y2b_c02272{bottom:268.950000px;}
.y2a_c02272{bottom:299.955000px;}
.y29_c02272{bottom:331.095000px;}
.y28_c02272{bottom:362.055000px;}
.y27_c02272{bottom:393.195000px;}
.y26_c02272{bottom:424.155000px;}
.y25_c02272{bottom:455.295000px;}
.y24_c02272{bottom:486.255000px;}
.y23_c02272{bottom:517.395000px;}
.y22_c02272{bottom:538.305000px;}
.y21_c02272{bottom:559.005000px;}
.y20_c02272{bottom:579.705000px;}
.y1f_c02272{bottom:600.405000px;}
.y1e_c02272{bottom:617.325000px;}
.y1d_c02272{bottom:638.745000px;}
.y1c_c02272{bottom:660.165000px;}
.y1b_c02272{bottom:681.585000px;}
.y18_c02272{bottom:723.705000px;}
.y17_c02272{bottom:766.005000px;}
.y16_c02272{bottom:787.425000px;}
.y15_c02272{bottom:808.890000px;}
.y14_c02272{bottom:830.310000px;}
.y12_c02272{bottom:851.730000px;}
.yb_c02272{bottom:873.150000px;}
.ye_c02272{bottom:894.750000px;}
.ya_c02272{bottom:920.670000px;}
.y9_c02272{bottom:941.370000px;}
.y8_c02272{bottom:962.070000px;}
.y7_c02272{bottom:982.770000px;}
.y6_c02272{bottom:1003.470000px;}
.y5_c02272{bottom:1034.250000px;}
.y4_c02272{bottom:1065.420000px;}
.h6_c02272{height:20.520000px;}
.h8_c02272{height:20.700000px;}
.h9_c02272{height:20.736000px;}
.h2_c02272{height:22.500000px;}
.ha_c02272{height:41.400000px;}
.h5_c02272{height:42.120000px;}
.h1_c02272{height:48.871406px;}
.h3_c02272{height:64.546875px;}
.h4_c02272{height:70.664062px;}
.h7_c02272{height:72.562500px;}
.h0_c02272{height:1188.000000px;}
.w1_c02272{width:66.636000px;}
.w4_c02272{width:79.020000px;}
.w7_c02272{width:92.016000px;}
.w5_c02272{width:94.356000px;}
.w6_c02272{width:96.120000px;}
.w2_c02272{width:254.550000px;}
.w3_c02272{width:283.935000px;}
.w0_c02272{width:918.000000px;}
.x0_c02272{left:0.000000px;}
.xf_c02272{left:7.920000px;}
.x12_c02272{left:15.480000px;}
.x3_c02272{left:16.560000px;}
.x10_c02272{left:18.180000px;}
.x14_c02272{left:21.420000px;}
.x1d_c02272{left:25.740000px;}
.x21_c02272{left:28.080000px;}
.x23_c02272{left:29.520000px;}
.x18_c02272{left:34.920000px;}
.xe_c02272{left:39.420000px;}
.x17_c02272{left:41.400000px;}
.x16_c02272{left:42.660000px;}
.x20_c02272{left:45.900000px;}
.x1f_c02272{left:47.160000px;}
.x19_c02272{left:61.560000px;}
.x1e_c02272{left:69.660000px;}
.x1b_c02272{left:72.540000px;}
.x15_c02272{left:74.520000px;}
.x1c_c02272{left:77.040000px;}
.x1a_c02272{left:79.560000px;}
.x25_c02272{left:95.760000px;}
.x22_c02272{left:99.540000px;}
.xa_c02272{left:103.140000px;}
.xc_c02272{left:104.430000px;}
.x24_c02272{left:107.280000px;}
.x1_c02272{left:127.656000px;}
.x9_c02272{left:179.310000px;}
.x4_c02272{left:180.750000px;}
.x26_c02272{left:187.050000px;}
.x8_c02272{left:276.870000px;}
.x7_c02272{left:291.810000px;}
.xb_c02272{left:434.595000px;}
.x6_c02272{left:440.175000px;}
.x5_c02272{left:488.775000px;}
.x11_c02272{left:529.665000px;}
.x13_c02272{left:626.505000px;}
.xd_c02272{left:719.250000px;}
.x2_c02272{left:820.950000px;}
@media print{
.v0_c02272{vertical-align:0.000000pt;}
.ls0_c02272{letter-spacing:0.000000pt;}
.ws0_c02272{word-spacing:0.000000pt;}
._1_c02272{margin-left:-1.280000pt;}
._3_c02272{width:0.960000pt;}
._7_c02272{width:1.920000pt;}
._b_c02272{width:2.880000pt;}
._2_c02272{width:3.776000pt;}
._0_c02272{width:4.800000pt;}
._6_c02272{width:5.824000pt;}
._8_c02272{width:7.040000pt;}
._9_c02272{width:8.064000pt;}
._a_c02272{width:9.024000pt;}
._4_c02272{width:10.112000pt;}
._5_c02272{width:11.360000pt;}
._c_c02272{width:12.480000pt;}
._d_c02272{width:13.888000pt;}
._f_c02272{width:21.888000pt;}
._e_c02272{width:22.784000pt;}
.fs0_c02272{font-size:58.880000pt;}
.fs1_c02272{font-size:64.000000pt;}
.y0_c02272{bottom:0.000000pt;}
.y13_c02272{bottom:3.680000pt;}
.yf_c02272{bottom:3.840000pt;}
.y11_c02272{bottom:4.000000pt;}
.y3_c02272{bottom:4.160000pt;}
.y10_c02272{bottom:4.480000pt;}
.yd_c02272{bottom:4.800000pt;}
.y1a_c02272{bottom:22.080000pt;}
.y19_c02272{bottom:22.400000pt;}
.yc_c02272{bottom:23.040000pt;}
.y2_c02272{bottom:37.152000pt;}
.y1_c02272{bottom:67.072000pt;}
.y30_c02272{bottom:100.992000pt;}
.y2f_c02272{bottom:128.672000pt;}
.y2e_c02272{bottom:156.186667pt;}
.y2d_c02272{bottom:183.866667pt;}
.y2c_c02272{bottom:211.386667pt;}
.y2b_c02272{bottom:239.066667pt;}
.y2a_c02272{bottom:266.626667pt;}
.y29_c02272{bottom:294.306667pt;}
.y28_c02272{bottom:321.826667pt;}
.y27_c02272{bottom:349.506667pt;}
.y26_c02272{bottom:377.026667pt;}
.y25_c02272{bottom:404.706667pt;}
.y24_c02272{bottom:432.226667pt;}
.y23_c02272{bottom:459.906667pt;}
.y22_c02272{bottom:478.493333pt;}
.y21_c02272{bottom:496.893333pt;}
.y20_c02272{bottom:515.293333pt;}
.y1f_c02272{bottom:533.693333pt;}
.y1e_c02272{bottom:548.733333pt;}
.y1d_c02272{bottom:567.773333pt;}
.y1c_c02272{bottom:586.813333pt;}
.y1b_c02272{bottom:605.853333pt;}
.y18_c02272{bottom:643.293333pt;}
.y17_c02272{bottom:680.893333pt;}
.y16_c02272{bottom:699.933333pt;}
.y15_c02272{bottom:719.013333pt;}
.y14_c02272{bottom:738.053333pt;}
.y12_c02272{bottom:757.093333pt;}
.yb_c02272{bottom:776.133333pt;}
.ye_c02272{bottom:795.333333pt;}
.ya_c02272{bottom:818.373333pt;}
.y9_c02272{bottom:836.773333pt;}
.y8_c02272{bottom:855.173333pt;}
.y7_c02272{bottom:873.573333pt;}
.y6_c02272{bottom:891.973333pt;}
.y5_c02272{bottom:919.333333pt;}
.y4_c02272{bottom:947.040000pt;}
.h6_c02272{height:18.240000pt;}
.h8_c02272{height:18.400000pt;}
.h9_c02272{height:18.432000pt;}
.h2_c02272{height:20.000000pt;}
.ha_c02272{height:36.800000pt;}
.h5_c02272{height:37.440000pt;}
.h1_c02272{height:43.441250pt;}
.h3_c02272{height:57.375000pt;}
.h4_c02272{height:62.812500pt;}
.h7_c02272{height:64.500000pt;}
.h0_c02272{height:1056.000000pt;}
.w1_c02272{width:59.232000pt;}
.w4_c02272{width:70.240000pt;}
.w7_c02272{width:81.792000pt;}
.w5_c02272{width:83.872000pt;}
.w6_c02272{width:85.440000pt;}
.w2_c02272{width:226.266667pt;}
.w3_c02272{width:252.386667pt;}
.w0_c02272{width:816.000000pt;}
.x0_c02272{left:0.000000pt;}
.xf_c02272{left:7.040000pt;}
.x12_c02272{left:13.760000pt;}
.x3_c02272{left:14.720000pt;}
.x10_c02272{left:16.160000pt;}
.x14_c02272{left:19.040000pt;}
.x1d_c02272{left:22.880000pt;}
.x21_c02272{left:24.960000pt;}
.x23_c02272{left:26.240000pt;}
.x18_c02272{left:31.040000pt;}
.xe_c02272{left:35.040000pt;}
.x17_c02272{left:36.800000pt;}
.x16_c02272{left:37.920000pt;}
.x20_c02272{left:40.800000pt;}
.x1f_c02272{left:41.920000pt;}
.x19_c02272{left:54.720000pt;}
.x1e_c02272{left:61.920000pt;}
.x1b_c02272{left:64.480000pt;}
.x15_c02272{left:66.240000pt;}
.x1c_c02272{left:68.480000pt;}
.x1a_c02272{left:70.720000pt;}
.x25_c02272{left:85.120000pt;}
.x22_c02272{left:88.480000pt;}
.xa_c02272{left:91.680000pt;}
.xc_c02272{left:92.826667pt;}
.x24_c02272{left:95.360000pt;}
.x1_c02272{left:113.472000pt;}
.x9_c02272{left:159.386667pt;}
.x4_c02272{left:160.666667pt;}
.x26_c02272{left:166.266667pt;}
.x8_c02272{left:246.106667pt;}
.x7_c02272{left:259.386667pt;}
.xb_c02272{left:386.306667pt;}
.x6_c02272{left:391.266667pt;}
.x5_c02272{left:434.466667pt;}
.x11_c02272{left:470.813333pt;}
.x13_c02272{left:556.893333pt;}
.xd_c02272{left:639.333333pt;}
.x2_c02272{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02273 {
    display:none;
  }
  .loading-indicator_c02273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02273 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02273 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02273" -> "#page-container .classname_c02273")
 */
.pf_c02273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02273 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02273 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02273 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02273 {overflow:visible;}
  }
}
.c_c02273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02273 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02273:after { /* webkit #35443 */
  content: '';
}
.t_c02273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02273 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02273 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02273 { /* info for Javascript */
  display:none;
}
.l_c02273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02273:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02273 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02273.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02273;src:url('chunks/assets/font_7570a04fca421e4b10c3ba75.woff2')format("woff");}.ff1_c02273{font-family:ff1_c02273;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02273;src:url('chunks/assets/font_3d4269b3f58c027e90896a50.woff2')format("woff");}.ff2_c02273{font-family:ff2_c02273;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:ff3_c02273;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02273{font-family:ff3_c02273;line-height:1.311035;font-style:normal;font-weight: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_c02273;src:url('chunks/assets/font_bc14fb304051694c6d952a67.woff2')format("woff");}.ff4_c02273{font-family:ff4_c02273;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02273{vertical-align:0.000000px;}
.ls0_c02273{letter-spacing:0.000000px;}
.sc__c02273{text-shadow:none;}
.sc0_c02273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02273{-webkit-text-stroke:0px transparent;}
.sc0_c02273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02273{word-spacing:-18.000000px;}
.ws1_c02273{word-spacing:0.000000px;}
._0_c02273{margin-left:-1.152000px;}
._1_c02273{width:1.272000px;}
._6_c02273{width:2.952000px;}
._4_c02273{width:5.112000px;}
._5_c02273{width:7.080000px;}
._b_c02273{width:8.136000px;}
._c_c02273{width:9.288000px;}
._7_c02273{width:11.232000px;}
._8_c02273{width:12.480000px;}
._2_c02273{width:13.536000px;}
._3_c02273{width:14.904000px;}
._a_c02273{width:19.080000px;}
._9_c02273{width:20.304000px;}
.fc1_c02273{color:rgb(192,80,77);}
.fc3_c02273{color:rgb(255,255,255);}
.fc2_c02273{color:rgb(17,17,17);}
.fc0_c02273{color:rgb(0,0,0);}
.fs0_c02273{font-size:66.240000px;}
.fs1_c02273{font-size:72.000000px;}
.y0_c02273{bottom:0.000000px;}
.yf_c02273{bottom:4.140000px;}
.yc_c02273{bottom:4.500000px;}
.y3_c02273{bottom:4.680000px;}
.yd_c02273{bottom:4.860000px;}
.ya_c02273{bottom:5.220000px;}
.y16_c02273{bottom:24.840000px;}
.y15_c02273{bottom:25.200000px;}
.y9_c02273{bottom:25.920000px;}
.y2_c02273{bottom:41.796000px;}
.y1_c02273{bottom:75.456000px;}
.y2b_c02273{bottom:217.110000px;}
.y2a_c02273{bottom:248.250000px;}
.y29_c02273{bottom:279.255000px;}
.y28_c02273{bottom:310.395000px;}
.y27_c02273{bottom:341.355000px;}
.y26_c02273{bottom:372.495000px;}
.y25_c02273{bottom:403.455000px;}
.y24_c02273{bottom:434.595000px;}
.y23_c02273{bottom:465.555000px;}
.y22_c02273{bottom:496.695000px;}
.y21_c02273{bottom:527.655000px;}
.y20_c02273{bottom:558.825000px;}
.y1f_c02273{bottom:589.785000px;}
.y1e_c02273{bottom:610.665000px;}
.y1d_c02273{bottom:631.365000px;}
.y1c_c02273{bottom:652.065000px;}
.y1b_c02273{bottom:672.765000px;}
.y1a_c02273{bottom:689.685000px;}
.y19_c02273{bottom:711.105000px;}
.y18_c02273{bottom:732.705000px;}
.y17_c02273{bottom:754.125000px;}
.y14_c02273{bottom:796.290000px;}
.y13_c02273{bottom:838.410000px;}
.y12_c02273{bottom:859.830000px;}
.y11_c02273{bottom:881.250000px;}
.y10_c02273{bottom:902.670000px;}
.ye_c02273{bottom:924.270000px;}
.y8_c02273{bottom:945.690000px;}
.yb_c02273{bottom:967.110000px;}
.y7_c02273{bottom:1003.290000px;}
.y6_c02273{bottom:1024.170000px;}
.y5_c02273{bottom:1044.870000px;}
.y4_c02273{bottom:1065.600000px;}
.h5_c02273{height:20.700000px;}
.h2_c02273{height:22.500000px;}
.h7_c02273{height:41.400000px;}
.h8_c02273{height:41.436000px;}
.h4_c02273{height:42.120000px;}
.h1_c02273{height:48.871406px;}
.h9_c02273{height:64.546875px;}
.h3_c02273{height:70.664062px;}
.h6_c02273{height:72.562500px;}
.h0_c02273{height:1188.000000px;}
.w1_c02273{width:66.636000px;}
.w4_c02273{width:79.020000px;}
.w7_c02273{width:92.016000px;}
.w5_c02273{width:94.356000px;}
.w6_c02273{width:96.120000px;}
.w2_c02273{width:254.550000px;}
.w3_c02273{width:283.935000px;}
.w0_c02273{width:918.000000px;}
.x0_c02273{left:0.000000px;}
.xe_c02273{left:7.920000px;}
.x11_c02273{left:15.480000px;}
.x3_c02273{left:16.560000px;}
.xf_c02273{left:18.180000px;}
.x13_c02273{left:21.420000px;}
.x1c_c02273{left:25.740000px;}
.x21_c02273{left:29.520000px;}
.x17_c02273{left:34.920000px;}
.xd_c02273{left:39.420000px;}
.x16_c02273{left:41.400000px;}
.x15_c02273{left:42.660000px;}
.x1f_c02273{left:45.900000px;}
.x1e_c02273{left:47.160000px;}
.x20_c02273{left:58.320000px;}
.x18_c02273{left:61.560000px;}
.x1d_c02273{left:69.660000px;}
.x1a_c02273{left:72.540000px;}
.x14_c02273{left:74.520000px;}
.x1b_c02273{left:77.040000px;}
.x19_c02273{left:79.560000px;}
.x23_c02273{left:95.760000px;}
.x9_c02273{left:103.140000px;}
.xb_c02273{left:104.430000px;}
.x22_c02273{left:107.280000px;}
.x1_c02273{left:127.656000px;}
.x8_c02273{left:179.310000px;}
.x24_c02273{left:187.050000px;}
.x6_c02273{left:276.870000px;}
.x5_c02273{left:295.815000px;}
.xa_c02273{left:434.595000px;}
.x4_c02273{left:440.175000px;}
.x7_c02273{left:488.775000px;}
.x10_c02273{left:529.665000px;}
.x12_c02273{left:626.505000px;}
.xc_c02273{left:719.250000px;}
.x2_c02273{left:820.950000px;}
@media print{
.v0_c02273{vertical-align:0.000000pt;}
.ls0_c02273{letter-spacing:0.000000pt;}
.ws0_c02273{word-spacing:-16.000000pt;}
.ws1_c02273{word-spacing:0.000000pt;}
._0_c02273{margin-left:-1.024000pt;}
._1_c02273{width:1.130667pt;}
._6_c02273{width:2.624000pt;}
._4_c02273{width:4.544000pt;}
._5_c02273{width:6.293333pt;}
._b_c02273{width:7.232000pt;}
._c_c02273{width:8.256000pt;}
._7_c02273{width:9.984000pt;}
._8_c02273{width:11.093333pt;}
._2_c02273{width:12.032000pt;}
._3_c02273{width:13.248000pt;}
._a_c02273{width:16.960000pt;}
._9_c02273{width:18.048000pt;}
.fs0_c02273{font-size:58.880000pt;}
.fs1_c02273{font-size:64.000000pt;}
.y0_c02273{bottom:0.000000pt;}
.yf_c02273{bottom:3.680000pt;}
.yc_c02273{bottom:4.000000pt;}
.y3_c02273{bottom:4.160000pt;}
.yd_c02273{bottom:4.320000pt;}
.ya_c02273{bottom:4.640000pt;}
.y16_c02273{bottom:22.080000pt;}
.y15_c02273{bottom:22.400000pt;}
.y9_c02273{bottom:23.040000pt;}
.y2_c02273{bottom:37.152000pt;}
.y1_c02273{bottom:67.072000pt;}
.y2b_c02273{bottom:192.986667pt;}
.y2a_c02273{bottom:220.666667pt;}
.y29_c02273{bottom:248.226667pt;}
.y28_c02273{bottom:275.906667pt;}
.y27_c02273{bottom:303.426667pt;}
.y26_c02273{bottom:331.106667pt;}
.y25_c02273{bottom:358.626667pt;}
.y24_c02273{bottom:386.306667pt;}
.y23_c02273{bottom:413.826667pt;}
.y22_c02273{bottom:441.506667pt;}
.y21_c02273{bottom:469.026667pt;}
.y20_c02273{bottom:496.733333pt;}
.y1f_c02273{bottom:524.253333pt;}
.y1e_c02273{bottom:542.813333pt;}
.y1d_c02273{bottom:561.213333pt;}
.y1c_c02273{bottom:579.613333pt;}
.y1b_c02273{bottom:598.013333pt;}
.y1a_c02273{bottom:613.053333pt;}
.y19_c02273{bottom:632.093333pt;}
.y18_c02273{bottom:651.293333pt;}
.y17_c02273{bottom:670.333333pt;}
.y14_c02273{bottom:707.813333pt;}
.y13_c02273{bottom:745.253333pt;}
.y12_c02273{bottom:764.293333pt;}
.y11_c02273{bottom:783.333333pt;}
.y10_c02273{bottom:802.373333pt;}
.ye_c02273{bottom:821.573333pt;}
.y8_c02273{bottom:840.613333pt;}
.yb_c02273{bottom:859.653333pt;}
.y7_c02273{bottom:891.813333pt;}
.y6_c02273{bottom:910.373333pt;}
.y5_c02273{bottom:928.773333pt;}
.y4_c02273{bottom:947.200000pt;}
.h5_c02273{height:18.400000pt;}
.h2_c02273{height:20.000000pt;}
.h7_c02273{height:36.800000pt;}
.h8_c02273{height:36.832000pt;}
.h4_c02273{height:37.440000pt;}
.h1_c02273{height:43.441250pt;}
.h9_c02273{height:57.375000pt;}
.h3_c02273{height:62.812500pt;}
.h6_c02273{height:64.500000pt;}
.h0_c02273{height:1056.000000pt;}
.w1_c02273{width:59.232000pt;}
.w4_c02273{width:70.240000pt;}
.w7_c02273{width:81.792000pt;}
.w5_c02273{width:83.872000pt;}
.w6_c02273{width:85.440000pt;}
.w2_c02273{width:226.266667pt;}
.w3_c02273{width:252.386667pt;}
.w0_c02273{width:816.000000pt;}
.x0_c02273{left:0.000000pt;}
.xe_c02273{left:7.040000pt;}
.x11_c02273{left:13.760000pt;}
.x3_c02273{left:14.720000pt;}
.xf_c02273{left:16.160000pt;}
.x13_c02273{left:19.040000pt;}
.x1c_c02273{left:22.880000pt;}
.x21_c02273{left:26.240000pt;}
.x17_c02273{left:31.040000pt;}
.xd_c02273{left:35.040000pt;}
.x16_c02273{left:36.800000pt;}
.x15_c02273{left:37.920000pt;}
.x1f_c02273{left:40.800000pt;}
.x1e_c02273{left:41.920000pt;}
.x20_c02273{left:51.840000pt;}
.x18_c02273{left:54.720000pt;}
.x1d_c02273{left:61.920000pt;}
.x1a_c02273{left:64.480000pt;}
.x14_c02273{left:66.240000pt;}
.x1b_c02273{left:68.480000pt;}
.x19_c02273{left:70.720000pt;}
.x23_c02273{left:85.120000pt;}
.x9_c02273{left:91.680000pt;}
.xb_c02273{left:92.826667pt;}
.x22_c02273{left:95.360000pt;}
.x1_c02273{left:113.472000pt;}
.x8_c02273{left:159.386667pt;}
.x24_c02273{left:166.266667pt;}
.x6_c02273{left:246.106667pt;}
.x5_c02273{left:262.946667pt;}
.xa_c02273{left:386.306667pt;}
.x4_c02273{left:391.266667pt;}
.x7_c02273{left:434.466667pt;}
.x10_c02273{left:470.813333pt;}
.x12_c02273{left:556.893333pt;}
.xc_c02273{left:639.333333pt;}
.x2_c02273{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02274 {
    display:none;
  }
  .loading-indicator_c02274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02274 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02274 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02274" -> "#page-container .classname_c02274")
 */
.pf_c02274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02274 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02274 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02274 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02274 {overflow:visible;}
  }
}
.c_c02274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02274 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02274:after { /* webkit #35443 */
  content: '';
}
.t_c02274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02274 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02274 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02274 { /* info for Javascript */
  display:none;
}
.l_c02274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02274:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02274 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02274.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02274;src:url('chunks/assets/font_4b8f9dfaa719d92e24f86f91.woff2')format("woff");}.ff1_c02274{font-family:ff1_c02274;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02274;src:url('chunks/assets/font_401ab54fba7293d16c493274.woff2')format("woff");}.ff2_c02274{font-family:ff2_c02274;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:ff3_c02274;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02274{font-family:ff3_c02274;line-height:1.311035;font-style:normal;font-weight: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_c02274;src:url('chunks/assets/font_b159d3280e8a655447af9e34.woff2')format("woff");}.ff4_c02274{font-family:ff4_c02274;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02274{vertical-align:0.000000px;}
.ls0_c02274{letter-spacing:0.000000px;}
.sc__c02274{text-shadow:none;}
.sc0_c02274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02274{-webkit-text-stroke:0px transparent;}
.sc0_c02274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02274{word-spacing:0.000000px;}
._0_c02274{margin-left:-1.152000px;}
._1_c02274{width:1.344000px;}
._2_c02274{width:2.856000px;}
._5_c02274{width:5.112000px;}
._3_c02274{width:7.056000px;}
._4_c02274{width:8.220000px;}
._6_c02274{width:14.760000px;}
._7_c02274{width:15.840000px;}
._8_c02274{width:20.448000px;}
._9_c02274{width:21.744000px;}
._b_c02274{width:23.688000px;}
._a_c02274{width:33.912000px;}
.fc1_c02274{color:rgb(192,80,77);}
.fc3_c02274{color:rgb(255,255,255);}
.fc2_c02274{color:rgb(17,17,17);}
.fc0_c02274{color:rgb(0,0,0);}
.fs0_c02274{font-size:66.240000px;}
.fs1_c02274{font-size:72.000000px;}
.y0_c02274{bottom:0.000000px;}
.yf_c02274{bottom:4.140000px;}
.yc_c02274{bottom:4.500000px;}
.y3_c02274{bottom:4.680000px;}
.yd_c02274{bottom:4.860000px;}
.ya_c02274{bottom:5.220000px;}
.y16_c02274{bottom:24.840000px;}
.y15_c02274{bottom:25.200000px;}
.y9_c02274{bottom:25.920000px;}
.y2_c02274{bottom:41.796000px;}
.y1_c02274{bottom:75.456000px;}
.y28_c02274{bottom:310.395000px;}
.y27_c02274{bottom:341.355000px;}
.y26_c02274{bottom:372.495000px;}
.y25_c02274{bottom:403.455000px;}
.y24_c02274{bottom:434.595000px;}
.y23_c02274{bottom:465.555000px;}
.y22_c02274{bottom:496.695000px;}
.y21_c02274{bottom:527.655000px;}
.y20_c02274{bottom:558.825000px;}
.y1f_c02274{bottom:589.785000px;}
.y1e_c02274{bottom:610.665000px;}
.y1d_c02274{bottom:631.365000px;}
.y1c_c02274{bottom:652.065000px;}
.y1b_c02274{bottom:672.765000px;}
.y1a_c02274{bottom:689.685000px;}
.y19_c02274{bottom:711.105000px;}
.y18_c02274{bottom:732.705000px;}
.y17_c02274{bottom:754.125000px;}
.y14_c02274{bottom:796.290000px;}
.y13_c02274{bottom:838.410000px;}
.y12_c02274{bottom:859.830000px;}
.y11_c02274{bottom:881.250000px;}
.y10_c02274{bottom:902.670000px;}
.ye_c02274{bottom:924.270000px;}
.y8_c02274{bottom:945.690000px;}
.yb_c02274{bottom:967.110000px;}
.y7_c02274{bottom:1003.290000px;}
.y6_c02274{bottom:1024.170000px;}
.y5_c02274{bottom:1044.870000px;}
.y4_c02274{bottom:1065.600000px;}
.h5_c02274{height:20.700000px;}
.h2_c02274{height:22.500000px;}
.h7_c02274{height:41.400000px;}
.h8_c02274{height:41.436000px;}
.h4_c02274{height:42.120000px;}
.h1_c02274{height:48.871406px;}
.h9_c02274{height:64.546875px;}
.h3_c02274{height:70.664062px;}
.h6_c02274{height:72.562500px;}
.h0_c02274{height:1188.000000px;}
.w1_c02274{width:66.636000px;}
.w4_c02274{width:79.020000px;}
.w7_c02274{width:92.016000px;}
.w5_c02274{width:94.356000px;}
.w6_c02274{width:96.120000px;}
.w2_c02274{width:254.550000px;}
.w3_c02274{width:283.935000px;}
.w0_c02274{width:918.000000px;}
.x0_c02274{left:0.000000px;}
.xe_c02274{left:7.920000px;}
.x11_c02274{left:15.480000px;}
.x3_c02274{left:16.560000px;}
.xf_c02274{left:18.180000px;}
.x13_c02274{left:21.420000px;}
.x1c_c02274{left:25.740000px;}
.x21_c02274{left:29.520000px;}
.x17_c02274{left:34.920000px;}
.xd_c02274{left:39.420000px;}
.x16_c02274{left:41.400000px;}
.x15_c02274{left:42.660000px;}
.x1f_c02274{left:45.900000px;}
.x1e_c02274{left:47.160000px;}
.x20_c02274{left:58.320000px;}
.x18_c02274{left:61.560000px;}
.x1d_c02274{left:69.660000px;}
.x1a_c02274{left:72.540000px;}
.x14_c02274{left:74.520000px;}
.x1b_c02274{left:77.040000px;}
.x19_c02274{left:79.560000px;}
.x23_c02274{left:95.760000px;}
.x9_c02274{left:103.140000px;}
.xb_c02274{left:104.430000px;}
.x22_c02274{left:107.280000px;}
.x1_c02274{left:127.656000px;}
.x8_c02274{left:179.310000px;}
.x24_c02274{left:187.050000px;}
.x6_c02274{left:276.870000px;}
.x5_c02274{left:286.410000px;}
.xa_c02274{left:434.595000px;}
.x4_c02274{left:440.175000px;}
.x7_c02274{left:488.775000px;}
.x10_c02274{left:529.665000px;}
.x12_c02274{left:626.505000px;}
.xc_c02274{left:719.250000px;}
.x2_c02274{left:820.950000px;}
@media print{
.v0_c02274{vertical-align:0.000000pt;}
.ls0_c02274{letter-spacing:0.000000pt;}
.ws0_c02274{word-spacing:0.000000pt;}
._0_c02274{margin-left:-1.024000pt;}
._1_c02274{width:1.194667pt;}
._2_c02274{width:2.538667pt;}
._5_c02274{width:4.544000pt;}
._3_c02274{width:6.272000pt;}
._4_c02274{width:7.306667pt;}
._6_c02274{width:13.120000pt;}
._7_c02274{width:14.080000pt;}
._8_c02274{width:18.176000pt;}
._9_c02274{width:19.328000pt;}
._b_c02274{width:21.056000pt;}
._a_c02274{width:30.144000pt;}
.fs0_c02274{font-size:58.880000pt;}
.fs1_c02274{font-size:64.000000pt;}
.y0_c02274{bottom:0.000000pt;}
.yf_c02274{bottom:3.680000pt;}
.yc_c02274{bottom:4.000000pt;}
.y3_c02274{bottom:4.160000pt;}
.yd_c02274{bottom:4.320000pt;}
.ya_c02274{bottom:4.640000pt;}
.y16_c02274{bottom:22.080000pt;}
.y15_c02274{bottom:22.400000pt;}
.y9_c02274{bottom:23.040000pt;}
.y2_c02274{bottom:37.152000pt;}
.y1_c02274{bottom:67.072000pt;}
.y28_c02274{bottom:275.906667pt;}
.y27_c02274{bottom:303.426667pt;}
.y26_c02274{bottom:331.106667pt;}
.y25_c02274{bottom:358.626667pt;}
.y24_c02274{bottom:386.306667pt;}
.y23_c02274{bottom:413.826667pt;}
.y22_c02274{bottom:441.506667pt;}
.y21_c02274{bottom:469.026667pt;}
.y20_c02274{bottom:496.733333pt;}
.y1f_c02274{bottom:524.253333pt;}
.y1e_c02274{bottom:542.813333pt;}
.y1d_c02274{bottom:561.213333pt;}
.y1c_c02274{bottom:579.613333pt;}
.y1b_c02274{bottom:598.013333pt;}
.y1a_c02274{bottom:613.053333pt;}
.y19_c02274{bottom:632.093333pt;}
.y18_c02274{bottom:651.293333pt;}
.y17_c02274{bottom:670.333333pt;}
.y14_c02274{bottom:707.813333pt;}
.y13_c02274{bottom:745.253333pt;}
.y12_c02274{bottom:764.293333pt;}
.y11_c02274{bottom:783.333333pt;}
.y10_c02274{bottom:802.373333pt;}
.ye_c02274{bottom:821.573333pt;}
.y8_c02274{bottom:840.613333pt;}
.yb_c02274{bottom:859.653333pt;}
.y7_c02274{bottom:891.813333pt;}
.y6_c02274{bottom:910.373333pt;}
.y5_c02274{bottom:928.773333pt;}
.y4_c02274{bottom:947.200000pt;}
.h5_c02274{height:18.400000pt;}
.h2_c02274{height:20.000000pt;}
.h7_c02274{height:36.800000pt;}
.h8_c02274{height:36.832000pt;}
.h4_c02274{height:37.440000pt;}
.h1_c02274{height:43.441250pt;}
.h9_c02274{height:57.375000pt;}
.h3_c02274{height:62.812500pt;}
.h6_c02274{height:64.500000pt;}
.h0_c02274{height:1056.000000pt;}
.w1_c02274{width:59.232000pt;}
.w4_c02274{width:70.240000pt;}
.w7_c02274{width:81.792000pt;}
.w5_c02274{width:83.872000pt;}
.w6_c02274{width:85.440000pt;}
.w2_c02274{width:226.266667pt;}
.w3_c02274{width:252.386667pt;}
.w0_c02274{width:816.000000pt;}
.x0_c02274{left:0.000000pt;}
.xe_c02274{left:7.040000pt;}
.x11_c02274{left:13.760000pt;}
.x3_c02274{left:14.720000pt;}
.xf_c02274{left:16.160000pt;}
.x13_c02274{left:19.040000pt;}
.x1c_c02274{left:22.880000pt;}
.x21_c02274{left:26.240000pt;}
.x17_c02274{left:31.040000pt;}
.xd_c02274{left:35.040000pt;}
.x16_c02274{left:36.800000pt;}
.x15_c02274{left:37.920000pt;}
.x1f_c02274{left:40.800000pt;}
.x1e_c02274{left:41.920000pt;}
.x20_c02274{left:51.840000pt;}
.x18_c02274{left:54.720000pt;}
.x1d_c02274{left:61.920000pt;}
.x1a_c02274{left:64.480000pt;}
.x14_c02274{left:66.240000pt;}
.x1b_c02274{left:68.480000pt;}
.x19_c02274{left:70.720000pt;}
.x23_c02274{left:85.120000pt;}
.x9_c02274{left:91.680000pt;}
.xb_c02274{left:92.826667pt;}
.x22_c02274{left:95.360000pt;}
.x1_c02274{left:113.472000pt;}
.x8_c02274{left:159.386667pt;}
.x24_c02274{left:166.266667pt;}
.x6_c02274{left:246.106667pt;}
.x5_c02274{left:254.586667pt;}
.xa_c02274{left:386.306667pt;}
.x4_c02274{left:391.266667pt;}
.x7_c02274{left:434.466667pt;}
.x10_c02274{left:470.813333pt;}
.x12_c02274{left:556.893333pt;}
.xc_c02274{left:639.333333pt;}
.x2_c02274{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02275 {
    display:none;
  }
  .loading-indicator_c02275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02275 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02275 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02275" -> "#page-container .classname_c02275")
 */
.pf_c02275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02275 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02275 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02275 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02275 {overflow:visible;}
  }
}
.c_c02275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02275 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02275:after { /* webkit #35443 */
  content: '';
}
.t_c02275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02275 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02275 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02275 { /* info for Javascript */
  display:none;
}
.l_c02275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02275:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02275 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02275.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02275;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02275{font-family:ff1_c02275;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02275;src:url('chunks/assets/font_b23f539006c021de050afe2c.woff2')format("woff");}.ff2_c02275{font-family:ff2_c02275;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:ff3_c02275;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff3_c02275{font-family:ff3_c02275;line-height:1.311035;font-style:normal;font-weight: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_c02275;src:url('chunks/assets/font_d83f3c842a4905b733b76f71.woff2')format("woff");}.ff4_c02275{font-family:ff4_c02275;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02275{vertical-align:0.000000px;}
.ls1_c02275{letter-spacing:0.000000px;}
.ls0_c02275{letter-spacing:12.960000px;}
.sc__c02275{text-shadow:none;}
.sc0_c02275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02275{-webkit-text-stroke:0px transparent;}
.sc0_c02275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02275{word-spacing:0.000000px;}
._0_c02275{margin-left:-1.152000px;}
._1_c02275{width:1.776000px;}
._4_c02275{width:5.112000px;}
._5_c02275{width:6.576000px;}
._7_c02275{width:7.920000px;}
._2_c02275{width:9.216000px;}
._3_c02275{width:10.320000px;}
._a_c02275{width:11.448000px;}
._9_c02275{width:13.320000px;}
._8_c02275{width:14.328000px;}
._6_c02275{width:15.768000px;}
._b_c02275{width:28.584000px;}
.fc1_c02275{color:rgb(192,80,77);}
.fc3_c02275{color:rgb(255,255,255);}
.fc2_c02275{color:rgb(17,17,17);}
.fc0_c02275{color:rgb(0,0,0);}
.fs0_c02275{font-size:66.240000px;}
.fs1_c02275{font-size:72.000000px;}
.y0_c02275{bottom:0.000000px;}
.yf_c02275{bottom:4.140000px;}
.yc_c02275{bottom:4.500000px;}
.y3_c02275{bottom:4.680000px;}
.yd_c02275{bottom:4.860000px;}
.ya_c02275{bottom:5.220000px;}
.y16_c02275{bottom:24.840000px;}
.y15_c02275{bottom:25.200000px;}
.y9_c02275{bottom:25.920000px;}
.y2_c02275{bottom:41.796000px;}
.y1_c02275{bottom:75.456000px;}
.y2b_c02275{bottom:217.110000px;}
.y2a_c02275{bottom:248.250000px;}
.y29_c02275{bottom:279.255000px;}
.y28_c02275{bottom:310.395000px;}
.y27_c02275{bottom:341.355000px;}
.y26_c02275{bottom:372.495000px;}
.y25_c02275{bottom:403.455000px;}
.y24_c02275{bottom:434.595000px;}
.y23_c02275{bottom:465.555000px;}
.y22_c02275{bottom:496.695000px;}
.y21_c02275{bottom:527.655000px;}
.y20_c02275{bottom:558.825000px;}
.y1f_c02275{bottom:589.785000px;}
.y1e_c02275{bottom:610.665000px;}
.y1d_c02275{bottom:631.365000px;}
.y1c_c02275{bottom:652.065000px;}
.y1b_c02275{bottom:672.765000px;}
.y1a_c02275{bottom:689.685000px;}
.y19_c02275{bottom:711.105000px;}
.y18_c02275{bottom:732.705000px;}
.y17_c02275{bottom:754.125000px;}
.y14_c02275{bottom:796.290000px;}
.y13_c02275{bottom:838.410000px;}
.y12_c02275{bottom:859.830000px;}
.y11_c02275{bottom:881.250000px;}
.y10_c02275{bottom:902.670000px;}
.ye_c02275{bottom:924.270000px;}
.y8_c02275{bottom:945.690000px;}
.yb_c02275{bottom:967.110000px;}
.y7_c02275{bottom:1003.290000px;}
.y6_c02275{bottom:1024.170000px;}
.y5_c02275{bottom:1044.870000px;}
.y4_c02275{bottom:1065.600000px;}
.h5_c02275{height:20.700000px;}
.h2_c02275{height:22.500000px;}
.h7_c02275{height:41.400000px;}
.h8_c02275{height:41.436000px;}
.h4_c02275{height:42.120000px;}
.h1_c02275{height:48.871406px;}
.h9_c02275{height:64.546875px;}
.h3_c02275{height:70.664062px;}
.h6_c02275{height:72.562500px;}
.h0_c02275{height:1188.000000px;}
.w1_c02275{width:66.636000px;}
.w4_c02275{width:79.020000px;}
.w7_c02275{width:92.016000px;}
.w5_c02275{width:94.356000px;}
.w6_c02275{width:96.120000px;}
.w2_c02275{width:254.550000px;}
.w3_c02275{width:283.935000px;}
.w0_c02275{width:918.000000px;}
.x0_c02275{left:0.000000px;}
.xe_c02275{left:7.920000px;}
.x11_c02275{left:15.480000px;}
.x3_c02275{left:16.560000px;}
.xf_c02275{left:18.180000px;}
.x13_c02275{left:21.420000px;}
.x1c_c02275{left:25.740000px;}
.x21_c02275{left:29.520000px;}
.x17_c02275{left:34.920000px;}
.xd_c02275{left:39.420000px;}
.x16_c02275{left:41.400000px;}
.x15_c02275{left:42.660000px;}
.x1f_c02275{left:45.900000px;}
.x1e_c02275{left:47.160000px;}
.x20_c02275{left:58.320000px;}
.x18_c02275{left:61.560000px;}
.x1d_c02275{left:69.660000px;}
.x1a_c02275{left:72.540000px;}
.x14_c02275{left:74.520000px;}
.x1b_c02275{left:77.040000px;}
.x19_c02275{left:79.560000px;}
.x23_c02275{left:95.760000px;}
.x9_c02275{left:103.140000px;}
.xb_c02275{left:104.430000px;}
.x22_c02275{left:107.280000px;}
.x1_c02275{left:127.656000px;}
.x8_c02275{left:179.310000px;}
.x24_c02275{left:187.050000px;}
.x6_c02275{left:276.870000px;}
.x5_c02275{left:288.750000px;}
.xa_c02275{left:434.595000px;}
.x4_c02275{left:440.175000px;}
.x7_c02275{left:488.775000px;}
.x10_c02275{left:529.665000px;}
.x12_c02275{left:626.505000px;}
.xc_c02275{left:719.250000px;}
.x2_c02275{left:820.950000px;}
@media print{
.v0_c02275{vertical-align:0.000000pt;}
.ls1_c02275{letter-spacing:0.000000pt;}
.ls0_c02275{letter-spacing:11.520000pt;}
.ws0_c02275{word-spacing:0.000000pt;}
._0_c02275{margin-left:-1.024000pt;}
._1_c02275{width:1.578667pt;}
._4_c02275{width:4.544000pt;}
._5_c02275{width:5.845333pt;}
._7_c02275{width:7.040000pt;}
._2_c02275{width:8.192000pt;}
._3_c02275{width:9.173333pt;}
._a_c02275{width:10.176000pt;}
._9_c02275{width:11.840000pt;}
._8_c02275{width:12.736000pt;}
._6_c02275{width:14.016000pt;}
._b_c02275{width:25.408000pt;}
.fs0_c02275{font-size:58.880000pt;}
.fs1_c02275{font-size:64.000000pt;}
.y0_c02275{bottom:0.000000pt;}
.yf_c02275{bottom:3.680000pt;}
.yc_c02275{bottom:4.000000pt;}
.y3_c02275{bottom:4.160000pt;}
.yd_c02275{bottom:4.320000pt;}
.ya_c02275{bottom:4.640000pt;}
.y16_c02275{bottom:22.080000pt;}
.y15_c02275{bottom:22.400000pt;}
.y9_c02275{bottom:23.040000pt;}
.y2_c02275{bottom:37.152000pt;}
.y1_c02275{bottom:67.072000pt;}
.y2b_c02275{bottom:192.986667pt;}
.y2a_c02275{bottom:220.666667pt;}
.y29_c02275{bottom:248.226667pt;}
.y28_c02275{bottom:275.906667pt;}
.y27_c02275{bottom:303.426667pt;}
.y26_c02275{bottom:331.106667pt;}
.y25_c02275{bottom:358.626667pt;}
.y24_c02275{bottom:386.306667pt;}
.y23_c02275{bottom:413.826667pt;}
.y22_c02275{bottom:441.506667pt;}
.y21_c02275{bottom:469.026667pt;}
.y20_c02275{bottom:496.733333pt;}
.y1f_c02275{bottom:524.253333pt;}
.y1e_c02275{bottom:542.813333pt;}
.y1d_c02275{bottom:561.213333pt;}
.y1c_c02275{bottom:579.613333pt;}
.y1b_c02275{bottom:598.013333pt;}
.y1a_c02275{bottom:613.053333pt;}
.y19_c02275{bottom:632.093333pt;}
.y18_c02275{bottom:651.293333pt;}
.y17_c02275{bottom:670.333333pt;}
.y14_c02275{bottom:707.813333pt;}
.y13_c02275{bottom:745.253333pt;}
.y12_c02275{bottom:764.293333pt;}
.y11_c02275{bottom:783.333333pt;}
.y10_c02275{bottom:802.373333pt;}
.ye_c02275{bottom:821.573333pt;}
.y8_c02275{bottom:840.613333pt;}
.yb_c02275{bottom:859.653333pt;}
.y7_c02275{bottom:891.813333pt;}
.y6_c02275{bottom:910.373333pt;}
.y5_c02275{bottom:928.773333pt;}
.y4_c02275{bottom:947.200000pt;}
.h5_c02275{height:18.400000pt;}
.h2_c02275{height:20.000000pt;}
.h7_c02275{height:36.800000pt;}
.h8_c02275{height:36.832000pt;}
.h4_c02275{height:37.440000pt;}
.h1_c02275{height:43.441250pt;}
.h9_c02275{height:57.375000pt;}
.h3_c02275{height:62.812500pt;}
.h6_c02275{height:64.500000pt;}
.h0_c02275{height:1056.000000pt;}
.w1_c02275{width:59.232000pt;}
.w4_c02275{width:70.240000pt;}
.w7_c02275{width:81.792000pt;}
.w5_c02275{width:83.872000pt;}
.w6_c02275{width:85.440000pt;}
.w2_c02275{width:226.266667pt;}
.w3_c02275{width:252.386667pt;}
.w0_c02275{width:816.000000pt;}
.x0_c02275{left:0.000000pt;}
.xe_c02275{left:7.040000pt;}
.x11_c02275{left:13.760000pt;}
.x3_c02275{left:14.720000pt;}
.xf_c02275{left:16.160000pt;}
.x13_c02275{left:19.040000pt;}
.x1c_c02275{left:22.880000pt;}
.x21_c02275{left:26.240000pt;}
.x17_c02275{left:31.040000pt;}
.xd_c02275{left:35.040000pt;}
.x16_c02275{left:36.800000pt;}
.x15_c02275{left:37.920000pt;}
.x1f_c02275{left:40.800000pt;}
.x1e_c02275{left:41.920000pt;}
.x20_c02275{left:51.840000pt;}
.x18_c02275{left:54.720000pt;}
.x1d_c02275{left:61.920000pt;}
.x1a_c02275{left:64.480000pt;}
.x14_c02275{left:66.240000pt;}
.x1b_c02275{left:68.480000pt;}
.x19_c02275{left:70.720000pt;}
.x23_c02275{left:85.120000pt;}
.x9_c02275{left:91.680000pt;}
.xb_c02275{left:92.826667pt;}
.x22_c02275{left:95.360000pt;}
.x1_c02275{left:113.472000pt;}
.x8_c02275{left:159.386667pt;}
.x24_c02275{left:166.266667pt;}
.x6_c02275{left:246.106667pt;}
.x5_c02275{left:256.666667pt;}
.xa_c02275{left:386.306667pt;}
.x4_c02275{left:391.266667pt;}
.x7_c02275{left:434.466667pt;}
.x10_c02275{left:470.813333pt;}
.x12_c02275{left:556.893333pt;}
.xc_c02275{left:639.333333pt;}
.x2_c02275{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02276 {
    display:none;
  }
  .loading-indicator_c02276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02276 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02276 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02276" -> "#page-container .classname_c02276")
 */
.pf_c02276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02276 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02276 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02276 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02276 {overflow:visible;}
  }
}
.c_c02276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02276 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02276:after { /* webkit #35443 */
  content: '';
}
.t_c02276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02276 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02276 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02276 { /* info for Javascript */
  display:none;
}
.l_c02276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02276:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02276 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02276.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02276;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02276{font-family:ff1_c02276;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02276;src:url('chunks/assets/font_afeca7a805002f6792802326.woff2')format("woff");}.ff2_c02276{font-family:ff2_c02276;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:ff3_c02276;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02276{font-family:ff3_c02276;line-height:1.311035;font-style:normal;font-weight: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_c02276;src:url('chunks/assets/font_17ef7320ac018ef0fef209a1.woff2')format("woff");}.ff4_c02276{font-family:ff4_c02276;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02276{vertical-align:0.000000px;}
.ls1_c02276{letter-spacing:-0.072000px;}
.ls0_c02276{letter-spacing:0.000000px;}
.sc__c02276{text-shadow:none;}
.sc0_c02276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02276{-webkit-text-stroke:0px transparent;}
.sc0_c02276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02276{word-spacing:-17.928000px;}
.ws1_c02276{word-spacing:0.000000px;}
._4_c02276{margin-left:-2.376000px;}
._0_c02276{margin-left:-1.152000px;}
._1_c02276{width:1.368000px;}
._2_c02276{width:4.176000px;}
._3_c02276{width:5.544000px;}
._6_c02276{width:7.632000px;}
._5_c02276{width:8.640000px;}
._c_c02276{width:13.464000px;}
._d_c02276{width:15.048000px;}
._7_c02276{width:20.304000px;}
._8_c02276{width:21.744000px;}
._9_c02276{width:26.928000px;}
._b_c02276{width:28.224000px;}
._a_c02276{width:29.304000px;}
.fc1_c02276{color:rgb(192,80,77);}
.fc3_c02276{color:rgb(255,255,255);}
.fc2_c02276{color:rgb(17,17,17);}
.fc0_c02276{color:rgb(0,0,0);}
.fs0_c02276{font-size:66.240000px;}
.fs1_c02276{font-size:72.000000px;}
.y0_c02276{bottom:0.000000px;}
.yf_c02276{bottom:4.140000px;}
.yc_c02276{bottom:4.500000px;}
.y3_c02276{bottom:4.680000px;}
.yd_c02276{bottom:4.860000px;}
.ya_c02276{bottom:5.220000px;}
.y16_c02276{bottom:24.840000px;}
.y15_c02276{bottom:25.200000px;}
.y9_c02276{bottom:25.920000px;}
.y2_c02276{bottom:41.796000px;}
.y1_c02276{bottom:75.456000px;}
.y2c_c02276{bottom:196.410000px;}
.y2b_c02276{bottom:227.550000px;}
.y2a_c02276{bottom:258.510000px;}
.y29_c02276{bottom:289.695000px;}
.y28_c02276{bottom:320.655000px;}
.y27_c02276{bottom:351.795000px;}
.y26_c02276{bottom:382.755000px;}
.y25_c02276{bottom:413.895000px;}
.y24_c02276{bottom:444.855000px;}
.y23_c02276{bottom:475.995000px;}
.y22_c02276{bottom:506.955000px;}
.y21_c02276{bottom:538.125000px;}
.y20_c02276{bottom:569.085000px;}
.y1f_c02276{bottom:600.225000px;}
.y1e_c02276{bottom:621.105000px;}
.y1d_c02276{bottom:641.805000px;}
.y1c_c02276{bottom:662.505000px;}
.y1b_c02276{bottom:683.205000px;}
.y1a_c02276{bottom:700.125000px;}
.y19_c02276{bottom:721.545000px;}
.y18_c02276{bottom:742.965000px;}
.y17_c02276{bottom:764.385000px;}
.y14_c02276{bottom:806.550000px;}
.y13_c02276{bottom:848.850000px;}
.y12_c02276{bottom:870.270000px;}
.y11_c02276{bottom:891.690000px;}
.y10_c02276{bottom:913.110000px;}
.ye_c02276{bottom:934.530000px;}
.y8_c02276{bottom:955.950000px;}
.yb_c02276{bottom:977.370000px;}
.y7_c02276{bottom:1003.470000px;}
.y6_c02276{bottom:1024.170000px;}
.y5_c02276{bottom:1044.870000px;}
.y4_c02276{bottom:1065.600000px;}
.h5_c02276{height:20.700000px;}
.h2_c02276{height:22.500000px;}
.h7_c02276{height:41.400000px;}
.h8_c02276{height:41.436000px;}
.h4_c02276{height:42.120000px;}
.h1_c02276{height:48.871406px;}
.h9_c02276{height:64.546875px;}
.h3_c02276{height:70.664062px;}
.h6_c02276{height:72.562500px;}
.h0_c02276{height:1188.000000px;}
.w1_c02276{width:66.636000px;}
.w4_c02276{width:79.020000px;}
.w7_c02276{width:92.016000px;}
.w5_c02276{width:94.356000px;}
.w6_c02276{width:96.120000px;}
.w2_c02276{width:254.550000px;}
.w3_c02276{width:283.935000px;}
.w0_c02276{width:918.000000px;}
.x0_c02276{left:0.000000px;}
.xe_c02276{left:7.920000px;}
.x11_c02276{left:15.480000px;}
.x3_c02276{left:16.560000px;}
.xf_c02276{left:18.180000px;}
.x13_c02276{left:21.420000px;}
.x1c_c02276{left:25.740000px;}
.x21_c02276{left:29.520000px;}
.x17_c02276{left:34.920000px;}
.xd_c02276{left:39.420000px;}
.x16_c02276{left:41.400000px;}
.x15_c02276{left:42.660000px;}
.x1f_c02276{left:45.900000px;}
.x1e_c02276{left:47.160000px;}
.x20_c02276{left:58.320000px;}
.x18_c02276{left:61.560000px;}
.x1d_c02276{left:69.660000px;}
.x1a_c02276{left:72.540000px;}
.x14_c02276{left:74.520000px;}
.x1b_c02276{left:77.040000px;}
.x19_c02276{left:79.560000px;}
.x23_c02276{left:95.760000px;}
.x9_c02276{left:103.140000px;}
.xb_c02276{left:104.430000px;}
.x22_c02276{left:107.280000px;}
.x1_c02276{left:127.656000px;}
.x8_c02276{left:179.310000px;}
.x24_c02276{left:187.050000px;}
.x5_c02276{left:255.810000px;}
.x6_c02276{left:276.870000px;}
.xa_c02276{left:434.595000px;}
.x4_c02276{left:440.175000px;}
.x7_c02276{left:488.775000px;}
.x10_c02276{left:529.665000px;}
.x12_c02276{left:626.505000px;}
.xc_c02276{left:719.250000px;}
.x2_c02276{left:820.950000px;}
@media print{
.v0_c02276{vertical-align:0.000000pt;}
.ls1_c02276{letter-spacing:-0.064000pt;}
.ls0_c02276{letter-spacing:0.000000pt;}
.ws0_c02276{word-spacing:-15.936000pt;}
.ws1_c02276{word-spacing:0.000000pt;}
._4_c02276{margin-left:-2.112000pt;}
._0_c02276{margin-left:-1.024000pt;}
._1_c02276{width:1.216000pt;}
._2_c02276{width:3.712000pt;}
._3_c02276{width:4.928000pt;}
._6_c02276{width:6.784000pt;}
._5_c02276{width:7.680000pt;}
._c_c02276{width:11.968000pt;}
._d_c02276{width:13.376000pt;}
._7_c02276{width:18.048000pt;}
._8_c02276{width:19.328000pt;}
._9_c02276{width:23.936000pt;}
._b_c02276{width:25.088000pt;}
._a_c02276{width:26.048000pt;}
.fs0_c02276{font-size:58.880000pt;}
.fs1_c02276{font-size:64.000000pt;}
.y0_c02276{bottom:0.000000pt;}
.yf_c02276{bottom:3.680000pt;}
.yc_c02276{bottom:4.000000pt;}
.y3_c02276{bottom:4.160000pt;}
.yd_c02276{bottom:4.320000pt;}
.ya_c02276{bottom:4.640000pt;}
.y16_c02276{bottom:22.080000pt;}
.y15_c02276{bottom:22.400000pt;}
.y9_c02276{bottom:23.040000pt;}
.y2_c02276{bottom:37.152000pt;}
.y1_c02276{bottom:67.072000pt;}
.y2c_c02276{bottom:174.586667pt;}
.y2b_c02276{bottom:202.266667pt;}
.y2a_c02276{bottom:229.786667pt;}
.y29_c02276{bottom:257.506667pt;}
.y28_c02276{bottom:285.026667pt;}
.y27_c02276{bottom:312.706667pt;}
.y26_c02276{bottom:340.226667pt;}
.y25_c02276{bottom:367.906667pt;}
.y24_c02276{bottom:395.426667pt;}
.y23_c02276{bottom:423.106667pt;}
.y22_c02276{bottom:450.626667pt;}
.y21_c02276{bottom:478.333333pt;}
.y20_c02276{bottom:505.853333pt;}
.y1f_c02276{bottom:533.533333pt;}
.y1e_c02276{bottom:552.093333pt;}
.y1d_c02276{bottom:570.493333pt;}
.y1c_c02276{bottom:588.893333pt;}
.y1b_c02276{bottom:607.293333pt;}
.y1a_c02276{bottom:622.333333pt;}
.y19_c02276{bottom:641.373333pt;}
.y18_c02276{bottom:660.413333pt;}
.y17_c02276{bottom:679.453333pt;}
.y14_c02276{bottom:716.933333pt;}
.y13_c02276{bottom:754.533333pt;}
.y12_c02276{bottom:773.573333pt;}
.y11_c02276{bottom:792.613333pt;}
.y10_c02276{bottom:811.653333pt;}
.ye_c02276{bottom:830.693333pt;}
.y8_c02276{bottom:849.733333pt;}
.yb_c02276{bottom:868.773333pt;}
.y7_c02276{bottom:891.973333pt;}
.y6_c02276{bottom:910.373333pt;}
.y5_c02276{bottom:928.773333pt;}
.y4_c02276{bottom:947.200000pt;}
.h5_c02276{height:18.400000pt;}
.h2_c02276{height:20.000000pt;}
.h7_c02276{height:36.800000pt;}
.h8_c02276{height:36.832000pt;}
.h4_c02276{height:37.440000pt;}
.h1_c02276{height:43.441250pt;}
.h9_c02276{height:57.375000pt;}
.h3_c02276{height:62.812500pt;}
.h6_c02276{height:64.500000pt;}
.h0_c02276{height:1056.000000pt;}
.w1_c02276{width:59.232000pt;}
.w4_c02276{width:70.240000pt;}
.w7_c02276{width:81.792000pt;}
.w5_c02276{width:83.872000pt;}
.w6_c02276{width:85.440000pt;}
.w2_c02276{width:226.266667pt;}
.w3_c02276{width:252.386667pt;}
.w0_c02276{width:816.000000pt;}
.x0_c02276{left:0.000000pt;}
.xe_c02276{left:7.040000pt;}
.x11_c02276{left:13.760000pt;}
.x3_c02276{left:14.720000pt;}
.xf_c02276{left:16.160000pt;}
.x13_c02276{left:19.040000pt;}
.x1c_c02276{left:22.880000pt;}
.x21_c02276{left:26.240000pt;}
.x17_c02276{left:31.040000pt;}
.xd_c02276{left:35.040000pt;}
.x16_c02276{left:36.800000pt;}
.x15_c02276{left:37.920000pt;}
.x1f_c02276{left:40.800000pt;}
.x1e_c02276{left:41.920000pt;}
.x20_c02276{left:51.840000pt;}
.x18_c02276{left:54.720000pt;}
.x1d_c02276{left:61.920000pt;}
.x1a_c02276{left:64.480000pt;}
.x14_c02276{left:66.240000pt;}
.x1b_c02276{left:68.480000pt;}
.x19_c02276{left:70.720000pt;}
.x23_c02276{left:85.120000pt;}
.x9_c02276{left:91.680000pt;}
.xb_c02276{left:92.826667pt;}
.x22_c02276{left:95.360000pt;}
.x1_c02276{left:113.472000pt;}
.x8_c02276{left:159.386667pt;}
.x24_c02276{left:166.266667pt;}
.x5_c02276{left:227.386667pt;}
.x6_c02276{left:246.106667pt;}
.xa_c02276{left:386.306667pt;}
.x4_c02276{left:391.266667pt;}
.x7_c02276{left:434.466667pt;}
.x10_c02276{left:470.813333pt;}
.x12_c02276{left:556.893333pt;}
.xc_c02276{left:639.333333pt;}
.x2_c02276{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02277 {
    display:none;
  }
  .loading-indicator_c02277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02277 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02277 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02277" -> "#page-container .classname_c02277")
 */
.pf_c02277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02277 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02277 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02277 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02277 {overflow:visible;}
  }
}
.c_c02277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02277 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02277:after { /* webkit #35443 */
  content: '';
}
.t_c02277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02277 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02277 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02277 { /* info for Javascript */
  display:none;
}
.l_c02277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02277:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02277 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02277.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02277;src:url('chunks/assets/font_044dbdafc4387d37cb3ad241.woff2')format("woff");}.ff1_c02277{font-family:ff1_c02277;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02277;src:url('chunks/assets/font_c51aac10cc25e7fd5907842e.woff2')format("woff");}.ff2_c02277{font-family:ff2_c02277;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:ff3_c02277;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02277{font-family:ff3_c02277;line-height:1.311035;font-style:normal;font-weight: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_c02277;src:url('chunks/assets/font_d034815337a61870d80124e6.woff2')format("woff");}.ff4_c02277{font-family:ff4_c02277;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02277{vertical-align:0.000000px;}
.ls0_c02277{letter-spacing:0.000000px;}
.sc__c02277{text-shadow:none;}
.sc0_c02277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02277{-webkit-text-stroke:0px transparent;}
.sc0_c02277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02277{word-spacing:0.000000px;}
._0_c02277{margin-left:-1.152000px;}
._1_c02277{width:1.272000px;}
._9_c02277{width:2.544000px;}
._4_c02277{width:5.112000px;}
._5_c02277{width:7.080000px;}
._a_c02277{width:12.312000px;}
._2_c02277{width:14.256000px;}
._3_c02277{width:15.624000px;}
._b_c02277{width:23.400000px;}
._c_c02277{width:25.056000px;}
._6_c02277{width:27.576000px;}
._7_c02277{width:28.728000px;}
._8_c02277{width:30.096000px;}
.fc1_c02277{color:rgb(192,80,77);}
.fc3_c02277{color:rgb(255,255,255);}
.fc2_c02277{color:rgb(17,17,17);}
.fc0_c02277{color:rgb(0,0,0);}
.fs0_c02277{font-size:66.240000px;}
.fs1_c02277{font-size:72.000000px;}
.y0_c02277{bottom:0.000000px;}
.yf_c02277{bottom:4.140000px;}
.yc_c02277{bottom:4.500000px;}
.y3_c02277{bottom:4.680000px;}
.yd_c02277{bottom:4.860000px;}
.ya_c02277{bottom:5.220000px;}
.y16_c02277{bottom:24.840000px;}
.y15_c02277{bottom:25.200000px;}
.y9_c02277{bottom:25.920000px;}
.y2_c02277{bottom:41.796000px;}
.y1_c02277{bottom:75.456000px;}
.y27_c02277{bottom:341.355000px;}
.y26_c02277{bottom:372.495000px;}
.y25_c02277{bottom:403.455000px;}
.y24_c02277{bottom:434.595000px;}
.y23_c02277{bottom:465.555000px;}
.y22_c02277{bottom:496.695000px;}
.y21_c02277{bottom:527.655000px;}
.y20_c02277{bottom:558.825000px;}
.y1f_c02277{bottom:589.785000px;}
.y1e_c02277{bottom:610.665000px;}
.y1d_c02277{bottom:631.365000px;}
.y1c_c02277{bottom:652.065000px;}
.y1b_c02277{bottom:672.765000px;}
.y1a_c02277{bottom:689.685000px;}
.y19_c02277{bottom:711.105000px;}
.y18_c02277{bottom:732.705000px;}
.y17_c02277{bottom:754.125000px;}
.y14_c02277{bottom:796.290000px;}
.y13_c02277{bottom:838.410000px;}
.y12_c02277{bottom:859.830000px;}
.y11_c02277{bottom:881.250000px;}
.y10_c02277{bottom:902.670000px;}
.ye_c02277{bottom:924.270000px;}
.y8_c02277{bottom:945.690000px;}
.yb_c02277{bottom:967.110000px;}
.y7_c02277{bottom:1003.290000px;}
.y6_c02277{bottom:1024.170000px;}
.y5_c02277{bottom:1044.870000px;}
.y4_c02277{bottom:1065.600000px;}
.h5_c02277{height:20.700000px;}
.h2_c02277{height:22.500000px;}
.h7_c02277{height:41.400000px;}
.h8_c02277{height:41.436000px;}
.h4_c02277{height:42.120000px;}
.h1_c02277{height:48.871406px;}
.h9_c02277{height:64.546875px;}
.h3_c02277{height:70.664062px;}
.h6_c02277{height:72.562500px;}
.h0_c02277{height:1188.000000px;}
.w1_c02277{width:66.636000px;}
.w4_c02277{width:79.020000px;}
.w7_c02277{width:92.016000px;}
.w5_c02277{width:94.356000px;}
.w6_c02277{width:96.120000px;}
.w2_c02277{width:254.550000px;}
.w3_c02277{width:283.935000px;}
.w0_c02277{width:918.000000px;}
.x0_c02277{left:0.000000px;}
.xe_c02277{left:7.920000px;}
.x11_c02277{left:15.480000px;}
.x3_c02277{left:16.560000px;}
.xf_c02277{left:18.180000px;}
.x13_c02277{left:21.420000px;}
.x1c_c02277{left:25.740000px;}
.x21_c02277{left:29.520000px;}
.x17_c02277{left:34.920000px;}
.xd_c02277{left:39.420000px;}
.x16_c02277{left:41.400000px;}
.x15_c02277{left:42.660000px;}
.x1f_c02277{left:45.900000px;}
.x1e_c02277{left:47.160000px;}
.x20_c02277{left:58.320000px;}
.x18_c02277{left:61.560000px;}
.x1d_c02277{left:69.660000px;}
.x1a_c02277{left:72.540000px;}
.x14_c02277{left:74.520000px;}
.x1b_c02277{left:77.040000px;}
.x19_c02277{left:79.560000px;}
.x23_c02277{left:95.760000px;}
.x9_c02277{left:103.140000px;}
.xb_c02277{left:104.430000px;}
.x22_c02277{left:107.280000px;}
.x1_c02277{left:127.656000px;}
.x8_c02277{left:179.310000px;}
.x24_c02277{left:187.050000px;}
.x6_c02277{left:276.870000px;}
.x5_c02277{left:296.715000px;}
.xa_c02277{left:434.595000px;}
.x4_c02277{left:440.175000px;}
.x7_c02277{left:488.775000px;}
.x10_c02277{left:529.665000px;}
.x12_c02277{left:626.505000px;}
.xc_c02277{left:719.250000px;}
.x2_c02277{left:820.950000px;}
@media print{
.v0_c02277{vertical-align:0.000000pt;}
.ls0_c02277{letter-spacing:0.000000pt;}
.ws0_c02277{word-spacing:0.000000pt;}
._0_c02277{margin-left:-1.024000pt;}
._1_c02277{width:1.130667pt;}
._9_c02277{width:2.261333pt;}
._4_c02277{width:4.544000pt;}
._5_c02277{width:6.293333pt;}
._a_c02277{width:10.944000pt;}
._2_c02277{width:12.672000pt;}
._3_c02277{width:13.888000pt;}
._b_c02277{width:20.800000pt;}
._c_c02277{width:22.272000pt;}
._6_c02277{width:24.512000pt;}
._7_c02277{width:25.536000pt;}
._8_c02277{width:26.752000pt;}
.fs0_c02277{font-size:58.880000pt;}
.fs1_c02277{font-size:64.000000pt;}
.y0_c02277{bottom:0.000000pt;}
.yf_c02277{bottom:3.680000pt;}
.yc_c02277{bottom:4.000000pt;}
.y3_c02277{bottom:4.160000pt;}
.yd_c02277{bottom:4.320000pt;}
.ya_c02277{bottom:4.640000pt;}
.y16_c02277{bottom:22.080000pt;}
.y15_c02277{bottom:22.400000pt;}
.y9_c02277{bottom:23.040000pt;}
.y2_c02277{bottom:37.152000pt;}
.y1_c02277{bottom:67.072000pt;}
.y27_c02277{bottom:303.426667pt;}
.y26_c02277{bottom:331.106667pt;}
.y25_c02277{bottom:358.626667pt;}
.y24_c02277{bottom:386.306667pt;}
.y23_c02277{bottom:413.826667pt;}
.y22_c02277{bottom:441.506667pt;}
.y21_c02277{bottom:469.026667pt;}
.y20_c02277{bottom:496.733333pt;}
.y1f_c02277{bottom:524.253333pt;}
.y1e_c02277{bottom:542.813333pt;}
.y1d_c02277{bottom:561.213333pt;}
.y1c_c02277{bottom:579.613333pt;}
.y1b_c02277{bottom:598.013333pt;}
.y1a_c02277{bottom:613.053333pt;}
.y19_c02277{bottom:632.093333pt;}
.y18_c02277{bottom:651.293333pt;}
.y17_c02277{bottom:670.333333pt;}
.y14_c02277{bottom:707.813333pt;}
.y13_c02277{bottom:745.253333pt;}
.y12_c02277{bottom:764.293333pt;}
.y11_c02277{bottom:783.333333pt;}
.y10_c02277{bottom:802.373333pt;}
.ye_c02277{bottom:821.573333pt;}
.y8_c02277{bottom:840.613333pt;}
.yb_c02277{bottom:859.653333pt;}
.y7_c02277{bottom:891.813333pt;}
.y6_c02277{bottom:910.373333pt;}
.y5_c02277{bottom:928.773333pt;}
.y4_c02277{bottom:947.200000pt;}
.h5_c02277{height:18.400000pt;}
.h2_c02277{height:20.000000pt;}
.h7_c02277{height:36.800000pt;}
.h8_c02277{height:36.832000pt;}
.h4_c02277{height:37.440000pt;}
.h1_c02277{height:43.441250pt;}
.h9_c02277{height:57.375000pt;}
.h3_c02277{height:62.812500pt;}
.h6_c02277{height:64.500000pt;}
.h0_c02277{height:1056.000000pt;}
.w1_c02277{width:59.232000pt;}
.w4_c02277{width:70.240000pt;}
.w7_c02277{width:81.792000pt;}
.w5_c02277{width:83.872000pt;}
.w6_c02277{width:85.440000pt;}
.w2_c02277{width:226.266667pt;}
.w3_c02277{width:252.386667pt;}
.w0_c02277{width:816.000000pt;}
.x0_c02277{left:0.000000pt;}
.xe_c02277{left:7.040000pt;}
.x11_c02277{left:13.760000pt;}
.x3_c02277{left:14.720000pt;}
.xf_c02277{left:16.160000pt;}
.x13_c02277{left:19.040000pt;}
.x1c_c02277{left:22.880000pt;}
.x21_c02277{left:26.240000pt;}
.x17_c02277{left:31.040000pt;}
.xd_c02277{left:35.040000pt;}
.x16_c02277{left:36.800000pt;}
.x15_c02277{left:37.920000pt;}
.x1f_c02277{left:40.800000pt;}
.x1e_c02277{left:41.920000pt;}
.x20_c02277{left:51.840000pt;}
.x18_c02277{left:54.720000pt;}
.x1d_c02277{left:61.920000pt;}
.x1a_c02277{left:64.480000pt;}
.x14_c02277{left:66.240000pt;}
.x1b_c02277{left:68.480000pt;}
.x19_c02277{left:70.720000pt;}
.x23_c02277{left:85.120000pt;}
.x9_c02277{left:91.680000pt;}
.xb_c02277{left:92.826667pt;}
.x22_c02277{left:95.360000pt;}
.x1_c02277{left:113.472000pt;}
.x8_c02277{left:159.386667pt;}
.x24_c02277{left:166.266667pt;}
.x6_c02277{left:246.106667pt;}
.x5_c02277{left:263.746667pt;}
.xa_c02277{left:386.306667pt;}
.x4_c02277{left:391.266667pt;}
.x7_c02277{left:434.466667pt;}
.x10_c02277{left:470.813333pt;}
.x12_c02277{left:556.893333pt;}
.xc_c02277{left:639.333333pt;}
.x2_c02277{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02278 {
    display:none;
  }
  .loading-indicator_c02278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02278 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02278 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02278" -> "#page-container .classname_c02278")
 */
.pf_c02278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02278 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02278 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02278 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02278 {overflow:visible;}
  }
}
.c_c02278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02278 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02278:after { /* webkit #35443 */
  content: '';
}
.t_c02278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02278 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02278 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02278 { /* info for Javascript */
  display:none;
}
.l_c02278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02278:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02278 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02278.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02278;src:url('chunks/assets/font_5e4ddc77dc958b0a617b28da.woff2')format("woff");}.ff1_c02278{font-family:ff1_c02278;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02278;src:url('chunks/assets/font_4f35e7ac813f1354f0eaab57.woff2')format("woff");}.ff2_c02278{font-family:ff2_c02278;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:ff3_c02278;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02278{font-family:ff3_c02278;line-height:1.311035;font-style:normal;font-weight: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_c02278;src:url('chunks/assets/font_e6fa8236039589a6c5df17bd.woff2')format("woff");}.ff4_c02278{font-family:ff4_c02278;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02278{vertical-align:0.000000px;}
.ls0_c02278{letter-spacing:0.000000px;}
.sc__c02278{text-shadow:none;}
.sc0_c02278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02278{-webkit-text-stroke:0px transparent;}
.sc0_c02278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02278{word-spacing:0.000000px;}
._b_c02278{margin-left:-2.232000px;}
._0_c02278{margin-left:-1.152000px;}
._1_c02278{width:1.704000px;}
._2_c02278{width:2.760000px;}
._3_c02278{width:4.800000px;}
._4_c02278{width:6.576000px;}
._5_c02278{width:7.992000px;}
._6_c02278{width:9.216000px;}
._9_c02278{width:14.040000px;}
._a_c02278{width:15.144000px;}
._7_c02278{width:21.816000px;}
._8_c02278{width:22.992000px;}
.fc1_c02278{color:rgb(192,80,77);}
.fc3_c02278{color:rgb(255,255,255);}
.fc2_c02278{color:rgb(17,17,17);}
.fc0_c02278{color:rgb(0,0,0);}
.fs0_c02278{font-size:66.240000px;}
.fs1_c02278{font-size:72.000000px;}
.y0_c02278{bottom:0.000000px;}
.yf_c02278{bottom:4.140000px;}
.yc_c02278{bottom:4.500000px;}
.y3_c02278{bottom:4.680000px;}
.yd_c02278{bottom:4.860000px;}
.ya_c02278{bottom:5.220000px;}
.y16_c02278{bottom:24.840000px;}
.y15_c02278{bottom:25.200000px;}
.y9_c02278{bottom:25.920000px;}
.y2_c02278{bottom:41.796000px;}
.y1_c02278{bottom:75.456000px;}
.y29_c02278{bottom:279.255000px;}
.y28_c02278{bottom:310.395000px;}
.y27_c02278{bottom:341.355000px;}
.y26_c02278{bottom:372.495000px;}
.y25_c02278{bottom:403.455000px;}
.y24_c02278{bottom:434.595000px;}
.y23_c02278{bottom:465.555000px;}
.y22_c02278{bottom:496.695000px;}
.y21_c02278{bottom:527.655000px;}
.y20_c02278{bottom:558.825000px;}
.y1f_c02278{bottom:589.785000px;}
.y1e_c02278{bottom:610.665000px;}
.y1d_c02278{bottom:631.365000px;}
.y1c_c02278{bottom:652.065000px;}
.y1b_c02278{bottom:672.765000px;}
.y1a_c02278{bottom:689.685000px;}
.y19_c02278{bottom:711.105000px;}
.y18_c02278{bottom:732.705000px;}
.y17_c02278{bottom:754.125000px;}
.y14_c02278{bottom:796.290000px;}
.y13_c02278{bottom:838.410000px;}
.y12_c02278{bottom:859.830000px;}
.y11_c02278{bottom:881.250000px;}
.y10_c02278{bottom:902.670000px;}
.ye_c02278{bottom:924.270000px;}
.y8_c02278{bottom:945.690000px;}
.yb_c02278{bottom:967.110000px;}
.y7_c02278{bottom:1003.290000px;}
.y6_c02278{bottom:1024.170000px;}
.y5_c02278{bottom:1044.870000px;}
.y4_c02278{bottom:1065.600000px;}
.h5_c02278{height:20.700000px;}
.h2_c02278{height:22.500000px;}
.h7_c02278{height:41.400000px;}
.h8_c02278{height:41.436000px;}
.h4_c02278{height:42.120000px;}
.h1_c02278{height:48.871406px;}
.h9_c02278{height:64.546875px;}
.h3_c02278{height:70.664062px;}
.h6_c02278{height:72.562500px;}
.h0_c02278{height:1188.000000px;}
.w1_c02278{width:66.636000px;}
.w4_c02278{width:79.020000px;}
.w7_c02278{width:92.016000px;}
.w5_c02278{width:94.356000px;}
.w6_c02278{width:96.120000px;}
.w2_c02278{width:254.550000px;}
.w3_c02278{width:283.935000px;}
.w0_c02278{width:918.000000px;}
.x0_c02278{left:0.000000px;}
.xe_c02278{left:7.920000px;}
.x11_c02278{left:15.480000px;}
.x3_c02278{left:16.560000px;}
.xf_c02278{left:18.180000px;}
.x13_c02278{left:21.420000px;}
.x1c_c02278{left:25.740000px;}
.x21_c02278{left:29.520000px;}
.x17_c02278{left:34.920000px;}
.xd_c02278{left:39.420000px;}
.x16_c02278{left:41.400000px;}
.x15_c02278{left:42.660000px;}
.x1f_c02278{left:45.900000px;}
.x1e_c02278{left:47.160000px;}
.x20_c02278{left:58.320000px;}
.x18_c02278{left:61.560000px;}
.x1d_c02278{left:69.660000px;}
.x1a_c02278{left:72.540000px;}
.x14_c02278{left:74.520000px;}
.x1b_c02278{left:77.040000px;}
.x19_c02278{left:79.560000px;}
.x23_c02278{left:95.760000px;}
.x9_c02278{left:103.140000px;}
.xb_c02278{left:104.430000px;}
.x22_c02278{left:107.280000px;}
.x1_c02278{left:127.656000px;}
.x8_c02278{left:179.310000px;}
.x24_c02278{left:187.050000px;}
.x6_c02278{left:276.870000px;}
.x5_c02278{left:281.010000px;}
.xa_c02278{left:434.595000px;}
.x4_c02278{left:440.175000px;}
.x7_c02278{left:488.775000px;}
.x10_c02278{left:529.665000px;}
.x12_c02278{left:626.505000px;}
.xc_c02278{left:719.250000px;}
.x2_c02278{left:820.950000px;}
@media print{
.v0_c02278{vertical-align:0.000000pt;}
.ls0_c02278{letter-spacing:0.000000pt;}
.ws0_c02278{word-spacing:0.000000pt;}
._b_c02278{margin-left:-1.984000pt;}
._0_c02278{margin-left:-1.024000pt;}
._1_c02278{width:1.514667pt;}
._2_c02278{width:2.453333pt;}
._3_c02278{width:4.266667pt;}
._4_c02278{width:5.845333pt;}
._5_c02278{width:7.104000pt;}
._6_c02278{width:8.192000pt;}
._9_c02278{width:12.480000pt;}
._a_c02278{width:13.461333pt;}
._7_c02278{width:19.392000pt;}
._8_c02278{width:20.437333pt;}
.fs0_c02278{font-size:58.880000pt;}
.fs1_c02278{font-size:64.000000pt;}
.y0_c02278{bottom:0.000000pt;}
.yf_c02278{bottom:3.680000pt;}
.yc_c02278{bottom:4.000000pt;}
.y3_c02278{bottom:4.160000pt;}
.yd_c02278{bottom:4.320000pt;}
.ya_c02278{bottom:4.640000pt;}
.y16_c02278{bottom:22.080000pt;}
.y15_c02278{bottom:22.400000pt;}
.y9_c02278{bottom:23.040000pt;}
.y2_c02278{bottom:37.152000pt;}
.y1_c02278{bottom:67.072000pt;}
.y29_c02278{bottom:248.226667pt;}
.y28_c02278{bottom:275.906667pt;}
.y27_c02278{bottom:303.426667pt;}
.y26_c02278{bottom:331.106667pt;}
.y25_c02278{bottom:358.626667pt;}
.y24_c02278{bottom:386.306667pt;}
.y23_c02278{bottom:413.826667pt;}
.y22_c02278{bottom:441.506667pt;}
.y21_c02278{bottom:469.026667pt;}
.y20_c02278{bottom:496.733333pt;}
.y1f_c02278{bottom:524.253333pt;}
.y1e_c02278{bottom:542.813333pt;}
.y1d_c02278{bottom:561.213333pt;}
.y1c_c02278{bottom:579.613333pt;}
.y1b_c02278{bottom:598.013333pt;}
.y1a_c02278{bottom:613.053333pt;}
.y19_c02278{bottom:632.093333pt;}
.y18_c02278{bottom:651.293333pt;}
.y17_c02278{bottom:670.333333pt;}
.y14_c02278{bottom:707.813333pt;}
.y13_c02278{bottom:745.253333pt;}
.y12_c02278{bottom:764.293333pt;}
.y11_c02278{bottom:783.333333pt;}
.y10_c02278{bottom:802.373333pt;}
.ye_c02278{bottom:821.573333pt;}
.y8_c02278{bottom:840.613333pt;}
.yb_c02278{bottom:859.653333pt;}
.y7_c02278{bottom:891.813333pt;}
.y6_c02278{bottom:910.373333pt;}
.y5_c02278{bottom:928.773333pt;}
.y4_c02278{bottom:947.200000pt;}
.h5_c02278{height:18.400000pt;}
.h2_c02278{height:20.000000pt;}
.h7_c02278{height:36.800000pt;}
.h8_c02278{height:36.832000pt;}
.h4_c02278{height:37.440000pt;}
.h1_c02278{height:43.441250pt;}
.h9_c02278{height:57.375000pt;}
.h3_c02278{height:62.812500pt;}
.h6_c02278{height:64.500000pt;}
.h0_c02278{height:1056.000000pt;}
.w1_c02278{width:59.232000pt;}
.w4_c02278{width:70.240000pt;}
.w7_c02278{width:81.792000pt;}
.w5_c02278{width:83.872000pt;}
.w6_c02278{width:85.440000pt;}
.w2_c02278{width:226.266667pt;}
.w3_c02278{width:252.386667pt;}
.w0_c02278{width:816.000000pt;}
.x0_c02278{left:0.000000pt;}
.xe_c02278{left:7.040000pt;}
.x11_c02278{left:13.760000pt;}
.x3_c02278{left:14.720000pt;}
.xf_c02278{left:16.160000pt;}
.x13_c02278{left:19.040000pt;}
.x1c_c02278{left:22.880000pt;}
.x21_c02278{left:26.240000pt;}
.x17_c02278{left:31.040000pt;}
.xd_c02278{left:35.040000pt;}
.x16_c02278{left:36.800000pt;}
.x15_c02278{left:37.920000pt;}
.x1f_c02278{left:40.800000pt;}
.x1e_c02278{left:41.920000pt;}
.x20_c02278{left:51.840000pt;}
.x18_c02278{left:54.720000pt;}
.x1d_c02278{left:61.920000pt;}
.x1a_c02278{left:64.480000pt;}
.x14_c02278{left:66.240000pt;}
.x1b_c02278{left:68.480000pt;}
.x19_c02278{left:70.720000pt;}
.x23_c02278{left:85.120000pt;}
.x9_c02278{left:91.680000pt;}
.xb_c02278{left:92.826667pt;}
.x22_c02278{left:95.360000pt;}
.x1_c02278{left:113.472000pt;}
.x8_c02278{left:159.386667pt;}
.x24_c02278{left:166.266667pt;}
.x6_c02278{left:246.106667pt;}
.x5_c02278{left:249.786667pt;}
.xa_c02278{left:386.306667pt;}
.x4_c02278{left:391.266667pt;}
.x7_c02278{left:434.466667pt;}
.x10_c02278{left:470.813333pt;}
.x12_c02278{left:556.893333pt;}
.xc_c02278{left:639.333333pt;}
.x2_c02278{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02279 {
    display:none;
  }
  .loading-indicator_c02279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02279 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02279 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02279" -> "#page-container .classname_c02279")
 */
.pf_c02279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02279 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02279 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02279 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02279 {overflow:visible;}
  }
}
.c_c02279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02279 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02279:after { /* webkit #35443 */
  content: '';
}
.t_c02279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02279 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02279 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02279 { /* info for Javascript */
  display:none;
}
.l_c02279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02279:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02279 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02279.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02279;src:url('chunks/assets/font_c22c8f5e13fa89f02f917d16.woff2')format("woff");}.ff1_c02279{font-family:ff1_c02279;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02279;src:url('chunks/assets/font_04861c5f75926d5e50fad061.woff2')format("woff");}.ff2_c02279{font-family:ff2_c02279;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:ff3_c02279;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02279{font-family:ff3_c02279;line-height:1.311035;font-style:normal;font-weight: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_c02279;src:url('chunks/assets/font_123a8c1ce3e4d670ef0024b8.woff2')format("woff");}.ff4_c02279{font-family:ff4_c02279;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02279{vertical-align:0.000000px;}
.ls0_c02279{letter-spacing:0.000000px;}
.sc__c02279{text-shadow:none;}
.sc0_c02279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02279{-webkit-text-stroke:0px transparent;}
.sc0_c02279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02279{word-spacing:-18.000000px;}
.ws1_c02279{word-spacing:0.000000px;}
._0_c02279{margin-left:-1.152000px;}
._1_c02279{width:1.380000px;}
._2_c02279{width:2.676000px;}
._a_c02279{width:3.804000px;}
._6_c02279{width:5.112000px;}
._7_c02279{width:6.972000px;}
._b_c02279{width:7.980000px;}
._3_c02279{width:12.816000px;}
._5_c02279{width:13.896000px;}
._4_c02279{width:14.904000px;}
._8_c02279{width:27.576000px;}
._9_c02279{width:28.644000px;}
.fc1_c02279{color:rgb(192,80,77);}
.fc3_c02279{color:rgb(255,255,255);}
.fc2_c02279{color:rgb(17,17,17);}
.fc0_c02279{color:rgb(0,0,0);}
.fs0_c02279{font-size:66.240000px;}
.fs1_c02279{font-size:72.000000px;}
.y0_c02279{bottom:0.000000px;}
.yf_c02279{bottom:4.140000px;}
.yc_c02279{bottom:4.500000px;}
.y3_c02279{bottom:4.680000px;}
.yd_c02279{bottom:4.860000px;}
.ya_c02279{bottom:5.220000px;}
.y16_c02279{bottom:24.840000px;}
.y15_c02279{bottom:25.200000px;}
.y9_c02279{bottom:25.920000px;}
.y2_c02279{bottom:41.796000px;}
.y1_c02279{bottom:75.456000px;}
.y28_c02279{bottom:320.655000px;}
.y27_c02279{bottom:351.795000px;}
.y26_c02279{bottom:382.755000px;}
.y25_c02279{bottom:413.895000px;}
.y24_c02279{bottom:444.855000px;}
.y23_c02279{bottom:475.995000px;}
.y22_c02279{bottom:506.955000px;}
.y21_c02279{bottom:538.125000px;}
.y20_c02279{bottom:569.085000px;}
.y1f_c02279{bottom:600.225000px;}
.y1e_c02279{bottom:621.105000px;}
.y1d_c02279{bottom:641.805000px;}
.y1c_c02279{bottom:662.505000px;}
.y1b_c02279{bottom:683.205000px;}
.y1a_c02279{bottom:700.125000px;}
.y19_c02279{bottom:721.545000px;}
.y18_c02279{bottom:742.965000px;}
.y17_c02279{bottom:764.385000px;}
.y14_c02279{bottom:806.550000px;}
.y13_c02279{bottom:848.850000px;}
.y12_c02279{bottom:870.270000px;}
.y11_c02279{bottom:891.690000px;}
.y10_c02279{bottom:913.110000px;}
.ye_c02279{bottom:934.530000px;}
.y8_c02279{bottom:955.950000px;}
.yb_c02279{bottom:977.370000px;}
.y7_c02279{bottom:1003.470000px;}
.y6_c02279{bottom:1024.170000px;}
.y5_c02279{bottom:1044.870000px;}
.y4_c02279{bottom:1065.600000px;}
.h5_c02279{height:20.700000px;}
.h2_c02279{height:22.500000px;}
.h7_c02279{height:41.400000px;}
.h8_c02279{height:41.436000px;}
.h4_c02279{height:42.120000px;}
.h1_c02279{height:48.871406px;}
.h9_c02279{height:64.546875px;}
.h3_c02279{height:70.664062px;}
.h6_c02279{height:72.562500px;}
.h0_c02279{height:1188.000000px;}
.w1_c02279{width:66.636000px;}
.w4_c02279{width:79.020000px;}
.w7_c02279{width:92.016000px;}
.w5_c02279{width:94.356000px;}
.w6_c02279{width:96.120000px;}
.w2_c02279{width:254.550000px;}
.w3_c02279{width:283.935000px;}
.w0_c02279{width:918.000000px;}
.x0_c02279{left:0.000000px;}
.xe_c02279{left:7.920000px;}
.x11_c02279{left:15.480000px;}
.x3_c02279{left:16.560000px;}
.xf_c02279{left:18.180000px;}
.x13_c02279{left:21.420000px;}
.x1c_c02279{left:25.740000px;}
.x21_c02279{left:29.520000px;}
.x17_c02279{left:34.920000px;}
.xd_c02279{left:39.420000px;}
.x16_c02279{left:41.400000px;}
.x15_c02279{left:42.660000px;}
.x1f_c02279{left:45.900000px;}
.x1e_c02279{left:47.160000px;}
.x20_c02279{left:58.320000px;}
.x18_c02279{left:61.560000px;}
.x1d_c02279{left:69.660000px;}
.x1a_c02279{left:72.540000px;}
.x14_c02279{left:74.520000px;}
.x1b_c02279{left:77.040000px;}
.x19_c02279{left:79.560000px;}
.x23_c02279{left:95.760000px;}
.x9_c02279{left:103.140000px;}
.xb_c02279{left:104.430000px;}
.x22_c02279{left:107.280000px;}
.x1_c02279{left:127.656000px;}
.x8_c02279{left:179.310000px;}
.x24_c02279{left:187.050000px;}
.x6_c02279{left:276.870000px;}
.x5_c02279{left:294.870000px;}
.xa_c02279{left:434.595000px;}
.x4_c02279{left:440.175000px;}
.x7_c02279{left:488.775000px;}
.x10_c02279{left:529.665000px;}
.x12_c02279{left:626.505000px;}
.xc_c02279{left:719.250000px;}
.x2_c02279{left:820.950000px;}
@media print{
.v0_c02279{vertical-align:0.000000pt;}
.ls0_c02279{letter-spacing:0.000000pt;}
.ws0_c02279{word-spacing:-16.000000pt;}
.ws1_c02279{word-spacing:0.000000pt;}
._0_c02279{margin-left:-1.024000pt;}
._1_c02279{width:1.226667pt;}
._2_c02279{width:2.378667pt;}
._a_c02279{width:3.381333pt;}
._6_c02279{width:4.544000pt;}
._7_c02279{width:6.197333pt;}
._b_c02279{width:7.093333pt;}
._3_c02279{width:11.392000pt;}
._5_c02279{width:12.352000pt;}
._4_c02279{width:13.248000pt;}
._8_c02279{width:24.512000pt;}
._9_c02279{width:25.461333pt;}
.fs0_c02279{font-size:58.880000pt;}
.fs1_c02279{font-size:64.000000pt;}
.y0_c02279{bottom:0.000000pt;}
.yf_c02279{bottom:3.680000pt;}
.yc_c02279{bottom:4.000000pt;}
.y3_c02279{bottom:4.160000pt;}
.yd_c02279{bottom:4.320000pt;}
.ya_c02279{bottom:4.640000pt;}
.y16_c02279{bottom:22.080000pt;}
.y15_c02279{bottom:22.400000pt;}
.y9_c02279{bottom:23.040000pt;}
.y2_c02279{bottom:37.152000pt;}
.y1_c02279{bottom:67.072000pt;}
.y28_c02279{bottom:285.026667pt;}
.y27_c02279{bottom:312.706667pt;}
.y26_c02279{bottom:340.226667pt;}
.y25_c02279{bottom:367.906667pt;}
.y24_c02279{bottom:395.426667pt;}
.y23_c02279{bottom:423.106667pt;}
.y22_c02279{bottom:450.626667pt;}
.y21_c02279{bottom:478.333333pt;}
.y20_c02279{bottom:505.853333pt;}
.y1f_c02279{bottom:533.533333pt;}
.y1e_c02279{bottom:552.093333pt;}
.y1d_c02279{bottom:570.493333pt;}
.y1c_c02279{bottom:588.893333pt;}
.y1b_c02279{bottom:607.293333pt;}
.y1a_c02279{bottom:622.333333pt;}
.y19_c02279{bottom:641.373333pt;}
.y18_c02279{bottom:660.413333pt;}
.y17_c02279{bottom:679.453333pt;}
.y14_c02279{bottom:716.933333pt;}
.y13_c02279{bottom:754.533333pt;}
.y12_c02279{bottom:773.573333pt;}
.y11_c02279{bottom:792.613333pt;}
.y10_c02279{bottom:811.653333pt;}
.ye_c02279{bottom:830.693333pt;}
.y8_c02279{bottom:849.733333pt;}
.yb_c02279{bottom:868.773333pt;}
.y7_c02279{bottom:891.973333pt;}
.y6_c02279{bottom:910.373333pt;}
.y5_c02279{bottom:928.773333pt;}
.y4_c02279{bottom:947.200000pt;}
.h5_c02279{height:18.400000pt;}
.h2_c02279{height:20.000000pt;}
.h7_c02279{height:36.800000pt;}
.h8_c02279{height:36.832000pt;}
.h4_c02279{height:37.440000pt;}
.h1_c02279{height:43.441250pt;}
.h9_c02279{height:57.375000pt;}
.h3_c02279{height:62.812500pt;}
.h6_c02279{height:64.500000pt;}
.h0_c02279{height:1056.000000pt;}
.w1_c02279{width:59.232000pt;}
.w4_c02279{width:70.240000pt;}
.w7_c02279{width:81.792000pt;}
.w5_c02279{width:83.872000pt;}
.w6_c02279{width:85.440000pt;}
.w2_c02279{width:226.266667pt;}
.w3_c02279{width:252.386667pt;}
.w0_c02279{width:816.000000pt;}
.x0_c02279{left:0.000000pt;}
.xe_c02279{left:7.040000pt;}
.x11_c02279{left:13.760000pt;}
.x3_c02279{left:14.720000pt;}
.xf_c02279{left:16.160000pt;}
.x13_c02279{left:19.040000pt;}
.x1c_c02279{left:22.880000pt;}
.x21_c02279{left:26.240000pt;}
.x17_c02279{left:31.040000pt;}
.xd_c02279{left:35.040000pt;}
.x16_c02279{left:36.800000pt;}
.x15_c02279{left:37.920000pt;}
.x1f_c02279{left:40.800000pt;}
.x1e_c02279{left:41.920000pt;}
.x20_c02279{left:51.840000pt;}
.x18_c02279{left:54.720000pt;}
.x1d_c02279{left:61.920000pt;}
.x1a_c02279{left:64.480000pt;}
.x14_c02279{left:66.240000pt;}
.x1b_c02279{left:68.480000pt;}
.x19_c02279{left:70.720000pt;}
.x23_c02279{left:85.120000pt;}
.x9_c02279{left:91.680000pt;}
.xb_c02279{left:92.826667pt;}
.x22_c02279{left:95.360000pt;}
.x1_c02279{left:113.472000pt;}
.x8_c02279{left:159.386667pt;}
.x24_c02279{left:166.266667pt;}
.x6_c02279{left:246.106667pt;}
.x5_c02279{left:262.106667pt;}
.xa_c02279{left:386.306667pt;}
.x4_c02279{left:391.266667pt;}
.x7_c02279{left:434.466667pt;}
.x10_c02279{left:470.813333pt;}
.x12_c02279{left:556.893333pt;}
.xc_c02279{left:639.333333pt;}
.x2_c02279{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02280 {
    display:none;
  }
  .loading-indicator_c02280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02280 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02280 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02280" -> "#page-container .classname_c02280")
 */
.pf_c02280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02280 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02280 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02280 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02280 {overflow:visible;}
  }
}
.c_c02280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02280 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02280:after { /* webkit #35443 */
  content: '';
}
.t_c02280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02280 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02280 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02280 { /* info for Javascript */
  display:none;
}
.l_c02280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02280:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02280 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02280.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02280;src:url('chunks/assets/font_5e900a01d8dc690cdc7f0832.woff2')format("woff");}.ff1_c02280{font-family:ff1_c02280;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02280;src:url('chunks/assets/font_251aee94eaaaca0a985b6c04.woff2')format("woff");}.ff2_c02280{font-family:ff2_c02280;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:ff3_c02280;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02280{font-family:ff3_c02280;line-height:1.311035;font-style:normal;font-weight: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_c02280;src:url('chunks/assets/font_92474abc5a23edf059a4f4ff.woff2')format("woff");}.ff4_c02280{font-family:ff4_c02280;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02280{vertical-align:0.000000px;}
.ls0_c02280{letter-spacing:0.000000px;}
.sc__c02280{text-shadow:none;}
.sc0_c02280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02280{-webkit-text-stroke:0px transparent;}
.sc0_c02280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02280{word-spacing:0.000000px;}
._3_c02280{margin-left:-2.376000px;}
._0_c02280{margin-left:-1.152000px;}
._1_c02280{width:1.080000px;}
._2_c02280{width:2.304000px;}
._4_c02280{width:6.264000px;}
._5_c02280{width:7.344000px;}
._6_c02280{width:9.360000px;}
._7_c02280{width:10.368000px;}
._8_c02280{width:11.412000px;}
._b_c02280{width:14.400000px;}
._c_c02280{width:15.552000px;}
._9_c02280{width:19.224000px;}
._a_c02280{width:20.268000px;}
.fc1_c02280{color:rgb(192,80,77);}
.fc3_c02280{color:rgb(255,255,255);}
.fc2_c02280{color:rgb(17,17,17);}
.fc0_c02280{color:rgb(0,0,0);}
.fs0_c02280{font-size:66.240000px;}
.fs1_c02280{font-size:72.000000px;}
.y0_c02280{bottom:0.000000px;}
.yf_c02280{bottom:4.140000px;}
.yc_c02280{bottom:4.500000px;}
.y3_c02280{bottom:4.680000px;}
.yd_c02280{bottom:4.860000px;}
.ya_c02280{bottom:5.220000px;}
.y16_c02280{bottom:24.840000px;}
.y15_c02280{bottom:25.200000px;}
.y9_c02280{bottom:25.920000px;}
.y2_c02280{bottom:41.796000px;}
.y1_c02280{bottom:75.456000px;}
.y29_c02280{bottom:279.255000px;}
.y28_c02280{bottom:310.395000px;}
.y27_c02280{bottom:341.355000px;}
.y26_c02280{bottom:372.495000px;}
.y25_c02280{bottom:403.455000px;}
.y24_c02280{bottom:434.595000px;}
.y23_c02280{bottom:465.555000px;}
.y22_c02280{bottom:496.695000px;}
.y21_c02280{bottom:527.655000px;}
.y20_c02280{bottom:558.825000px;}
.y1f_c02280{bottom:589.785000px;}
.y1e_c02280{bottom:610.665000px;}
.y1d_c02280{bottom:631.365000px;}
.y1c_c02280{bottom:652.065000px;}
.y1b_c02280{bottom:672.765000px;}
.y1a_c02280{bottom:689.685000px;}
.y19_c02280{bottom:711.105000px;}
.y18_c02280{bottom:732.705000px;}
.y17_c02280{bottom:754.125000px;}
.y14_c02280{bottom:796.290000px;}
.y13_c02280{bottom:838.410000px;}
.y12_c02280{bottom:859.830000px;}
.y11_c02280{bottom:881.250000px;}
.y10_c02280{bottom:902.670000px;}
.ye_c02280{bottom:924.270000px;}
.y8_c02280{bottom:945.690000px;}
.yb_c02280{bottom:967.110000px;}
.y7_c02280{bottom:1003.290000px;}
.y6_c02280{bottom:1024.170000px;}
.y5_c02280{bottom:1044.870000px;}
.y4_c02280{bottom:1065.600000px;}
.h5_c02280{height:20.700000px;}
.h2_c02280{height:22.500000px;}
.h7_c02280{height:41.400000px;}
.h8_c02280{height:41.436000px;}
.h4_c02280{height:42.120000px;}
.h1_c02280{height:48.871406px;}
.h9_c02280{height:64.546875px;}
.h3_c02280{height:70.664062px;}
.h6_c02280{height:72.562500px;}
.h0_c02280{height:1188.000000px;}
.w1_c02280{width:66.636000px;}
.w4_c02280{width:79.020000px;}
.w7_c02280{width:92.016000px;}
.w5_c02280{width:94.356000px;}
.w6_c02280{width:96.120000px;}
.w2_c02280{width:254.550000px;}
.w3_c02280{width:283.935000px;}
.w0_c02280{width:918.000000px;}
.x0_c02280{left:0.000000px;}
.xe_c02280{left:7.920000px;}
.x11_c02280{left:15.480000px;}
.x3_c02280{left:16.560000px;}
.xf_c02280{left:18.180000px;}
.x13_c02280{left:21.420000px;}
.x1c_c02280{left:25.740000px;}
.x21_c02280{left:29.520000px;}
.x17_c02280{left:34.920000px;}
.xd_c02280{left:39.420000px;}
.x16_c02280{left:41.400000px;}
.x15_c02280{left:42.660000px;}
.x1f_c02280{left:45.900000px;}
.x1e_c02280{left:47.160000px;}
.x20_c02280{left:58.320000px;}
.x18_c02280{left:61.560000px;}
.x1d_c02280{left:69.660000px;}
.x1a_c02280{left:72.540000px;}
.x14_c02280{left:74.520000px;}
.x1b_c02280{left:77.040000px;}
.x19_c02280{left:79.560000px;}
.x23_c02280{left:95.760000px;}
.x9_c02280{left:103.140000px;}
.xb_c02280{left:104.430000px;}
.x22_c02280{left:107.280000px;}
.x1_c02280{left:127.656000px;}
.x8_c02280{left:179.310000px;}
.x24_c02280{left:187.050000px;}
.x5_c02280{left:240.510000px;}
.x6_c02280{left:276.870000px;}
.xa_c02280{left:434.595000px;}
.x4_c02280{left:440.175000px;}
.x7_c02280{left:488.775000px;}
.x10_c02280{left:529.665000px;}
.x12_c02280{left:626.505000px;}
.xc_c02280{left:719.250000px;}
.x2_c02280{left:820.950000px;}
@media print{
.v0_c02280{vertical-align:0.000000pt;}
.ls0_c02280{letter-spacing:0.000000pt;}
.ws0_c02280{word-spacing:0.000000pt;}
._3_c02280{margin-left:-2.112000pt;}
._0_c02280{margin-left:-1.024000pt;}
._1_c02280{width:0.960000pt;}
._2_c02280{width:2.048000pt;}
._4_c02280{width:5.568000pt;}
._5_c02280{width:6.528000pt;}
._6_c02280{width:8.320000pt;}
._7_c02280{width:9.216000pt;}
._8_c02280{width:10.144000pt;}
._b_c02280{width:12.800000pt;}
._c_c02280{width:13.824000pt;}
._9_c02280{width:17.088000pt;}
._a_c02280{width:18.016000pt;}
.fs0_c02280{font-size:58.880000pt;}
.fs1_c02280{font-size:64.000000pt;}
.y0_c02280{bottom:0.000000pt;}
.yf_c02280{bottom:3.680000pt;}
.yc_c02280{bottom:4.000000pt;}
.y3_c02280{bottom:4.160000pt;}
.yd_c02280{bottom:4.320000pt;}
.ya_c02280{bottom:4.640000pt;}
.y16_c02280{bottom:22.080000pt;}
.y15_c02280{bottom:22.400000pt;}
.y9_c02280{bottom:23.040000pt;}
.y2_c02280{bottom:37.152000pt;}
.y1_c02280{bottom:67.072000pt;}
.y29_c02280{bottom:248.226667pt;}
.y28_c02280{bottom:275.906667pt;}
.y27_c02280{bottom:303.426667pt;}
.y26_c02280{bottom:331.106667pt;}
.y25_c02280{bottom:358.626667pt;}
.y24_c02280{bottom:386.306667pt;}
.y23_c02280{bottom:413.826667pt;}
.y22_c02280{bottom:441.506667pt;}
.y21_c02280{bottom:469.026667pt;}
.y20_c02280{bottom:496.733333pt;}
.y1f_c02280{bottom:524.253333pt;}
.y1e_c02280{bottom:542.813333pt;}
.y1d_c02280{bottom:561.213333pt;}
.y1c_c02280{bottom:579.613333pt;}
.y1b_c02280{bottom:598.013333pt;}
.y1a_c02280{bottom:613.053333pt;}
.y19_c02280{bottom:632.093333pt;}
.y18_c02280{bottom:651.293333pt;}
.y17_c02280{bottom:670.333333pt;}
.y14_c02280{bottom:707.813333pt;}
.y13_c02280{bottom:745.253333pt;}
.y12_c02280{bottom:764.293333pt;}
.y11_c02280{bottom:783.333333pt;}
.y10_c02280{bottom:802.373333pt;}
.ye_c02280{bottom:821.573333pt;}
.y8_c02280{bottom:840.613333pt;}
.yb_c02280{bottom:859.653333pt;}
.y7_c02280{bottom:891.813333pt;}
.y6_c02280{bottom:910.373333pt;}
.y5_c02280{bottom:928.773333pt;}
.y4_c02280{bottom:947.200000pt;}
.h5_c02280{height:18.400000pt;}
.h2_c02280{height:20.000000pt;}
.h7_c02280{height:36.800000pt;}
.h8_c02280{height:36.832000pt;}
.h4_c02280{height:37.440000pt;}
.h1_c02280{height:43.441250pt;}
.h9_c02280{height:57.375000pt;}
.h3_c02280{height:62.812500pt;}
.h6_c02280{height:64.500000pt;}
.h0_c02280{height:1056.000000pt;}
.w1_c02280{width:59.232000pt;}
.w4_c02280{width:70.240000pt;}
.w7_c02280{width:81.792000pt;}
.w5_c02280{width:83.872000pt;}
.w6_c02280{width:85.440000pt;}
.w2_c02280{width:226.266667pt;}
.w3_c02280{width:252.386667pt;}
.w0_c02280{width:816.000000pt;}
.x0_c02280{left:0.000000pt;}
.xe_c02280{left:7.040000pt;}
.x11_c02280{left:13.760000pt;}
.x3_c02280{left:14.720000pt;}
.xf_c02280{left:16.160000pt;}
.x13_c02280{left:19.040000pt;}
.x1c_c02280{left:22.880000pt;}
.x21_c02280{left:26.240000pt;}
.x17_c02280{left:31.040000pt;}
.xd_c02280{left:35.040000pt;}
.x16_c02280{left:36.800000pt;}
.x15_c02280{left:37.920000pt;}
.x1f_c02280{left:40.800000pt;}
.x1e_c02280{left:41.920000pt;}
.x20_c02280{left:51.840000pt;}
.x18_c02280{left:54.720000pt;}
.x1d_c02280{left:61.920000pt;}
.x1a_c02280{left:64.480000pt;}
.x14_c02280{left:66.240000pt;}
.x1b_c02280{left:68.480000pt;}
.x19_c02280{left:70.720000pt;}
.x23_c02280{left:85.120000pt;}
.x9_c02280{left:91.680000pt;}
.xb_c02280{left:92.826667pt;}
.x22_c02280{left:95.360000pt;}
.x1_c02280{left:113.472000pt;}
.x8_c02280{left:159.386667pt;}
.x24_c02280{left:166.266667pt;}
.x5_c02280{left:213.786667pt;}
.x6_c02280{left:246.106667pt;}
.xa_c02280{left:386.306667pt;}
.x4_c02280{left:391.266667pt;}
.x7_c02280{left:434.466667pt;}
.x10_c02280{left:470.813333pt;}
.x12_c02280{left:556.893333pt;}
.xc_c02280{left:639.333333pt;}
.x2_c02280{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02281 {
    display:none;
  }
  .loading-indicator_c02281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02281 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02281 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02281" -> "#page-container .classname_c02281")
 */
.pf_c02281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02281 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02281 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02281 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02281 {overflow:visible;}
  }
}
.c_c02281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02281 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02281:after { /* webkit #35443 */
  content: '';
}
.t_c02281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02281 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02281 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02281 { /* info for Javascript */
  display:none;
}
.l_c02281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02281:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02281 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02281.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02281;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02281{font-family:ff1_c02281;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02281;src:url('chunks/assets/font_4f9fbb36f4960d753816a53a.woff2')format("woff");}.ff2_c02281{font-family:ff2_c02281;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:ff3_c02281;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02281{font-family:ff3_c02281;line-height:1.311035;font-style:normal;font-weight: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_c02281;src:url('chunks/assets/font_5b3441a4d519beda0dd02db5.woff2')format("woff");}.ff4_c02281{font-family:ff4_c02281;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02281{vertical-align:0.000000px;}
.ls1_c02281{letter-spacing:-0.072000px;}
.ls0_c02281{letter-spacing:0.000000px;}
.sc__c02281{text-shadow:none;}
.sc0_c02281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02281{-webkit-text-stroke:0px transparent;}
.sc0_c02281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02281{word-spacing:-17.928000px;}
.ws1_c02281{word-spacing:0.000000px;}
._a_c02281{margin-left:-2.952000px;}
._0_c02281{margin-left:-1.152000px;}
._1_c02281{width:1.632000px;}
._2_c02281{width:3.048000px;}
._8_c02281{width:4.056000px;}
._5_c02281{width:5.112000px;}
._6_c02281{width:6.720000px;}
._3_c02281{width:8.496000px;}
._4_c02281{width:10.140000px;}
._7_c02281{width:13.464000px;}
._9_c02281{width:14.904000px;}
.fc1_c02281{color:rgb(192,80,77);}
.fc3_c02281{color:rgb(255,255,255);}
.fc2_c02281{color:rgb(17,17,17);}
.fc0_c02281{color:rgb(0,0,0);}
.fs0_c02281{font-size:66.240000px;}
.fs1_c02281{font-size:72.000000px;}
.y0_c02281{bottom:0.000000px;}
.yf_c02281{bottom:4.140000px;}
.yc_c02281{bottom:4.500000px;}
.y3_c02281{bottom:4.680000px;}
.yd_c02281{bottom:4.860000px;}
.ya_c02281{bottom:5.220000px;}
.y16_c02281{bottom:24.840000px;}
.y15_c02281{bottom:25.200000px;}
.y9_c02281{bottom:25.920000px;}
.y2_c02281{bottom:41.796000px;}
.y1_c02281{bottom:75.456000px;}
.y2b_c02281{bottom:217.110000px;}
.y2a_c02281{bottom:248.250000px;}
.y29_c02281{bottom:279.255000px;}
.y28_c02281{bottom:310.395000px;}
.y27_c02281{bottom:341.355000px;}
.y26_c02281{bottom:372.495000px;}
.y25_c02281{bottom:403.455000px;}
.y24_c02281{bottom:434.595000px;}
.y23_c02281{bottom:465.555000px;}
.y22_c02281{bottom:496.695000px;}
.y21_c02281{bottom:527.655000px;}
.y20_c02281{bottom:558.825000px;}
.y1f_c02281{bottom:589.785000px;}
.y1e_c02281{bottom:610.665000px;}
.y1d_c02281{bottom:631.365000px;}
.y1c_c02281{bottom:652.065000px;}
.y1b_c02281{bottom:672.765000px;}
.y1a_c02281{bottom:689.685000px;}
.y19_c02281{bottom:711.105000px;}
.y18_c02281{bottom:732.705000px;}
.y17_c02281{bottom:754.125000px;}
.y14_c02281{bottom:796.290000px;}
.y13_c02281{bottom:838.410000px;}
.y12_c02281{bottom:859.830000px;}
.y11_c02281{bottom:881.250000px;}
.y10_c02281{bottom:902.670000px;}
.ye_c02281{bottom:924.270000px;}
.y8_c02281{bottom:945.690000px;}
.yb_c02281{bottom:967.110000px;}
.y7_c02281{bottom:1003.290000px;}
.y6_c02281{bottom:1024.170000px;}
.y5_c02281{bottom:1044.870000px;}
.y4_c02281{bottom:1065.600000px;}
.h5_c02281{height:20.700000px;}
.h2_c02281{height:22.500000px;}
.h7_c02281{height:41.400000px;}
.h8_c02281{height:41.436000px;}
.h4_c02281{height:42.120000px;}
.h1_c02281{height:48.871406px;}
.h9_c02281{height:64.546875px;}
.h3_c02281{height:70.664062px;}
.h6_c02281{height:72.562500px;}
.h0_c02281{height:1188.000000px;}
.w1_c02281{width:66.636000px;}
.w4_c02281{width:79.020000px;}
.w7_c02281{width:92.016000px;}
.w5_c02281{width:94.356000px;}
.w6_c02281{width:96.120000px;}
.w2_c02281{width:254.550000px;}
.w3_c02281{width:283.935000px;}
.w0_c02281{width:918.000000px;}
.x0_c02281{left:0.000000px;}
.xe_c02281{left:7.920000px;}
.x11_c02281{left:15.480000px;}
.x3_c02281{left:16.560000px;}
.xf_c02281{left:18.180000px;}
.x13_c02281{left:21.420000px;}
.x1c_c02281{left:25.740000px;}
.x21_c02281{left:29.520000px;}
.x17_c02281{left:34.920000px;}
.xd_c02281{left:39.420000px;}
.x16_c02281{left:41.400000px;}
.x15_c02281{left:42.660000px;}
.x1f_c02281{left:45.900000px;}
.x1e_c02281{left:47.160000px;}
.x20_c02281{left:58.320000px;}
.x18_c02281{left:61.560000px;}
.x1d_c02281{left:69.660000px;}
.x1a_c02281{left:72.540000px;}
.x14_c02281{left:74.520000px;}
.x1b_c02281{left:77.040000px;}
.x19_c02281{left:79.560000px;}
.x23_c02281{left:95.760000px;}
.x9_c02281{left:103.140000px;}
.xb_c02281{left:104.430000px;}
.x22_c02281{left:107.280000px;}
.x1_c02281{left:127.656000px;}
.x8_c02281{left:179.310000px;}
.x24_c02281{left:187.050000px;}
.x6_c02281{left:276.870000px;}
.x5_c02281{left:287.670000px;}
.xa_c02281{left:434.595000px;}
.x4_c02281{left:440.175000px;}
.x7_c02281{left:488.775000px;}
.x10_c02281{left:529.665000px;}
.x12_c02281{left:626.505000px;}
.xc_c02281{left:719.250000px;}
.x2_c02281{left:820.950000px;}
@media print{
.v0_c02281{vertical-align:0.000000pt;}
.ls1_c02281{letter-spacing:-0.064000pt;}
.ls0_c02281{letter-spacing:0.000000pt;}
.ws0_c02281{word-spacing:-15.936000pt;}
.ws1_c02281{word-spacing:0.000000pt;}
._a_c02281{margin-left:-2.624000pt;}
._0_c02281{margin-left:-1.024000pt;}
._1_c02281{width:1.450667pt;}
._2_c02281{width:2.709333pt;}
._8_c02281{width:3.605333pt;}
._5_c02281{width:4.544000pt;}
._6_c02281{width:5.973333pt;}
._3_c02281{width:7.552000pt;}
._4_c02281{width:9.013333pt;}
._7_c02281{width:11.968000pt;}
._9_c02281{width:13.248000pt;}
.fs0_c02281{font-size:58.880000pt;}
.fs1_c02281{font-size:64.000000pt;}
.y0_c02281{bottom:0.000000pt;}
.yf_c02281{bottom:3.680000pt;}
.yc_c02281{bottom:4.000000pt;}
.y3_c02281{bottom:4.160000pt;}
.yd_c02281{bottom:4.320000pt;}
.ya_c02281{bottom:4.640000pt;}
.y16_c02281{bottom:22.080000pt;}
.y15_c02281{bottom:22.400000pt;}
.y9_c02281{bottom:23.040000pt;}
.y2_c02281{bottom:37.152000pt;}
.y1_c02281{bottom:67.072000pt;}
.y2b_c02281{bottom:192.986667pt;}
.y2a_c02281{bottom:220.666667pt;}
.y29_c02281{bottom:248.226667pt;}
.y28_c02281{bottom:275.906667pt;}
.y27_c02281{bottom:303.426667pt;}
.y26_c02281{bottom:331.106667pt;}
.y25_c02281{bottom:358.626667pt;}
.y24_c02281{bottom:386.306667pt;}
.y23_c02281{bottom:413.826667pt;}
.y22_c02281{bottom:441.506667pt;}
.y21_c02281{bottom:469.026667pt;}
.y20_c02281{bottom:496.733333pt;}
.y1f_c02281{bottom:524.253333pt;}
.y1e_c02281{bottom:542.813333pt;}
.y1d_c02281{bottom:561.213333pt;}
.y1c_c02281{bottom:579.613333pt;}
.y1b_c02281{bottom:598.013333pt;}
.y1a_c02281{bottom:613.053333pt;}
.y19_c02281{bottom:632.093333pt;}
.y18_c02281{bottom:651.293333pt;}
.y17_c02281{bottom:670.333333pt;}
.y14_c02281{bottom:707.813333pt;}
.y13_c02281{bottom:745.253333pt;}
.y12_c02281{bottom:764.293333pt;}
.y11_c02281{bottom:783.333333pt;}
.y10_c02281{bottom:802.373333pt;}
.ye_c02281{bottom:821.573333pt;}
.y8_c02281{bottom:840.613333pt;}
.yb_c02281{bottom:859.653333pt;}
.y7_c02281{bottom:891.813333pt;}
.y6_c02281{bottom:910.373333pt;}
.y5_c02281{bottom:928.773333pt;}
.y4_c02281{bottom:947.200000pt;}
.h5_c02281{height:18.400000pt;}
.h2_c02281{height:20.000000pt;}
.h7_c02281{height:36.800000pt;}
.h8_c02281{height:36.832000pt;}
.h4_c02281{height:37.440000pt;}
.h1_c02281{height:43.441250pt;}
.h9_c02281{height:57.375000pt;}
.h3_c02281{height:62.812500pt;}
.h6_c02281{height:64.500000pt;}
.h0_c02281{height:1056.000000pt;}
.w1_c02281{width:59.232000pt;}
.w4_c02281{width:70.240000pt;}
.w7_c02281{width:81.792000pt;}
.w5_c02281{width:83.872000pt;}
.w6_c02281{width:85.440000pt;}
.w2_c02281{width:226.266667pt;}
.w3_c02281{width:252.386667pt;}
.w0_c02281{width:816.000000pt;}
.x0_c02281{left:0.000000pt;}
.xe_c02281{left:7.040000pt;}
.x11_c02281{left:13.760000pt;}
.x3_c02281{left:14.720000pt;}
.xf_c02281{left:16.160000pt;}
.x13_c02281{left:19.040000pt;}
.x1c_c02281{left:22.880000pt;}
.x21_c02281{left:26.240000pt;}
.x17_c02281{left:31.040000pt;}
.xd_c02281{left:35.040000pt;}
.x16_c02281{left:36.800000pt;}
.x15_c02281{left:37.920000pt;}
.x1f_c02281{left:40.800000pt;}
.x1e_c02281{left:41.920000pt;}
.x20_c02281{left:51.840000pt;}
.x18_c02281{left:54.720000pt;}
.x1d_c02281{left:61.920000pt;}
.x1a_c02281{left:64.480000pt;}
.x14_c02281{left:66.240000pt;}
.x1b_c02281{left:68.480000pt;}
.x19_c02281{left:70.720000pt;}
.x23_c02281{left:85.120000pt;}
.x9_c02281{left:91.680000pt;}
.xb_c02281{left:92.826667pt;}
.x22_c02281{left:95.360000pt;}
.x1_c02281{left:113.472000pt;}
.x8_c02281{left:159.386667pt;}
.x24_c02281{left:166.266667pt;}
.x6_c02281{left:246.106667pt;}
.x5_c02281{left:255.706667pt;}
.xa_c02281{left:386.306667pt;}
.x4_c02281{left:391.266667pt;}
.x7_c02281{left:434.466667pt;}
.x10_c02281{left:470.813333pt;}
.x12_c02281{left:556.893333pt;}
.xc_c02281{left:639.333333pt;}
.x2_c02281{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02282 {
    display:none;
  }
  .loading-indicator_c02282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02282 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02282 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02282" -> "#page-container .classname_c02282")
 */
.pf_c02282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02282 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02282 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02282 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02282 {overflow:visible;}
  }
}
.c_c02282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02282 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02282:after { /* webkit #35443 */
  content: '';
}
.t_c02282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02282 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02282 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02282 { /* info for Javascript */
  display:none;
}
.l_c02282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02282:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02282 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02282.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02282;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02282{font-family:ff1_c02282;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02282;src:url('chunks/assets/font_f9b0fedfd4bf3a0de0fc48d5.woff2')format("woff");}.ff2_c02282{font-family:ff2_c02282;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:ff3_c02282;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02282{font-family:ff3_c02282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02282{vertical-align:0.000000px;}
.ls1_c02282{letter-spacing:-0.144000px;}
.ls0_c02282{letter-spacing:0.000000px;}
.sc__c02282{text-shadow:none;}
.sc0_c02282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02282{-webkit-text-stroke:0px transparent;}
.sc0_c02282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02282{word-spacing:-17.856000px;}
.ws1_c02282{word-spacing:0.000000px;}
._0_c02282{margin-left:-1.044000px;}
._1_c02282{width:1.080000px;}
._2_c02282{width:2.100000px;}
._7_c02282{width:3.528000px;}
._5_c02282{width:5.112000px;}
._6_c02282{width:6.264000px;}
._a_c02282{width:7.344000px;}
._3_c02282{width:14.256000px;}
._4_c02282{width:15.840000px;}
._9_c02282{width:25.812000px;}
._8_c02282{width:59.544000px;}
.fc1_c02282{color:rgb(192,80,77);}
.fc3_c02282{color:rgb(255,255,255);}
.fc2_c02282{color:rgb(17,17,17);}
.fc0_c02282{color:rgb(0,0,0);}
.fs0_c02282{font-size:66.240000px;}
.fs1_c02282{font-size:72.000000px;}
.y0_c02282{bottom:0.000000px;}
.yf_c02282{bottom:4.140000px;}
.yc_c02282{bottom:4.500000px;}
.y3_c02282{bottom:4.680000px;}
.yd_c02282{bottom:4.860000px;}
.ya_c02282{bottom:5.220000px;}
.y16_c02282{bottom:24.840000px;}
.y15_c02282{bottom:25.200000px;}
.y9_c02282{bottom:25.920000px;}
.y2_c02282{bottom:41.796000px;}
.y1_c02282{bottom:75.456000px;}
.y2d_c02282{bottom:165.450000px;}
.y2c_c02282{bottom:196.410000px;}
.y2b_c02282{bottom:227.550000px;}
.y2a_c02282{bottom:258.510000px;}
.y29_c02282{bottom:289.695000px;}
.y28_c02282{bottom:320.655000px;}
.y27_c02282{bottom:351.795000px;}
.y26_c02282{bottom:382.755000px;}
.y25_c02282{bottom:413.895000px;}
.y24_c02282{bottom:444.855000px;}
.y23_c02282{bottom:475.995000px;}
.y22_c02282{bottom:506.955000px;}
.y21_c02282{bottom:538.125000px;}
.y20_c02282{bottom:569.085000px;}
.y1f_c02282{bottom:589.965000px;}
.y1e_c02282{bottom:610.665000px;}
.y1d_c02282{bottom:631.365000px;}
.y1c_c02282{bottom:652.065000px;}
.y1b_c02282{bottom:672.765000px;}
.y1a_c02282{bottom:689.685000px;}
.y19_c02282{bottom:711.105000px;}
.y18_c02282{bottom:732.705000px;}
.y17_c02282{bottom:754.125000px;}
.y14_c02282{bottom:796.290000px;}
.y13_c02282{bottom:838.410000px;}
.y12_c02282{bottom:859.830000px;}
.y11_c02282{bottom:881.250000px;}
.y10_c02282{bottom:902.670000px;}
.ye_c02282{bottom:924.270000px;}
.y8_c02282{bottom:945.690000px;}
.yb_c02282{bottom:967.110000px;}
.y7_c02282{bottom:1003.290000px;}
.y6_c02282{bottom:1024.170000px;}
.y5_c02282{bottom:1044.870000px;}
.y4_c02282{bottom:1065.600000px;}
.h5_c02282{height:20.700000px;}
.h2_c02282{height:22.500000px;}
.h7_c02282{height:41.400000px;}
.h8_c02282{height:41.436000px;}
.h4_c02282{height:42.120000px;}
.h1_c02282{height:48.871406px;}
.h3_c02282{height:70.664062px;}
.h6_c02282{height:72.562500px;}
.h0_c02282{height:1188.000000px;}
.w1_c02282{width:66.636000px;}
.w4_c02282{width:79.020000px;}
.w7_c02282{width:92.016000px;}
.w5_c02282{width:94.356000px;}
.w6_c02282{width:96.120000px;}
.w2_c02282{width:254.550000px;}
.w3_c02282{width:283.935000px;}
.w0_c02282{width:918.000000px;}
.x0_c02282{left:0.000000px;}
.xe_c02282{left:7.920000px;}
.x11_c02282{left:15.480000px;}
.x3_c02282{left:16.560000px;}
.xf_c02282{left:18.180000px;}
.x13_c02282{left:21.420000px;}
.x1c_c02282{left:25.740000px;}
.x21_c02282{left:29.520000px;}
.x17_c02282{left:34.920000px;}
.xd_c02282{left:39.420000px;}
.x16_c02282{left:41.400000px;}
.x15_c02282{left:42.660000px;}
.x1f_c02282{left:45.900000px;}
.x1e_c02282{left:47.160000px;}
.x20_c02282{left:58.320000px;}
.x18_c02282{left:61.560000px;}
.x1d_c02282{left:69.660000px;}
.x1a_c02282{left:72.540000px;}
.x14_c02282{left:74.520000px;}
.x1b_c02282{left:77.040000px;}
.x19_c02282{left:79.560000px;}
.x23_c02282{left:95.760000px;}
.x9_c02282{left:103.140000px;}
.xb_c02282{left:104.430000px;}
.x22_c02282{left:107.280000px;}
.x1_c02282{left:127.656000px;}
.x25_c02282{left:154.650000px;}
.x26_c02282{left:163.650000px;}
.x8_c02282{left:179.310000px;}
.x24_c02282{left:187.050000px;}
.x5_c02282{left:271.110000px;}
.x6_c02282{left:302.115000px;}
.xa_c02282{left:434.595000px;}
.x4_c02282{left:440.175000px;}
.x7_c02282{left:488.775000px;}
.x10_c02282{left:529.665000px;}
.x12_c02282{left:626.505000px;}
.xc_c02282{left:719.250000px;}
.x2_c02282{left:820.950000px;}
@media print{
.v0_c02282{vertical-align:0.000000pt;}
.ls1_c02282{letter-spacing:-0.128000pt;}
.ls0_c02282{letter-spacing:0.000000pt;}
.ws0_c02282{word-spacing:-15.872000pt;}
.ws1_c02282{word-spacing:0.000000pt;}
._0_c02282{margin-left:-0.928000pt;}
._1_c02282{width:0.960000pt;}
._2_c02282{width:1.866667pt;}
._7_c02282{width:3.136000pt;}
._5_c02282{width:4.544000pt;}
._6_c02282{width:5.568000pt;}
._a_c02282{width:6.528000pt;}
._3_c02282{width:12.672000pt;}
._4_c02282{width:14.080000pt;}
._9_c02282{width:22.944000pt;}
._8_c02282{width:52.928000pt;}
.fs0_c02282{font-size:58.880000pt;}
.fs1_c02282{font-size:64.000000pt;}
.y0_c02282{bottom:0.000000pt;}
.yf_c02282{bottom:3.680000pt;}
.yc_c02282{bottom:4.000000pt;}
.y3_c02282{bottom:4.160000pt;}
.yd_c02282{bottom:4.320000pt;}
.ya_c02282{bottom:4.640000pt;}
.y16_c02282{bottom:22.080000pt;}
.y15_c02282{bottom:22.400000pt;}
.y9_c02282{bottom:23.040000pt;}
.y2_c02282{bottom:37.152000pt;}
.y1_c02282{bottom:67.072000pt;}
.y2d_c02282{bottom:147.066667pt;}
.y2c_c02282{bottom:174.586667pt;}
.y2b_c02282{bottom:202.266667pt;}
.y2a_c02282{bottom:229.786667pt;}
.y29_c02282{bottom:257.506667pt;}
.y28_c02282{bottom:285.026667pt;}
.y27_c02282{bottom:312.706667pt;}
.y26_c02282{bottom:340.226667pt;}
.y25_c02282{bottom:367.906667pt;}
.y24_c02282{bottom:395.426667pt;}
.y23_c02282{bottom:423.106667pt;}
.y22_c02282{bottom:450.626667pt;}
.y21_c02282{bottom:478.333333pt;}
.y20_c02282{bottom:505.853333pt;}
.y1f_c02282{bottom:524.413333pt;}
.y1e_c02282{bottom:542.813333pt;}
.y1d_c02282{bottom:561.213333pt;}
.y1c_c02282{bottom:579.613333pt;}
.y1b_c02282{bottom:598.013333pt;}
.y1a_c02282{bottom:613.053333pt;}
.y19_c02282{bottom:632.093333pt;}
.y18_c02282{bottom:651.293333pt;}
.y17_c02282{bottom:670.333333pt;}
.y14_c02282{bottom:707.813333pt;}
.y13_c02282{bottom:745.253333pt;}
.y12_c02282{bottom:764.293333pt;}
.y11_c02282{bottom:783.333333pt;}
.y10_c02282{bottom:802.373333pt;}
.ye_c02282{bottom:821.573333pt;}
.y8_c02282{bottom:840.613333pt;}
.yb_c02282{bottom:859.653333pt;}
.y7_c02282{bottom:891.813333pt;}
.y6_c02282{bottom:910.373333pt;}
.y5_c02282{bottom:928.773333pt;}
.y4_c02282{bottom:947.200000pt;}
.h5_c02282{height:18.400000pt;}
.h2_c02282{height:20.000000pt;}
.h7_c02282{height:36.800000pt;}
.h8_c02282{height:36.832000pt;}
.h4_c02282{height:37.440000pt;}
.h1_c02282{height:43.441250pt;}
.h3_c02282{height:62.812500pt;}
.h6_c02282{height:64.500000pt;}
.h0_c02282{height:1056.000000pt;}
.w1_c02282{width:59.232000pt;}
.w4_c02282{width:70.240000pt;}
.w7_c02282{width:81.792000pt;}
.w5_c02282{width:83.872000pt;}
.w6_c02282{width:85.440000pt;}
.w2_c02282{width:226.266667pt;}
.w3_c02282{width:252.386667pt;}
.w0_c02282{width:816.000000pt;}
.x0_c02282{left:0.000000pt;}
.xe_c02282{left:7.040000pt;}
.x11_c02282{left:13.760000pt;}
.x3_c02282{left:14.720000pt;}
.xf_c02282{left:16.160000pt;}
.x13_c02282{left:19.040000pt;}
.x1c_c02282{left:22.880000pt;}
.x21_c02282{left:26.240000pt;}
.x17_c02282{left:31.040000pt;}
.xd_c02282{left:35.040000pt;}
.x16_c02282{left:36.800000pt;}
.x15_c02282{left:37.920000pt;}
.x1f_c02282{left:40.800000pt;}
.x1e_c02282{left:41.920000pt;}
.x20_c02282{left:51.840000pt;}
.x18_c02282{left:54.720000pt;}
.x1d_c02282{left:61.920000pt;}
.x1a_c02282{left:64.480000pt;}
.x14_c02282{left:66.240000pt;}
.x1b_c02282{left:68.480000pt;}
.x19_c02282{left:70.720000pt;}
.x23_c02282{left:85.120000pt;}
.x9_c02282{left:91.680000pt;}
.xb_c02282{left:92.826667pt;}
.x22_c02282{left:95.360000pt;}
.x1_c02282{left:113.472000pt;}
.x25_c02282{left:137.466667pt;}
.x26_c02282{left:145.466667pt;}
.x8_c02282{left:159.386667pt;}
.x24_c02282{left:166.266667pt;}
.x5_c02282{left:240.986667pt;}
.x6_c02282{left:268.546667pt;}
.xa_c02282{left:386.306667pt;}
.x4_c02282{left:391.266667pt;}
.x7_c02282{left:434.466667pt;}
.x10_c02282{left:470.813333pt;}
.x12_c02282{left:556.893333pt;}
.xc_c02282{left:639.333333pt;}
.x2_c02282{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02283 {
    display:none;
  }
  .loading-indicator_c02283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02283 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02283 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02283" -> "#page-container .classname_c02283")
 */
.pf_c02283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02283 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02283 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02283 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02283 {overflow:visible;}
  }
}
.c_c02283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02283 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02283:after { /* webkit #35443 */
  content: '';
}
.t_c02283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02283 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02283 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02283 { /* info for Javascript */
  display:none;
}
.l_c02283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02283:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02283 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02283.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02283;src:url('chunks/assets/font_b9162afd4b7f96bb5e84c003.woff2')format("woff");}.ff1_c02283{font-family:ff1_c02283;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02283;src:url('chunks/assets/font_f985f4464453d99033845983.woff2')format("woff");}.ff2_c02283{font-family:ff2_c02283;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:ff3_c02283;src:url('chunks/assets/font_898bd600ca7415380b8dfc6f.woff2')format("woff");}.ff3_c02283{font-family:ff3_c02283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02283{vertical-align:0.000000px;}
.ls0_c02283{letter-spacing:0.000000px;}
.sc__c02283{text-shadow:none;}
.sc0_c02283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02283{-webkit-text-stroke:0px transparent;}
.sc0_c02283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02283{word-spacing:0.000000px;}
._d_c02283{margin-left:-2.376000px;}
._3_c02283{margin-left:-1.152000px;}
._1_c02283{width:1.296000px;}
._4_c02283{width:2.556000px;}
._0_c02283{width:3.600000px;}
._2_c02283{width:4.680000px;}
._e_c02283{width:5.832000px;}
._b_c02283{width:7.128000px;}
._c_c02283{width:8.604000px;}
._9_c02283{width:9.864000px;}
._6_c02283{width:15.624000px;}
._5_c02283{width:16.704000px;}
._a_c02283{width:22.032000px;}
._7_c02283{width:23.760000px;}
._8_c02283{width:24.840000px;}
.fc1_c02283{color:rgb(192,80,77);}
.fc3_c02283{color:rgb(255,255,255);}
.fc2_c02283{color:rgb(17,17,17);}
.fc0_c02283{color:rgb(0,0,0);}
.fs0_c02283{font-size:66.240000px;}
.fs1_c02283{font-size:72.000000px;}
.y0_c02283{bottom:0.000000px;}
.y1b_c02283{bottom:4.140000px;}
.yb_c02283{bottom:4.320000px;}
.yd_c02283{bottom:4.500000px;}
.y3_c02283{bottom:4.680000px;}
.y2_c02283{bottom:41.796000px;}
.y1_c02283{bottom:75.456000px;}
.y2c_c02283{bottom:121.716000px;}
.y2b_c02283{bottom:152.850000px;}
.y2a_c02283{bottom:183.810000px;}
.y29_c02283{bottom:214.950000px;}
.y28_c02283{bottom:245.910000px;}
.y27_c02283{bottom:277.095000px;}
.y26_c02283{bottom:308.055000px;}
.y25_c02283{bottom:339.195000px;}
.y24_c02283{bottom:370.155000px;}
.y23_c02283{bottom:401.295000px;}
.y22_c02283{bottom:432.255000px;}
.y21_c02283{bottom:463.395000px;}
.y20_c02283{bottom:494.355000px;}
.y1f_c02283{bottom:515.235000px;}
.y1e_c02283{bottom:535.965000px;}
.y1d_c02283{bottom:556.665000px;}
.y1c_c02283{bottom:577.365000px;}
.y1a_c02283{bottom:594.285000px;}
.y19_c02283{bottom:615.705000px;}
.y18_c02283{bottom:637.305000px;}
.y17_c02283{bottom:658.725000px;}
.y16_c02283{bottom:680.145000px;}
.y15_c02283{bottom:701.565000px;}
.y14_c02283{bottom:722.985000px;}
.y13_c02283{bottom:744.405000px;}
.y12_c02283{bottom:766.005000px;}
.y11_c02283{bottom:787.425000px;}
.y10_c02283{bottom:808.890000px;}
.yf_c02283{bottom:830.310000px;}
.ye_c02283{bottom:851.730000px;}
.yc_c02283{bottom:873.150000px;}
.ya_c02283{bottom:894.750000px;}
.y9_c02283{bottom:930.750000px;}
.y8_c02283{bottom:951.630000px;}
.y7_c02283{bottom:972.330000px;}
.y6_c02283{bottom:1003.290000px;}
.y5_c02283{bottom:1034.250000px;}
.y4_c02283{bottom:1065.420000px;}
.h4_c02283{height:20.520000px;}
.h5_c02283{height:20.700000px;}
.h6_c02283{height:20.736000px;}
.h2_c02283{height:22.500000px;}
.h1_c02283{height:48.871406px;}
.h3_c02283{height:70.664062px;}
.h7_c02283{height:72.562500px;}
.h0_c02283{height:1188.000000px;}
.w1_c02283{width:66.636000px;}
.w2_c02283{width:308.370000px;}
.w3_c02283{width:309.855000px;}
.w0_c02283{width:918.000000px;}
.x0_c02283{left:0.000000px;}
.x3_c02283{left:16.560000px;}
.xa_c02283{left:84.450000px;}
.x10_c02283{left:113.220000px;}
.x12_c02283{left:116.280000px;}
.x13_c02283{left:120.465000px;}
.x14_c02283{left:122.805000px;}
.xc_c02283{left:126.225000px;}
.x1_c02283{left:127.656000px;}
.x9_c02283{left:131.265000px;}
.xe_c02283{left:133.245000px;}
.xd_c02283{left:135.225000px;}
.xf_c02283{left:136.845000px;}
.x11_c02283{left:145.830000px;}
.xb_c02283{left:150.330000px;}
.x8_c02283{left:179.310000px;}
.x4_c02283{left:187.050000px;}
.x6_c02283{left:218.190000px;}
.x5_c02283{left:440.175000px;}
.x7_c02283{left:488.775000px;}
.x2_c02283{left:820.950000px;}
@media print{
.v0_c02283{vertical-align:0.000000pt;}
.ls0_c02283{letter-spacing:0.000000pt;}
.ws0_c02283{word-spacing:0.000000pt;}
._d_c02283{margin-left:-2.112000pt;}
._3_c02283{margin-left:-1.024000pt;}
._1_c02283{width:1.152000pt;}
._4_c02283{width:2.272000pt;}
._0_c02283{width:3.200000pt;}
._2_c02283{width:4.160000pt;}
._e_c02283{width:5.184000pt;}
._b_c02283{width:6.336000pt;}
._c_c02283{width:7.648000pt;}
._9_c02283{width:8.768000pt;}
._6_c02283{width:13.888000pt;}
._5_c02283{width:14.848000pt;}
._a_c02283{width:19.584000pt;}
._7_c02283{width:21.120000pt;}
._8_c02283{width:22.080000pt;}
.fs0_c02283{font-size:58.880000pt;}
.fs1_c02283{font-size:64.000000pt;}
.y0_c02283{bottom:0.000000pt;}
.y1b_c02283{bottom:3.680000pt;}
.yb_c02283{bottom:3.840000pt;}
.yd_c02283{bottom:4.000000pt;}
.y3_c02283{bottom:4.160000pt;}
.y2_c02283{bottom:37.152000pt;}
.y1_c02283{bottom:67.072000pt;}
.y2c_c02283{bottom:108.192000pt;}
.y2b_c02283{bottom:135.866667pt;}
.y2a_c02283{bottom:163.386667pt;}
.y29_c02283{bottom:191.066667pt;}
.y28_c02283{bottom:218.586667pt;}
.y27_c02283{bottom:246.306667pt;}
.y26_c02283{bottom:273.826667pt;}
.y25_c02283{bottom:301.506667pt;}
.y24_c02283{bottom:329.026667pt;}
.y23_c02283{bottom:356.706667pt;}
.y22_c02283{bottom:384.226667pt;}
.y21_c02283{bottom:411.906667pt;}
.y20_c02283{bottom:439.426667pt;}
.y1f_c02283{bottom:457.986667pt;}
.y1e_c02283{bottom:476.413333pt;}
.y1d_c02283{bottom:494.813333pt;}
.y1c_c02283{bottom:513.213333pt;}
.y1a_c02283{bottom:528.253333pt;}
.y19_c02283{bottom:547.293333pt;}
.y18_c02283{bottom:566.493333pt;}
.y17_c02283{bottom:585.533333pt;}
.y16_c02283{bottom:604.573333pt;}
.y15_c02283{bottom:623.613333pt;}
.y14_c02283{bottom:642.653333pt;}
.y13_c02283{bottom:661.693333pt;}
.y12_c02283{bottom:680.893333pt;}
.y11_c02283{bottom:699.933333pt;}
.y10_c02283{bottom:719.013333pt;}
.yf_c02283{bottom:738.053333pt;}
.ye_c02283{bottom:757.093333pt;}
.yc_c02283{bottom:776.133333pt;}
.ya_c02283{bottom:795.333333pt;}
.y9_c02283{bottom:827.333333pt;}
.y8_c02283{bottom:845.893333pt;}
.y7_c02283{bottom:864.293333pt;}
.y6_c02283{bottom:891.813333pt;}
.y5_c02283{bottom:919.333333pt;}
.y4_c02283{bottom:947.040000pt;}
.h4_c02283{height:18.240000pt;}
.h5_c02283{height:18.400000pt;}
.h6_c02283{height:18.432000pt;}
.h2_c02283{height:20.000000pt;}
.h1_c02283{height:43.441250pt;}
.h3_c02283{height:62.812500pt;}
.h7_c02283{height:64.500000pt;}
.h0_c02283{height:1056.000000pt;}
.w1_c02283{width:59.232000pt;}
.w2_c02283{width:274.106667pt;}
.w3_c02283{width:275.426667pt;}
.w0_c02283{width:816.000000pt;}
.x0_c02283{left:0.000000pt;}
.x3_c02283{left:14.720000pt;}
.xa_c02283{left:75.066667pt;}
.x10_c02283{left:100.640000pt;}
.x12_c02283{left:103.360000pt;}
.x13_c02283{left:107.080000pt;}
.x14_c02283{left:109.160000pt;}
.xc_c02283{left:112.200000pt;}
.x1_c02283{left:113.472000pt;}
.x9_c02283{left:116.680000pt;}
.xe_c02283{left:118.440000pt;}
.xd_c02283{left:120.200000pt;}
.xf_c02283{left:121.640000pt;}
.x11_c02283{left:129.626667pt;}
.xb_c02283{left:133.626667pt;}
.x8_c02283{left:159.386667pt;}
.x4_c02283{left:166.266667pt;}
.x6_c02283{left:193.946667pt;}
.x5_c02283{left:391.266667pt;}
.x7_c02283{left:434.466667pt;}
.x2_c02283{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02284 {
    display:none;
  }
  .loading-indicator_c02284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02284 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02284 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02284" -> "#page-container .classname_c02284")
 */
.pf_c02284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02284 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02284 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02284 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02284 {overflow:visible;}
  }
}
.c_c02284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02284 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02284:after { /* webkit #35443 */
  content: '';
}
.t_c02284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02284 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02284 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02284 { /* info for Javascript */
  display:none;
}
.l_c02284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02284:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02284 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02284.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02284;src:url('chunks/assets/font_643595a65141043e8757fef3.woff2')format("woff");}.ff1_c02284{font-family:ff1_c02284;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02284;src:url('chunks/assets/font_3e750cd2cbaca11bd4773cdf.woff2')format("woff");}.ff2_c02284{font-family:ff2_c02284;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:ff3_c02284;src:url('chunks/assets/font_bf045091e338746351ec316c.woff2')format("woff");}.ff3_c02284{font-family:ff3_c02284;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02284{vertical-align:0.000000px;}
.ls0_c02284{letter-spacing:0.000000px;}
.sc__c02284{text-shadow:none;}
.sc0_c02284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02284{-webkit-text-stroke:0px transparent;}
.sc0_c02284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02284{word-spacing:-18.000000px;}
.ws1_c02284{word-spacing:0.000000px;}
._5_c02284{margin-left:-1.224000px;}
._1_c02284{width:1.224000px;}
._a_c02284{width:2.376000px;}
._b_c02284{width:3.384000px;}
._2_c02284{width:4.536000px;}
._3_c02284{width:5.616000px;}
._0_c02284{width:6.768000px;}
._4_c02284{width:8.064000px;}
._6_c02284{width:9.432000px;}
._7_c02284{width:10.512000px;}
._8_c02284{width:15.336000px;}
._9_c02284{width:16.704000px;}
.fc1_c02284{color:rgb(192,80,77);}
.fc2_c02284{color:rgb(17,17,17);}
.fc0_c02284{color:rgb(0,0,0);}
.fs0_c02284{font-size:66.240000px;}
.fs1_c02284{font-size:72.000000px;}
.y0_c02284{bottom:0.000000px;}
.y3_c02284{bottom:4.680000px;}
.y2_c02284{bottom:41.796000px;}
.y1_c02284{bottom:75.456000px;}
.y1d_c02284{bottom:288.975000px;}
.y1c_c02284{bottom:320.115000px;}
.y1b_c02284{bottom:351.075000px;}
.y1a_c02284{bottom:382.215000px;}
.y19_c02284{bottom:413.175000px;}
.y18_c02284{bottom:444.315000px;}
.y17_c02284{bottom:475.275000px;}
.y16_c02284{bottom:506.415000px;}
.y15_c02284{bottom:537.405000px;}
.y14_c02284{bottom:568.545000px;}
.y13_c02284{bottom:599.505000px;}
.y12_c02284{bottom:630.645000px;}
.y11_c02284{bottom:661.605000px;}
.y10_c02284{bottom:692.745000px;}
.yf_c02284{bottom:723.705000px;}
.ye_c02284{bottom:754.845000px;}
.yd_c02284{bottom:785.805000px;}
.yc_c02284{bottom:816.990000px;}
.yb_c02284{bottom:847.950000px;}
.ya_c02284{bottom:879.090000px;}
.y9_c02284{bottom:910.050000px;}
.y8_c02284{bottom:941.190000px;}
.y7_c02284{bottom:972.150000px;}
.y6_c02284{bottom:1003.290000px;}
.y5_c02284{bottom:1034.250000px;}
.y4_c02284{bottom:1065.420000px;}
.h2_c02284{height:22.500000px;}
.h1_c02284{height:48.871406px;}
.h3_c02284{height:70.664062px;}
.h0_c02284{height:1188.000000px;}
.w1_c02284{width:66.636000px;}
.w0_c02284{width:918.000000px;}
.x0_c02284{left:0.000000px;}
.x3_c02284{left:16.560000px;}
.x1_c02284{left:127.656000px;}
.x5_c02284{left:154.650000px;}
.x4_c02284{left:187.050000px;}
.x2_c02284{left:820.950000px;}
@media print{
.v0_c02284{vertical-align:0.000000pt;}
.ls0_c02284{letter-spacing:0.000000pt;}
.ws0_c02284{word-spacing:-16.000000pt;}
.ws1_c02284{word-spacing:0.000000pt;}
._5_c02284{margin-left:-1.088000pt;}
._1_c02284{width:1.088000pt;}
._a_c02284{width:2.112000pt;}
._b_c02284{width:3.008000pt;}
._2_c02284{width:4.032000pt;}
._3_c02284{width:4.992000pt;}
._0_c02284{width:6.016000pt;}
._4_c02284{width:7.168000pt;}
._6_c02284{width:8.384000pt;}
._7_c02284{width:9.344000pt;}
._8_c02284{width:13.632000pt;}
._9_c02284{width:14.848000pt;}
.fs0_c02284{font-size:58.880000pt;}
.fs1_c02284{font-size:64.000000pt;}
.y0_c02284{bottom:0.000000pt;}
.y3_c02284{bottom:4.160000pt;}
.y2_c02284{bottom:37.152000pt;}
.y1_c02284{bottom:67.072000pt;}
.y1d_c02284{bottom:256.866667pt;}
.y1c_c02284{bottom:284.546667pt;}
.y1b_c02284{bottom:312.066667pt;}
.y1a_c02284{bottom:339.746667pt;}
.y19_c02284{bottom:367.266667pt;}
.y18_c02284{bottom:394.946667pt;}
.y17_c02284{bottom:422.466667pt;}
.y16_c02284{bottom:450.146667pt;}
.y15_c02284{bottom:477.693333pt;}
.y14_c02284{bottom:505.373333pt;}
.y13_c02284{bottom:532.893333pt;}
.y12_c02284{bottom:560.573333pt;}
.y11_c02284{bottom:588.093333pt;}
.y10_c02284{bottom:615.773333pt;}
.yf_c02284{bottom:643.293333pt;}
.ye_c02284{bottom:670.973333pt;}
.yd_c02284{bottom:698.493333pt;}
.yc_c02284{bottom:726.213333pt;}
.yb_c02284{bottom:753.733333pt;}
.ya_c02284{bottom:781.413333pt;}
.y9_c02284{bottom:808.933333pt;}
.y8_c02284{bottom:836.613333pt;}
.y7_c02284{bottom:864.133333pt;}
.y6_c02284{bottom:891.813333pt;}
.y5_c02284{bottom:919.333333pt;}
.y4_c02284{bottom:947.040000pt;}
.h2_c02284{height:20.000000pt;}
.h1_c02284{height:43.441250pt;}
.h3_c02284{height:62.812500pt;}
.h0_c02284{height:1056.000000pt;}
.w1_c02284{width:59.232000pt;}
.w0_c02284{width:816.000000pt;}
.x0_c02284{left:0.000000pt;}
.x3_c02284{left:14.720000pt;}
.x1_c02284{left:113.472000pt;}
.x5_c02284{left:137.466667pt;}
.x4_c02284{left:166.266667pt;}
.x2_c02284{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02285 {
    display:none;
  }
  .loading-indicator_c02285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02285 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02285 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02285" -> "#page-container .classname_c02285")
 */
.pf_c02285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02285 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02285 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02285 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02285 {overflow:visible;}
  }
}
.c_c02285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02285 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02285:after { /* webkit #35443 */
  content: '';
}
.t_c02285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02285 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02285 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02285 { /* info for Javascript */
  display:none;
}
.l_c02285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02285:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02285 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02285.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02285;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02285{font-family:ff1_c02285;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02285;src:url('chunks/assets/font_137964e923bb4a1fb93133d3.woff2')format("woff");}.ff2_c02285{font-family:ff2_c02285;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:ff3_c02285;src:url('chunks/assets/font_898bd600ca7415380b8dfc6f.woff2')format("woff");}.ff3_c02285{font-family:ff3_c02285;line-height:1.311035;font-style:normal;font-weight: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_c02285;src:url('chunks/assets/font_6e940f229455bec948d3b729.woff2')format("woff");}.ff4_c02285{font-family:ff4_c02285;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02285{vertical-align:0.000000px;}
.ls0_c02285{letter-spacing:0.000000px;}
.sc__c02285{text-shadow:none;}
.sc0_c02285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02285{-webkit-text-stroke:0px transparent;}
.sc0_c02285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02285{word-spacing:-18.000000px;}
.ws1_c02285{word-spacing:0.000000px;}
._c_c02285{margin-left:-2.160000px;}
._0_c02285{margin-left:-1.008000px;}
._1_c02285{width:1.080000px;}
._9_c02285{width:2.880000px;}
._e_c02285{width:3.900000px;}
._2_c02285{width:5.688000px;}
._3_c02285{width:6.984000px;}
._8_c02285{width:12.600000px;}
._a_c02285{width:14.760000px;}
._4_c02285{width:16.560000px;}
._b_c02285{width:19.584000px;}
._5_c02285{width:23.760000px;}
._6_c02285{width:25.056000px;}
._d_c02285{width:28.584000px;}
._7_c02285{width:30.240000px;}
.fc1_c02285{color:rgb(192,80,77);}
.fc3_c02285{color:rgb(255,255,255);}
.fc2_c02285{color:rgb(17,17,17);}
.fc0_c02285{color:rgb(0,0,0);}
.fs0_c02285{font-size:66.240000px;}
.fs1_c02285{font-size:72.000000px;}
.y0_c02285{bottom:0.000000px;}
.y14_c02285{bottom:4.140000px;}
.y8_c02285{bottom:4.500000px;}
.y12_c02285{bottom:4.545000px;}
.y3_c02285{bottom:4.680000px;}
.y2_c02285{bottom:41.796000px;}
.y1_c02285{bottom:75.456000px;}
.y2a_c02285{bottom:145.476000px;}
.y29_c02285{bottom:176.430000px;}
.y28_c02285{bottom:207.570000px;}
.y27_c02285{bottom:238.530000px;}
.y26_c02285{bottom:269.670000px;}
.y25_c02285{bottom:300.675000px;}
.y24_c02285{bottom:331.815000px;}
.y23_c02285{bottom:362.775000px;}
.y22_c02285{bottom:393.915000px;}
.y21_c02285{bottom:424.875000px;}
.y20_c02285{bottom:456.015000px;}
.y1f_c02285{bottom:486.975000px;}
.y1e_c02285{bottom:518.115000px;}
.y1d_c02285{bottom:549.105000px;}
.y1c_c02285{bottom:580.245000px;}
.y1b_c02285{bottom:611.205000px;}
.y1a_c02285{bottom:642.345000px;}
.y19_c02285{bottom:673.305000px;}
.y18_c02285{bottom:694.185000px;}
.y17_c02285{bottom:714.885000px;}
.y16_c02285{bottom:735.585000px;}
.y15_c02285{bottom:756.285000px;}
.y13_c02285{bottom:773.205000px;}
.y11_c02285{bottom:794.805000px;}
.y10_c02285{bottom:816.270000px;}
.yf_c02285{bottom:837.690000px;}
.ye_c02285{bottom:859.110000px;}
.yd_c02285{bottom:880.530000px;}
.yc_c02285{bottom:901.950000px;}
.yb_c02285{bottom:923.370000px;}
.ya_c02285{bottom:944.970000px;}
.y9_c02285{bottom:966.390000px;}
.y7_c02285{bottom:987.810000px;}
.y6_c02285{bottom:1023.990000px;}
.y5_c02285{bottom:1044.870000px;}
.y4_c02285{bottom:1065.600000px;}
.h4_c02285{height:20.700000px;}
.h5_c02285{height:20.736000px;}
.h2_c02285{height:22.500000px;}
.h1_c02285{height:48.871406px;}
.h3_c02285{height:70.664062px;}
.h6_c02285{height:72.562500px;}
.h0_c02285{height:1188.000000px;}
.w1_c02285{width:66.636000px;}
.w2_c02285{width:308.370000px;}
.w3_c02285{width:309.855000px;}
.w0_c02285{width:918.000000px;}
.x0_c02285{left:0.000000px;}
.x3_c02285{left:16.560000px;}
.x9_c02285{left:84.450000px;}
.x11_c02285{left:116.280000px;}
.xc_c02285{left:123.345000px;}
.x1_c02285{left:127.656000px;}
.xf_c02285{left:128.745000px;}
.x10_c02285{left:129.825000px;}
.x8_c02285{left:131.805000px;}
.xb_c02285{left:137.205000px;}
.xe_c02285{left:139.725000px;}
.xa_c02285{left:145.830000px;}
.xd_c02285{left:150.330000px;}
.x13_c02285{left:154.650000px;}
.x7_c02285{left:179.310000px;}
.x12_c02285{left:187.050000px;}
.x5_c02285{left:199.290000px;}
.x4_c02285{left:440.175000px;}
.x6_c02285{left:488.775000px;}
.x2_c02285{left:820.950000px;}
@media print{
.v0_c02285{vertical-align:0.000000pt;}
.ls0_c02285{letter-spacing:0.000000pt;}
.ws0_c02285{word-spacing:-16.000000pt;}
.ws1_c02285{word-spacing:0.000000pt;}
._c_c02285{margin-left:-1.920000pt;}
._0_c02285{margin-left:-0.896000pt;}
._1_c02285{width:0.960000pt;}
._9_c02285{width:2.560000pt;}
._e_c02285{width:3.466667pt;}
._2_c02285{width:5.056000pt;}
._3_c02285{width:6.208000pt;}
._8_c02285{width:11.200000pt;}
._a_c02285{width:13.120000pt;}
._4_c02285{width:14.720000pt;}
._b_c02285{width:17.408000pt;}
._5_c02285{width:21.120000pt;}
._6_c02285{width:22.272000pt;}
._d_c02285{width:25.408000pt;}
._7_c02285{width:26.880000pt;}
.fs0_c02285{font-size:58.880000pt;}
.fs1_c02285{font-size:64.000000pt;}
.y0_c02285{bottom:0.000000pt;}
.y14_c02285{bottom:3.680000pt;}
.y8_c02285{bottom:4.000000pt;}
.y12_c02285{bottom:4.040000pt;}
.y3_c02285{bottom:4.160000pt;}
.y2_c02285{bottom:37.152000pt;}
.y1_c02285{bottom:67.072000pt;}
.y2a_c02285{bottom:129.312000pt;}
.y29_c02285{bottom:156.826667pt;}
.y28_c02285{bottom:184.506667pt;}
.y27_c02285{bottom:212.026667pt;}
.y26_c02285{bottom:239.706667pt;}
.y25_c02285{bottom:267.266667pt;}
.y24_c02285{bottom:294.946667pt;}
.y23_c02285{bottom:322.466667pt;}
.y22_c02285{bottom:350.146667pt;}
.y21_c02285{bottom:377.666667pt;}
.y20_c02285{bottom:405.346667pt;}
.y1f_c02285{bottom:432.866667pt;}
.y1e_c02285{bottom:460.546667pt;}
.y1d_c02285{bottom:488.093333pt;}
.y1c_c02285{bottom:515.773333pt;}
.y1b_c02285{bottom:543.293333pt;}
.y1a_c02285{bottom:570.973333pt;}
.y19_c02285{bottom:598.493333pt;}
.y18_c02285{bottom:617.053333pt;}
.y17_c02285{bottom:635.453333pt;}
.y16_c02285{bottom:653.853333pt;}
.y15_c02285{bottom:672.253333pt;}
.y13_c02285{bottom:687.293333pt;}
.y11_c02285{bottom:706.493333pt;}
.y10_c02285{bottom:725.573333pt;}
.yf_c02285{bottom:744.613333pt;}
.ye_c02285{bottom:763.653333pt;}
.yd_c02285{bottom:782.693333pt;}
.yc_c02285{bottom:801.733333pt;}
.yb_c02285{bottom:820.773333pt;}
.ya_c02285{bottom:839.973333pt;}
.y9_c02285{bottom:859.013333pt;}
.y7_c02285{bottom:878.053333pt;}
.y6_c02285{bottom:910.213333pt;}
.y5_c02285{bottom:928.773333pt;}
.y4_c02285{bottom:947.200000pt;}
.h4_c02285{height:18.400000pt;}
.h5_c02285{height:18.432000pt;}
.h2_c02285{height:20.000000pt;}
.h1_c02285{height:43.441250pt;}
.h3_c02285{height:62.812500pt;}
.h6_c02285{height:64.500000pt;}
.h0_c02285{height:1056.000000pt;}
.w1_c02285{width:59.232000pt;}
.w2_c02285{width:274.106667pt;}
.w3_c02285{width:275.426667pt;}
.w0_c02285{width:816.000000pt;}
.x0_c02285{left:0.000000pt;}
.x3_c02285{left:14.720000pt;}
.x9_c02285{left:75.066667pt;}
.x11_c02285{left:103.360000pt;}
.xc_c02285{left:109.640000pt;}
.x1_c02285{left:113.472000pt;}
.xf_c02285{left:114.440000pt;}
.x10_c02285{left:115.400000pt;}
.x8_c02285{left:117.160000pt;}
.xb_c02285{left:121.960000pt;}
.xe_c02285{left:124.200000pt;}
.xa_c02285{left:129.626667pt;}
.xd_c02285{left:133.626667pt;}
.x13_c02285{left:137.466667pt;}
.x7_c02285{left:159.386667pt;}
.x12_c02285{left:166.266667pt;}
.x5_c02285{left:177.146667pt;}
.x4_c02285{left:391.266667pt;}
.x6_c02285{left:434.466667pt;}
.x2_c02285{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02286 {
    display:none;
  }
  .loading-indicator_c02286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02286 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02286 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02286" -> "#page-container .classname_c02286")
 */
.pf_c02286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02286 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02286 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02286 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02286 {overflow:visible;}
  }
}
.c_c02286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02286 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02286:after { /* webkit #35443 */
  content: '';
}
.t_c02286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02286 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02286 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02286 { /* info for Javascript */
  display:none;
}
.l_c02286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02286:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02286 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02286.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02286;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02286{font-family:ff1_c02286;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02286;src:url('chunks/assets/font_c17e82ae8ee38ca30a76ca44.woff2')format("woff");}.ff2_c02286{font-family:ff2_c02286;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:ff3_c02286;src:url('chunks/assets/font_d6a53ec766e200704a8209e9.woff2')format("woff");}.ff3_c02286{font-family:ff3_c02286;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02286{vertical-align:0.000000px;}
.ls0_c02286{letter-spacing:0.000000px;}
.sc__c02286{text-shadow:none;}
.sc0_c02286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02286{-webkit-text-stroke:0px transparent;}
.sc0_c02286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02286{word-spacing:0.000000px;}
._13_c02286{margin-left:-2.016000px;}
._1_c02286{margin-left:-1.008000px;}
._3_c02286{width:1.080000px;}
._b_c02286{width:2.880000px;}
._c_c02286{width:4.104000px;}
._7_c02286{width:5.760000px;}
._6_c02286{width:7.200000px;}
._0_c02286{width:8.280000px;}
._f_c02286{width:10.008000px;}
._2_c02286{width:13.032000px;}
._4_c02286{width:14.112000px;}
._a_c02286{width:16.632000px;}
._5_c02286{width:19.440000px;}
._d_c02286{width:20.808000px;}
._e_c02286{width:22.104000px;}
._10_c02286{width:25.056000px;}
._8_c02286{width:26.208000px;}
._9_c02286{width:27.288000px;}
._11_c02286{width:35.568000px;}
._12_c02286{width:36.720000px;}
.fc1_c02286{color:rgb(192,80,77);}
.fc0_c02286{color:rgb(0,0,0);}
.fs0_c02286{font-size:66.240000px;}
.fs1_c02286{font-size:72.000000px;}
.y0_c02286{bottom:0.000000px;}
.y3_c02286{bottom:4.680000px;}
.y2_c02286{bottom:41.796000px;}
.y1_c02286{bottom:75.456000px;}
.y22_c02286{bottom:133.776000px;}
.y21_c02286{bottom:164.910000px;}
.y20_c02286{bottom:195.870000px;}
.y1f_c02286{bottom:226.830000px;}
.y1e_c02286{bottom:257.970000px;}
.y1d_c02286{bottom:288.975000px;}
.y1c_c02286{bottom:320.115000px;}
.y1b_c02286{bottom:351.075000px;}
.y1a_c02286{bottom:382.215000px;}
.y19_c02286{bottom:413.175000px;}
.y18_c02286{bottom:444.315000px;}
.y17_c02286{bottom:475.275000px;}
.y16_c02286{bottom:506.415000px;}
.y15_c02286{bottom:537.405000px;}
.y14_c02286{bottom:568.545000px;}
.y13_c02286{bottom:599.505000px;}
.y12_c02286{bottom:630.645000px;}
.y11_c02286{bottom:661.605000px;}
.y10_c02286{bottom:692.745000px;}
.yf_c02286{bottom:723.705000px;}
.ye_c02286{bottom:754.845000px;}
.yd_c02286{bottom:785.805000px;}
.yc_c02286{bottom:816.990000px;}
.yb_c02286{bottom:847.950000px;}
.ya_c02286{bottom:879.090000px;}
.y9_c02286{bottom:910.050000px;}
.y8_c02286{bottom:941.190000px;}
.y7_c02286{bottom:972.150000px;}
.y6_c02286{bottom:1003.290000px;}
.y5_c02286{bottom:1034.250000px;}
.y4_c02286{bottom:1065.420000px;}
.h2_c02286{height:22.500000px;}
.h1_c02286{height:48.871406px;}
.h4_c02286{height:64.546875px;}
.h3_c02286{height:70.664062px;}
.h0_c02286{height:1188.000000px;}
.w1_c02286{width:66.636000px;}
.w0_c02286{width:918.000000px;}
.x0_c02286{left:0.000000px;}
.x3_c02286{left:16.560000px;}
.x1_c02286{left:127.656000px;}
.x4_c02286{left:187.050000px;}
.x2_c02286{left:820.950000px;}
@media print{
.v0_c02286{vertical-align:0.000000pt;}
.ls0_c02286{letter-spacing:0.000000pt;}
.ws0_c02286{word-spacing:0.000000pt;}
._13_c02286{margin-left:-1.792000pt;}
._1_c02286{margin-left:-0.896000pt;}
._3_c02286{width:0.960000pt;}
._b_c02286{width:2.560000pt;}
._c_c02286{width:3.648000pt;}
._7_c02286{width:5.120000pt;}
._6_c02286{width:6.400000pt;}
._0_c02286{width:7.360000pt;}
._f_c02286{width:8.896000pt;}
._2_c02286{width:11.584000pt;}
._4_c02286{width:12.544000pt;}
._a_c02286{width:14.784000pt;}
._5_c02286{width:17.280000pt;}
._d_c02286{width:18.496000pt;}
._e_c02286{width:19.648000pt;}
._10_c02286{width:22.272000pt;}
._8_c02286{width:23.296000pt;}
._9_c02286{width:24.256000pt;}
._11_c02286{width:31.616000pt;}
._12_c02286{width:32.640000pt;}
.fs0_c02286{font-size:58.880000pt;}
.fs1_c02286{font-size:64.000000pt;}
.y0_c02286{bottom:0.000000pt;}
.y3_c02286{bottom:4.160000pt;}
.y2_c02286{bottom:37.152000pt;}
.y1_c02286{bottom:67.072000pt;}
.y22_c02286{bottom:118.912000pt;}
.y21_c02286{bottom:146.586667pt;}
.y20_c02286{bottom:174.106667pt;}
.y1f_c02286{bottom:201.626667pt;}
.y1e_c02286{bottom:229.306667pt;}
.y1d_c02286{bottom:256.866667pt;}
.y1c_c02286{bottom:284.546667pt;}
.y1b_c02286{bottom:312.066667pt;}
.y1a_c02286{bottom:339.746667pt;}
.y19_c02286{bottom:367.266667pt;}
.y18_c02286{bottom:394.946667pt;}
.y17_c02286{bottom:422.466667pt;}
.y16_c02286{bottom:450.146667pt;}
.y15_c02286{bottom:477.693333pt;}
.y14_c02286{bottom:505.373333pt;}
.y13_c02286{bottom:532.893333pt;}
.y12_c02286{bottom:560.573333pt;}
.y11_c02286{bottom:588.093333pt;}
.y10_c02286{bottom:615.773333pt;}
.yf_c02286{bottom:643.293333pt;}
.ye_c02286{bottom:670.973333pt;}
.yd_c02286{bottom:698.493333pt;}
.yc_c02286{bottom:726.213333pt;}
.yb_c02286{bottom:753.733333pt;}
.ya_c02286{bottom:781.413333pt;}
.y9_c02286{bottom:808.933333pt;}
.y8_c02286{bottom:836.613333pt;}
.y7_c02286{bottom:864.133333pt;}
.y6_c02286{bottom:891.813333pt;}
.y5_c02286{bottom:919.333333pt;}
.y4_c02286{bottom:947.040000pt;}
.h2_c02286{height:20.000000pt;}
.h1_c02286{height:43.441250pt;}
.h4_c02286{height:57.375000pt;}
.h3_c02286{height:62.812500pt;}
.h0_c02286{height:1056.000000pt;}
.w1_c02286{width:59.232000pt;}
.w0_c02286{width:816.000000pt;}
.x0_c02286{left:0.000000pt;}
.x3_c02286{left:14.720000pt;}
.x1_c02286{left:113.472000pt;}
.x4_c02286{left:166.266667pt;}
.x2_c02286{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02287 {
    display:none;
  }
  .loading-indicator_c02287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02287 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02287 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02287" -> "#page-container .classname_c02287")
 */
.pf_c02287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02287 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02287 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02287 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02287 {overflow:visible;}
  }
}
.c_c02287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02287 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02287:after { /* webkit #35443 */
  content: '';
}
.t_c02287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02287 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02287 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02287 { /* info for Javascript */
  display:none;
}
.l_c02287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02287:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02287 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02287.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02287;src:url('chunks/assets/font_6a92061f9d52f8bf65f090a8.woff2')format("woff");}.ff1_c02287{font-family:ff1_c02287;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02287;src:url('chunks/assets/font_90ed2bd65f7125ae5952596d.woff2')format("woff");}.ff2_c02287{font-family:ff2_c02287;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:ff3_c02287;src:url('chunks/assets/font_a77cd07fe1d1de0083520f66.woff2')format("woff");}.ff3_c02287{font-family:ff3_c02287;line-height:1.284180;font-style:normal;font-weight: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_c02287;src:url('chunks/assets/font_0f6af5b28f4cf71a4666b9e8.woff2')format("woff");}.ff4_c02287{font-family:ff4_c02287;line-height:1.112305;font-style:normal;font-weight: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_c02287;src:url('chunks/assets/font_898bd600ca7415380b8dfc6f.woff2')format("woff");}.ff5_c02287{font-family:ff5_c02287;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02287{vertical-align:0.000000px;}
.ls0_c02287{letter-spacing:0.000000px;}
.sc__c02287{text-shadow:none;}
.sc0_c02287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02287{-webkit-text-stroke:0px transparent;}
.sc0_c02287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02287{word-spacing:0.000000px;}
._3_c02287{margin-left:-1.080000px;}
._0_c02287{width:1.512000px;}
._5_c02287{width:3.240000px;}
._1_c02287{width:4.680000px;}
._2_c02287{width:6.336000px;}
._a_c02287{width:7.848000px;}
._b_c02287{width:9.360000px;}
._4_c02287{width:19.440000px;}
._7_c02287{width:23.184000px;}
._6_c02287{width:24.264000px;}
._8_c02287{width:26.496000px;}
._9_c02287{width:27.792000px;}
.fc1_c02287{color:rgb(192,80,77);}
.fc3_c02287{color:rgb(255,255,255);}
.fc2_c02287{color:rgb(17,17,17);}
.fc0_c02287{color:rgb(0,0,0);}
.fs0_c02287{font-size:66.240000px;}
.fs1_c02287{font-size:72.000000px;}
.y0_c02287{bottom:0.000000px;}
.y20_c02287{bottom:4.140000px;}
.y18_c02287{bottom:4.500000px;}
.y3_c02287{bottom:4.680000px;}
.y2_c02287{bottom:41.796000px;}
.y1_c02287{bottom:75.456000px;}
.y29_c02287{bottom:116.676000px;}
.y28_c02287{bottom:147.816000px;}
.y27_c02287{bottom:178.770000px;}
.y26_c02287{bottom:209.730000px;}
.y25_c02287{bottom:240.870000px;}
.y24_c02287{bottom:261.750000px;}
.y23_c02287{bottom:282.495000px;}
.y22_c02287{bottom:303.195000px;}
.y21_c02287{bottom:323.895000px;}
.y1f_c02287{bottom:340.815000px;}
.y1e_c02287{bottom:362.235000px;}
.y1d_c02287{bottom:383.655000px;}
.y1c_c02287{bottom:405.255000px;}
.y1b_c02287{bottom:426.675000px;}
.y1a_c02287{bottom:448.095000px;}
.y19_c02287{bottom:469.515000px;}
.y17_c02287{bottom:490.935000px;}
.y16_c02287{bottom:527.115000px;}
.y15_c02287{bottom:548.025000px;}
.y14_c02287{bottom:568.725000px;}
.y13_c02287{bottom:599.505000px;}
.y12_c02287{bottom:630.645000px;}
.y11_c02287{bottom:661.605000px;}
.y10_c02287{bottom:692.745000px;}
.yf_c02287{bottom:723.705000px;}
.ye_c02287{bottom:754.845000px;}
.yd_c02287{bottom:785.805000px;}
.yc_c02287{bottom:816.990000px;}
.yb_c02287{bottom:847.950000px;}
.ya_c02287{bottom:879.090000px;}
.y9_c02287{bottom:910.050000px;}
.y8_c02287{bottom:941.190000px;}
.y7_c02287{bottom:972.150000px;}
.y6_c02287{bottom:1003.290000px;}
.y5_c02287{bottom:1034.250000px;}
.y4_c02287{bottom:1065.420000px;}
.h5_c02287{height:20.700000px;}
.h2_c02287{height:22.500000px;}
.h1_c02287{height:48.871406px;}
.h4_c02287{height:64.546875px;}
.h3_c02287{height:70.664062px;}
.h6_c02287{height:72.562500px;}
.h0_c02287{height:1188.000000px;}
.w1_c02287{width:66.636000px;}
.w3_c02287{width:307.875000px;}
.w2_c02287{width:310.350000px;}
.w0_c02287{width:918.000000px;}
.x0_c02287{left:0.000000px;}
.x3_c02287{left:16.560000px;}
.xb_c02287{left:83.370000px;}
.xf_c02287{left:89.460000px;}
.xc_c02287{left:100.440000px;}
.xe_c02287{left:102.420000px;}
.x13_c02287{left:104.940000px;}
.x11_c02287{left:107.460000px;}
.x14_c02287{left:123.705000px;}
.x1_c02287{left:127.656000px;}
.x9_c02287{left:131.085000px;}
.x12_c02287{left:135.225000px;}
.xd_c02287{left:144.930000px;}
.x10_c02287{left:149.430000px;}
.x7_c02287{left:154.650000px;}
.x8_c02287{left:179.310000px;}
.x15_c02287{left:180.750000px;}
.x4_c02287{left:187.050000px;}
.x6_c02287{left:192.810000px;}
.x5_c02287{left:440.175000px;}
.xa_c02287{left:490.395000px;}
.x2_c02287{left:820.950000px;}
@media print{
.v0_c02287{vertical-align:0.000000pt;}
.ls0_c02287{letter-spacing:0.000000pt;}
.ws0_c02287{word-spacing:0.000000pt;}
._3_c02287{margin-left:-0.960000pt;}
._0_c02287{width:1.344000pt;}
._5_c02287{width:2.880000pt;}
._1_c02287{width:4.160000pt;}
._2_c02287{width:5.632000pt;}
._a_c02287{width:6.976000pt;}
._b_c02287{width:8.320000pt;}
._4_c02287{width:17.280000pt;}
._7_c02287{width:20.608000pt;}
._6_c02287{width:21.568000pt;}
._8_c02287{width:23.552000pt;}
._9_c02287{width:24.704000pt;}
.fs0_c02287{font-size:58.880000pt;}
.fs1_c02287{font-size:64.000000pt;}
.y0_c02287{bottom:0.000000pt;}
.y20_c02287{bottom:3.680000pt;}
.y18_c02287{bottom:4.000000pt;}
.y3_c02287{bottom:4.160000pt;}
.y2_c02287{bottom:37.152000pt;}
.y1_c02287{bottom:67.072000pt;}
.y29_c02287{bottom:103.712000pt;}
.y28_c02287{bottom:131.392000pt;}
.y27_c02287{bottom:158.906667pt;}
.y26_c02287{bottom:186.426667pt;}
.y25_c02287{bottom:214.106667pt;}
.y24_c02287{bottom:232.666667pt;}
.y23_c02287{bottom:251.106667pt;}
.y22_c02287{bottom:269.506667pt;}
.y21_c02287{bottom:287.906667pt;}
.y1f_c02287{bottom:302.946667pt;}
.y1e_c02287{bottom:321.986667pt;}
.y1d_c02287{bottom:341.026667pt;}
.y1c_c02287{bottom:360.226667pt;}
.y1b_c02287{bottom:379.266667pt;}
.y1a_c02287{bottom:398.306667pt;}
.y19_c02287{bottom:417.346667pt;}
.y17_c02287{bottom:436.386667pt;}
.y16_c02287{bottom:468.546667pt;}
.y15_c02287{bottom:487.133333pt;}
.y14_c02287{bottom:505.533333pt;}
.y13_c02287{bottom:532.893333pt;}
.y12_c02287{bottom:560.573333pt;}
.y11_c02287{bottom:588.093333pt;}
.y10_c02287{bottom:615.773333pt;}
.yf_c02287{bottom:643.293333pt;}
.ye_c02287{bottom:670.973333pt;}
.yd_c02287{bottom:698.493333pt;}
.yc_c02287{bottom:726.213333pt;}
.yb_c02287{bottom:753.733333pt;}
.ya_c02287{bottom:781.413333pt;}
.y9_c02287{bottom:808.933333pt;}
.y8_c02287{bottom:836.613333pt;}
.y7_c02287{bottom:864.133333pt;}
.y6_c02287{bottom:891.813333pt;}
.y5_c02287{bottom:919.333333pt;}
.y4_c02287{bottom:947.040000pt;}
.h5_c02287{height:18.400000pt;}
.h2_c02287{height:20.000000pt;}
.h1_c02287{height:43.441250pt;}
.h4_c02287{height:57.375000pt;}
.h3_c02287{height:62.812500pt;}
.h6_c02287{height:64.500000pt;}
.h0_c02287{height:1056.000000pt;}
.w1_c02287{width:59.232000pt;}
.w3_c02287{width:273.666667pt;}
.w2_c02287{width:275.866667pt;}
.w0_c02287{width:816.000000pt;}
.x0_c02287{left:0.000000pt;}
.x3_c02287{left:14.720000pt;}
.xb_c02287{left:74.106667pt;}
.xf_c02287{left:79.520000pt;}
.xc_c02287{left:89.280000pt;}
.xe_c02287{left:91.040000pt;}
.x13_c02287{left:93.280000pt;}
.x11_c02287{left:95.520000pt;}
.x14_c02287{left:109.960000pt;}
.x1_c02287{left:113.472000pt;}
.x9_c02287{left:116.520000pt;}
.x12_c02287{left:120.200000pt;}
.xd_c02287{left:128.826667pt;}
.x10_c02287{left:132.826667pt;}
.x7_c02287{left:137.466667pt;}
.x8_c02287{left:159.386667pt;}
.x15_c02287{left:160.666667pt;}
.x4_c02287{left:166.266667pt;}
.x6_c02287{left:171.386667pt;}
.x5_c02287{left:391.266667pt;}
.xa_c02287{left:435.906667pt;}
.x2_c02287{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02288 {
    display:none;
  }
  .loading-indicator_c02288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02288 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02288 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02288" -> "#page-container .classname_c02288")
 */
.pf_c02288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02288 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02288 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02288 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02288 {overflow:visible;}
  }
}
.c_c02288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02288 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02288:after { /* webkit #35443 */
  content: '';
}
.t_c02288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02288 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02288 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02288 { /* info for Javascript */
  display:none;
}
.l_c02288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02288:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02288 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02288.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02288;src:url('chunks/assets/font_4551dd4e2f00730f24905c39.woff2')format("woff");}.ff1_c02288{font-family:ff1_c02288;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02288;src:url('chunks/assets/font_0656f1605da94cbf1b2fa960.woff2')format("woff");}.ff2_c02288{font-family:ff2_c02288;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:ff3_c02288;src:url('chunks/assets/font_3e1fd75cff8b50524f695c66.woff2')format("woff");}.ff3_c02288{font-family:ff3_c02288;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02288{vertical-align:0.000000px;}
.ls1_c02288{letter-spacing:-0.288000px;}
.ls0_c02288{letter-spacing:0.000000px;}
.sc__c02288{text-shadow:none;}
.sc0_c02288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02288{-webkit-text-stroke:0px transparent;}
.sc0_c02288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02288{word-spacing:0.000000px;}
._0_c02288{margin-left:-1.080000px;}
._2_c02288{width:1.044000px;}
._e_c02288{width:3.672000px;}
._a_c02288{width:4.752000px;}
._b_c02288{width:5.760000px;}
._5_c02288{width:7.920000px;}
._7_c02288{width:9.360000px;}
._8_c02288{width:12.816000px;}
._9_c02288{width:13.932000px;}
._d_c02288{width:15.336000px;}
._6_c02288{width:16.992000px;}
._c_c02288{width:19.116000px;}
._10_c02288{width:23.616000px;}
._1_c02288{width:25.848000px;}
._11_c02288{width:27.288000px;}
._12_c02288{width:28.728000px;}
._f_c02288{width:30.168000px;}
._3_c02288{width:32.688000px;}
._4_c02288{width:34.572000px;}
.fc1_c02288{color:rgb(192,80,77);}
.fc2_c02288{color:rgb(17,17,17);}
.fc0_c02288{color:rgb(0,0,0);}
.fs0_c02288{font-size:66.240000px;}
.fs1_c02288{font-size:72.000000px;}
.y0_c02288{bottom:0.000000px;}
.y3_c02288{bottom:4.680000px;}
.y2_c02288{bottom:41.796000px;}
.y1_c02288{bottom:75.456000px;}
.y22_c02288{bottom:133.776000px;}
.y21_c02288{bottom:164.910000px;}
.y20_c02288{bottom:195.870000px;}
.y1f_c02288{bottom:226.830000px;}
.y1e_c02288{bottom:257.970000px;}
.y1d_c02288{bottom:288.975000px;}
.y1c_c02288{bottom:320.115000px;}
.y1b_c02288{bottom:351.075000px;}
.y1a_c02288{bottom:382.215000px;}
.y19_c02288{bottom:413.175000px;}
.y18_c02288{bottom:444.315000px;}
.y17_c02288{bottom:475.275000px;}
.y16_c02288{bottom:506.415000px;}
.y15_c02288{bottom:537.405000px;}
.y14_c02288{bottom:568.545000px;}
.y13_c02288{bottom:599.505000px;}
.y12_c02288{bottom:630.645000px;}
.y11_c02288{bottom:661.605000px;}
.y10_c02288{bottom:692.745000px;}
.yf_c02288{bottom:723.705000px;}
.ye_c02288{bottom:754.845000px;}
.yd_c02288{bottom:785.805000px;}
.yc_c02288{bottom:816.990000px;}
.yb_c02288{bottom:847.950000px;}
.ya_c02288{bottom:879.090000px;}
.y9_c02288{bottom:910.050000px;}
.y8_c02288{bottom:941.190000px;}
.y7_c02288{bottom:972.150000px;}
.y6_c02288{bottom:1003.290000px;}
.y5_c02288{bottom:1034.250000px;}
.y4_c02288{bottom:1065.420000px;}
.h2_c02288{height:22.500000px;}
.h1_c02288{height:48.871406px;}
.h4_c02288{height:64.546875px;}
.h3_c02288{height:70.664062px;}
.h0_c02288{height:1188.000000px;}
.w1_c02288{width:66.636000px;}
.w0_c02288{width:918.000000px;}
.x0_c02288{left:0.000000px;}
.x3_c02288{left:16.560000px;}
.x1_c02288{left:127.656000px;}
.x4_c02288{left:154.650000px;}
.x5_c02288{left:187.050000px;}
.x2_c02288{left:820.950000px;}
@media print{
.v0_c02288{vertical-align:0.000000pt;}
.ls1_c02288{letter-spacing:-0.256000pt;}
.ls0_c02288{letter-spacing:0.000000pt;}
.ws0_c02288{word-spacing:0.000000pt;}
._0_c02288{margin-left:-0.960000pt;}
._2_c02288{width:0.928000pt;}
._e_c02288{width:3.264000pt;}
._a_c02288{width:4.224000pt;}
._b_c02288{width:5.120000pt;}
._5_c02288{width:7.040000pt;}
._7_c02288{width:8.320000pt;}
._8_c02288{width:11.392000pt;}
._9_c02288{width:12.384000pt;}
._d_c02288{width:13.632000pt;}
._6_c02288{width:15.104000pt;}
._c_c02288{width:16.992000pt;}
._10_c02288{width:20.992000pt;}
._1_c02288{width:22.976000pt;}
._11_c02288{width:24.256000pt;}
._12_c02288{width:25.536000pt;}
._f_c02288{width:26.816000pt;}
._3_c02288{width:29.056000pt;}
._4_c02288{width:30.730667pt;}
.fs0_c02288{font-size:58.880000pt;}
.fs1_c02288{font-size:64.000000pt;}
.y0_c02288{bottom:0.000000pt;}
.y3_c02288{bottom:4.160000pt;}
.y2_c02288{bottom:37.152000pt;}
.y1_c02288{bottom:67.072000pt;}
.y22_c02288{bottom:118.912000pt;}
.y21_c02288{bottom:146.586667pt;}
.y20_c02288{bottom:174.106667pt;}
.y1f_c02288{bottom:201.626667pt;}
.y1e_c02288{bottom:229.306667pt;}
.y1d_c02288{bottom:256.866667pt;}
.y1c_c02288{bottom:284.546667pt;}
.y1b_c02288{bottom:312.066667pt;}
.y1a_c02288{bottom:339.746667pt;}
.y19_c02288{bottom:367.266667pt;}
.y18_c02288{bottom:394.946667pt;}
.y17_c02288{bottom:422.466667pt;}
.y16_c02288{bottom:450.146667pt;}
.y15_c02288{bottom:477.693333pt;}
.y14_c02288{bottom:505.373333pt;}
.y13_c02288{bottom:532.893333pt;}
.y12_c02288{bottom:560.573333pt;}
.y11_c02288{bottom:588.093333pt;}
.y10_c02288{bottom:615.773333pt;}
.yf_c02288{bottom:643.293333pt;}
.ye_c02288{bottom:670.973333pt;}
.yd_c02288{bottom:698.493333pt;}
.yc_c02288{bottom:726.213333pt;}
.yb_c02288{bottom:753.733333pt;}
.ya_c02288{bottom:781.413333pt;}
.y9_c02288{bottom:808.933333pt;}
.y8_c02288{bottom:836.613333pt;}
.y7_c02288{bottom:864.133333pt;}
.y6_c02288{bottom:891.813333pt;}
.y5_c02288{bottom:919.333333pt;}
.y4_c02288{bottom:947.040000pt;}
.h2_c02288{height:20.000000pt;}
.h1_c02288{height:43.441250pt;}
.h4_c02288{height:57.375000pt;}
.h3_c02288{height:62.812500pt;}
.h0_c02288{height:1056.000000pt;}
.w1_c02288{width:59.232000pt;}
.w0_c02288{width:816.000000pt;}
.x0_c02288{left:0.000000pt;}
.x3_c02288{left:14.720000pt;}
.x1_c02288{left:113.472000pt;}
.x4_c02288{left:137.466667pt;}
.x5_c02288{left:166.266667pt;}
.x2_c02288{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02289 {
    display:none;
  }
  .loading-indicator_c02289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02289 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02289 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02289" -> "#page-container .classname_c02289")
 */
.pf_c02289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02289 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02289 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02289 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02289 {overflow:visible;}
  }
}
.c_c02289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02289 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02289:after { /* webkit #35443 */
  content: '';
}
.t_c02289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02289 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02289 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02289 { /* info for Javascript */
  display:none;
}
.l_c02289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02289:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02289 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02289.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02289;src:url('chunks/assets/font_52169edc073ecb9f2629879a.woff2')format("woff");}.ff1_c02289{font-family:ff1_c02289;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02289;src:url('chunks/assets/font_10064feed897b509c9a195fb.woff2')format("woff");}.ff2_c02289{font-family:ff2_c02289;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:ff3_c02289;src:url('chunks/assets/font_16faedf2520f1b2283144f4e.woff2')format("woff");}.ff3_c02289{font-family:ff3_c02289;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02289{vertical-align:0.000000px;}
.ls0_c02289{letter-spacing:0.000000px;}
.sc__c02289{text-shadow:none;}
.sc0_c02289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02289{-webkit-text-stroke:0px transparent;}
.sc0_c02289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02289{word-spacing:0.000000px;}
._7_c02289{margin-left:-2.448000px;}
._6_c02289{margin-left:-1.080000px;}
._1_c02289{width:1.224000px;}
._16_c02289{width:2.376000px;}
._5_c02289{width:3.456000px;}
._f_c02289{width:4.824000px;}
._12_c02289{width:5.868000px;}
._8_c02289{width:7.272000px;}
._9_c02289{width:8.640000px;}
._c_c02289{width:9.936000px;}
._d_c02289{width:11.160000px;}
._b_c02289{width:14.184000px;}
._a_c02289{width:15.192000px;}
._14_c02289{width:19.080000px;}
._10_c02289{width:21.744000px;}
._11_c02289{width:22.824000px;}
._0_c02289{width:23.976000px;}
._2_c02289{width:25.140000px;}
._13_c02289{width:26.328000px;}
._15_c02289{width:28.440000px;}
._e_c02289{width:32.544000px;}
._3_c02289{width:38.232000px;}
._4_c02289{width:39.312000px;}
.fc1_c02289{color:rgb(192,80,77);}
.fc2_c02289{color:rgb(17,17,17);}
.fc0_c02289{color:rgb(0,0,0);}
.fs0_c02289{font-size:66.240000px;}
.fs1_c02289{font-size:72.000000px;}
.y0_c02289{bottom:0.000000px;}
.y3_c02289{bottom:4.680000px;}
.y2_c02289{bottom:41.796000px;}
.y1_c02289{bottom:75.456000px;}
.y22_c02289{bottom:133.776000px;}
.y21_c02289{bottom:164.910000px;}
.y20_c02289{bottom:195.870000px;}
.y1f_c02289{bottom:226.830000px;}
.y1e_c02289{bottom:257.970000px;}
.y1d_c02289{bottom:288.975000px;}
.y1c_c02289{bottom:320.115000px;}
.y1b_c02289{bottom:351.075000px;}
.y1a_c02289{bottom:382.215000px;}
.y19_c02289{bottom:413.175000px;}
.y18_c02289{bottom:444.315000px;}
.y17_c02289{bottom:475.275000px;}
.y16_c02289{bottom:506.415000px;}
.y15_c02289{bottom:537.405000px;}
.y14_c02289{bottom:568.545000px;}
.y13_c02289{bottom:599.505000px;}
.y12_c02289{bottom:630.645000px;}
.y11_c02289{bottom:661.605000px;}
.y10_c02289{bottom:692.745000px;}
.yf_c02289{bottom:723.705000px;}
.ye_c02289{bottom:754.845000px;}
.yd_c02289{bottom:785.805000px;}
.yc_c02289{bottom:816.990000px;}
.yb_c02289{bottom:847.950000px;}
.ya_c02289{bottom:879.090000px;}
.y9_c02289{bottom:910.050000px;}
.y8_c02289{bottom:941.190000px;}
.y7_c02289{bottom:972.150000px;}
.y6_c02289{bottom:1003.290000px;}
.y5_c02289{bottom:1034.250000px;}
.y4_c02289{bottom:1065.420000px;}
.h2_c02289{height:22.500000px;}
.h1_c02289{height:48.871406px;}
.h3_c02289{height:70.664062px;}
.h0_c02289{height:1188.000000px;}
.w1_c02289{width:66.636000px;}
.w0_c02289{width:918.000000px;}
.x0_c02289{left:0.000000px;}
.x3_c02289{left:16.560000px;}
.x1_c02289{left:127.656000px;}
.x4_c02289{left:187.050000px;}
.x2_c02289{left:820.950000px;}
@media print{
.v0_c02289{vertical-align:0.000000pt;}
.ls0_c02289{letter-spacing:0.000000pt;}
.ws0_c02289{word-spacing:0.000000pt;}
._7_c02289{margin-left:-2.176000pt;}
._6_c02289{margin-left:-0.960000pt;}
._1_c02289{width:1.088000pt;}
._16_c02289{width:2.112000pt;}
._5_c02289{width:3.072000pt;}
._f_c02289{width:4.288000pt;}
._12_c02289{width:5.216000pt;}
._8_c02289{width:6.464000pt;}
._9_c02289{width:7.680000pt;}
._c_c02289{width:8.832000pt;}
._d_c02289{width:9.920000pt;}
._b_c02289{width:12.608000pt;}
._a_c02289{width:13.504000pt;}
._14_c02289{width:16.960000pt;}
._10_c02289{width:19.328000pt;}
._11_c02289{width:20.288000pt;}
._0_c02289{width:21.312000pt;}
._2_c02289{width:22.346667pt;}
._13_c02289{width:23.402667pt;}
._15_c02289{width:25.280000pt;}
._e_c02289{width:28.928000pt;}
._3_c02289{width:33.984000pt;}
._4_c02289{width:34.944000pt;}
.fs0_c02289{font-size:58.880000pt;}
.fs1_c02289{font-size:64.000000pt;}
.y0_c02289{bottom:0.000000pt;}
.y3_c02289{bottom:4.160000pt;}
.y2_c02289{bottom:37.152000pt;}
.y1_c02289{bottom:67.072000pt;}
.y22_c02289{bottom:118.912000pt;}
.y21_c02289{bottom:146.586667pt;}
.y20_c02289{bottom:174.106667pt;}
.y1f_c02289{bottom:201.626667pt;}
.y1e_c02289{bottom:229.306667pt;}
.y1d_c02289{bottom:256.866667pt;}
.y1c_c02289{bottom:284.546667pt;}
.y1b_c02289{bottom:312.066667pt;}
.y1a_c02289{bottom:339.746667pt;}
.y19_c02289{bottom:367.266667pt;}
.y18_c02289{bottom:394.946667pt;}
.y17_c02289{bottom:422.466667pt;}
.y16_c02289{bottom:450.146667pt;}
.y15_c02289{bottom:477.693333pt;}
.y14_c02289{bottom:505.373333pt;}
.y13_c02289{bottom:532.893333pt;}
.y12_c02289{bottom:560.573333pt;}
.y11_c02289{bottom:588.093333pt;}
.y10_c02289{bottom:615.773333pt;}
.yf_c02289{bottom:643.293333pt;}
.ye_c02289{bottom:670.973333pt;}
.yd_c02289{bottom:698.493333pt;}
.yc_c02289{bottom:726.213333pt;}
.yb_c02289{bottom:753.733333pt;}
.ya_c02289{bottom:781.413333pt;}
.y9_c02289{bottom:808.933333pt;}
.y8_c02289{bottom:836.613333pt;}
.y7_c02289{bottom:864.133333pt;}
.y6_c02289{bottom:891.813333pt;}
.y5_c02289{bottom:919.333333pt;}
.y4_c02289{bottom:947.040000pt;}
.h2_c02289{height:20.000000pt;}
.h1_c02289{height:43.441250pt;}
.h3_c02289{height:62.812500pt;}
.h0_c02289{height:1056.000000pt;}
.w1_c02289{width:59.232000pt;}
.w0_c02289{width:816.000000pt;}
.x0_c02289{left:0.000000pt;}
.x3_c02289{left:14.720000pt;}
.x1_c02289{left:113.472000pt;}
.x4_c02289{left:166.266667pt;}
.x2_c02289{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02290 {
    display:none;
  }
  .loading-indicator_c02290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02290 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02290 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02290" -> "#page-container .classname_c02290")
 */
.pf_c02290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02290 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02290 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02290 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02290 {overflow:visible;}
  }
}
.c_c02290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02290 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02290:after { /* webkit #35443 */
  content: '';
}
.t_c02290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02290 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02290 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02290 { /* info for Javascript */
  display:none;
}
.l_c02290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02290:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02290 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02290.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02290;src:url('chunks/assets/font_8d1ddbbbbc493781a023a5ce.woff2')format("woff");}.ff1_c02290{font-family:ff1_c02290;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02290;src:url('chunks/assets/font_f03f44a41ef9aded7f9d5545.woff2')format("woff");}.ff2_c02290{font-family:ff2_c02290;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:ff3_c02290;src:url('chunks/assets/font_0428fbd2dd5e1f78acf569e8.woff2')format("woff");}.ff3_c02290{font-family:ff3_c02290;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02290{vertical-align:0.000000px;}
.ls0_c02290{letter-spacing:0.000000px;}
.sc__c02290{text-shadow:none;}
.sc0_c02290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02290{-webkit-text-stroke:0px transparent;}
.sc0_c02290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02290{word-spacing:0.000000px;}
._0_c02290{margin-left:-1.080000px;}
._5_c02290{width:1.008000px;}
._4_c02290{width:2.592000px;}
._2_c02290{width:3.744000px;}
._3_c02290{width:4.968000px;}
._8_c02290{width:6.408000px;}
._b_c02290{width:8.424000px;}
._e_c02290{width:9.504000px;}
._c_c02290{width:11.304000px;}
._d_c02290{width:12.456000px;}
._f_c02290{width:15.768000px;}
._1_c02290{width:16.776000px;}
._7_c02290{width:19.872000px;}
._6_c02290{width:20.880000px;}
._9_c02290{width:27.720000px;}
._a_c02290{width:28.944000px;}
.fc1_c02290{color:rgb(192,80,77);}
.fc0_c02290{color:rgb(0,0,0);}
.fs0_c02290{font-size:66.240000px;}
.fs1_c02290{font-size:72.000000px;}
.y0_c02290{bottom:0.000000px;}
.y3_c02290{bottom:4.680000px;}
.y2_c02290{bottom:41.796000px;}
.y1_c02290{bottom:75.456000px;}
.y21_c02290{bottom:164.910000px;}
.y20_c02290{bottom:195.870000px;}
.y1f_c02290{bottom:226.830000px;}
.y1e_c02290{bottom:257.970000px;}
.y1d_c02290{bottom:288.975000px;}
.y1c_c02290{bottom:320.115000px;}
.y1b_c02290{bottom:351.075000px;}
.y1a_c02290{bottom:382.215000px;}
.y19_c02290{bottom:413.175000px;}
.y18_c02290{bottom:444.315000px;}
.y17_c02290{bottom:475.275000px;}
.y16_c02290{bottom:506.415000px;}
.y15_c02290{bottom:537.405000px;}
.y14_c02290{bottom:568.545000px;}
.y13_c02290{bottom:599.505000px;}
.y12_c02290{bottom:630.645000px;}
.y11_c02290{bottom:661.605000px;}
.y10_c02290{bottom:692.745000px;}
.yf_c02290{bottom:723.705000px;}
.ye_c02290{bottom:754.845000px;}
.yd_c02290{bottom:785.805000px;}
.yc_c02290{bottom:816.990000px;}
.yb_c02290{bottom:847.950000px;}
.ya_c02290{bottom:879.090000px;}
.y9_c02290{bottom:910.050000px;}
.y8_c02290{bottom:941.190000px;}
.y7_c02290{bottom:972.150000px;}
.y6_c02290{bottom:1003.290000px;}
.y5_c02290{bottom:1034.250000px;}
.y4_c02290{bottom:1065.420000px;}
.h2_c02290{height:22.500000px;}
.h1_c02290{height:48.871406px;}
.h4_c02290{height:64.546875px;}
.h3_c02290{height:70.664062px;}
.h0_c02290{height:1188.000000px;}
.w1_c02290{width:66.636000px;}
.w0_c02290{width:918.000000px;}
.x0_c02290{left:0.000000px;}
.x3_c02290{left:16.560000px;}
.x1_c02290{left:127.656000px;}
.x4_c02290{left:187.050000px;}
.x2_c02290{left:820.950000px;}
@media print{
.v0_c02290{vertical-align:0.000000pt;}
.ls0_c02290{letter-spacing:0.000000pt;}
.ws0_c02290{word-spacing:0.000000pt;}
._0_c02290{margin-left:-0.960000pt;}
._5_c02290{width:0.896000pt;}
._4_c02290{width:2.304000pt;}
._2_c02290{width:3.328000pt;}
._3_c02290{width:4.416000pt;}
._8_c02290{width:5.696000pt;}
._b_c02290{width:7.488000pt;}
._e_c02290{width:8.448000pt;}
._c_c02290{width:10.048000pt;}
._d_c02290{width:11.072000pt;}
._f_c02290{width:14.016000pt;}
._1_c02290{width:14.912000pt;}
._7_c02290{width:17.664000pt;}
._6_c02290{width:18.560000pt;}
._9_c02290{width:24.640000pt;}
._a_c02290{width:25.728000pt;}
.fs0_c02290{font-size:58.880000pt;}
.fs1_c02290{font-size:64.000000pt;}
.y0_c02290{bottom:0.000000pt;}
.y3_c02290{bottom:4.160000pt;}
.y2_c02290{bottom:37.152000pt;}
.y1_c02290{bottom:67.072000pt;}
.y21_c02290{bottom:146.586667pt;}
.y20_c02290{bottom:174.106667pt;}
.y1f_c02290{bottom:201.626667pt;}
.y1e_c02290{bottom:229.306667pt;}
.y1d_c02290{bottom:256.866667pt;}
.y1c_c02290{bottom:284.546667pt;}
.y1b_c02290{bottom:312.066667pt;}
.y1a_c02290{bottom:339.746667pt;}
.y19_c02290{bottom:367.266667pt;}
.y18_c02290{bottom:394.946667pt;}
.y17_c02290{bottom:422.466667pt;}
.y16_c02290{bottom:450.146667pt;}
.y15_c02290{bottom:477.693333pt;}
.y14_c02290{bottom:505.373333pt;}
.y13_c02290{bottom:532.893333pt;}
.y12_c02290{bottom:560.573333pt;}
.y11_c02290{bottom:588.093333pt;}
.y10_c02290{bottom:615.773333pt;}
.yf_c02290{bottom:643.293333pt;}
.ye_c02290{bottom:670.973333pt;}
.yd_c02290{bottom:698.493333pt;}
.yc_c02290{bottom:726.213333pt;}
.yb_c02290{bottom:753.733333pt;}
.ya_c02290{bottom:781.413333pt;}
.y9_c02290{bottom:808.933333pt;}
.y8_c02290{bottom:836.613333pt;}
.y7_c02290{bottom:864.133333pt;}
.y6_c02290{bottom:891.813333pt;}
.y5_c02290{bottom:919.333333pt;}
.y4_c02290{bottom:947.040000pt;}
.h2_c02290{height:20.000000pt;}
.h1_c02290{height:43.441250pt;}
.h4_c02290{height:57.375000pt;}
.h3_c02290{height:62.812500pt;}
.h0_c02290{height:1056.000000pt;}
.w1_c02290{width:59.232000pt;}
.w0_c02290{width:816.000000pt;}
.x0_c02290{left:0.000000pt;}
.x3_c02290{left:14.720000pt;}
.x1_c02290{left:113.472000pt;}
.x4_c02290{left:166.266667pt;}
.x2_c02290{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02291 {
    display:none;
  }
  .loading-indicator_c02291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02291 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02291 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02291" -> "#page-container .classname_c02291")
 */
.pf_c02291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02291 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02291 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02291 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02291 {overflow:visible;}
  }
}
.c_c02291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02291 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02291:after { /* webkit #35443 */
  content: '';
}
.t_c02291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02291 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02291 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02291 { /* info for Javascript */
  display:none;
}
.l_c02291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02291:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02291 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02291.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02291;src:url('chunks/assets/font_474cc2ce3f067957420ca8f8.woff2')format("woff");}.ff1_c02291{font-family:ff1_c02291;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02291;src:url('chunks/assets/font_bd18ef4dc9d9deab4d9845a0.woff2')format("woff");}.ff2_c02291{font-family:ff2_c02291;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:ff3_c02291;src:url('chunks/assets/font_e2fc571a8df415caa426b2f7.woff2')format("woff");}.ff3_c02291{font-family:ff3_c02291;line-height:1.112305;font-style:normal;font-weight: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_c02291;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02291{font-family:ff4_c02291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02291{vertical-align:0.000000px;}
.ls1_c02291{letter-spacing:0.000000px;}
.ls0_c02291{letter-spacing:5.760000px;}
.sc__c02291{text-shadow:none;}
.sc0_c02291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02291{-webkit-text-stroke:0px transparent;}
.sc0_c02291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02291{word-spacing:-18.000000px;}
.ws1_c02291{word-spacing:0.000000px;}
._3_c02291{margin-left:-1.140000px;}
._1_c02291{width:1.224000px;}
._0_c02291{width:3.096000px;}
._2_c02291{width:4.860000px;}
._5_c02291{width:6.336000px;}
._6_c02291{width:7.920000px;}
._e_c02291{width:9.864000px;}
._11_c02291{width:10.944000px;}
._d_c02291{width:11.952000px;}
._7_c02291{width:13.956000px;}
._4_c02291{width:15.120000px;}
._8_c02291{width:21.888000px;}
._9_c02291{width:23.796000px;}
._f_c02291{width:25.704000px;}
._a_c02291{width:26.712000px;}
._b_c02291{width:27.864000px;}
._c_c02291{width:29.376000px;}
._10_c02291{width:30.744000px;}
.fc1_c02291{color:rgb(192,80,77);}
.fc2_c02291{color:rgb(17,17,17);}
.fc0_c02291{color:rgb(0,0,0);}
.fs0_c02291{font-size:66.240000px;}
.fs1_c02291{font-size:72.000000px;}
.y0_c02291{bottom:0.000000px;}
.y3_c02291{bottom:4.680000px;}
.y2_c02291{bottom:41.796000px;}
.y1_c02291{bottom:75.456000px;}
.y22_c02291{bottom:133.776000px;}
.y21_c02291{bottom:164.910000px;}
.y20_c02291{bottom:195.870000px;}
.y1f_c02291{bottom:226.830000px;}
.y1e_c02291{bottom:257.970000px;}
.y1d_c02291{bottom:288.975000px;}
.y1c_c02291{bottom:320.115000px;}
.y1b_c02291{bottom:351.075000px;}
.y1a_c02291{bottom:382.215000px;}
.y19_c02291{bottom:413.175000px;}
.y18_c02291{bottom:444.315000px;}
.y17_c02291{bottom:475.275000px;}
.y16_c02291{bottom:506.415000px;}
.y15_c02291{bottom:537.405000px;}
.y14_c02291{bottom:568.545000px;}
.y13_c02291{bottom:599.505000px;}
.y12_c02291{bottom:630.645000px;}
.y11_c02291{bottom:661.605000px;}
.y10_c02291{bottom:692.745000px;}
.yf_c02291{bottom:723.705000px;}
.ye_c02291{bottom:754.845000px;}
.yd_c02291{bottom:785.805000px;}
.yc_c02291{bottom:816.990000px;}
.yb_c02291{bottom:847.950000px;}
.ya_c02291{bottom:879.090000px;}
.y9_c02291{bottom:910.050000px;}
.y8_c02291{bottom:941.190000px;}
.y7_c02291{bottom:972.150000px;}
.y6_c02291{bottom:1003.290000px;}
.y5_c02291{bottom:1034.250000px;}
.y4_c02291{bottom:1065.420000px;}
.h2_c02291{height:22.500000px;}
.h1_c02291{height:48.871406px;}
.h4_c02291{height:64.546875px;}
.h3_c02291{height:70.664062px;}
.h5_c02291{height:72.562500px;}
.h0_c02291{height:1188.000000px;}
.w1_c02291{width:66.636000px;}
.w0_c02291{width:918.000000px;}
.x0_c02291{left:0.000000px;}
.x3_c02291{left:16.560000px;}
.x1_c02291{left:127.656000px;}
.x4_c02291{left:187.050000px;}
.x2_c02291{left:820.950000px;}
@media print{
.v0_c02291{vertical-align:0.000000pt;}
.ls1_c02291{letter-spacing:0.000000pt;}
.ls0_c02291{letter-spacing:5.120000pt;}
.ws0_c02291{word-spacing:-16.000000pt;}
.ws1_c02291{word-spacing:0.000000pt;}
._3_c02291{margin-left:-1.013333pt;}
._1_c02291{width:1.088000pt;}
._0_c02291{width:2.752000pt;}
._2_c02291{width:4.320000pt;}
._5_c02291{width:5.632000pt;}
._6_c02291{width:7.040000pt;}
._e_c02291{width:8.768000pt;}
._11_c02291{width:9.728000pt;}
._d_c02291{width:10.624000pt;}
._7_c02291{width:12.405333pt;}
._4_c02291{width:13.440000pt;}
._8_c02291{width:19.456000pt;}
._9_c02291{width:21.152000pt;}
._f_c02291{width:22.848000pt;}
._a_c02291{width:23.744000pt;}
._b_c02291{width:24.768000pt;}
._c_c02291{width:26.112000pt;}
._10_c02291{width:27.328000pt;}
.fs0_c02291{font-size:58.880000pt;}
.fs1_c02291{font-size:64.000000pt;}
.y0_c02291{bottom:0.000000pt;}
.y3_c02291{bottom:4.160000pt;}
.y2_c02291{bottom:37.152000pt;}
.y1_c02291{bottom:67.072000pt;}
.y22_c02291{bottom:118.912000pt;}
.y21_c02291{bottom:146.586667pt;}
.y20_c02291{bottom:174.106667pt;}
.y1f_c02291{bottom:201.626667pt;}
.y1e_c02291{bottom:229.306667pt;}
.y1d_c02291{bottom:256.866667pt;}
.y1c_c02291{bottom:284.546667pt;}
.y1b_c02291{bottom:312.066667pt;}
.y1a_c02291{bottom:339.746667pt;}
.y19_c02291{bottom:367.266667pt;}
.y18_c02291{bottom:394.946667pt;}
.y17_c02291{bottom:422.466667pt;}
.y16_c02291{bottom:450.146667pt;}
.y15_c02291{bottom:477.693333pt;}
.y14_c02291{bottom:505.373333pt;}
.y13_c02291{bottom:532.893333pt;}
.y12_c02291{bottom:560.573333pt;}
.y11_c02291{bottom:588.093333pt;}
.y10_c02291{bottom:615.773333pt;}
.yf_c02291{bottom:643.293333pt;}
.ye_c02291{bottom:670.973333pt;}
.yd_c02291{bottom:698.493333pt;}
.yc_c02291{bottom:726.213333pt;}
.yb_c02291{bottom:753.733333pt;}
.ya_c02291{bottom:781.413333pt;}
.y9_c02291{bottom:808.933333pt;}
.y8_c02291{bottom:836.613333pt;}
.y7_c02291{bottom:864.133333pt;}
.y6_c02291{bottom:891.813333pt;}
.y5_c02291{bottom:919.333333pt;}
.y4_c02291{bottom:947.040000pt;}
.h2_c02291{height:20.000000pt;}
.h1_c02291{height:43.441250pt;}
.h4_c02291{height:57.375000pt;}
.h3_c02291{height:62.812500pt;}
.h5_c02291{height:64.500000pt;}
.h0_c02291{height:1056.000000pt;}
.w1_c02291{width:59.232000pt;}
.w0_c02291{width:816.000000pt;}
.x0_c02291{left:0.000000pt;}
.x3_c02291{left:14.720000pt;}
.x1_c02291{left:113.472000pt;}
.x4_c02291{left:166.266667pt;}
.x2_c02291{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02292 {
    display:none;
  }
  .loading-indicator_c02292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02292 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02292 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02292" -> "#page-container .classname_c02292")
 */
.pf_c02292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02292 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02292 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02292 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02292 {overflow:visible;}
  }
}
.c_c02292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02292 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02292:after { /* webkit #35443 */
  content: '';
}
.t_c02292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02292 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02292 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02292 { /* info for Javascript */
  display:none;
}
.l_c02292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02292:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02292 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02292.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02292;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02292{font-family:ff1_c02292;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02292;src:url('chunks/assets/font_f9ea2f9c4a2c60bf18bf4684.woff2')format("woff");}.ff2_c02292{font-family:ff2_c02292;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:ff3_c02292;src:url('chunks/assets/font_863821c0f63ff491f4576e21.woff2')format("woff");}.ff3_c02292{font-family:ff3_c02292;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02292{vertical-align:0.000000px;}
.ls0_c02292{letter-spacing:0.000000px;}
.sc__c02292{text-shadow:none;}
.sc0_c02292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02292{-webkit-text-stroke:0px transparent;}
.sc0_c02292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02292{word-spacing:0.000000px;}
._11_c02292{margin-left:-2.136000px;}
._0_c02292{margin-left:-1.080000px;}
._4_c02292{width:1.092000px;}
._9_c02292{width:2.232000px;}
._a_c02292{width:3.312000px;}
._b_c02292{width:5.256000px;}
._c_c02292{width:6.624000px;}
._3_c02292{width:8.208000px;}
._8_c02292{width:10.008000px;}
._d_c02292{width:11.160000px;}
._10_c02292{width:12.924000px;}
._5_c02292{width:14.472000px;}
._6_c02292{width:15.696000px;}
._7_c02292{width:16.704000px;}
._2_c02292{width:24.984000px;}
._1_c02292{width:26.064000px;}
._f_c02292{width:35.856000px;}
._e_c02292{width:36.864000px;}
.fc1_c02292{color:rgb(192,80,77);}
.fc0_c02292{color:rgb(0,0,0);}
.fs0_c02292{font-size:66.240000px;}
.fs1_c02292{font-size:72.000000px;}
.y0_c02292{bottom:0.000000px;}
.y3_c02292{bottom:4.680000px;}
.y2_c02292{bottom:41.796000px;}
.y1_c02292{bottom:75.456000px;}
.y21_c02292{bottom:164.910000px;}
.y20_c02292{bottom:195.870000px;}
.y1f_c02292{bottom:226.830000px;}
.y1e_c02292{bottom:257.970000px;}
.y1d_c02292{bottom:288.975000px;}
.y1c_c02292{bottom:320.115000px;}
.y1b_c02292{bottom:351.075000px;}
.y1a_c02292{bottom:382.215000px;}
.y19_c02292{bottom:413.175000px;}
.y18_c02292{bottom:444.315000px;}
.y17_c02292{bottom:475.275000px;}
.y16_c02292{bottom:506.415000px;}
.y15_c02292{bottom:537.405000px;}
.y14_c02292{bottom:568.545000px;}
.y13_c02292{bottom:599.505000px;}
.y12_c02292{bottom:630.645000px;}
.y11_c02292{bottom:661.605000px;}
.y10_c02292{bottom:692.745000px;}
.yf_c02292{bottom:723.705000px;}
.ye_c02292{bottom:754.845000px;}
.yd_c02292{bottom:785.805000px;}
.yc_c02292{bottom:816.990000px;}
.yb_c02292{bottom:847.950000px;}
.ya_c02292{bottom:879.090000px;}
.y9_c02292{bottom:910.050000px;}
.y8_c02292{bottom:941.190000px;}
.y7_c02292{bottom:972.150000px;}
.y6_c02292{bottom:1003.290000px;}
.y5_c02292{bottom:1034.250000px;}
.y4_c02292{bottom:1065.420000px;}
.h2_c02292{height:22.500000px;}
.h1_c02292{height:48.871406px;}
.h4_c02292{height:64.546875px;}
.h3_c02292{height:70.664062px;}
.h0_c02292{height:1188.000000px;}
.w1_c02292{width:66.636000px;}
.w0_c02292{width:918.000000px;}
.x0_c02292{left:0.000000px;}
.x3_c02292{left:16.560000px;}
.x1_c02292{left:127.656000px;}
.x4_c02292{left:187.050000px;}
.x2_c02292{left:820.950000px;}
@media print{
.v0_c02292{vertical-align:0.000000pt;}
.ls0_c02292{letter-spacing:0.000000pt;}
.ws0_c02292{word-spacing:0.000000pt;}
._11_c02292{margin-left:-1.898667pt;}
._0_c02292{margin-left:-0.960000pt;}
._4_c02292{width:0.970667pt;}
._9_c02292{width:1.984000pt;}
._a_c02292{width:2.944000pt;}
._b_c02292{width:4.672000pt;}
._c_c02292{width:5.888000pt;}
._3_c02292{width:7.296000pt;}
._8_c02292{width:8.896000pt;}
._d_c02292{width:9.920000pt;}
._10_c02292{width:11.488000pt;}
._5_c02292{width:12.864000pt;}
._6_c02292{width:13.952000pt;}
._7_c02292{width:14.848000pt;}
._2_c02292{width:22.208000pt;}
._1_c02292{width:23.168000pt;}
._f_c02292{width:31.872000pt;}
._e_c02292{width:32.768000pt;}
.fs0_c02292{font-size:58.880000pt;}
.fs1_c02292{font-size:64.000000pt;}
.y0_c02292{bottom:0.000000pt;}
.y3_c02292{bottom:4.160000pt;}
.y2_c02292{bottom:37.152000pt;}
.y1_c02292{bottom:67.072000pt;}
.y21_c02292{bottom:146.586667pt;}
.y20_c02292{bottom:174.106667pt;}
.y1f_c02292{bottom:201.626667pt;}
.y1e_c02292{bottom:229.306667pt;}
.y1d_c02292{bottom:256.866667pt;}
.y1c_c02292{bottom:284.546667pt;}
.y1b_c02292{bottom:312.066667pt;}
.y1a_c02292{bottom:339.746667pt;}
.y19_c02292{bottom:367.266667pt;}
.y18_c02292{bottom:394.946667pt;}
.y17_c02292{bottom:422.466667pt;}
.y16_c02292{bottom:450.146667pt;}
.y15_c02292{bottom:477.693333pt;}
.y14_c02292{bottom:505.373333pt;}
.y13_c02292{bottom:532.893333pt;}
.y12_c02292{bottom:560.573333pt;}
.y11_c02292{bottom:588.093333pt;}
.y10_c02292{bottom:615.773333pt;}
.yf_c02292{bottom:643.293333pt;}
.ye_c02292{bottom:670.973333pt;}
.yd_c02292{bottom:698.493333pt;}
.yc_c02292{bottom:726.213333pt;}
.yb_c02292{bottom:753.733333pt;}
.ya_c02292{bottom:781.413333pt;}
.y9_c02292{bottom:808.933333pt;}
.y8_c02292{bottom:836.613333pt;}
.y7_c02292{bottom:864.133333pt;}
.y6_c02292{bottom:891.813333pt;}
.y5_c02292{bottom:919.333333pt;}
.y4_c02292{bottom:947.040000pt;}
.h2_c02292{height:20.000000pt;}
.h1_c02292{height:43.441250pt;}
.h4_c02292{height:57.375000pt;}
.h3_c02292{height:62.812500pt;}
.h0_c02292{height:1056.000000pt;}
.w1_c02292{width:59.232000pt;}
.w0_c02292{width:816.000000pt;}
.x0_c02292{left:0.000000pt;}
.x3_c02292{left:14.720000pt;}
.x1_c02292{left:113.472000pt;}
.x4_c02292{left:166.266667pt;}
.x2_c02292{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02293 {
    display:none;
  }
  .loading-indicator_c02293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02293 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02293 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02293" -> "#page-container .classname_c02293")
 */
.pf_c02293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02293 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02293 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02293 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02293 {overflow:visible;}
  }
}
.c_c02293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02293 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02293:after { /* webkit #35443 */
  content: '';
}
.t_c02293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02293 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02293 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02293 { /* info for Javascript */
  display:none;
}
.l_c02293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02293:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02293 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02293.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02293;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02293{font-family:ff1_c02293;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02293;src:url('chunks/assets/font_8b532384107087b03e7c6059.woff2')format("woff");}.ff2_c02293{font-family:ff2_c02293;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:ff3_c02293;src:url('chunks/assets/font_e8daea36e77efd78ba9d653c.woff2')format("woff");}.ff3_c02293{font-family:ff3_c02293;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02293{vertical-align:0.000000px;}
.ls0_c02293{letter-spacing:0.000000px;}
.sc__c02293{text-shadow:none;}
.sc0_c02293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02293{-webkit-text-stroke:0px transparent;}
.sc0_c02293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02293{word-spacing:0.000000px;}
._2_c02293{margin-left:-1.080000px;}
._1_c02293{width:1.512000px;}
._4_c02293{width:3.060000px;}
._3_c02293{width:4.176000px;}
._0_c02293{width:6.120000px;}
._d_c02293{width:7.632000px;}
._9_c02293{width:11.664000px;}
._a_c02293{width:13.464000px;}
._14_c02293{width:15.048000px;}
._7_c02293{width:19.872000px;}
._8_c02293{width:21.024000px;}
._12_c02293{width:22.464000px;}
._13_c02293{width:24.336000px;}
._10_c02293{width:26.064000px;}
._11_c02293{width:27.432000px;}
._b_c02293{width:28.512000px;}
._c_c02293{width:30.096000px;}
._e_c02293{width:32.544000px;}
._f_c02293{width:33.624000px;}
._5_c02293{width:43.056000px;}
._6_c02293{width:44.208000px;}
.fc1_c02293{color:rgb(192,80,77);}
.fc0_c02293{color:rgb(0,0,0);}
.fs0_c02293{font-size:66.240000px;}
.fs1_c02293{font-size:72.000000px;}
.y0_c02293{bottom:0.000000px;}
.y3_c02293{bottom:4.680000px;}
.y2_c02293{bottom:41.796000px;}
.y1_c02293{bottom:75.456000px;}
.y22_c02293{bottom:133.776000px;}
.y21_c02293{bottom:164.910000px;}
.y20_c02293{bottom:195.870000px;}
.y1f_c02293{bottom:226.830000px;}
.y1e_c02293{bottom:257.970000px;}
.y1d_c02293{bottom:288.975000px;}
.y1c_c02293{bottom:320.115000px;}
.y1b_c02293{bottom:351.075000px;}
.y1a_c02293{bottom:382.215000px;}
.y19_c02293{bottom:413.175000px;}
.y18_c02293{bottom:444.315000px;}
.y17_c02293{bottom:475.275000px;}
.y16_c02293{bottom:506.415000px;}
.y15_c02293{bottom:537.405000px;}
.y14_c02293{bottom:568.545000px;}
.y13_c02293{bottom:599.505000px;}
.y12_c02293{bottom:630.645000px;}
.y11_c02293{bottom:661.605000px;}
.y10_c02293{bottom:692.745000px;}
.yf_c02293{bottom:723.705000px;}
.ye_c02293{bottom:754.845000px;}
.yd_c02293{bottom:785.805000px;}
.yc_c02293{bottom:816.990000px;}
.yb_c02293{bottom:847.950000px;}
.ya_c02293{bottom:879.090000px;}
.y9_c02293{bottom:910.050000px;}
.y8_c02293{bottom:941.190000px;}
.y7_c02293{bottom:972.150000px;}
.y6_c02293{bottom:1003.290000px;}
.y5_c02293{bottom:1034.250000px;}
.y4_c02293{bottom:1065.420000px;}
.h2_c02293{height:22.500000px;}
.h1_c02293{height:48.871406px;}
.h4_c02293{height:64.546875px;}
.h3_c02293{height:70.664062px;}
.h0_c02293{height:1188.000000px;}
.w1_c02293{width:66.636000px;}
.w0_c02293{width:918.000000px;}
.x0_c02293{left:0.000000px;}
.x3_c02293{left:16.560000px;}
.x1_c02293{left:127.656000px;}
.x4_c02293{left:187.050000px;}
.x2_c02293{left:820.950000px;}
@media print{
.v0_c02293{vertical-align:0.000000pt;}
.ls0_c02293{letter-spacing:0.000000pt;}
.ws0_c02293{word-spacing:0.000000pt;}
._2_c02293{margin-left:-0.960000pt;}
._1_c02293{width:1.344000pt;}
._4_c02293{width:2.720000pt;}
._3_c02293{width:3.712000pt;}
._0_c02293{width:5.440000pt;}
._d_c02293{width:6.784000pt;}
._9_c02293{width:10.368000pt;}
._a_c02293{width:11.968000pt;}
._14_c02293{width:13.376000pt;}
._7_c02293{width:17.664000pt;}
._8_c02293{width:18.688000pt;}
._12_c02293{width:19.968000pt;}
._13_c02293{width:21.632000pt;}
._10_c02293{width:23.168000pt;}
._11_c02293{width:24.384000pt;}
._b_c02293{width:25.344000pt;}
._c_c02293{width:26.752000pt;}
._e_c02293{width:28.928000pt;}
._f_c02293{width:29.888000pt;}
._5_c02293{width:38.272000pt;}
._6_c02293{width:39.296000pt;}
.fs0_c02293{font-size:58.880000pt;}
.fs1_c02293{font-size:64.000000pt;}
.y0_c02293{bottom:0.000000pt;}
.y3_c02293{bottom:4.160000pt;}
.y2_c02293{bottom:37.152000pt;}
.y1_c02293{bottom:67.072000pt;}
.y22_c02293{bottom:118.912000pt;}
.y21_c02293{bottom:146.586667pt;}
.y20_c02293{bottom:174.106667pt;}
.y1f_c02293{bottom:201.626667pt;}
.y1e_c02293{bottom:229.306667pt;}
.y1d_c02293{bottom:256.866667pt;}
.y1c_c02293{bottom:284.546667pt;}
.y1b_c02293{bottom:312.066667pt;}
.y1a_c02293{bottom:339.746667pt;}
.y19_c02293{bottom:367.266667pt;}
.y18_c02293{bottom:394.946667pt;}
.y17_c02293{bottom:422.466667pt;}
.y16_c02293{bottom:450.146667pt;}
.y15_c02293{bottom:477.693333pt;}
.y14_c02293{bottom:505.373333pt;}
.y13_c02293{bottom:532.893333pt;}
.y12_c02293{bottom:560.573333pt;}
.y11_c02293{bottom:588.093333pt;}
.y10_c02293{bottom:615.773333pt;}
.yf_c02293{bottom:643.293333pt;}
.ye_c02293{bottom:670.973333pt;}
.yd_c02293{bottom:698.493333pt;}
.yc_c02293{bottom:726.213333pt;}
.yb_c02293{bottom:753.733333pt;}
.ya_c02293{bottom:781.413333pt;}
.y9_c02293{bottom:808.933333pt;}
.y8_c02293{bottom:836.613333pt;}
.y7_c02293{bottom:864.133333pt;}
.y6_c02293{bottom:891.813333pt;}
.y5_c02293{bottom:919.333333pt;}
.y4_c02293{bottom:947.040000pt;}
.h2_c02293{height:20.000000pt;}
.h1_c02293{height:43.441250pt;}
.h4_c02293{height:57.375000pt;}
.h3_c02293{height:62.812500pt;}
.h0_c02293{height:1056.000000pt;}
.w1_c02293{width:59.232000pt;}
.w0_c02293{width:816.000000pt;}
.x0_c02293{left:0.000000pt;}
.x3_c02293{left:14.720000pt;}
.x1_c02293{left:113.472000pt;}
.x4_c02293{left:166.266667pt;}
.x2_c02293{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02294 {
    display:none;
  }
  .loading-indicator_c02294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02294 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02294 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02294" -> "#page-container .classname_c02294")
 */
.pf_c02294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02294 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02294 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02294 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02294 {overflow:visible;}
  }
}
.c_c02294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02294 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02294:after { /* webkit #35443 */
  content: '';
}
.t_c02294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02294 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02294 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02294 { /* info for Javascript */
  display:none;
}
.l_c02294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02294:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02294 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02294.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02294;src:url('chunks/assets/font_a1727b33c91d190d3bad7f0c.woff2')format("woff");}.ff1_c02294{font-family:ff1_c02294;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02294;src:url('chunks/assets/font_36af42ee5c0d6403a931829c.woff2')format("woff");}.ff2_c02294{font-family:ff2_c02294;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:ff3_c02294;src:url('chunks/assets/font_0b597ee041aa44592da1d2b6.woff2')format("woff");}.ff3_c02294{font-family:ff3_c02294;line-height:1.112305;font-style:normal;font-weight: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_c02294;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02294{font-family:ff4_c02294;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02294{vertical-align:0.000000px;}
.ls1_c02294{letter-spacing:0.000000px;}
.ls0_c02294{letter-spacing:26.640000px;}
.sc__c02294{text-shadow:none;}
.sc0_c02294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02294{-webkit-text-stroke:0px transparent;}
.sc0_c02294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02294{word-spacing:-18.000000px;}
.ws1_c02294{word-spacing:0.000000px;}
._0_c02294{margin-left:-1.008000px;}
._4_c02294{width:1.080000px;}
._5_c02294{width:2.880000px;}
._2_c02294{width:4.068000px;}
._1_c02294{width:5.112000px;}
._a_c02294{width:6.912000px;}
._6_c02294{width:8.064000px;}
._7_c02294{width:9.792000px;}
._8_c02294{width:11.160000px;}
._12_c02294{width:12.240000px;}
._3_c02294{width:16.344000px;}
._d_c02294{width:19.656000px;}
._10_c02294{width:21.024000px;}
._9_c02294{width:22.320000px;}
._b_c02294{width:23.832000px;}
._c_c02294{width:24.984000px;}
._11_c02294{width:26.568000px;}
._f_c02294{width:29.448000px;}
._e_c02294{width:30.816000px;}
.fc1_c02294{color:rgb(192,80,77);}
.fc0_c02294{color:rgb(0,0,0);}
.fs0_c02294{font-size:66.240000px;}
.fs1_c02294{font-size:72.000000px;}
.y0_c02294{bottom:0.000000px;}
.y3_c02294{bottom:4.680000px;}
.y2_c02294{bottom:41.796000px;}
.y1_c02294{bottom:75.456000px;}
.y22_c02294{bottom:133.776000px;}
.y21_c02294{bottom:164.910000px;}
.y20_c02294{bottom:195.870000px;}
.y1f_c02294{bottom:226.830000px;}
.y1e_c02294{bottom:257.970000px;}
.y1d_c02294{bottom:288.975000px;}
.y1c_c02294{bottom:320.115000px;}
.y1b_c02294{bottom:351.075000px;}
.y1a_c02294{bottom:382.215000px;}
.y19_c02294{bottom:413.175000px;}
.y18_c02294{bottom:444.315000px;}
.y17_c02294{bottom:475.275000px;}
.y16_c02294{bottom:506.415000px;}
.y15_c02294{bottom:537.405000px;}
.y14_c02294{bottom:568.545000px;}
.y13_c02294{bottom:599.505000px;}
.y12_c02294{bottom:630.645000px;}
.y11_c02294{bottom:661.605000px;}
.y10_c02294{bottom:692.745000px;}
.yf_c02294{bottom:723.705000px;}
.ye_c02294{bottom:754.845000px;}
.yd_c02294{bottom:785.805000px;}
.yc_c02294{bottom:816.990000px;}
.yb_c02294{bottom:847.950000px;}
.ya_c02294{bottom:879.090000px;}
.y9_c02294{bottom:910.050000px;}
.y8_c02294{bottom:941.190000px;}
.y7_c02294{bottom:972.150000px;}
.y6_c02294{bottom:1003.290000px;}
.y5_c02294{bottom:1034.250000px;}
.y4_c02294{bottom:1065.420000px;}
.h2_c02294{height:22.500000px;}
.h1_c02294{height:48.871406px;}
.h4_c02294{height:64.546875px;}
.h3_c02294{height:70.664062px;}
.h5_c02294{height:72.562500px;}
.h0_c02294{height:1188.000000px;}
.w1_c02294{width:66.636000px;}
.w0_c02294{width:918.000000px;}
.x0_c02294{left:0.000000px;}
.x3_c02294{left:16.560000px;}
.x1_c02294{left:127.656000px;}
.x4_c02294{left:187.050000px;}
.x2_c02294{left:820.950000px;}
@media print{
.v0_c02294{vertical-align:0.000000pt;}
.ls1_c02294{letter-spacing:0.000000pt;}
.ls0_c02294{letter-spacing:23.680000pt;}
.ws0_c02294{word-spacing:-16.000000pt;}
.ws1_c02294{word-spacing:0.000000pt;}
._0_c02294{margin-left:-0.896000pt;}
._4_c02294{width:0.960000pt;}
._5_c02294{width:2.560000pt;}
._2_c02294{width:3.616000pt;}
._1_c02294{width:4.544000pt;}
._a_c02294{width:6.144000pt;}
._6_c02294{width:7.168000pt;}
._7_c02294{width:8.704000pt;}
._8_c02294{width:9.920000pt;}
._12_c02294{width:10.880000pt;}
._3_c02294{width:14.528000pt;}
._d_c02294{width:17.472000pt;}
._10_c02294{width:18.688000pt;}
._9_c02294{width:19.840000pt;}
._b_c02294{width:21.184000pt;}
._c_c02294{width:22.208000pt;}
._11_c02294{width:23.616000pt;}
._f_c02294{width:26.176000pt;}
._e_c02294{width:27.392000pt;}
.fs0_c02294{font-size:58.880000pt;}
.fs1_c02294{font-size:64.000000pt;}
.y0_c02294{bottom:0.000000pt;}
.y3_c02294{bottom:4.160000pt;}
.y2_c02294{bottom:37.152000pt;}
.y1_c02294{bottom:67.072000pt;}
.y22_c02294{bottom:118.912000pt;}
.y21_c02294{bottom:146.586667pt;}
.y20_c02294{bottom:174.106667pt;}
.y1f_c02294{bottom:201.626667pt;}
.y1e_c02294{bottom:229.306667pt;}
.y1d_c02294{bottom:256.866667pt;}
.y1c_c02294{bottom:284.546667pt;}
.y1b_c02294{bottom:312.066667pt;}
.y1a_c02294{bottom:339.746667pt;}
.y19_c02294{bottom:367.266667pt;}
.y18_c02294{bottom:394.946667pt;}
.y17_c02294{bottom:422.466667pt;}
.y16_c02294{bottom:450.146667pt;}
.y15_c02294{bottom:477.693333pt;}
.y14_c02294{bottom:505.373333pt;}
.y13_c02294{bottom:532.893333pt;}
.y12_c02294{bottom:560.573333pt;}
.y11_c02294{bottom:588.093333pt;}
.y10_c02294{bottom:615.773333pt;}
.yf_c02294{bottom:643.293333pt;}
.ye_c02294{bottom:670.973333pt;}
.yd_c02294{bottom:698.493333pt;}
.yc_c02294{bottom:726.213333pt;}
.yb_c02294{bottom:753.733333pt;}
.ya_c02294{bottom:781.413333pt;}
.y9_c02294{bottom:808.933333pt;}
.y8_c02294{bottom:836.613333pt;}
.y7_c02294{bottom:864.133333pt;}
.y6_c02294{bottom:891.813333pt;}
.y5_c02294{bottom:919.333333pt;}
.y4_c02294{bottom:947.040000pt;}
.h2_c02294{height:20.000000pt;}
.h1_c02294{height:43.441250pt;}
.h4_c02294{height:57.375000pt;}
.h3_c02294{height:62.812500pt;}
.h5_c02294{height:64.500000pt;}
.h0_c02294{height:1056.000000pt;}
.w1_c02294{width:59.232000pt;}
.w0_c02294{width:816.000000pt;}
.x0_c02294{left:0.000000pt;}
.x3_c02294{left:14.720000pt;}
.x1_c02294{left:113.472000pt;}
.x4_c02294{left:166.266667pt;}
.x2_c02294{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02295 {
    display:none;
  }
  .loading-indicator_c02295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02295 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02295 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02295" -> "#page-container .classname_c02295")
 */
.pf_c02295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02295 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02295 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02295 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02295 {overflow:visible;}
  }
}
.c_c02295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02295 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02295:after { /* webkit #35443 */
  content: '';
}
.t_c02295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02295 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02295 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02295 { /* info for Javascript */
  display:none;
}
.l_c02295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02295:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02295 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02295.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02295;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02295{font-family:ff1_c02295;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02295;src:url('chunks/assets/font_9f11b183d933d5c92dc8731e.woff2')format("woff");}.ff2_c02295{font-family:ff2_c02295;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:ff3_c02295;src:url('chunks/assets/font_a6306be1c2ba745380b8bbd9.woff2')format("woff");}.ff3_c02295{font-family:ff3_c02295;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02295{vertical-align:0.000000px;}
.ls0_c02295{letter-spacing:0.000000px;}
.sc__c02295{text-shadow:none;}
.sc0_c02295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02295{-webkit-text-stroke:0px transparent;}
.sc0_c02295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02295{word-spacing:0.000000px;}
._3_c02295{margin-left:-1.224000px;}
._2_c02295{width:1.080000px;}
._8_c02295{width:2.376000px;}
._9_c02295{width:3.492000px;}
._6_c02295{width:9.216000px;}
._5_c02295{width:10.656000px;}
._7_c02295{width:11.880000px;}
._4_c02295{width:13.968000px;}
._0_c02295{width:15.264000px;}
._1_c02295{width:16.344000px;}
.fc1_c02295{color:rgb(192,80,77);}
.fc3_c02295{color:rgb(255,255,255);}
.fc2_c02295{color:rgb(17,17,17);}
.fc0_c02295{color:rgb(0,0,0);}
.fs0_c02295{font-size:66.240000px;}
.fs1_c02295{font-size:72.000000px;}
.y0_c02295{bottom:0.000000px;}
.y11_c02295{bottom:4.500000px;}
.y3_c02295{bottom:4.680000px;}
.yf_c02295{bottom:8.865000px;}
.y2_c02295{bottom:41.796000px;}
.y1_c02295{bottom:75.456000px;}
.y29_c02295{bottom:184.170000px;}
.y28_c02295{bottom:205.050000px;}
.y27_c02295{bottom:235.830000px;}
.y26_c02295{bottom:266.970000px;}
.y25_c02295{bottom:297.975000px;}
.y24_c02295{bottom:329.115000px;}
.y23_c02295{bottom:360.075000px;}
.y22_c02295{bottom:391.215000px;}
.y21_c02295{bottom:422.175000px;}
.y20_c02295{bottom:453.315000px;}
.y1f_c02295{bottom:474.195000px;}
.y1e_c02295{bottom:494.895000px;}
.y1d_c02295{bottom:515.595000px;}
.y1c_c02295{bottom:536.325000px;}
.y1b_c02295{bottom:557.025000px;}
.y1a_c02295{bottom:577.725000px;}
.y19_c02295{bottom:598.425000px;}
.y18_c02295{bottom:615.345000px;}
.y17_c02295{bottom:636.765000px;}
.y16_c02295{bottom:658.185000px;}
.y15_c02295{bottom:679.605000px;}
.y14_c02295{bottom:701.205000px;}
.y13_c02295{bottom:722.625000px;}
.y12_c02295{bottom:744.045000px;}
.y10_c02295{bottom:765.465000px;}
.ye_c02295{bottom:786.885000px;}
.yd_c02295{bottom:817.170000px;}
.yc_c02295{bottom:837.870000px;}
.yb_c02295{bottom:858.570000px;}
.ya_c02295{bottom:879.270000px;}
.y9_c02295{bottom:910.050000px;}
.y8_c02295{bottom:941.190000px;}
.y7_c02295{bottom:972.150000px;}
.y6_c02295{bottom:1003.290000px;}
.y5_c02295{bottom:1034.250000px;}
.y4_c02295{bottom:1065.420000px;}
.h6_c02295{height:20.700000px;}
.h2_c02295{height:22.500000px;}
.h5_c02295{height:25.056000px;}
.h1_c02295{height:48.871406px;}
.h4_c02295{height:64.546875px;}
.h3_c02295{height:70.664062px;}
.h0_c02295{height:1188.000000px;}
.w1_c02295{width:66.636000px;}
.w3_c02295{width:169.410000px;}
.w2_c02295{width:437.115000px;}
.w0_c02295{width:918.000000px;}
.x0_c02295{left:0.000000px;}
.xb_c02295{left:14.220000px;}
.x3_c02295{left:16.560000px;}
.xd_c02295{left:75.645000px;}
.xf_c02295{left:80.145000px;}
.x1_c02295{left:127.656000px;}
.xe_c02295{left:154.845000px;}
.xc_c02295{left:160.785000px;}
.x10_c02295{left:167.265000px;}
.x11_c02295{left:173.205000px;}
.x8_c02295{left:179.310000px;}
.x12_c02295{left:183.465000px;}
.x4_c02295{left:187.050000px;}
.x9_c02295{left:190.485000px;}
.x13_c02295{left:198.585000px;}
.x6_c02295{left:293.790000px;}
.x7_c02295{left:376.455000px;}
.x5_c02295{left:440.175000px;}
.xa_c02295{left:617.145000px;}
.x2_c02295{left:820.950000px;}
@media print{
.v0_c02295{vertical-align:0.000000pt;}
.ls0_c02295{letter-spacing:0.000000pt;}
.ws0_c02295{word-spacing:0.000000pt;}
._3_c02295{margin-left:-1.088000pt;}
._2_c02295{width:0.960000pt;}
._8_c02295{width:2.112000pt;}
._9_c02295{width:3.104000pt;}
._6_c02295{width:8.192000pt;}
._5_c02295{width:9.472000pt;}
._7_c02295{width:10.560000pt;}
._4_c02295{width:12.416000pt;}
._0_c02295{width:13.568000pt;}
._1_c02295{width:14.528000pt;}
.fs0_c02295{font-size:58.880000pt;}
.fs1_c02295{font-size:64.000000pt;}
.y0_c02295{bottom:0.000000pt;}
.y11_c02295{bottom:4.000000pt;}
.y3_c02295{bottom:4.160000pt;}
.yf_c02295{bottom:7.880000pt;}
.y2_c02295{bottom:37.152000pt;}
.y1_c02295{bottom:67.072000pt;}
.y29_c02295{bottom:163.706667pt;}
.y28_c02295{bottom:182.266667pt;}
.y27_c02295{bottom:209.626667pt;}
.y26_c02295{bottom:237.306667pt;}
.y25_c02295{bottom:264.866667pt;}
.y24_c02295{bottom:292.546667pt;}
.y23_c02295{bottom:320.066667pt;}
.y22_c02295{bottom:347.746667pt;}
.y21_c02295{bottom:375.266667pt;}
.y20_c02295{bottom:402.946667pt;}
.y1f_c02295{bottom:421.506667pt;}
.y1e_c02295{bottom:439.906667pt;}
.y1d_c02295{bottom:458.306667pt;}
.y1c_c02295{bottom:476.733333pt;}
.y1b_c02295{bottom:495.133333pt;}
.y1a_c02295{bottom:513.533333pt;}
.y19_c02295{bottom:531.933333pt;}
.y18_c02295{bottom:546.973333pt;}
.y17_c02295{bottom:566.013333pt;}
.y16_c02295{bottom:585.053333pt;}
.y15_c02295{bottom:604.093333pt;}
.y14_c02295{bottom:623.293333pt;}
.y13_c02295{bottom:642.333333pt;}
.y12_c02295{bottom:661.373333pt;}
.y10_c02295{bottom:680.413333pt;}
.ye_c02295{bottom:699.453333pt;}
.yd_c02295{bottom:726.373333pt;}
.yc_c02295{bottom:744.773333pt;}
.yb_c02295{bottom:763.173333pt;}
.ya_c02295{bottom:781.573333pt;}
.y9_c02295{bottom:808.933333pt;}
.y8_c02295{bottom:836.613333pt;}
.y7_c02295{bottom:864.133333pt;}
.y6_c02295{bottom:891.813333pt;}
.y5_c02295{bottom:919.333333pt;}
.y4_c02295{bottom:947.040000pt;}
.h6_c02295{height:18.400000pt;}
.h2_c02295{height:20.000000pt;}
.h5_c02295{height:22.272000pt;}
.h1_c02295{height:43.441250pt;}
.h4_c02295{height:57.375000pt;}
.h3_c02295{height:62.812500pt;}
.h0_c02295{height:1056.000000pt;}
.w1_c02295{width:59.232000pt;}
.w3_c02295{width:150.586667pt;}
.w2_c02295{width:388.546667pt;}
.w0_c02295{width:816.000000pt;}
.x0_c02295{left:0.000000pt;}
.xb_c02295{left:12.640000pt;}
.x3_c02295{left:14.720000pt;}
.xd_c02295{left:67.240000pt;}
.xf_c02295{left:71.240000pt;}
.x1_c02295{left:113.472000pt;}
.xe_c02295{left:137.640000pt;}
.xc_c02295{left:142.920000pt;}
.x10_c02295{left:148.680000pt;}
.x11_c02295{left:153.960000pt;}
.x8_c02295{left:159.386667pt;}
.x12_c02295{left:163.080000pt;}
.x4_c02295{left:166.266667pt;}
.x9_c02295{left:169.320000pt;}
.x13_c02295{left:176.520000pt;}
.x6_c02295{left:261.146667pt;}
.x7_c02295{left:334.626667pt;}
.x5_c02295{left:391.266667pt;}
.xa_c02295{left:548.573333pt;}
.x2_c02295{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02296 {
    display:none;
  }
  .loading-indicator_c02296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02296 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02296 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02296" -> "#page-container .classname_c02296")
 */
.pf_c02296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02296 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02296 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02296 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02296 {overflow:visible;}
  }
}
.c_c02296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02296 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02296:after { /* webkit #35443 */
  content: '';
}
.t_c02296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02296 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02296 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02296 { /* info for Javascript */
  display:none;
}
.l_c02296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02296:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02296 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02296.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02296;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02296{font-family:ff1_c02296;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02296;src:url('chunks/assets/font_1a25f4a22178aa6119dd0ffd.woff2')format("woff");}.ff2_c02296{font-family:ff2_c02296;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:ff3_c02296;src:url('chunks/assets/font_898bd600ca7415380b8dfc6f.woff2')format("woff");}.ff3_c02296{font-family:ff3_c02296;line-height:1.311035;font-style:normal;font-weight: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_c02296;src:url('chunks/assets/font_b3deb677b1b38a4b8a8e9dea.woff2')format("woff");}.ff4_c02296{font-family:ff4_c02296;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02296{vertical-align:0.000000px;}
.ls0_c02296{letter-spacing:0.000000px;}
.sc__c02296{text-shadow:none;}
.sc0_c02296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02296{-webkit-text-stroke:0px transparent;}
.sc0_c02296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02296{word-spacing:-18.000000px;}
.ws1_c02296{word-spacing:0.000000px;}
._0_c02296{margin-left:-1.080000px;}
._1_c02296{width:1.368000px;}
._6_c02296{width:2.736000px;}
._7_c02296{width:3.744000px;}
._4_c02296{width:4.860000px;}
._2_c02296{width:6.408000px;}
._3_c02296{width:7.704000px;}
._a_c02296{width:9.864000px;}
._b_c02296{width:11.016000px;}
._8_c02296{width:15.696000px;}
._9_c02296{width:16.776000px;}
._c_c02296{width:22.176000px;}
._5_c02296{width:28.656000px;}
.fc1_c02296{color:rgb(192,80,77);}
.fc3_c02296{color:rgb(255,255,255);}
.fc2_c02296{color:rgb(17,17,17);}
.fc0_c02296{color:rgb(0,0,0);}
.fs0_c02296{font-size:66.240000px;}
.fs1_c02296{font-size:72.000000px;}
.y0_c02296{bottom:0.000000px;}
.ye_c02296{bottom:4.140000px;}
.y9_c02296{bottom:4.500000px;}
.y3_c02296{bottom:4.680000px;}
.y2_c02296{bottom:41.796000px;}
.y1_c02296{bottom:75.456000px;}
.y28_c02296{bottom:139.716000px;}
.y27_c02296{bottom:170.670000px;}
.y26_c02296{bottom:201.630000px;}
.y25_c02296{bottom:232.770000px;}
.y24_c02296{bottom:263.730000px;}
.y23_c02296{bottom:294.915000px;}
.y22_c02296{bottom:325.875000px;}
.y21_c02296{bottom:357.015000px;}
.y20_c02296{bottom:387.975000px;}
.y1f_c02296{bottom:419.115000px;}
.y1e_c02296{bottom:450.075000px;}
.y1d_c02296{bottom:481.215000px;}
.y1c_c02296{bottom:512.175000px;}
.y1b_c02296{bottom:543.345000px;}
.y1a_c02296{bottom:574.305000px;}
.y19_c02296{bottom:605.445000px;}
.y18_c02296{bottom:636.405000px;}
.y17_c02296{bottom:667.545000px;}
.y16_c02296{bottom:698.505000px;}
.y15_c02296{bottom:729.645000px;}
.y14_c02296{bottom:760.605000px;}
.y13_c02296{bottom:781.485000px;}
.y12_c02296{bottom:802.230000px;}
.y11_c02296{bottom:822.930000px;}
.y10_c02296{bottom:843.630000px;}
.yf_c02296{bottom:864.330000px;}
.yd_c02296{bottom:881.250000px;}
.yc_c02296{bottom:902.670000px;}
.yb_c02296{bottom:924.270000px;}
.ya_c02296{bottom:945.690000px;}
.y8_c02296{bottom:967.110000px;}
.y7_c02296{bottom:1003.290000px;}
.y6_c02296{bottom:1024.170000px;}
.y5_c02296{bottom:1044.870000px;}
.y4_c02296{bottom:1065.600000px;}
.h4_c02296{height:20.700000px;}
.h2_c02296{height:22.500000px;}
.h1_c02296{height:48.871406px;}
.h6_c02296{height:64.546875px;}
.h3_c02296{height:70.664062px;}
.h5_c02296{height:72.562500px;}
.h0_c02296{height:1188.000000px;}
.w1_c02296{width:66.636000px;}
.w3_c02296{width:308.235000px;}
.w2_c02296{width:309.990000px;}
.w0_c02296{width:918.000000px;}
.x0_c02296{left:0.000000px;}
.x3_c02296{left:16.560000px;}
.xb_c02296{left:83.730000px;}
.x9_c02296{left:117.585000px;}
.xe_c02296{left:122.445000px;}
.x11_c02296{left:123.525000px;}
.xc_c02296{left:126.045000px;}
.x1_c02296{left:127.656000px;}
.xf_c02296{left:130.545000px;}
.x10_c02296{left:145.110000px;}
.xd_c02296{left:149.610000px;}
.x7_c02296{left:154.650000px;}
.x8_c02296{left:179.310000px;}
.x12_c02296{left:180.750000px;}
.x6_c02296{left:287.670000px;}
.x5_c02296{left:373.575000px;}
.x4_c02296{left:440.175000px;}
.xa_c02296{left:490.035000px;}
.x2_c02296{left:820.950000px;}
@media print{
.v0_c02296{vertical-align:0.000000pt;}
.ls0_c02296{letter-spacing:0.000000pt;}
.ws0_c02296{word-spacing:-16.000000pt;}
.ws1_c02296{word-spacing:0.000000pt;}
._0_c02296{margin-left:-0.960000pt;}
._1_c02296{width:1.216000pt;}
._6_c02296{width:2.432000pt;}
._7_c02296{width:3.328000pt;}
._4_c02296{width:4.320000pt;}
._2_c02296{width:5.696000pt;}
._3_c02296{width:6.848000pt;}
._a_c02296{width:8.768000pt;}
._b_c02296{width:9.792000pt;}
._8_c02296{width:13.952000pt;}
._9_c02296{width:14.912000pt;}
._c_c02296{width:19.712000pt;}
._5_c02296{width:25.472000pt;}
.fs0_c02296{font-size:58.880000pt;}
.fs1_c02296{font-size:64.000000pt;}
.y0_c02296{bottom:0.000000pt;}
.ye_c02296{bottom:3.680000pt;}
.y9_c02296{bottom:4.000000pt;}
.y3_c02296{bottom:4.160000pt;}
.y2_c02296{bottom:37.152000pt;}
.y1_c02296{bottom:67.072000pt;}
.y28_c02296{bottom:124.192000pt;}
.y27_c02296{bottom:151.706667pt;}
.y26_c02296{bottom:179.226667pt;}
.y25_c02296{bottom:206.906667pt;}
.y24_c02296{bottom:234.426667pt;}
.y23_c02296{bottom:262.146667pt;}
.y22_c02296{bottom:289.666667pt;}
.y21_c02296{bottom:317.346667pt;}
.y20_c02296{bottom:344.866667pt;}
.y1f_c02296{bottom:372.546667pt;}
.y1e_c02296{bottom:400.066667pt;}
.y1d_c02296{bottom:427.746667pt;}
.y1c_c02296{bottom:455.266667pt;}
.y1b_c02296{bottom:482.973333pt;}
.y1a_c02296{bottom:510.493333pt;}
.y19_c02296{bottom:538.173333pt;}
.y18_c02296{bottom:565.693333pt;}
.y17_c02296{bottom:593.373333pt;}
.y16_c02296{bottom:620.893333pt;}
.y15_c02296{bottom:648.573333pt;}
.y14_c02296{bottom:676.093333pt;}
.y13_c02296{bottom:694.653333pt;}
.y12_c02296{bottom:713.093333pt;}
.y11_c02296{bottom:731.493333pt;}
.y10_c02296{bottom:749.893333pt;}
.yf_c02296{bottom:768.293333pt;}
.yd_c02296{bottom:783.333333pt;}
.yc_c02296{bottom:802.373333pt;}
.yb_c02296{bottom:821.573333pt;}
.ya_c02296{bottom:840.613333pt;}
.y8_c02296{bottom:859.653333pt;}
.y7_c02296{bottom:891.813333pt;}
.y6_c02296{bottom:910.373333pt;}
.y5_c02296{bottom:928.773333pt;}
.y4_c02296{bottom:947.200000pt;}
.h4_c02296{height:18.400000pt;}
.h2_c02296{height:20.000000pt;}
.h1_c02296{height:43.441250pt;}
.h6_c02296{height:57.375000pt;}
.h3_c02296{height:62.812500pt;}
.h5_c02296{height:64.500000pt;}
.h0_c02296{height:1056.000000pt;}
.w1_c02296{width:59.232000pt;}
.w3_c02296{width:273.986667pt;}
.w2_c02296{width:275.546667pt;}
.w0_c02296{width:816.000000pt;}
.x0_c02296{left:0.000000pt;}
.x3_c02296{left:14.720000pt;}
.xb_c02296{left:74.426667pt;}
.x9_c02296{left:104.520000pt;}
.xe_c02296{left:108.840000pt;}
.x11_c02296{left:109.800000pt;}
.xc_c02296{left:112.040000pt;}
.x1_c02296{left:113.472000pt;}
.xf_c02296{left:116.040000pt;}
.x10_c02296{left:128.986667pt;}
.xd_c02296{left:132.986667pt;}
.x7_c02296{left:137.466667pt;}
.x8_c02296{left:159.386667pt;}
.x12_c02296{left:160.666667pt;}
.x6_c02296{left:255.706667pt;}
.x5_c02296{left:332.066667pt;}
.x4_c02296{left:391.266667pt;}
.xa_c02296{left:435.586667pt;}
.x2_c02296{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02297 {
    display:none;
  }
  .loading-indicator_c02297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02297 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02297 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02297" -> "#page-container .classname_c02297")
 */
.pf_c02297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02297 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02297 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02297 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02297 {overflow:visible;}
  }
}
.c_c02297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02297 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02297:after { /* webkit #35443 */
  content: '';
}
.t_c02297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02297 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02297 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02297 { /* info for Javascript */
  display:none;
}
.l_c02297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02297:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02297 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02297.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02297;src:url('chunks/assets/font_8dc2d45fb4c3425b49abd944.woff2')format("woff");}.ff1_c02297{font-family:ff1_c02297;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02297;src:url('chunks/assets/font_b7ab82693a77109f50ae7867.woff2')format("woff");}.ff2_c02297{font-family:ff2_c02297;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:ff3_c02297;src:url('chunks/assets/font_0422c99c151db96dc83cc40d.woff2')format("woff");}.ff3_c02297{font-family:ff3_c02297;line-height:1.311035;font-style:normal;font-weight: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_c02297;src:url('chunks/assets/font_21e5bf7a4d30701f73f0073d.woff2')format("woff");}.ff4_c02297{font-family:ff4_c02297;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02297{vertical-align:0.000000px;}
.ls0_c02297{letter-spacing:0.000000px;}
.sc__c02297{text-shadow:none;}
.sc0_c02297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02297{-webkit-text-stroke:0px transparent;}
.sc0_c02297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02297{word-spacing:0.000000px;}
._5_c02297{margin-left:-2.376000px;}
._0_c02297{margin-left:-1.152000px;}
._1_c02297{width:1.200000px;}
._2_c02297{width:2.712000px;}
._3_c02297{width:4.008000px;}
._4_c02297{width:5.232000px;}
._7_c02297{width:9.072000px;}
._6_c02297{width:10.080000px;}
._8_c02297{width:11.232000px;}
._9_c02297{width:13.176000px;}
._a_c02297{width:14.328000px;}
.fc1_c02297{color:rgb(192,80,77);}
.fc3_c02297{color:rgb(255,255,255);}
.fc2_c02297{color:rgb(17,17,17);}
.fc0_c02297{color:rgb(0,0,0);}
.fs0_c02297{font-size:66.240000px;}
.fs1_c02297{font-size:72.000000px;}
.y0_c02297{bottom:0.000000px;}
.y14_c02297{bottom:3.960000px;}
.yf_c02297{bottom:4.140000px;}
.y12_c02297{bottom:4.320000px;}
.yc_c02297{bottom:4.500000px;}
.y3_c02297{bottom:4.680000px;}
.yd_c02297{bottom:4.860000px;}
.ya_c02297{bottom:5.220000px;}
.y13_c02297{bottom:24.660000px;}
.y11_c02297{bottom:25.020000px;}
.y9_c02297{bottom:25.920000px;}
.y2_c02297{bottom:41.796000px;}
.y1_c02297{bottom:75.456000px;}
.y2e_c02297{bottom:178.050000px;}
.y2d_c02297{bottom:209.010000px;}
.y2c_c02297{bottom:240.150000px;}
.y2b_c02297{bottom:271.155000px;}
.y2a_c02297{bottom:302.295000px;}
.y29_c02297{bottom:333.255000px;}
.y28_c02297{bottom:364.395000px;}
.y27_c02297{bottom:395.355000px;}
.y26_c02297{bottom:426.495000px;}
.y25_c02297{bottom:457.455000px;}
.y24_c02297{bottom:488.595000px;}
.y23_c02297{bottom:519.555000px;}
.y22_c02297{bottom:550.725000px;}
.y21_c02297{bottom:581.685000px;}
.y20_c02297{bottom:612.825000px;}
.y1f_c02297{bottom:643.785000px;}
.y1e_c02297{bottom:674.925000px;}
.y1d_c02297{bottom:695.805000px;}
.y1c_c02297{bottom:716.505000px;}
.y1b_c02297{bottom:737.205000px;}
.y1a_c02297{bottom:757.905000px;}
.y19_c02297{bottom:774.825000px;}
.y18_c02297{bottom:796.290000px;}
.y17_c02297{bottom:817.710000px;}
.y16_c02297{bottom:839.130000px;}
.y15_c02297{bottom:860.550000px;}
.y10_c02297{bottom:882.150000px;}
.ye_c02297{bottom:924.270000px;}
.y8_c02297{bottom:945.690000px;}
.yb_c02297{bottom:967.110000px;}
.y7_c02297{bottom:1003.290000px;}
.y6_c02297{bottom:1024.170000px;}
.y5_c02297{bottom:1044.870000px;}
.y4_c02297{bottom:1065.600000px;}
.h5_c02297{height:20.700000px;}
.h8_c02297{height:20.736000px;}
.h2_c02297{height:22.500000px;}
.h7_c02297{height:41.220000px;}
.h4_c02297{height:42.120000px;}
.h1_c02297{height:48.871406px;}
.h9_c02297{height:64.546875px;}
.h3_c02297{height:70.664062px;}
.h6_c02297{height:72.562500px;}
.h0_c02297{height:1188.000000px;}
.w1_c02297{width:66.636000px;}
.w4_c02297{width:104.760000px;}
.w7_c02297{width:121.896000px;}
.w5_c02297{width:124.920000px;}
.w6_c02297{width:127.476000px;}
.w2_c02297{width:136.656000px;}
.w3_c02297{width:375.915000px;}
.w0_c02297{width:918.000000px;}
.x0_c02297{left:0.000000px;}
.x1f_c02297{left:13.500000px;}
.x15_c02297{left:15.480000px;}
.x3_c02297{left:16.560000px;}
.x20_c02297{left:18.000000px;}
.xf_c02297{left:20.880000px;}
.x1a_c02297{left:27.720000px;}
.x12_c02297{left:31.140000px;}
.x10_c02297{left:33.480000px;}
.x14_c02297{left:36.360000px;}
.xa_c02297{left:44.280000px;}
.x19_c02297{left:45.360000px;}
.x1e_c02297{left:47.880000px;}
.xe_c02297{left:52.380000px;}
.x18_c02297{left:56.340000px;}
.x16_c02297{left:57.960000px;}
.x17_c02297{left:59.070000px;}
.x1d_c02297{left:60.840000px;}
.x1b_c02297{left:62.460000px;}
.x1c_c02297{left:63.570000px;}
.x9_c02297{left:68.220000px;}
.x1_c02297{left:127.656000px;}
.xc_c02297{left:150.480000px;}
.x7_c02297{left:154.650000px;}
.x8_c02297{left:179.310000px;}
.x21_c02297{left:180.750000px;}
.x6_c02297{left:246.270000px;}
.xb_c02297{left:316.695000px;}
.x5_c02297{left:352.695000px;}
.x4_c02297{left:423.975000px;}
.x11_c02297{left:442.515000px;}
.x13_c02297{left:570.705000px;}
.xd_c02297{left:693.510000px;}
.x2_c02297{left:820.950000px;}
@media print{
.v0_c02297{vertical-align:0.000000pt;}
.ls0_c02297{letter-spacing:0.000000pt;}
.ws0_c02297{word-spacing:0.000000pt;}
._5_c02297{margin-left:-2.112000pt;}
._0_c02297{margin-left:-1.024000pt;}
._1_c02297{width:1.066667pt;}
._2_c02297{width:2.410667pt;}
._3_c02297{width:3.562667pt;}
._4_c02297{width:4.650667pt;}
._7_c02297{width:8.064000pt;}
._6_c02297{width:8.960000pt;}
._8_c02297{width:9.984000pt;}
._9_c02297{width:11.712000pt;}
._a_c02297{width:12.736000pt;}
.fs0_c02297{font-size:58.880000pt;}
.fs1_c02297{font-size:64.000000pt;}
.y0_c02297{bottom:0.000000pt;}
.y14_c02297{bottom:3.520000pt;}
.yf_c02297{bottom:3.680000pt;}
.y12_c02297{bottom:3.840000pt;}
.yc_c02297{bottom:4.000000pt;}
.y3_c02297{bottom:4.160000pt;}
.yd_c02297{bottom:4.320000pt;}
.ya_c02297{bottom:4.640000pt;}
.y13_c02297{bottom:21.920000pt;}
.y11_c02297{bottom:22.240000pt;}
.y9_c02297{bottom:23.040000pt;}
.y2_c02297{bottom:37.152000pt;}
.y1_c02297{bottom:67.072000pt;}
.y2e_c02297{bottom:158.266667pt;}
.y2d_c02297{bottom:185.786667pt;}
.y2c_c02297{bottom:213.466667pt;}
.y2b_c02297{bottom:241.026667pt;}
.y2a_c02297{bottom:268.706667pt;}
.y29_c02297{bottom:296.226667pt;}
.y28_c02297{bottom:323.906667pt;}
.y27_c02297{bottom:351.426667pt;}
.y26_c02297{bottom:379.106667pt;}
.y25_c02297{bottom:406.626667pt;}
.y24_c02297{bottom:434.306667pt;}
.y23_c02297{bottom:461.826667pt;}
.y22_c02297{bottom:489.533333pt;}
.y21_c02297{bottom:517.053333pt;}
.y20_c02297{bottom:544.733333pt;}
.y1f_c02297{bottom:572.253333pt;}
.y1e_c02297{bottom:599.933333pt;}
.y1d_c02297{bottom:618.493333pt;}
.y1c_c02297{bottom:636.893333pt;}
.y1b_c02297{bottom:655.293333pt;}
.y1a_c02297{bottom:673.693333pt;}
.y19_c02297{bottom:688.733333pt;}
.y18_c02297{bottom:707.813333pt;}
.y17_c02297{bottom:726.853333pt;}
.y16_c02297{bottom:745.893333pt;}
.y15_c02297{bottom:764.933333pt;}
.y10_c02297{bottom:784.133333pt;}
.ye_c02297{bottom:821.573333pt;}
.y8_c02297{bottom:840.613333pt;}
.yb_c02297{bottom:859.653333pt;}
.y7_c02297{bottom:891.813333pt;}
.y6_c02297{bottom:910.373333pt;}
.y5_c02297{bottom:928.773333pt;}
.y4_c02297{bottom:947.200000pt;}
.h5_c02297{height:18.400000pt;}
.h8_c02297{height:18.432000pt;}
.h2_c02297{height:20.000000pt;}
.h7_c02297{height:36.640000pt;}
.h4_c02297{height:37.440000pt;}
.h1_c02297{height:43.441250pt;}
.h9_c02297{height:57.375000pt;}
.h3_c02297{height:62.812500pt;}
.h6_c02297{height:64.500000pt;}
.h0_c02297{height:1056.000000pt;}
.w1_c02297{width:59.232000pt;}
.w4_c02297{width:93.120000pt;}
.w7_c02297{width:108.352000pt;}
.w5_c02297{width:111.040000pt;}
.w6_c02297{width:113.312000pt;}
.w2_c02297{width:121.472000pt;}
.w3_c02297{width:334.146667pt;}
.w0_c02297{width:816.000000pt;}
.x0_c02297{left:0.000000pt;}
.x1f_c02297{left:12.000000pt;}
.x15_c02297{left:13.760000pt;}
.x3_c02297{left:14.720000pt;}
.x20_c02297{left:16.000000pt;}
.xf_c02297{left:18.560000pt;}
.x1a_c02297{left:24.640000pt;}
.x12_c02297{left:27.680000pt;}
.x10_c02297{left:29.760000pt;}
.x14_c02297{left:32.320000pt;}
.xa_c02297{left:39.360000pt;}
.x19_c02297{left:40.320000pt;}
.x1e_c02297{left:42.560000pt;}
.xe_c02297{left:46.560000pt;}
.x18_c02297{left:50.080000pt;}
.x16_c02297{left:51.520000pt;}
.x17_c02297{left:52.506667pt;}
.x1d_c02297{left:54.080000pt;}
.x1b_c02297{left:55.520000pt;}
.x1c_c02297{left:56.506667pt;}
.x9_c02297{left:60.640000pt;}
.x1_c02297{left:113.472000pt;}
.xc_c02297{left:133.760000pt;}
.x7_c02297{left:137.466667pt;}
.x8_c02297{left:159.386667pt;}
.x21_c02297{left:160.666667pt;}
.x6_c02297{left:218.906667pt;}
.xb_c02297{left:281.506667pt;}
.x5_c02297{left:313.506667pt;}
.x4_c02297{left:376.866667pt;}
.x11_c02297{left:393.346667pt;}
.x13_c02297{left:507.293333pt;}
.xd_c02297{left:616.453333pt;}
.x2_c02297{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02298 {
    display:none;
  }
  .loading-indicator_c02298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02298 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02298 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02298" -> "#page-container .classname_c02298")
 */
.pf_c02298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02298 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02298 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02298 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02298 {overflow:visible;}
  }
}
.c_c02298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02298 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02298:after { /* webkit #35443 */
  content: '';
}
.t_c02298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02298 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02298 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02298 { /* info for Javascript */
  display:none;
}
.l_c02298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02298:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02298 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02298.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02298;src:url('chunks/assets/font_102189ec2932551816d6596c.woff2')format("woff");}.ff1_c02298{font-family:ff1_c02298;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02298;src:url('chunks/assets/font_76a35f01a4b67962006ac74b.woff2')format("woff");}.ff2_c02298{font-family:ff2_c02298;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:ff3_c02298;src:url('chunks/assets/font_6dd6e4350cd522ddb2d538ac.woff2')format("woff");}.ff3_c02298{font-family:ff3_c02298;line-height:1.311035;font-style:normal;font-weight: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_c02298;src:url('chunks/assets/font_fc957316e582255aefc3d53c.woff2')format("woff");}.ff4_c02298{font-family:ff4_c02298;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02298{vertical-align:0.000000px;}
.ls0_c02298{letter-spacing:0.000000px;}
.sc__c02298{text-shadow:none;}
.sc0_c02298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02298{-webkit-text-stroke:0px transparent;}
.sc0_c02298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02298{word-spacing:-18.000000px;}
.ws1_c02298{word-spacing:0.000000px;}
._0_c02298{margin-left:-1.188000px;}
._1_c02298{width:1.128000px;}
._2_c02298{width:2.856000px;}
._3_c02298{width:4.008000px;}
._a_c02298{width:5.352000px;}
._6_c02298{width:7.272000px;}
._7_c02298{width:9.216000px;}
._4_c02298{width:10.656000px;}
._5_c02298{width:11.844000px;}
._b_c02298{width:16.920000px;}
._9_c02298{width:34.344000px;}
._8_c02298{width:35.424000px;}
.fc1_c02298{color:rgb(192,80,77);}
.fc3_c02298{color:rgb(255,255,255);}
.fc2_c02298{color:rgb(17,17,17);}
.fc0_c02298{color:rgb(0,0,0);}
.fs0_c02298{font-size:66.240000px;}
.fs1_c02298{font-size:72.000000px;}
.y0_c02298{bottom:0.000000px;}
.yf_c02298{bottom:4.140000px;}
.yc_c02298{bottom:4.500000px;}
.y3_c02298{bottom:4.680000px;}
.yd_c02298{bottom:4.860000px;}
.ya_c02298{bottom:5.220000px;}
.y9_c02298{bottom:25.920000px;}
.y2_c02298{bottom:41.796000px;}
.y1_c02298{bottom:75.456000px;}
.y28_c02298{bottom:260.850000px;}
.y27_c02298{bottom:291.855000px;}
.y26_c02298{bottom:322.995000px;}
.y25_c02298{bottom:353.955000px;}
.y24_c02298{bottom:385.095000px;}
.y23_c02298{bottom:416.055000px;}
.y22_c02298{bottom:447.195000px;}
.y21_c02298{bottom:478.155000px;}
.y20_c02298{bottom:509.295000px;}
.y1f_c02298{bottom:540.285000px;}
.y1e_c02298{bottom:571.425000px;}
.y1d_c02298{bottom:602.385000px;}
.y1c_c02298{bottom:633.525000px;}
.y1b_c02298{bottom:664.485000px;}
.y1a_c02298{bottom:695.625000px;}
.y19_c02298{bottom:716.505000px;}
.y18_c02298{bottom:737.205000px;}
.y17_c02298{bottom:757.905000px;}
.y16_c02298{bottom:778.605000px;}
.y15_c02298{bottom:795.570000px;}
.y14_c02298{bottom:816.990000px;}
.y13_c02298{bottom:838.410000px;}
.y12_c02298{bottom:859.830000px;}
.y11_c02298{bottom:881.250000px;}
.y10_c02298{bottom:902.670000px;}
.ye_c02298{bottom:924.270000px;}
.y8_c02298{bottom:945.690000px;}
.yb_c02298{bottom:967.110000px;}
.y7_c02298{bottom:1003.290000px;}
.y6_c02298{bottom:1024.170000px;}
.y5_c02298{bottom:1044.870000px;}
.y4_c02298{bottom:1065.600000px;}
.h5_c02298{height:20.700000px;}
.h2_c02298{height:22.500000px;}
.h4_c02298{height:42.120000px;}
.h1_c02298{height:48.871406px;}
.h7_c02298{height:64.546875px;}
.h3_c02298{height:70.664062px;}
.h6_c02298{height:72.562500px;}
.h0_c02298{height:1188.000000px;}
.w1_c02298{width:66.636000px;}
.w4_c02298{width:79.020000px;}
.w7_c02298{width:92.016000px;}
.w5_c02298{width:94.356000px;}
.w6_c02298{width:96.120000px;}
.w2_c02298{width:254.550000px;}
.w3_c02298{width:283.935000px;}
.w0_c02298{width:918.000000px;}
.x0_c02298{left:0.000000px;}
.xe_c02298{left:7.920000px;}
.x11_c02298{left:15.480000px;}
.x3_c02298{left:16.560000px;}
.xf_c02298{left:18.180000px;}
.x13_c02298{left:21.420000px;}
.x1e_c02298{left:30.420000px;}
.x17_c02298{left:34.920000px;}
.xd_c02298{left:39.420000px;}
.x16_c02298{left:41.400000px;}
.x15_c02298{left:42.660000px;}
.x18_c02298{left:61.560000px;}
.x1a_c02298{left:72.540000px;}
.x14_c02298{left:74.520000px;}
.x1b_c02298{left:77.040000px;}
.x19_c02298{left:79.560000px;}
.x1d_c02298{left:95.760000px;}
.x9_c02298{left:103.140000px;}
.xb_c02298{left:104.430000px;}
.x1c_c02298{left:107.280000px;}
.x1_c02298{left:127.656000px;}
.x8_c02298{left:179.310000px;}
.x1f_c02298{left:180.750000px;}
.x5_c02298{left:276.510000px;}
.x6_c02298{left:287.670000px;}
.xa_c02298{left:434.595000px;}
.x4_c02298{left:440.175000px;}
.x7_c02298{left:488.775000px;}
.x10_c02298{left:529.665000px;}
.x12_c02298{left:626.505000px;}
.xc_c02298{left:719.250000px;}
.x2_c02298{left:820.950000px;}
@media print{
.v0_c02298{vertical-align:0.000000pt;}
.ls0_c02298{letter-spacing:0.000000pt;}
.ws0_c02298{word-spacing:-16.000000pt;}
.ws1_c02298{word-spacing:0.000000pt;}
._0_c02298{margin-left:-1.056000pt;}
._1_c02298{width:1.002667pt;}
._2_c02298{width:2.538667pt;}
._3_c02298{width:3.562667pt;}
._a_c02298{width:4.757333pt;}
._6_c02298{width:6.464000pt;}
._7_c02298{width:8.192000pt;}
._4_c02298{width:9.472000pt;}
._5_c02298{width:10.528000pt;}
._b_c02298{width:15.040000pt;}
._9_c02298{width:30.528000pt;}
._8_c02298{width:31.488000pt;}
.fs0_c02298{font-size:58.880000pt;}
.fs1_c02298{font-size:64.000000pt;}
.y0_c02298{bottom:0.000000pt;}
.yf_c02298{bottom:3.680000pt;}
.yc_c02298{bottom:4.000000pt;}
.y3_c02298{bottom:4.160000pt;}
.yd_c02298{bottom:4.320000pt;}
.ya_c02298{bottom:4.640000pt;}
.y9_c02298{bottom:23.040000pt;}
.y2_c02298{bottom:37.152000pt;}
.y1_c02298{bottom:67.072000pt;}
.y28_c02298{bottom:231.866667pt;}
.y27_c02298{bottom:259.426667pt;}
.y26_c02298{bottom:287.106667pt;}
.y25_c02298{bottom:314.626667pt;}
.y24_c02298{bottom:342.306667pt;}
.y23_c02298{bottom:369.826667pt;}
.y22_c02298{bottom:397.506667pt;}
.y21_c02298{bottom:425.026667pt;}
.y20_c02298{bottom:452.706667pt;}
.y1f_c02298{bottom:480.253333pt;}
.y1e_c02298{bottom:507.933333pt;}
.y1d_c02298{bottom:535.453333pt;}
.y1c_c02298{bottom:563.133333pt;}
.y1b_c02298{bottom:590.653333pt;}
.y1a_c02298{bottom:618.333333pt;}
.y19_c02298{bottom:636.893333pt;}
.y18_c02298{bottom:655.293333pt;}
.y17_c02298{bottom:673.693333pt;}
.y16_c02298{bottom:692.093333pt;}
.y15_c02298{bottom:707.173333pt;}
.y14_c02298{bottom:726.213333pt;}
.y13_c02298{bottom:745.253333pt;}
.y12_c02298{bottom:764.293333pt;}
.y11_c02298{bottom:783.333333pt;}
.y10_c02298{bottom:802.373333pt;}
.ye_c02298{bottom:821.573333pt;}
.y8_c02298{bottom:840.613333pt;}
.yb_c02298{bottom:859.653333pt;}
.y7_c02298{bottom:891.813333pt;}
.y6_c02298{bottom:910.373333pt;}
.y5_c02298{bottom:928.773333pt;}
.y4_c02298{bottom:947.200000pt;}
.h5_c02298{height:18.400000pt;}
.h2_c02298{height:20.000000pt;}
.h4_c02298{height:37.440000pt;}
.h1_c02298{height:43.441250pt;}
.h7_c02298{height:57.375000pt;}
.h3_c02298{height:62.812500pt;}
.h6_c02298{height:64.500000pt;}
.h0_c02298{height:1056.000000pt;}
.w1_c02298{width:59.232000pt;}
.w4_c02298{width:70.240000pt;}
.w7_c02298{width:81.792000pt;}
.w5_c02298{width:83.872000pt;}
.w6_c02298{width:85.440000pt;}
.w2_c02298{width:226.266667pt;}
.w3_c02298{width:252.386667pt;}
.w0_c02298{width:816.000000pt;}
.x0_c02298{left:0.000000pt;}
.xe_c02298{left:7.040000pt;}
.x11_c02298{left:13.760000pt;}
.x3_c02298{left:14.720000pt;}
.xf_c02298{left:16.160000pt;}
.x13_c02298{left:19.040000pt;}
.x1e_c02298{left:27.040000pt;}
.x17_c02298{left:31.040000pt;}
.xd_c02298{left:35.040000pt;}
.x16_c02298{left:36.800000pt;}
.x15_c02298{left:37.920000pt;}
.x18_c02298{left:54.720000pt;}
.x1a_c02298{left:64.480000pt;}
.x14_c02298{left:66.240000pt;}
.x1b_c02298{left:68.480000pt;}
.x19_c02298{left:70.720000pt;}
.x1d_c02298{left:85.120000pt;}
.x9_c02298{left:91.680000pt;}
.xb_c02298{left:92.826667pt;}
.x1c_c02298{left:95.360000pt;}
.x1_c02298{left:113.472000pt;}
.x8_c02298{left:159.386667pt;}
.x1f_c02298{left:160.666667pt;}
.x5_c02298{left:245.786667pt;}
.x6_c02298{left:255.706667pt;}
.xa_c02298{left:386.306667pt;}
.x4_c02298{left:391.266667pt;}
.x7_c02298{left:434.466667pt;}
.x10_c02298{left:470.813333pt;}
.x12_c02298{left:556.893333pt;}
.xc_c02298{left:639.333333pt;}
.x2_c02298{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02299 {
    display:none;
  }
  .loading-indicator_c02299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02299 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02299 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02299" -> "#page-container .classname_c02299")
 */
.pf_c02299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02299 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02299 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02299 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02299 {overflow:visible;}
  }
}
.c_c02299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02299 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02299:after { /* webkit #35443 */
  content: '';
}
.t_c02299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02299 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02299 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02299 { /* info for Javascript */
  display:none;
}
.l_c02299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02299:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02299 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02299.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02299;src:url('chunks/assets/font_05066d4ea3c69537df5ba298.woff2')format("woff");}.ff1_c02299{font-family:ff1_c02299;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02299;src:url('chunks/assets/font_362b78094909b22f9804e76a.woff2')format("woff");}.ff2_c02299{font-family:ff2_c02299;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:ff3_c02299;src:url('chunks/assets/font_649c623ef4154b5acb56f507.woff2')format("woff");}.ff3_c02299{font-family:ff3_c02299;line-height:1.311035;font-style:normal;font-weight: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_c02299;src:url('chunks/assets/font_d96219a47d6690cb6128613f.woff2')format("woff");}.ff4_c02299{font-family:ff4_c02299;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02299{vertical-align:0.000000px;}
.ls0_c02299{letter-spacing:0.000000px;}
.sc__c02299{text-shadow:none;}
.sc0_c02299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02299{-webkit-text-stroke:0px transparent;}
.sc0_c02299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02299{word-spacing:-18.000000px;}
.ws1_c02299{word-spacing:0.000000px;}
._0_c02299{margin-left:-1.224000px;}
._1_c02299{width:1.164000px;}
._2_c02299{width:2.784000px;}
._3_c02299{width:4.152000px;}
._8_c02299{width:5.928000px;}
._6_c02299{width:7.272000px;}
._7_c02299{width:9.216000px;}
._a_c02299{width:10.584000px;}
._4_c02299{width:13.536000px;}
._5_c02299{width:14.640000px;}
._9_c02299{width:15.696000px;}
._c_c02299{width:16.992000px;}
._b_c02299{width:20.664000px;}
.fc1_c02299{color:rgb(192,80,77);}
.fc3_c02299{color:rgb(255,255,255);}
.fc2_c02299{color:rgb(17,17,17);}
.fc0_c02299{color:rgb(0,0,0);}
.fs0_c02299{font-size:66.240000px;}
.fs1_c02299{font-size:72.000000px;}
.y0_c02299{bottom:0.000000px;}
.yf_c02299{bottom:4.140000px;}
.yc_c02299{bottom:4.500000px;}
.y3_c02299{bottom:4.680000px;}
.yd_c02299{bottom:4.860000px;}
.ya_c02299{bottom:5.220000px;}
.y9_c02299{bottom:25.920000px;}
.y2_c02299{bottom:41.796000px;}
.y1_c02299{bottom:75.456000px;}
.y2e_c02299{bottom:116.856000px;}
.y2d_c02299{bottom:137.556000px;}
.y2c_c02299{bottom:158.250000px;}
.y2b_c02299{bottom:178.950000px;}
.y2a_c02299{bottom:199.650000px;}
.y29_c02299{bottom:220.350000px;}
.y28_c02299{bottom:251.130000px;}
.y27_c02299{bottom:282.315000px;}
.y26_c02299{bottom:313.275000px;}
.y25_c02299{bottom:344.415000px;}
.y24_c02299{bottom:375.375000px;}
.y23_c02299{bottom:406.515000px;}
.y22_c02299{bottom:437.475000px;}
.y21_c02299{bottom:468.615000px;}
.y20_c02299{bottom:499.575000px;}
.y1f_c02299{bottom:530.715000px;}
.y1e_c02299{bottom:561.705000px;}
.y1d_c02299{bottom:592.845000px;}
.y1c_c02299{bottom:623.805000px;}
.y1b_c02299{bottom:654.945000px;}
.y1a_c02299{bottom:685.905000px;}
.y19_c02299{bottom:717.045000px;}
.y18_c02299{bottom:737.925000px;}
.y17_c02299{bottom:758.625000px;}
.y16_c02299{bottom:779.325000px;}
.y15_c02299{bottom:800.070000px;}
.y14_c02299{bottom:816.990000px;}
.y13_c02299{bottom:838.410000px;}
.y12_c02299{bottom:859.830000px;}
.y11_c02299{bottom:881.250000px;}
.y10_c02299{bottom:902.670000px;}
.ye_c02299{bottom:924.270000px;}
.y8_c02299{bottom:945.690000px;}
.yb_c02299{bottom:967.110000px;}
.y7_c02299{bottom:1003.290000px;}
.y6_c02299{bottom:1024.170000px;}
.y5_c02299{bottom:1044.870000px;}
.y4_c02299{bottom:1065.600000px;}
.h5_c02299{height:20.700000px;}
.h2_c02299{height:22.500000px;}
.h4_c02299{height:42.120000px;}
.h1_c02299{height:48.871406px;}
.h7_c02299{height:64.546875px;}
.h3_c02299{height:70.664062px;}
.h6_c02299{height:72.562500px;}
.h0_c02299{height:1188.000000px;}
.w1_c02299{width:66.636000px;}
.w4_c02299{width:79.020000px;}
.w7_c02299{width:92.016000px;}
.w5_c02299{width:94.356000px;}
.w6_c02299{width:96.120000px;}
.w2_c02299{width:254.550000px;}
.w3_c02299{width:283.935000px;}
.w0_c02299{width:918.000000px;}
.x0_c02299{left:0.000000px;}
.xe_c02299{left:7.920000px;}
.x11_c02299{left:15.480000px;}
.x3_c02299{left:16.560000px;}
.xf_c02299{left:18.180000px;}
.x13_c02299{left:21.420000px;}
.x1d_c02299{left:30.420000px;}
.x17_c02299{left:34.920000px;}
.xd_c02299{left:39.420000px;}
.x16_c02299{left:41.400000px;}
.x15_c02299{left:42.660000px;}
.x18_c02299{left:61.560000px;}
.x1a_c02299{left:72.540000px;}
.x14_c02299{left:74.520000px;}
.x1b_c02299{left:77.040000px;}
.x19_c02299{left:79.560000px;}
.x1c_c02299{left:95.760000px;}
.x9_c02299{left:103.140000px;}
.xb_c02299{left:104.430000px;}
.x1_c02299{left:127.656000px;}
.x8_c02299{left:179.310000px;}
.x1e_c02299{left:180.750000px;}
.x5_c02299{left:281.010000px;}
.x6_c02299{left:287.670000px;}
.xa_c02299{left:434.595000px;}
.x4_c02299{left:440.175000px;}
.x7_c02299{left:488.775000px;}
.x10_c02299{left:529.665000px;}
.x12_c02299{left:626.505000px;}
.xc_c02299{left:719.250000px;}
.x2_c02299{left:820.950000px;}
@media print{
.v0_c02299{vertical-align:0.000000pt;}
.ls0_c02299{letter-spacing:0.000000pt;}
.ws0_c02299{word-spacing:-16.000000pt;}
.ws1_c02299{word-spacing:0.000000pt;}
._0_c02299{margin-left:-1.088000pt;}
._1_c02299{width:1.034667pt;}
._2_c02299{width:2.474667pt;}
._3_c02299{width:3.690667pt;}
._8_c02299{width:5.269333pt;}
._6_c02299{width:6.464000pt;}
._7_c02299{width:8.192000pt;}
._a_c02299{width:9.408000pt;}
._4_c02299{width:12.032000pt;}
._5_c02299{width:13.013333pt;}
._9_c02299{width:13.952000pt;}
._c_c02299{width:15.104000pt;}
._b_c02299{width:18.368000pt;}
.fs0_c02299{font-size:58.880000pt;}
.fs1_c02299{font-size:64.000000pt;}
.y0_c02299{bottom:0.000000pt;}
.yf_c02299{bottom:3.680000pt;}
.yc_c02299{bottom:4.000000pt;}
.y3_c02299{bottom:4.160000pt;}
.yd_c02299{bottom:4.320000pt;}
.ya_c02299{bottom:4.640000pt;}
.y9_c02299{bottom:23.040000pt;}
.y2_c02299{bottom:37.152000pt;}
.y1_c02299{bottom:67.072000pt;}
.y2e_c02299{bottom:103.872000pt;}
.y2d_c02299{bottom:122.272000pt;}
.y2c_c02299{bottom:140.666667pt;}
.y2b_c02299{bottom:159.066667pt;}
.y2a_c02299{bottom:177.466667pt;}
.y29_c02299{bottom:195.866667pt;}
.y28_c02299{bottom:223.226667pt;}
.y27_c02299{bottom:250.946667pt;}
.y26_c02299{bottom:278.466667pt;}
.y25_c02299{bottom:306.146667pt;}
.y24_c02299{bottom:333.666667pt;}
.y23_c02299{bottom:361.346667pt;}
.y22_c02299{bottom:388.866667pt;}
.y21_c02299{bottom:416.546667pt;}
.y20_c02299{bottom:444.066667pt;}
.y1f_c02299{bottom:471.746667pt;}
.y1e_c02299{bottom:499.293333pt;}
.y1d_c02299{bottom:526.973333pt;}
.y1c_c02299{bottom:554.493333pt;}
.y1b_c02299{bottom:582.173333pt;}
.y1a_c02299{bottom:609.693333pt;}
.y19_c02299{bottom:637.373333pt;}
.y18_c02299{bottom:655.933333pt;}
.y17_c02299{bottom:674.333333pt;}
.y16_c02299{bottom:692.733333pt;}
.y15_c02299{bottom:711.173333pt;}
.y14_c02299{bottom:726.213333pt;}
.y13_c02299{bottom:745.253333pt;}
.y12_c02299{bottom:764.293333pt;}
.y11_c02299{bottom:783.333333pt;}
.y10_c02299{bottom:802.373333pt;}
.ye_c02299{bottom:821.573333pt;}
.y8_c02299{bottom:840.613333pt;}
.yb_c02299{bottom:859.653333pt;}
.y7_c02299{bottom:891.813333pt;}
.y6_c02299{bottom:910.373333pt;}
.y5_c02299{bottom:928.773333pt;}
.y4_c02299{bottom:947.200000pt;}
.h5_c02299{height:18.400000pt;}
.h2_c02299{height:20.000000pt;}
.h4_c02299{height:37.440000pt;}
.h1_c02299{height:43.441250pt;}
.h7_c02299{height:57.375000pt;}
.h3_c02299{height:62.812500pt;}
.h6_c02299{height:64.500000pt;}
.h0_c02299{height:1056.000000pt;}
.w1_c02299{width:59.232000pt;}
.w4_c02299{width:70.240000pt;}
.w7_c02299{width:81.792000pt;}
.w5_c02299{width:83.872000pt;}
.w6_c02299{width:85.440000pt;}
.w2_c02299{width:226.266667pt;}
.w3_c02299{width:252.386667pt;}
.w0_c02299{width:816.000000pt;}
.x0_c02299{left:0.000000pt;}
.xe_c02299{left:7.040000pt;}
.x11_c02299{left:13.760000pt;}
.x3_c02299{left:14.720000pt;}
.xf_c02299{left:16.160000pt;}
.x13_c02299{left:19.040000pt;}
.x1d_c02299{left:27.040000pt;}
.x17_c02299{left:31.040000pt;}
.xd_c02299{left:35.040000pt;}
.x16_c02299{left:36.800000pt;}
.x15_c02299{left:37.920000pt;}
.x18_c02299{left:54.720000pt;}
.x1a_c02299{left:64.480000pt;}
.x14_c02299{left:66.240000pt;}
.x1b_c02299{left:68.480000pt;}
.x19_c02299{left:70.720000pt;}
.x1c_c02299{left:85.120000pt;}
.x9_c02299{left:91.680000pt;}
.xb_c02299{left:92.826667pt;}
.x1_c02299{left:113.472000pt;}
.x8_c02299{left:159.386667pt;}
.x1e_c02299{left:160.666667pt;}
.x5_c02299{left:249.786667pt;}
.x6_c02299{left:255.706667pt;}
.xa_c02299{left:386.306667pt;}
.x4_c02299{left:391.266667pt;}
.x7_c02299{left:434.466667pt;}
.x10_c02299{left:470.813333pt;}
.x12_c02299{left:556.893333pt;}
.xc_c02299{left:639.333333pt;}
.x2_c02299{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02300 {
    display:none;
  }
  .loading-indicator_c02300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02300 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02300 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02300" -> "#page-container .classname_c02300")
 */
.pf_c02300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02300 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02300 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02300 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02300 {overflow:visible;}
  }
}
.c_c02300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02300 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02300:after { /* webkit #35443 */
  content: '';
}
.t_c02300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02300 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02300 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02300 { /* info for Javascript */
  display:none;
}
.l_c02300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02300:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02300 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02300.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02300;src:url('chunks/assets/font_7570a04fca421e4b10c3ba75.woff2')format("woff");}.ff1_c02300{font-family:ff1_c02300;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02300;src:url('chunks/assets/font_32070b7ddcee319d4db0c0ff.woff2')format("woff");}.ff2_c02300{font-family:ff2_c02300;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:ff3_c02300;src:url('chunks/assets/font_7252ee438b6febc31c148bde.woff2')format("woff");}.ff3_c02300{font-family:ff3_c02300;line-height:1.311035;font-style:normal;font-weight: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_c02300;src:url('chunks/assets/font_1d4c51f67ebb228dfbfb5d35.woff2')format("woff");}.ff4_c02300{font-family:ff4_c02300;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02300{vertical-align:0.000000px;}
.ls0_c02300{letter-spacing:0.000000px;}
.sc__c02300{text-shadow:none;}
.sc0_c02300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02300{-webkit-text-stroke:0px transparent;}
.sc0_c02300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02300{word-spacing:-18.000000px;}
.ws1_c02300{word-spacing:0.000000px;}
._0_c02300{margin-left:-1.152000px;}
._1_c02300{width:1.092000px;}
._2_c02300{width:2.928000px;}
._3_c02300{width:4.176000px;}
._4_c02300{width:5.280000px;}
._5_c02300{width:6.624000px;}
._6_c02300{width:8.208000px;}
._7_c02300{width:10.728000px;}
._8_c02300{width:11.868000px;}
.fc1_c02300{color:rgb(192,80,77);}
.fc3_c02300{color:rgb(255,255,255);}
.fc2_c02300{color:rgb(17,17,17);}
.fc0_c02300{color:rgb(0,0,0);}
.fs0_c02300{font-size:66.240000px;}
.fs1_c02300{font-size:72.000000px;}
.y0_c02300{bottom:0.000000px;}
.yf_c02300{bottom:4.140000px;}
.yc_c02300{bottom:4.500000px;}
.y3_c02300{bottom:4.680000px;}
.yd_c02300{bottom:4.860000px;}
.ya_c02300{bottom:5.220000px;}
.y9_c02300{bottom:25.920000px;}
.y2_c02300{bottom:41.796000px;}
.y1_c02300{bottom:75.456000px;}
.y30_c02300{bottom:116.136000px;}
.y2f_c02300{bottom:136.836000px;}
.y2e_c02300{bottom:157.530000px;}
.y2d_c02300{bottom:178.230000px;}
.y2c_c02300{bottom:198.930000px;}
.y2b_c02300{bottom:219.630000px;}
.y2a_c02300{bottom:240.330000px;}
.y29_c02300{bottom:261.030000px;}
.y28_c02300{bottom:281.775000px;}
.y27_c02300{bottom:302.475000px;}
.y26_c02300{bottom:323.175000px;}
.y25_c02300{bottom:353.955000px;}
.y24_c02300{bottom:385.095000px;}
.y23_c02300{bottom:416.055000px;}
.y22_c02300{bottom:447.195000px;}
.y21_c02300{bottom:478.155000px;}
.y20_c02300{bottom:509.295000px;}
.y1f_c02300{bottom:540.285000px;}
.y1e_c02300{bottom:571.425000px;}
.y1d_c02300{bottom:602.385000px;}
.y1c_c02300{bottom:633.525000px;}
.y1b_c02300{bottom:664.485000px;}
.y1a_c02300{bottom:695.625000px;}
.y19_c02300{bottom:716.505000px;}
.y18_c02300{bottom:737.205000px;}
.y17_c02300{bottom:757.905000px;}
.y16_c02300{bottom:778.605000px;}
.y15_c02300{bottom:795.570000px;}
.y14_c02300{bottom:816.990000px;}
.y13_c02300{bottom:838.410000px;}
.y12_c02300{bottom:859.830000px;}
.y11_c02300{bottom:881.250000px;}
.y10_c02300{bottom:902.670000px;}
.ye_c02300{bottom:924.270000px;}
.y8_c02300{bottom:945.690000px;}
.yb_c02300{bottom:967.110000px;}
.y7_c02300{bottom:1003.290000px;}
.y6_c02300{bottom:1024.170000px;}
.y5_c02300{bottom:1044.870000px;}
.y4_c02300{bottom:1065.600000px;}
.h5_c02300{height:20.700000px;}
.h2_c02300{height:22.500000px;}
.h4_c02300{height:42.120000px;}
.h1_c02300{height:48.871406px;}
.h7_c02300{height:64.546875px;}
.h3_c02300{height:70.664062px;}
.h6_c02300{height:72.562500px;}
.h0_c02300{height:1188.000000px;}
.w1_c02300{width:66.636000px;}
.w4_c02300{width:79.020000px;}
.w7_c02300{width:92.016000px;}
.w5_c02300{width:94.356000px;}
.w6_c02300{width:96.120000px;}
.w2_c02300{width:254.550000px;}
.w3_c02300{width:283.935000px;}
.w0_c02300{width:918.000000px;}
.x0_c02300{left:0.000000px;}
.xe_c02300{left:7.920000px;}
.x11_c02300{left:15.480000px;}
.x3_c02300{left:16.560000px;}
.xf_c02300{left:18.180000px;}
.x13_c02300{left:21.420000px;}
.x17_c02300{left:34.920000px;}
.xd_c02300{left:39.420000px;}
.x16_c02300{left:41.400000px;}
.x15_c02300{left:42.660000px;}
.x18_c02300{left:61.560000px;}
.x1a_c02300{left:72.540000px;}
.x14_c02300{left:74.520000px;}
.x1b_c02300{left:77.040000px;}
.x19_c02300{left:79.560000px;}
.x1d_c02300{left:95.760000px;}
.x9_c02300{left:103.140000px;}
.xb_c02300{left:104.430000px;}
.x1c_c02300{left:107.280000px;}
.x1_c02300{left:127.656000px;}
.x8_c02300{left:179.310000px;}
.x1e_c02300{left:180.750000px;}
.x5_c02300{left:266.970000px;}
.x6_c02300{left:287.670000px;}
.xa_c02300{left:434.595000px;}
.x4_c02300{left:440.175000px;}
.x7_c02300{left:488.775000px;}
.x10_c02300{left:529.665000px;}
.x12_c02300{left:626.505000px;}
.xc_c02300{left:719.250000px;}
.x2_c02300{left:820.950000px;}
@media print{
.v0_c02300{vertical-align:0.000000pt;}
.ls0_c02300{letter-spacing:0.000000pt;}
.ws0_c02300{word-spacing:-16.000000pt;}
.ws1_c02300{word-spacing:0.000000pt;}
._0_c02300{margin-left:-1.024000pt;}
._1_c02300{width:0.970667pt;}
._2_c02300{width:2.602667pt;}
._3_c02300{width:3.712000pt;}
._4_c02300{width:4.693333pt;}
._5_c02300{width:5.888000pt;}
._6_c02300{width:7.296000pt;}
._7_c02300{width:9.536000pt;}
._8_c02300{width:10.549333pt;}
.fs0_c02300{font-size:58.880000pt;}
.fs1_c02300{font-size:64.000000pt;}
.y0_c02300{bottom:0.000000pt;}
.yf_c02300{bottom:3.680000pt;}
.yc_c02300{bottom:4.000000pt;}
.y3_c02300{bottom:4.160000pt;}
.yd_c02300{bottom:4.320000pt;}
.ya_c02300{bottom:4.640000pt;}
.y9_c02300{bottom:23.040000pt;}
.y2_c02300{bottom:37.152000pt;}
.y1_c02300{bottom:67.072000pt;}
.y30_c02300{bottom:103.232000pt;}
.y2f_c02300{bottom:121.632000pt;}
.y2e_c02300{bottom:140.026667pt;}
.y2d_c02300{bottom:158.426667pt;}
.y2c_c02300{bottom:176.826667pt;}
.y2b_c02300{bottom:195.226667pt;}
.y2a_c02300{bottom:213.626667pt;}
.y29_c02300{bottom:232.026667pt;}
.y28_c02300{bottom:250.466667pt;}
.y27_c02300{bottom:268.866667pt;}
.y26_c02300{bottom:287.266667pt;}
.y25_c02300{bottom:314.626667pt;}
.y24_c02300{bottom:342.306667pt;}
.y23_c02300{bottom:369.826667pt;}
.y22_c02300{bottom:397.506667pt;}
.y21_c02300{bottom:425.026667pt;}
.y20_c02300{bottom:452.706667pt;}
.y1f_c02300{bottom:480.253333pt;}
.y1e_c02300{bottom:507.933333pt;}
.y1d_c02300{bottom:535.453333pt;}
.y1c_c02300{bottom:563.133333pt;}
.y1b_c02300{bottom:590.653333pt;}
.y1a_c02300{bottom:618.333333pt;}
.y19_c02300{bottom:636.893333pt;}
.y18_c02300{bottom:655.293333pt;}
.y17_c02300{bottom:673.693333pt;}
.y16_c02300{bottom:692.093333pt;}
.y15_c02300{bottom:707.173333pt;}
.y14_c02300{bottom:726.213333pt;}
.y13_c02300{bottom:745.253333pt;}
.y12_c02300{bottom:764.293333pt;}
.y11_c02300{bottom:783.333333pt;}
.y10_c02300{bottom:802.373333pt;}
.ye_c02300{bottom:821.573333pt;}
.y8_c02300{bottom:840.613333pt;}
.yb_c02300{bottom:859.653333pt;}
.y7_c02300{bottom:891.813333pt;}
.y6_c02300{bottom:910.373333pt;}
.y5_c02300{bottom:928.773333pt;}
.y4_c02300{bottom:947.200000pt;}
.h5_c02300{height:18.400000pt;}
.h2_c02300{height:20.000000pt;}
.h4_c02300{height:37.440000pt;}
.h1_c02300{height:43.441250pt;}
.h7_c02300{height:57.375000pt;}
.h3_c02300{height:62.812500pt;}
.h6_c02300{height:64.500000pt;}
.h0_c02300{height:1056.000000pt;}
.w1_c02300{width:59.232000pt;}
.w4_c02300{width:70.240000pt;}
.w7_c02300{width:81.792000pt;}
.w5_c02300{width:83.872000pt;}
.w6_c02300{width:85.440000pt;}
.w2_c02300{width:226.266667pt;}
.w3_c02300{width:252.386667pt;}
.w0_c02300{width:816.000000pt;}
.x0_c02300{left:0.000000pt;}
.xe_c02300{left:7.040000pt;}
.x11_c02300{left:13.760000pt;}
.x3_c02300{left:14.720000pt;}
.xf_c02300{left:16.160000pt;}
.x13_c02300{left:19.040000pt;}
.x17_c02300{left:31.040000pt;}
.xd_c02300{left:35.040000pt;}
.x16_c02300{left:36.800000pt;}
.x15_c02300{left:37.920000pt;}
.x18_c02300{left:54.720000pt;}
.x1a_c02300{left:64.480000pt;}
.x14_c02300{left:66.240000pt;}
.x1b_c02300{left:68.480000pt;}
.x19_c02300{left:70.720000pt;}
.x1d_c02300{left:85.120000pt;}
.x9_c02300{left:91.680000pt;}
.xb_c02300{left:92.826667pt;}
.x1c_c02300{left:95.360000pt;}
.x1_c02300{left:113.472000pt;}
.x8_c02300{left:159.386667pt;}
.x1e_c02300{left:160.666667pt;}
.x5_c02300{left:237.306667pt;}
.x6_c02300{left:255.706667pt;}
.xa_c02300{left:386.306667pt;}
.x4_c02300{left:391.266667pt;}
.x7_c02300{left:434.466667pt;}
.x10_c02300{left:470.813333pt;}
.x12_c02300{left:556.893333pt;}
.xc_c02300{left:639.333333pt;}
.x2_c02300{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02301 {
    display:none;
  }
  .loading-indicator_c02301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02301 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02301 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02301" -> "#page-container .classname_c02301")
 */
.pf_c02301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02301 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02301 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02301 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02301 {overflow:visible;}
  }
}
.c_c02301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02301 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02301:after { /* webkit #35443 */
  content: '';
}
.t_c02301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02301 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02301 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02301 { /* info for Javascript */
  display:none;
}
.l_c02301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02301:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02301 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02301.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02301;src:url('chunks/assets/font_b9162afd4b7f96bb5e84c003.woff2')format("woff");}.ff1_c02301{font-family:ff1_c02301;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02301;src:url('chunks/assets/font_ee3a750f56486f946227fb9d.woff2')format("woff");}.ff2_c02301{font-family:ff2_c02301;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:ff3_c02301;src:url('chunks/assets/font_a6a6483f602bb3df41283727.woff2')format("woff");}.ff3_c02301{font-family:ff3_c02301;line-height:1.311035;font-style:normal;font-weight: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_c02301;src:url('chunks/assets/font_cb8b9cd36063c89cf5c3036d.woff2')format("woff");}.ff4_c02301{font-family:ff4_c02301;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02301{vertical-align:0.000000px;}
.ls0_c02301{letter-spacing:0.000000px;}
.sc__c02301{text-shadow:none;}
.sc0_c02301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02301{-webkit-text-stroke:0px transparent;}
.sc0_c02301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02301{word-spacing:-18.000000px;}
.ws1_c02301{word-spacing:0.000000px;}
._0_c02301{margin-left:-1.152000px;}
._1_c02301{width:1.812000px;}
._2_c02301{width:3.300000px;}
._3_c02301{width:4.920000px;}
._9_c02301{width:6.048000px;}
._6_c02301{width:7.272000px;}
._7_c02301{width:9.216000px;}
._8_c02301{width:13.608000px;}
._4_c02301{width:14.976000px;}
._5_c02301{width:16.164000px;}
.fc1_c02301{color:rgb(192,80,77);}
.fc3_c02301{color:rgb(255,255,255);}
.fc2_c02301{color:rgb(17,17,17);}
.fc0_c02301{color:rgb(0,0,0);}
.fs0_c02301{font-size:66.240000px;}
.fs1_c02301{font-size:72.000000px;}
.y0_c02301{bottom:0.000000px;}
.y13_c02301{bottom:3.960000px;}
.y10_c02301{bottom:4.140000px;}
.y12_c02301{bottom:4.320000px;}
.yd_c02301{bottom:4.500000px;}
.y3_c02301{bottom:4.680000px;}
.ye_c02301{bottom:4.860000px;}
.yb_c02301{bottom:5.220000px;}
.ya_c02301{bottom:25.920000px;}
.y2_c02301{bottom:41.796000px;}
.y1_c02301{bottom:75.456000px;}
.y28_c02301{bottom:333.255000px;}
.y27_c02301{bottom:364.395000px;}
.y26_c02301{bottom:395.355000px;}
.y25_c02301{bottom:426.495000px;}
.y24_c02301{bottom:457.455000px;}
.y23_c02301{bottom:488.595000px;}
.y22_c02301{bottom:519.555000px;}
.y21_c02301{bottom:550.725000px;}
.y20_c02301{bottom:581.685000px;}
.y1f_c02301{bottom:612.825000px;}
.y1e_c02301{bottom:643.785000px;}
.y1d_c02301{bottom:674.925000px;}
.y1c_c02301{bottom:695.805000px;}
.y1b_c02301{bottom:716.505000px;}
.y1a_c02301{bottom:737.205000px;}
.y19_c02301{bottom:757.905000px;}
.y18_c02301{bottom:774.825000px;}
.y17_c02301{bottom:796.290000px;}
.y16_c02301{bottom:817.710000px;}
.y15_c02301{bottom:839.130000px;}
.y14_c02301{bottom:860.550000px;}
.y11_c02301{bottom:882.150000px;}
.yf_c02301{bottom:903.570000px;}
.y9_c02301{bottom:924.990000px;}
.yc_c02301{bottom:946.410000px;}
.y8_c02301{bottom:982.590000px;}
.y7_c02301{bottom:1003.470000px;}
.y6_c02301{bottom:1024.170000px;}
.y5_c02301{bottom:1044.870000px;}
.y4_c02301{bottom:1065.600000px;}
.h7_c02301{height:20.520000px;}
.h5_c02301{height:20.700000px;}
.h8_c02301{height:20.736000px;}
.h2_c02301{height:22.500000px;}
.h4_c02301{height:42.120000px;}
.h1_c02301{height:48.871406px;}
.h9_c02301{height:64.546875px;}
.h3_c02301{height:70.664062px;}
.h6_c02301{height:72.562500px;}
.h0_c02301{height:1188.000000px;}
.w1_c02301{width:66.636000px;}
.w4_c02301{width:79.020000px;}
.w7_c02301{width:92.016000px;}
.w5_c02301{width:94.356000px;}
.w6_c02301{width:96.120000px;}
.w2_c02301{width:254.550000px;}
.w3_c02301{width:283.935000px;}
.w0_c02301{width:918.000000px;}
.x0_c02301{left:0.000000px;}
.xe_c02301{left:7.920000px;}
.x11_c02301{left:15.480000px;}
.x3_c02301{left:16.560000px;}
.xf_c02301{left:18.180000px;}
.x13_c02301{left:21.420000px;}
.x17_c02301{left:34.920000px;}
.xd_c02301{left:39.420000px;}
.x16_c02301{left:41.400000px;}
.x15_c02301{left:42.660000px;}
.x18_c02301{left:61.560000px;}
.x1a_c02301{left:72.540000px;}
.x14_c02301{left:74.520000px;}
.x1b_c02301{left:77.040000px;}
.x19_c02301{left:79.560000px;}
.x1d_c02301{left:95.760000px;}
.x9_c02301{left:103.140000px;}
.xb_c02301{left:104.430000px;}
.x1c_c02301{left:107.280000px;}
.x1_c02301{left:127.656000px;}
.x8_c02301{left:179.310000px;}
.x1e_c02301{left:180.750000px;}
.x6_c02301{left:283.530000px;}
.x7_c02301{left:287.670000px;}
.xa_c02301{left:434.595000px;}
.x5_c02301{left:440.175000px;}
.x4_c02301{left:488.775000px;}
.x10_c02301{left:529.665000px;}
.x12_c02301{left:626.505000px;}
.xc_c02301{left:719.250000px;}
.x2_c02301{left:820.950000px;}
@media print{
.v0_c02301{vertical-align:0.000000pt;}
.ls0_c02301{letter-spacing:0.000000pt;}
.ws0_c02301{word-spacing:-16.000000pt;}
.ws1_c02301{word-spacing:0.000000pt;}
._0_c02301{margin-left:-1.024000pt;}
._1_c02301{width:1.610667pt;}
._2_c02301{width:2.933333pt;}
._3_c02301{width:4.373333pt;}
._9_c02301{width:5.376000pt;}
._6_c02301{width:6.464000pt;}
._7_c02301{width:8.192000pt;}
._8_c02301{width:12.096000pt;}
._4_c02301{width:13.312000pt;}
._5_c02301{width:14.368000pt;}
.fs0_c02301{font-size:58.880000pt;}
.fs1_c02301{font-size:64.000000pt;}
.y0_c02301{bottom:0.000000pt;}
.y13_c02301{bottom:3.520000pt;}
.y10_c02301{bottom:3.680000pt;}
.y12_c02301{bottom:3.840000pt;}
.yd_c02301{bottom:4.000000pt;}
.y3_c02301{bottom:4.160000pt;}
.ye_c02301{bottom:4.320000pt;}
.yb_c02301{bottom:4.640000pt;}
.ya_c02301{bottom:23.040000pt;}
.y2_c02301{bottom:37.152000pt;}
.y1_c02301{bottom:67.072000pt;}
.y28_c02301{bottom:296.226667pt;}
.y27_c02301{bottom:323.906667pt;}
.y26_c02301{bottom:351.426667pt;}
.y25_c02301{bottom:379.106667pt;}
.y24_c02301{bottom:406.626667pt;}
.y23_c02301{bottom:434.306667pt;}
.y22_c02301{bottom:461.826667pt;}
.y21_c02301{bottom:489.533333pt;}
.y20_c02301{bottom:517.053333pt;}
.y1f_c02301{bottom:544.733333pt;}
.y1e_c02301{bottom:572.253333pt;}
.y1d_c02301{bottom:599.933333pt;}
.y1c_c02301{bottom:618.493333pt;}
.y1b_c02301{bottom:636.893333pt;}
.y1a_c02301{bottom:655.293333pt;}
.y19_c02301{bottom:673.693333pt;}
.y18_c02301{bottom:688.733333pt;}
.y17_c02301{bottom:707.813333pt;}
.y16_c02301{bottom:726.853333pt;}
.y15_c02301{bottom:745.893333pt;}
.y14_c02301{bottom:764.933333pt;}
.y11_c02301{bottom:784.133333pt;}
.yf_c02301{bottom:803.173333pt;}
.y9_c02301{bottom:822.213333pt;}
.yc_c02301{bottom:841.253333pt;}
.y8_c02301{bottom:873.413333pt;}
.y7_c02301{bottom:891.973333pt;}
.y6_c02301{bottom:910.373333pt;}
.y5_c02301{bottom:928.773333pt;}
.y4_c02301{bottom:947.200000pt;}
.h7_c02301{height:18.240000pt;}
.h5_c02301{height:18.400000pt;}
.h8_c02301{height:18.432000pt;}
.h2_c02301{height:20.000000pt;}
.h4_c02301{height:37.440000pt;}
.h1_c02301{height:43.441250pt;}
.h9_c02301{height:57.375000pt;}
.h3_c02301{height:62.812500pt;}
.h6_c02301{height:64.500000pt;}
.h0_c02301{height:1056.000000pt;}
.w1_c02301{width:59.232000pt;}
.w4_c02301{width:70.240000pt;}
.w7_c02301{width:81.792000pt;}
.w5_c02301{width:83.872000pt;}
.w6_c02301{width:85.440000pt;}
.w2_c02301{width:226.266667pt;}
.w3_c02301{width:252.386667pt;}
.w0_c02301{width:816.000000pt;}
.x0_c02301{left:0.000000pt;}
.xe_c02301{left:7.040000pt;}
.x11_c02301{left:13.760000pt;}
.x3_c02301{left:14.720000pt;}
.xf_c02301{left:16.160000pt;}
.x13_c02301{left:19.040000pt;}
.x17_c02301{left:31.040000pt;}
.xd_c02301{left:35.040000pt;}
.x16_c02301{left:36.800000pt;}
.x15_c02301{left:37.920000pt;}
.x18_c02301{left:54.720000pt;}
.x1a_c02301{left:64.480000pt;}
.x14_c02301{left:66.240000pt;}
.x1b_c02301{left:68.480000pt;}
.x19_c02301{left:70.720000pt;}
.x1d_c02301{left:85.120000pt;}
.x9_c02301{left:91.680000pt;}
.xb_c02301{left:92.826667pt;}
.x1c_c02301{left:95.360000pt;}
.x1_c02301{left:113.472000pt;}
.x8_c02301{left:159.386667pt;}
.x1e_c02301{left:160.666667pt;}
.x6_c02301{left:252.026667pt;}
.x7_c02301{left:255.706667pt;}
.xa_c02301{left:386.306667pt;}
.x5_c02301{left:391.266667pt;}
.x4_c02301{left:434.466667pt;}
.x10_c02301{left:470.813333pt;}
.x12_c02301{left:556.893333pt;}
.xc_c02301{left:639.333333pt;}
.x2_c02301{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02302 {
    display:none;
  }
  .loading-indicator_c02302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02302 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02302 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02302" -> "#page-container .classname_c02302")
 */
.pf_c02302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02302 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02302 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02302 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02302 {overflow:visible;}
  }
}
.c_c02302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02302 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02302:after { /* webkit #35443 */
  content: '';
}
.t_c02302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02302 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02302 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02302 { /* info for Javascript */
  display:none;
}
.l_c02302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02302:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02302 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02302.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02302;src:url('chunks/assets/font_062d671d33538fd881a74bf6.woff2')format("woff");}.ff1_c02302{font-family:ff1_c02302;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02302;src:url('chunks/assets/font_a66482c0b4937ea6a984519e.woff2')format("woff");}.ff2_c02302{font-family:ff2_c02302;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:ff3_c02302;src:url('chunks/assets/font_a6a6483f602bb3df41283727.woff2')format("woff");}.ff3_c02302{font-family:ff3_c02302;line-height:1.311035;font-style:normal;font-weight: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_c02302;src:url('chunks/assets/font_3b980f613bd9bffd3010bb8f.woff2')format("woff");}.ff4_c02302{font-family:ff4_c02302;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02302{vertical-align:0.000000px;}
.ls1_c02302{letter-spacing:-0.144000px;}
.ls0_c02302{letter-spacing:0.000000px;}
.ls2_c02302{letter-spacing:0.072000px;}
.sc__c02302{text-shadow:none;}
.sc0_c02302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02302{-webkit-text-stroke:0px transparent;}
.sc0_c02302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02302{word-spacing:-18.000000px;}
.ws1_c02302{word-spacing:-17.856000px;}
.ws2_c02302{word-spacing:0.000000px;}
._0_c02302{margin-left:-1.152000px;}
._1_c02302{width:1.812000px;}
._2_c02302{width:3.300000px;}
._3_c02302{width:4.920000px;}
._4_c02302{width:7.776000px;}
._6_c02302{width:12.600000px;}
._7_c02302{width:13.608000px;}
._5_c02302{width:19.368000px;}
.fc1_c02302{color:rgb(192,80,77);}
.fc3_c02302{color:rgb(255,255,255);}
.fc2_c02302{color:rgb(17,17,17);}
.fc0_c02302{color:rgb(0,0,0);}
.fs0_c02302{font-size:66.240000px;}
.fs1_c02302{font-size:72.000000px;}
.y0_c02302{bottom:0.000000px;}
.yf_c02302{bottom:4.140000px;}
.yc_c02302{bottom:4.500000px;}
.y3_c02302{bottom:4.680000px;}
.yd_c02302{bottom:4.860000px;}
.ya_c02302{bottom:5.220000px;}
.y9_c02302{bottom:25.920000px;}
.y2_c02302{bottom:41.796000px;}
.y1_c02302{bottom:75.456000px;}
.y22_c02302{bottom:447.195000px;}
.y21_c02302{bottom:478.155000px;}
.y20_c02302{bottom:509.295000px;}
.y1f_c02302{bottom:540.285000px;}
.y1e_c02302{bottom:571.425000px;}
.y1d_c02302{bottom:602.385000px;}
.y1c_c02302{bottom:633.525000px;}
.y1b_c02302{bottom:664.485000px;}
.y1a_c02302{bottom:695.625000px;}
.y19_c02302{bottom:716.505000px;}
.y18_c02302{bottom:737.205000px;}
.y17_c02302{bottom:757.905000px;}
.y16_c02302{bottom:778.605000px;}
.y15_c02302{bottom:795.570000px;}
.y14_c02302{bottom:816.990000px;}
.y13_c02302{bottom:838.410000px;}
.y12_c02302{bottom:859.830000px;}
.y11_c02302{bottom:881.250000px;}
.y10_c02302{bottom:902.670000px;}
.ye_c02302{bottom:924.270000px;}
.y8_c02302{bottom:945.690000px;}
.yb_c02302{bottom:967.110000px;}
.y7_c02302{bottom:1003.290000px;}
.y6_c02302{bottom:1024.170000px;}
.y5_c02302{bottom:1044.870000px;}
.y4_c02302{bottom:1065.600000px;}
.h5_c02302{height:20.700000px;}
.h2_c02302{height:22.500000px;}
.h4_c02302{height:42.120000px;}
.h1_c02302{height:48.871406px;}
.h7_c02302{height:64.546875px;}
.h3_c02302{height:70.664062px;}
.h6_c02302{height:72.562500px;}
.h0_c02302{height:1188.000000px;}
.w1_c02302{width:66.636000px;}
.w4_c02302{width:79.020000px;}
.w7_c02302{width:92.016000px;}
.w5_c02302{width:94.356000px;}
.w6_c02302{width:96.120000px;}
.w2_c02302{width:254.550000px;}
.w3_c02302{width:283.935000px;}
.w0_c02302{width:918.000000px;}
.x0_c02302{left:0.000000px;}
.xe_c02302{left:7.920000px;}
.x11_c02302{left:15.480000px;}
.x3_c02302{left:16.560000px;}
.xf_c02302{left:18.180000px;}
.x13_c02302{left:21.420000px;}
.x17_c02302{left:34.920000px;}
.xd_c02302{left:39.420000px;}
.x16_c02302{left:41.400000px;}
.x15_c02302{left:42.660000px;}
.x18_c02302{left:61.560000px;}
.x1a_c02302{left:72.540000px;}
.x14_c02302{left:74.520000px;}
.x1b_c02302{left:77.040000px;}
.x19_c02302{left:79.560000px;}
.x1d_c02302{left:95.760000px;}
.x9_c02302{left:103.140000px;}
.xb_c02302{left:104.430000px;}
.x1c_c02302{left:107.280000px;}
.x1_c02302{left:127.656000px;}
.x8_c02302{left:179.310000px;}
.x1e_c02302{left:180.750000px;}
.x5_c02302{left:272.550000px;}
.x6_c02302{left:287.670000px;}
.xa_c02302{left:434.595000px;}
.x4_c02302{left:440.175000px;}
.x7_c02302{left:488.775000px;}
.x10_c02302{left:529.665000px;}
.x12_c02302{left:626.505000px;}
.xc_c02302{left:719.250000px;}
.x2_c02302{left:820.950000px;}
@media print{
.v0_c02302{vertical-align:0.000000pt;}
.ls1_c02302{letter-spacing:-0.128000pt;}
.ls0_c02302{letter-spacing:0.000000pt;}
.ls2_c02302{letter-spacing:0.064000pt;}
.ws0_c02302{word-spacing:-16.000000pt;}
.ws1_c02302{word-spacing:-15.872000pt;}
.ws2_c02302{word-spacing:0.000000pt;}
._0_c02302{margin-left:-1.024000pt;}
._1_c02302{width:1.610667pt;}
._2_c02302{width:2.933333pt;}
._3_c02302{width:4.373333pt;}
._4_c02302{width:6.912000pt;}
._6_c02302{width:11.200000pt;}
._7_c02302{width:12.096000pt;}
._5_c02302{width:17.216000pt;}
.fs0_c02302{font-size:58.880000pt;}
.fs1_c02302{font-size:64.000000pt;}
.y0_c02302{bottom:0.000000pt;}
.yf_c02302{bottom:3.680000pt;}
.yc_c02302{bottom:4.000000pt;}
.y3_c02302{bottom:4.160000pt;}
.yd_c02302{bottom:4.320000pt;}
.ya_c02302{bottom:4.640000pt;}
.y9_c02302{bottom:23.040000pt;}
.y2_c02302{bottom:37.152000pt;}
.y1_c02302{bottom:67.072000pt;}
.y22_c02302{bottom:397.506667pt;}
.y21_c02302{bottom:425.026667pt;}
.y20_c02302{bottom:452.706667pt;}
.y1f_c02302{bottom:480.253333pt;}
.y1e_c02302{bottom:507.933333pt;}
.y1d_c02302{bottom:535.453333pt;}
.y1c_c02302{bottom:563.133333pt;}
.y1b_c02302{bottom:590.653333pt;}
.y1a_c02302{bottom:618.333333pt;}
.y19_c02302{bottom:636.893333pt;}
.y18_c02302{bottom:655.293333pt;}
.y17_c02302{bottom:673.693333pt;}
.y16_c02302{bottom:692.093333pt;}
.y15_c02302{bottom:707.173333pt;}
.y14_c02302{bottom:726.213333pt;}
.y13_c02302{bottom:745.253333pt;}
.y12_c02302{bottom:764.293333pt;}
.y11_c02302{bottom:783.333333pt;}
.y10_c02302{bottom:802.373333pt;}
.ye_c02302{bottom:821.573333pt;}
.y8_c02302{bottom:840.613333pt;}
.yb_c02302{bottom:859.653333pt;}
.y7_c02302{bottom:891.813333pt;}
.y6_c02302{bottom:910.373333pt;}
.y5_c02302{bottom:928.773333pt;}
.y4_c02302{bottom:947.200000pt;}
.h5_c02302{height:18.400000pt;}
.h2_c02302{height:20.000000pt;}
.h4_c02302{height:37.440000pt;}
.h1_c02302{height:43.441250pt;}
.h7_c02302{height:57.375000pt;}
.h3_c02302{height:62.812500pt;}
.h6_c02302{height:64.500000pt;}
.h0_c02302{height:1056.000000pt;}
.w1_c02302{width:59.232000pt;}
.w4_c02302{width:70.240000pt;}
.w7_c02302{width:81.792000pt;}
.w5_c02302{width:83.872000pt;}
.w6_c02302{width:85.440000pt;}
.w2_c02302{width:226.266667pt;}
.w3_c02302{width:252.386667pt;}
.w0_c02302{width:816.000000pt;}
.x0_c02302{left:0.000000pt;}
.xe_c02302{left:7.040000pt;}
.x11_c02302{left:13.760000pt;}
.x3_c02302{left:14.720000pt;}
.xf_c02302{left:16.160000pt;}
.x13_c02302{left:19.040000pt;}
.x17_c02302{left:31.040000pt;}
.xd_c02302{left:35.040000pt;}
.x16_c02302{left:36.800000pt;}
.x15_c02302{left:37.920000pt;}
.x18_c02302{left:54.720000pt;}
.x1a_c02302{left:64.480000pt;}
.x14_c02302{left:66.240000pt;}
.x1b_c02302{left:68.480000pt;}
.x19_c02302{left:70.720000pt;}
.x1d_c02302{left:85.120000pt;}
.x9_c02302{left:91.680000pt;}
.xb_c02302{left:92.826667pt;}
.x1c_c02302{left:95.360000pt;}
.x1_c02302{left:113.472000pt;}
.x8_c02302{left:159.386667pt;}
.x1e_c02302{left:160.666667pt;}
.x5_c02302{left:242.266667pt;}
.x6_c02302{left:255.706667pt;}
.xa_c02302{left:386.306667pt;}
.x4_c02302{left:391.266667pt;}
.x7_c02302{left:434.466667pt;}
.x10_c02302{left:470.813333pt;}
.x12_c02302{left:556.893333pt;}
.xc_c02302{left:639.333333pt;}
.x2_c02302{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02303 {
    display:none;
  }
  .loading-indicator_c02303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02303 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02303 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02303" -> "#page-container .classname_c02303")
 */
.pf_c02303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02303 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02303 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02303 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02303 {overflow:visible;}
  }
}
.c_c02303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02303 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02303:after { /* webkit #35443 */
  content: '';
}
.t_c02303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02303 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02303 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02303 { /* info for Javascript */
  display:none;
}
.l_c02303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02303:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02303 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02303.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02303;src:url('chunks/assets/font_75d22214367b9690418b3075.woff2')format("woff");}.ff1_c02303{font-family:ff1_c02303;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02303;src:url('chunks/assets/font_0f9cf57f12059a362ee3895d.woff2')format("woff");}.ff2_c02303{font-family:ff2_c02303;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:ff3_c02303;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff3_c02303{font-family:ff3_c02303;line-height:1.311035;font-style:normal;font-weight: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_c02303;src:url('chunks/assets/font_44aa8903984c7737bec23f93.woff2')format("woff");}.ff4_c02303{font-family:ff4_c02303;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02303{vertical-align:0.000000px;}
.ls0_c02303{letter-spacing:0.000000px;}
.sc__c02303{text-shadow:none;}
.sc0_c02303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02303{-webkit-text-stroke:0px transparent;}
.sc0_c02303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02303{word-spacing:-18.000000px;}
.ws1_c02303{word-spacing:0.000000px;}
._0_c02303{margin-left:-1.152000px;}
._1_c02303{width:1.092000px;}
._2_c02303{width:2.928000px;}
._3_c02303{width:4.176000px;}
._4_c02303{width:5.760000px;}
._5_c02303{width:7.272000px;}
._6_c02303{width:9.216000px;}
._7_c02303{width:13.536000px;}
._8_c02303{width:37.224000px;}
._9_c02303{width:38.520000px;}
.fc1_c02303{color:rgb(192,80,77);}
.fc3_c02303{color:rgb(255,255,255);}
.fc2_c02303{color:rgb(17,17,17);}
.fc0_c02303{color:rgb(0,0,0);}
.fs0_c02303{font-size:66.240000px;}
.fs1_c02303{font-size:72.000000px;}
.y0_c02303{bottom:0.000000px;}
.yf_c02303{bottom:4.140000px;}
.yc_c02303{bottom:4.500000px;}
.y3_c02303{bottom:4.680000px;}
.yd_c02303{bottom:4.860000px;}
.ya_c02303{bottom:5.220000px;}
.y9_c02303{bottom:25.920000px;}
.y2_c02303{bottom:41.796000px;}
.y1_c02303{bottom:75.456000px;}
.y23_c02303{bottom:416.055000px;}
.y22_c02303{bottom:447.195000px;}
.y21_c02303{bottom:478.155000px;}
.y20_c02303{bottom:509.295000px;}
.y1f_c02303{bottom:540.285000px;}
.y1e_c02303{bottom:571.425000px;}
.y1d_c02303{bottom:602.385000px;}
.y1c_c02303{bottom:633.525000px;}
.y1b_c02303{bottom:664.485000px;}
.y1a_c02303{bottom:695.625000px;}
.y19_c02303{bottom:716.505000px;}
.y18_c02303{bottom:737.205000px;}
.y17_c02303{bottom:757.905000px;}
.y16_c02303{bottom:778.605000px;}
.y15_c02303{bottom:795.570000px;}
.y14_c02303{bottom:816.990000px;}
.y13_c02303{bottom:838.410000px;}
.y12_c02303{bottom:859.830000px;}
.y11_c02303{bottom:881.250000px;}
.y10_c02303{bottom:902.670000px;}
.ye_c02303{bottom:924.270000px;}
.y8_c02303{bottom:945.690000px;}
.yb_c02303{bottom:967.110000px;}
.y7_c02303{bottom:1003.290000px;}
.y6_c02303{bottom:1024.170000px;}
.y5_c02303{bottom:1044.870000px;}
.y4_c02303{bottom:1065.600000px;}
.h5_c02303{height:20.700000px;}
.h2_c02303{height:22.500000px;}
.h4_c02303{height:42.120000px;}
.h1_c02303{height:48.871406px;}
.h7_c02303{height:64.546875px;}
.h3_c02303{height:70.664062px;}
.h6_c02303{height:72.562500px;}
.h0_c02303{height:1188.000000px;}
.w1_c02303{width:66.636000px;}
.w4_c02303{width:79.020000px;}
.w7_c02303{width:92.016000px;}
.w5_c02303{width:94.356000px;}
.w6_c02303{width:96.120000px;}
.w2_c02303{width:254.550000px;}
.w3_c02303{width:283.935000px;}
.w0_c02303{width:918.000000px;}
.x0_c02303{left:0.000000px;}
.xe_c02303{left:7.920000px;}
.x11_c02303{left:15.480000px;}
.x3_c02303{left:16.560000px;}
.xf_c02303{left:18.180000px;}
.x13_c02303{left:21.420000px;}
.x17_c02303{left:34.920000px;}
.xd_c02303{left:39.420000px;}
.x16_c02303{left:41.400000px;}
.x15_c02303{left:42.660000px;}
.x18_c02303{left:61.560000px;}
.x1a_c02303{left:72.540000px;}
.x14_c02303{left:74.520000px;}
.x1b_c02303{left:77.040000px;}
.x19_c02303{left:79.560000px;}
.x1d_c02303{left:95.760000px;}
.x9_c02303{left:103.140000px;}
.xb_c02303{left:104.430000px;}
.x1c_c02303{left:107.280000px;}
.x1_c02303{left:127.656000px;}
.x8_c02303{left:179.310000px;}
.x1e_c02303{left:180.750000px;}
.x5_c02303{left:267.510000px;}
.x6_c02303{left:287.670000px;}
.xa_c02303{left:434.595000px;}
.x4_c02303{left:440.175000px;}
.x7_c02303{left:488.775000px;}
.x10_c02303{left:529.665000px;}
.x12_c02303{left:626.505000px;}
.xc_c02303{left:719.250000px;}
.x2_c02303{left:820.950000px;}
@media print{
.v0_c02303{vertical-align:0.000000pt;}
.ls0_c02303{letter-spacing:0.000000pt;}
.ws0_c02303{word-spacing:-16.000000pt;}
.ws1_c02303{word-spacing:0.000000pt;}
._0_c02303{margin-left:-1.024000pt;}
._1_c02303{width:0.970667pt;}
._2_c02303{width:2.602667pt;}
._3_c02303{width:3.712000pt;}
._4_c02303{width:5.120000pt;}
._5_c02303{width:6.464000pt;}
._6_c02303{width:8.192000pt;}
._7_c02303{width:12.032000pt;}
._8_c02303{width:33.088000pt;}
._9_c02303{width:34.240000pt;}
.fs0_c02303{font-size:58.880000pt;}
.fs1_c02303{font-size:64.000000pt;}
.y0_c02303{bottom:0.000000pt;}
.yf_c02303{bottom:3.680000pt;}
.yc_c02303{bottom:4.000000pt;}
.y3_c02303{bottom:4.160000pt;}
.yd_c02303{bottom:4.320000pt;}
.ya_c02303{bottom:4.640000pt;}
.y9_c02303{bottom:23.040000pt;}
.y2_c02303{bottom:37.152000pt;}
.y1_c02303{bottom:67.072000pt;}
.y23_c02303{bottom:369.826667pt;}
.y22_c02303{bottom:397.506667pt;}
.y21_c02303{bottom:425.026667pt;}
.y20_c02303{bottom:452.706667pt;}
.y1f_c02303{bottom:480.253333pt;}
.y1e_c02303{bottom:507.933333pt;}
.y1d_c02303{bottom:535.453333pt;}
.y1c_c02303{bottom:563.133333pt;}
.y1b_c02303{bottom:590.653333pt;}
.y1a_c02303{bottom:618.333333pt;}
.y19_c02303{bottom:636.893333pt;}
.y18_c02303{bottom:655.293333pt;}
.y17_c02303{bottom:673.693333pt;}
.y16_c02303{bottom:692.093333pt;}
.y15_c02303{bottom:707.173333pt;}
.y14_c02303{bottom:726.213333pt;}
.y13_c02303{bottom:745.253333pt;}
.y12_c02303{bottom:764.293333pt;}
.y11_c02303{bottom:783.333333pt;}
.y10_c02303{bottom:802.373333pt;}
.ye_c02303{bottom:821.573333pt;}
.y8_c02303{bottom:840.613333pt;}
.yb_c02303{bottom:859.653333pt;}
.y7_c02303{bottom:891.813333pt;}
.y6_c02303{bottom:910.373333pt;}
.y5_c02303{bottom:928.773333pt;}
.y4_c02303{bottom:947.200000pt;}
.h5_c02303{height:18.400000pt;}
.h2_c02303{height:20.000000pt;}
.h4_c02303{height:37.440000pt;}
.h1_c02303{height:43.441250pt;}
.h7_c02303{height:57.375000pt;}
.h3_c02303{height:62.812500pt;}
.h6_c02303{height:64.500000pt;}
.h0_c02303{height:1056.000000pt;}
.w1_c02303{width:59.232000pt;}
.w4_c02303{width:70.240000pt;}
.w7_c02303{width:81.792000pt;}
.w5_c02303{width:83.872000pt;}
.w6_c02303{width:85.440000pt;}
.w2_c02303{width:226.266667pt;}
.w3_c02303{width:252.386667pt;}
.w0_c02303{width:816.000000pt;}
.x0_c02303{left:0.000000pt;}
.xe_c02303{left:7.040000pt;}
.x11_c02303{left:13.760000pt;}
.x3_c02303{left:14.720000pt;}
.xf_c02303{left:16.160000pt;}
.x13_c02303{left:19.040000pt;}
.x17_c02303{left:31.040000pt;}
.xd_c02303{left:35.040000pt;}
.x16_c02303{left:36.800000pt;}
.x15_c02303{left:37.920000pt;}
.x18_c02303{left:54.720000pt;}
.x1a_c02303{left:64.480000pt;}
.x14_c02303{left:66.240000pt;}
.x1b_c02303{left:68.480000pt;}
.x19_c02303{left:70.720000pt;}
.x1d_c02303{left:85.120000pt;}
.x9_c02303{left:91.680000pt;}
.xb_c02303{left:92.826667pt;}
.x1c_c02303{left:95.360000pt;}
.x1_c02303{left:113.472000pt;}
.x8_c02303{left:159.386667pt;}
.x1e_c02303{left:160.666667pt;}
.x5_c02303{left:237.786667pt;}
.x6_c02303{left:255.706667pt;}
.xa_c02303{left:386.306667pt;}
.x4_c02303{left:391.266667pt;}
.x7_c02303{left:434.466667pt;}
.x10_c02303{left:470.813333pt;}
.x12_c02303{left:556.893333pt;}
.xc_c02303{left:639.333333pt;}
.x2_c02303{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02304 {
    display:none;
  }
  .loading-indicator_c02304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02304 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02304 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02304" -> "#page-container .classname_c02304")
 */
.pf_c02304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02304 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02304 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02304 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02304 {overflow:visible;}
  }
}
.c_c02304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02304 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02304:after { /* webkit #35443 */
  content: '';
}
.t_c02304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02304 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02304 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02304 { /* info for Javascript */
  display:none;
}
.l_c02304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02304:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02304 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02304.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02304;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02304{font-family:ff1_c02304;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02304;src:url('chunks/assets/font_c675fd002b0b49a1b61a501a.woff2')format("woff");}.ff2_c02304{font-family:ff2_c02304;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:ff3_c02304;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff3_c02304{font-family:ff3_c02304;line-height:1.311035;font-style:normal;font-weight: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_c02304;src:url('chunks/assets/font_a08e93cb543998d301b24cce.woff2')format("woff");}.ff4_c02304{font-family:ff4_c02304;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02304{vertical-align:0.000000px;}
.ls1_c02304{letter-spacing:0.000000px;}
.ls0_c02304{letter-spacing:4.320000px;}
.sc__c02304{text-shadow:none;}
.sc0_c02304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02304{-webkit-text-stroke:0px transparent;}
.sc0_c02304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02304{word-spacing:-18.000000px;}
.ws1_c02304{word-spacing:0.000000px;}
._0_c02304{margin-left:-1.152000px;}
._1_c02304{width:1.092000px;}
._2_c02304{width:2.928000px;}
._3_c02304{width:4.176000px;}
._9_c02304{width:5.688000px;}
._6_c02304{width:7.272000px;}
._4_c02304{width:8.496000px;}
._5_c02304{width:9.612000px;}
._8_c02304{width:16.992000px;}
._7_c02304{width:22.320000px;}
.fc1_c02304{color:rgb(192,80,77);}
.fc3_c02304{color:rgb(255,255,255);}
.fc2_c02304{color:rgb(17,17,17);}
.fc0_c02304{color:rgb(0,0,0);}
.fs0_c02304{font-size:66.240000px;}
.fs1_c02304{font-size:72.000000px;}
.y0_c02304{bottom:0.000000px;}
.yf_c02304{bottom:4.140000px;}
.yc_c02304{bottom:4.500000px;}
.y3_c02304{bottom:4.680000px;}
.yd_c02304{bottom:4.860000px;}
.ya_c02304{bottom:5.220000px;}
.y9_c02304{bottom:25.920000px;}
.y2_c02304{bottom:41.796000px;}
.y1_c02304{bottom:75.456000px;}
.y22_c02304{bottom:447.195000px;}
.y21_c02304{bottom:478.155000px;}
.y20_c02304{bottom:509.295000px;}
.y1f_c02304{bottom:540.285000px;}
.y1e_c02304{bottom:571.425000px;}
.y1d_c02304{bottom:602.385000px;}
.y1c_c02304{bottom:633.525000px;}
.y1b_c02304{bottom:664.485000px;}
.y1a_c02304{bottom:695.625000px;}
.y19_c02304{bottom:716.505000px;}
.y18_c02304{bottom:737.205000px;}
.y17_c02304{bottom:757.905000px;}
.y16_c02304{bottom:778.605000px;}
.y15_c02304{bottom:795.570000px;}
.y14_c02304{bottom:816.990000px;}
.y13_c02304{bottom:838.410000px;}
.y12_c02304{bottom:859.830000px;}
.y11_c02304{bottom:881.250000px;}
.y10_c02304{bottom:902.670000px;}
.ye_c02304{bottom:924.270000px;}
.y8_c02304{bottom:945.690000px;}
.yb_c02304{bottom:967.110000px;}
.y7_c02304{bottom:1003.290000px;}
.y6_c02304{bottom:1024.170000px;}
.y5_c02304{bottom:1044.870000px;}
.y4_c02304{bottom:1065.600000px;}
.h5_c02304{height:20.700000px;}
.h2_c02304{height:22.500000px;}
.h4_c02304{height:42.120000px;}
.h1_c02304{height:48.871406px;}
.h7_c02304{height:64.546875px;}
.h3_c02304{height:70.664062px;}
.h6_c02304{height:72.562500px;}
.h0_c02304{height:1188.000000px;}
.w1_c02304{width:66.636000px;}
.w4_c02304{width:79.020000px;}
.w7_c02304{width:92.016000px;}
.w5_c02304{width:94.356000px;}
.w6_c02304{width:96.120000px;}
.w2_c02304{width:254.550000px;}
.w3_c02304{width:283.935000px;}
.w0_c02304{width:918.000000px;}
.x0_c02304{left:0.000000px;}
.xe_c02304{left:7.920000px;}
.x11_c02304{left:15.480000px;}
.x3_c02304{left:16.560000px;}
.xf_c02304{left:18.180000px;}
.x13_c02304{left:21.420000px;}
.x17_c02304{left:34.920000px;}
.xd_c02304{left:39.420000px;}
.x16_c02304{left:41.400000px;}
.x15_c02304{left:42.660000px;}
.x18_c02304{left:61.560000px;}
.x1a_c02304{left:72.540000px;}
.x14_c02304{left:74.520000px;}
.x1b_c02304{left:77.040000px;}
.x19_c02304{left:79.560000px;}
.x1d_c02304{left:95.760000px;}
.x9_c02304{left:103.140000px;}
.xb_c02304{left:104.430000px;}
.x1c_c02304{left:107.280000px;}
.x1_c02304{left:127.656000px;}
.x8_c02304{left:179.310000px;}
.x1e_c02304{left:180.750000px;}
.x5_c02304{left:273.630000px;}
.x6_c02304{left:287.670000px;}
.xa_c02304{left:434.595000px;}
.x4_c02304{left:440.175000px;}
.x7_c02304{left:488.775000px;}
.x10_c02304{left:529.665000px;}
.x12_c02304{left:626.505000px;}
.xc_c02304{left:719.250000px;}
.x2_c02304{left:820.950000px;}
@media print{
.v0_c02304{vertical-align:0.000000pt;}
.ls1_c02304{letter-spacing:0.000000pt;}
.ls0_c02304{letter-spacing:3.840000pt;}
.ws0_c02304{word-spacing:-16.000000pt;}
.ws1_c02304{word-spacing:0.000000pt;}
._0_c02304{margin-left:-1.024000pt;}
._1_c02304{width:0.970667pt;}
._2_c02304{width:2.602667pt;}
._3_c02304{width:3.712000pt;}
._9_c02304{width:5.056000pt;}
._6_c02304{width:6.464000pt;}
._4_c02304{width:7.552000pt;}
._5_c02304{width:8.544000pt;}
._8_c02304{width:15.104000pt;}
._7_c02304{width:19.840000pt;}
.fs0_c02304{font-size:58.880000pt;}
.fs1_c02304{font-size:64.000000pt;}
.y0_c02304{bottom:0.000000pt;}
.yf_c02304{bottom:3.680000pt;}
.yc_c02304{bottom:4.000000pt;}
.y3_c02304{bottom:4.160000pt;}
.yd_c02304{bottom:4.320000pt;}
.ya_c02304{bottom:4.640000pt;}
.y9_c02304{bottom:23.040000pt;}
.y2_c02304{bottom:37.152000pt;}
.y1_c02304{bottom:67.072000pt;}
.y22_c02304{bottom:397.506667pt;}
.y21_c02304{bottom:425.026667pt;}
.y20_c02304{bottom:452.706667pt;}
.y1f_c02304{bottom:480.253333pt;}
.y1e_c02304{bottom:507.933333pt;}
.y1d_c02304{bottom:535.453333pt;}
.y1c_c02304{bottom:563.133333pt;}
.y1b_c02304{bottom:590.653333pt;}
.y1a_c02304{bottom:618.333333pt;}
.y19_c02304{bottom:636.893333pt;}
.y18_c02304{bottom:655.293333pt;}
.y17_c02304{bottom:673.693333pt;}
.y16_c02304{bottom:692.093333pt;}
.y15_c02304{bottom:707.173333pt;}
.y14_c02304{bottom:726.213333pt;}
.y13_c02304{bottom:745.253333pt;}
.y12_c02304{bottom:764.293333pt;}
.y11_c02304{bottom:783.333333pt;}
.y10_c02304{bottom:802.373333pt;}
.ye_c02304{bottom:821.573333pt;}
.y8_c02304{bottom:840.613333pt;}
.yb_c02304{bottom:859.653333pt;}
.y7_c02304{bottom:891.813333pt;}
.y6_c02304{bottom:910.373333pt;}
.y5_c02304{bottom:928.773333pt;}
.y4_c02304{bottom:947.200000pt;}
.h5_c02304{height:18.400000pt;}
.h2_c02304{height:20.000000pt;}
.h4_c02304{height:37.440000pt;}
.h1_c02304{height:43.441250pt;}
.h7_c02304{height:57.375000pt;}
.h3_c02304{height:62.812500pt;}
.h6_c02304{height:64.500000pt;}
.h0_c02304{height:1056.000000pt;}
.w1_c02304{width:59.232000pt;}
.w4_c02304{width:70.240000pt;}
.w7_c02304{width:81.792000pt;}
.w5_c02304{width:83.872000pt;}
.w6_c02304{width:85.440000pt;}
.w2_c02304{width:226.266667pt;}
.w3_c02304{width:252.386667pt;}
.w0_c02304{width:816.000000pt;}
.x0_c02304{left:0.000000pt;}
.xe_c02304{left:7.040000pt;}
.x11_c02304{left:13.760000pt;}
.x3_c02304{left:14.720000pt;}
.xf_c02304{left:16.160000pt;}
.x13_c02304{left:19.040000pt;}
.x17_c02304{left:31.040000pt;}
.xd_c02304{left:35.040000pt;}
.x16_c02304{left:36.800000pt;}
.x15_c02304{left:37.920000pt;}
.x18_c02304{left:54.720000pt;}
.x1a_c02304{left:64.480000pt;}
.x14_c02304{left:66.240000pt;}
.x1b_c02304{left:68.480000pt;}
.x19_c02304{left:70.720000pt;}
.x1d_c02304{left:85.120000pt;}
.x9_c02304{left:91.680000pt;}
.xb_c02304{left:92.826667pt;}
.x1c_c02304{left:95.360000pt;}
.x1_c02304{left:113.472000pt;}
.x8_c02304{left:159.386667pt;}
.x1e_c02304{left:160.666667pt;}
.x5_c02304{left:243.226667pt;}
.x6_c02304{left:255.706667pt;}
.xa_c02304{left:386.306667pt;}
.x4_c02304{left:391.266667pt;}
.x7_c02304{left:434.466667pt;}
.x10_c02304{left:470.813333pt;}
.x12_c02304{left:556.893333pt;}
.xc_c02304{left:639.333333pt;}
.x2_c02304{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02305 {
    display:none;
  }
  .loading-indicator_c02305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02305 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02305 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02305" -> "#page-container .classname_c02305")
 */
.pf_c02305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02305 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02305 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02305 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02305 {overflow:visible;}
  }
}
.c_c02305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02305 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02305:after { /* webkit #35443 */
  content: '';
}
.t_c02305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02305 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02305 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02305 { /* info for Javascript */
  display:none;
}
.l_c02305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02305:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02305 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02305.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02305;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02305{font-family:ff1_c02305;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02305;src:url('chunks/assets/font_727d9d26c57574c0f0999d55.woff2')format("woff");}.ff2_c02305{font-family:ff2_c02305;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:ff3_c02305;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff3_c02305{font-family:ff3_c02305;line-height:1.311035;font-style:normal;font-weight: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_c02305;src:url('chunks/assets/font_d79bd1636245cefedf611777.woff2')format("woff");}.ff4_c02305{font-family:ff4_c02305;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02305{vertical-align:0.000000px;}
.ls1_c02305{letter-spacing:-0.072000px;}
.ls0_c02305{letter-spacing:0.000000px;}
.sc__c02305{text-shadow:none;}
.sc0_c02305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02305{-webkit-text-stroke:0px transparent;}
.sc0_c02305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02305{word-spacing:-18.000000px;}
.ws1_c02305{word-spacing:-17.928000px;}
.ws2_c02305{word-spacing:0.000000px;}
._9_c02305{margin-left:-2.652000px;}
._0_c02305{margin-left:-1.152000px;}
._1_c02305{width:1.092000px;}
._2_c02305{width:2.928000px;}
._3_c02305{width:4.788000px;}
._4_c02305{width:6.984000px;}
._5_c02305{width:8.064000px;}
._6_c02305{width:12.168000px;}
._7_c02305{width:13.596000px;}
._8_c02305{width:15.552000px;}
._a_c02305{width:64.584000px;}
.fc1_c02305{color:rgb(192,80,77);}
.fc3_c02305{color:rgb(255,255,255);}
.fc2_c02305{color:rgb(17,17,17);}
.fc0_c02305{color:rgb(0,0,0);}
.fs0_c02305{font-size:66.240000px;}
.fs1_c02305{font-size:72.000000px;}
.y0_c02305{bottom:0.000000px;}
.yf_c02305{bottom:4.140000px;}
.yc_c02305{bottom:4.500000px;}
.y3_c02305{bottom:4.680000px;}
.yd_c02305{bottom:4.860000px;}
.y29_c02305{bottom:5.040000px;}
.ya_c02305{bottom:5.220000px;}
.y27_c02305{bottom:5.400000px;}
.y9_c02305{bottom:25.920000px;}
.y26_c02305{bottom:26.100000px;}
.y2_c02305{bottom:41.796000px;}
.y1_c02305{bottom:75.456000px;}
.y34_c02305{bottom:129.276000px;}
.y33_c02305{bottom:149.976000px;}
.y32_c02305{bottom:170.670000px;}
.y31_c02305{bottom:191.370000px;}
.y30_c02305{bottom:208.290000px;}
.y2f_c02305{bottom:229.710000px;}
.y2e_c02305{bottom:251.310000px;}
.y2d_c02305{bottom:272.775000px;}
.y2c_c02305{bottom:294.195000px;}
.y2b_c02305{bottom:315.615000px;}
.y2a_c02305{bottom:337.035000px;}
.y25_c02305{bottom:358.455000px;}
.y28_c02305{bottom:380.055000px;}
.y24_c02305{bottom:416.055000px;}
.y23_c02305{bottom:436.935000px;}
.y22_c02305{bottom:457.635000px;}
.y21_c02305{bottom:478.335000px;}
.y20_c02305{bottom:509.295000px;}
.y1f_c02305{bottom:540.285000px;}
.y1e_c02305{bottom:571.425000px;}
.y1d_c02305{bottom:602.385000px;}
.y1c_c02305{bottom:633.525000px;}
.y1b_c02305{bottom:664.485000px;}
.y1a_c02305{bottom:695.625000px;}
.y19_c02305{bottom:716.505000px;}
.y18_c02305{bottom:737.205000px;}
.y17_c02305{bottom:757.905000px;}
.y16_c02305{bottom:778.605000px;}
.y15_c02305{bottom:795.570000px;}
.y14_c02305{bottom:816.990000px;}
.y13_c02305{bottom:838.410000px;}
.y12_c02305{bottom:859.830000px;}
.y11_c02305{bottom:881.250000px;}
.y10_c02305{bottom:902.670000px;}
.ye_c02305{bottom:924.270000px;}
.y8_c02305{bottom:945.690000px;}
.yb_c02305{bottom:967.110000px;}
.y7_c02305{bottom:1003.290000px;}
.y6_c02305{bottom:1024.170000px;}
.y5_c02305{bottom:1044.870000px;}
.y4_c02305{bottom:1065.600000px;}
.h5_c02305{height:20.700000px;}
.h9_c02305{height:20.736000px;}
.h2_c02305{height:22.500000px;}
.h4_c02305{height:42.120000px;}
.h8_c02305{height:42.300000px;}
.h1_c02305{height:48.871406px;}
.h7_c02305{height:64.546875px;}
.h3_c02305{height:70.664062px;}
.h6_c02305{height:72.562500px;}
.h0_c02305{height:1188.000000px;}
.w1_c02305{width:66.636000px;}
.w4_c02305{width:79.020000px;}
.w7_c02305{width:92.016000px;}
.w5_c02305{width:94.356000px;}
.w6_c02305{width:96.120000px;}
.w2_c02305{width:254.550000px;}
.w3_c02305{width:283.935000px;}
.w0_c02305{width:918.000000px;}
.x0_c02305{left:0.000000px;}
.xe_c02305{left:7.920000px;}
.x11_c02305{left:15.480000px;}
.x3_c02305{left:16.560000px;}
.xf_c02305{left:18.180000px;}
.x13_c02305{left:21.420000px;}
.x17_c02305{left:34.920000px;}
.xd_c02305{left:39.420000px;}
.x16_c02305{left:41.400000px;}
.x15_c02305{left:42.660000px;}
.x18_c02305{left:61.560000px;}
.x1a_c02305{left:72.540000px;}
.x14_c02305{left:74.520000px;}
.x1b_c02305{left:77.040000px;}
.x19_c02305{left:79.560000px;}
.x1d_c02305{left:95.760000px;}
.x9_c02305{left:103.140000px;}
.xb_c02305{left:104.430000px;}
.x1c_c02305{left:107.280000px;}
.x1_c02305{left:127.656000px;}
.x8_c02305{left:179.310000px;}
.x1e_c02305{left:180.750000px;}
.x1f_c02305{left:267.510000px;}
.x5_c02305{left:271.470000px;}
.x6_c02305{left:287.670000px;}
.xa_c02305{left:434.595000px;}
.x4_c02305{left:440.175000px;}
.x7_c02305{left:488.775000px;}
.x10_c02305{left:529.665000px;}
.x12_c02305{left:626.505000px;}
.xc_c02305{left:719.250000px;}
.x2_c02305{left:820.950000px;}
@media print{
.v0_c02305{vertical-align:0.000000pt;}
.ls1_c02305{letter-spacing:-0.064000pt;}
.ls0_c02305{letter-spacing:0.000000pt;}
.ws0_c02305{word-spacing:-16.000000pt;}
.ws1_c02305{word-spacing:-15.936000pt;}
.ws2_c02305{word-spacing:0.000000pt;}
._9_c02305{margin-left:-2.357333pt;}
._0_c02305{margin-left:-1.024000pt;}
._1_c02305{width:0.970667pt;}
._2_c02305{width:2.602667pt;}
._3_c02305{width:4.256000pt;}
._4_c02305{width:6.208000pt;}
._5_c02305{width:7.168000pt;}
._6_c02305{width:10.816000pt;}
._7_c02305{width:12.085333pt;}
._8_c02305{width:13.824000pt;}
._a_c02305{width:57.408000pt;}
.fs0_c02305{font-size:58.880000pt;}
.fs1_c02305{font-size:64.000000pt;}
.y0_c02305{bottom:0.000000pt;}
.yf_c02305{bottom:3.680000pt;}
.yc_c02305{bottom:4.000000pt;}
.y3_c02305{bottom:4.160000pt;}
.yd_c02305{bottom:4.320000pt;}
.y29_c02305{bottom:4.480000pt;}
.ya_c02305{bottom:4.640000pt;}
.y27_c02305{bottom:4.800000pt;}
.y9_c02305{bottom:23.040000pt;}
.y26_c02305{bottom:23.200000pt;}
.y2_c02305{bottom:37.152000pt;}
.y1_c02305{bottom:67.072000pt;}
.y34_c02305{bottom:114.912000pt;}
.y33_c02305{bottom:133.312000pt;}
.y32_c02305{bottom:151.706667pt;}
.y31_c02305{bottom:170.106667pt;}
.y30_c02305{bottom:185.146667pt;}
.y2f_c02305{bottom:204.186667pt;}
.y2e_c02305{bottom:223.386667pt;}
.y2d_c02305{bottom:242.466667pt;}
.y2c_c02305{bottom:261.506667pt;}
.y2b_c02305{bottom:280.546667pt;}
.y2a_c02305{bottom:299.586667pt;}
.y25_c02305{bottom:318.626667pt;}
.y28_c02305{bottom:337.826667pt;}
.y24_c02305{bottom:369.826667pt;}
.y23_c02305{bottom:388.386667pt;}
.y22_c02305{bottom:406.786667pt;}
.y21_c02305{bottom:425.186667pt;}
.y20_c02305{bottom:452.706667pt;}
.y1f_c02305{bottom:480.253333pt;}
.y1e_c02305{bottom:507.933333pt;}
.y1d_c02305{bottom:535.453333pt;}
.y1c_c02305{bottom:563.133333pt;}
.y1b_c02305{bottom:590.653333pt;}
.y1a_c02305{bottom:618.333333pt;}
.y19_c02305{bottom:636.893333pt;}
.y18_c02305{bottom:655.293333pt;}
.y17_c02305{bottom:673.693333pt;}
.y16_c02305{bottom:692.093333pt;}
.y15_c02305{bottom:707.173333pt;}
.y14_c02305{bottom:726.213333pt;}
.y13_c02305{bottom:745.253333pt;}
.y12_c02305{bottom:764.293333pt;}
.y11_c02305{bottom:783.333333pt;}
.y10_c02305{bottom:802.373333pt;}
.ye_c02305{bottom:821.573333pt;}
.y8_c02305{bottom:840.613333pt;}
.yb_c02305{bottom:859.653333pt;}
.y7_c02305{bottom:891.813333pt;}
.y6_c02305{bottom:910.373333pt;}
.y5_c02305{bottom:928.773333pt;}
.y4_c02305{bottom:947.200000pt;}
.h5_c02305{height:18.400000pt;}
.h9_c02305{height:18.432000pt;}
.h2_c02305{height:20.000000pt;}
.h4_c02305{height:37.440000pt;}
.h8_c02305{height:37.600000pt;}
.h1_c02305{height:43.441250pt;}
.h7_c02305{height:57.375000pt;}
.h3_c02305{height:62.812500pt;}
.h6_c02305{height:64.500000pt;}
.h0_c02305{height:1056.000000pt;}
.w1_c02305{width:59.232000pt;}
.w4_c02305{width:70.240000pt;}
.w7_c02305{width:81.792000pt;}
.w5_c02305{width:83.872000pt;}
.w6_c02305{width:85.440000pt;}
.w2_c02305{width:226.266667pt;}
.w3_c02305{width:252.386667pt;}
.w0_c02305{width:816.000000pt;}
.x0_c02305{left:0.000000pt;}
.xe_c02305{left:7.040000pt;}
.x11_c02305{left:13.760000pt;}
.x3_c02305{left:14.720000pt;}
.xf_c02305{left:16.160000pt;}
.x13_c02305{left:19.040000pt;}
.x17_c02305{left:31.040000pt;}
.xd_c02305{left:35.040000pt;}
.x16_c02305{left:36.800000pt;}
.x15_c02305{left:37.920000pt;}
.x18_c02305{left:54.720000pt;}
.x1a_c02305{left:64.480000pt;}
.x14_c02305{left:66.240000pt;}
.x1b_c02305{left:68.480000pt;}
.x19_c02305{left:70.720000pt;}
.x1d_c02305{left:85.120000pt;}
.x9_c02305{left:91.680000pt;}
.xb_c02305{left:92.826667pt;}
.x1c_c02305{left:95.360000pt;}
.x1_c02305{left:113.472000pt;}
.x8_c02305{left:159.386667pt;}
.x1e_c02305{left:160.666667pt;}
.x1f_c02305{left:237.786667pt;}
.x5_c02305{left:241.306667pt;}
.x6_c02305{left:255.706667pt;}
.xa_c02305{left:386.306667pt;}
.x4_c02305{left:391.266667pt;}
.x7_c02305{left:434.466667pt;}
.x10_c02305{left:470.813333pt;}
.x12_c02305{left:556.893333pt;}
.xc_c02305{left:639.333333pt;}
.x2_c02305{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02306 {
    display:none;
  }
  .loading-indicator_c02306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02306 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02306 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02306" -> "#page-container .classname_c02306")
 */
.pf_c02306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02306 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02306 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02306 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02306 {overflow:visible;}
  }
}
.c_c02306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02306 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02306:after { /* webkit #35443 */
  content: '';
}
.t_c02306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02306 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02306 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02306 { /* info for Javascript */
  display:none;
}
.l_c02306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02306:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02306 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02306.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02306;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02306{font-family:ff1_c02306;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02306;src:url('chunks/assets/font_c275c591ea191a17944586cc.woff2')format("woff");}.ff2_c02306{font-family:ff2_c02306;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:ff3_c02306;src:url('chunks/assets/font_0ca0ece3fc3fb9760382c343.woff2')format("woff");}.ff3_c02306{font-family:ff3_c02306;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02306{vertical-align:0.000000px;}
.ls0_c02306{letter-spacing:0.000000px;}
.sc__c02306{text-shadow:none;}
.sc0_c02306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02306{-webkit-text-stroke:0px transparent;}
.sc0_c02306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02306{word-spacing:0.000000px;}
._1_c02306{margin-left:-1.224000px;}
._3_c02306{width:1.008000px;}
._e_c02306{width:2.016000px;}
._0_c02306{width:3.528000px;}
._6_c02306{width:5.904000px;}
._d_c02306{width:7.920000px;}
._7_c02306{width:9.000000px;}
._8_c02306{width:10.296000px;}
._b_c02306{width:14.112000px;}
._c_c02306{width:15.408000px;}
._9_c02306{width:19.152000px;}
._a_c02306{width:20.304000px;}
._4_c02306{width:23.256000px;}
._5_c02306{width:24.408000px;}
._2_c02306{width:59.544000px;}
.fc1_c02306{color:rgb(192,80,77);}
.fc3_c02306{color:rgb(255,255,255);}
.fc2_c02306{color:rgb(17,17,17);}
.fc0_c02306{color:rgb(0,0,0);}
.fs0_c02306{font-size:66.240000px;}
.fs1_c02306{font-size:72.000000px;}
.y0_c02306{bottom:0.000000px;}
.y28_c02306{bottom:4.140000px;}
.y19_c02306{bottom:4.500000px;}
.y3_c02306{bottom:4.680000px;}
.y2_c02306{bottom:41.796000px;}
.y1_c02306{bottom:75.456000px;}
.y2c_c02306{bottom:111.636000px;}
.y2b_c02306{bottom:132.336000px;}
.y2a_c02306{bottom:153.030000px;}
.y29_c02306{bottom:173.730000px;}
.y27_c02306{bottom:190.650000px;}
.y26_c02306{bottom:212.070000px;}
.y25_c02306{bottom:233.490000px;}
.y24_c02306{bottom:254.910000px;}
.y23_c02306{bottom:276.555000px;}
.y22_c02306{bottom:297.975000px;}
.y21_c02306{bottom:319.395000px;}
.y20_c02306{bottom:340.815000px;}
.y1f_c02306{bottom:362.235000px;}
.y1e_c02306{bottom:383.655000px;}
.y1d_c02306{bottom:405.255000px;}
.y1c_c02306{bottom:426.675000px;}
.y1b_c02306{bottom:448.095000px;}
.y1a_c02306{bottom:469.515000px;}
.y18_c02306{bottom:490.935000px;}
.y17_c02306{bottom:516.855000px;}
.y16_c02306{bottom:537.585000px;}
.y15_c02306{bottom:558.285000px;}
.y14_c02306{bottom:578.985000px;}
.y13_c02306{bottom:609.945000px;}
.y12_c02306{bottom:640.905000px;}
.y11_c02306{bottom:672.045000px;}
.y10_c02306{bottom:703.005000px;}
.yf_c02306{bottom:734.145000px;}
.ye_c02306{bottom:765.105000px;}
.yd_c02306{bottom:796.290000px;}
.yc_c02306{bottom:827.250000px;}
.yb_c02306{bottom:858.390000px;}
.ya_c02306{bottom:889.350000px;}
.y9_c02306{bottom:920.490000px;}
.y8_c02306{bottom:951.450000px;}
.y7_c02306{bottom:972.330000px;}
.y6_c02306{bottom:1003.290000px;}
.y5_c02306{bottom:1034.250000px;}
.y4_c02306{bottom:1065.420000px;}
.h4_c02306{height:20.700000px;}
.h5_c02306{height:20.736000px;}
.h2_c02306{height:22.500000px;}
.h1_c02306{height:48.871406px;}
.h3_c02306{height:70.664062px;}
.h6_c02306{height:72.562500px;}
.h0_c02306{height:1188.000000px;}
.w1_c02306{width:66.636000px;}
.w2_c02306{width:308.370000px;}
.w3_c02306{width:309.855000px;}
.w0_c02306{width:918.000000px;}
.x0_c02306{left:0.000000px;}
.x3_c02306{left:16.560000px;}
.xc_c02306{left:84.450000px;}
.x13_c02306{left:113.220000px;}
.x14_c02306{left:116.280000px;}
.x15_c02306{left:120.465000px;}
.x16_c02306{left:122.805000px;}
.xe_c02306{left:126.225000px;}
.x1_c02306{left:127.656000px;}
.xb_c02306{left:131.265000px;}
.x11_c02306{left:133.245000px;}
.xf_c02306{left:135.225000px;}
.x12_c02306{left:136.845000px;}
.x17_c02306{left:141.330000px;}
.x10_c02306{left:145.830000px;}
.xd_c02306{left:150.330000px;}
.x5_c02306{left:154.650000px;}
.x4_c02306{left:163.650000px;}
.xa_c02306{left:179.310000px;}
.x6_c02306{left:187.050000px;}
.x8_c02306{left:304.635000px;}
.x7_c02306{left:440.175000px;}
.x9_c02306{left:488.775000px;}
.x2_c02306{left:820.950000px;}
@media print{
.v0_c02306{vertical-align:0.000000pt;}
.ls0_c02306{letter-spacing:0.000000pt;}
.ws0_c02306{word-spacing:0.000000pt;}
._1_c02306{margin-left:-1.088000pt;}
._3_c02306{width:0.896000pt;}
._e_c02306{width:1.792000pt;}
._0_c02306{width:3.136000pt;}
._6_c02306{width:5.248000pt;}
._d_c02306{width:7.040000pt;}
._7_c02306{width:8.000000pt;}
._8_c02306{width:9.152000pt;}
._b_c02306{width:12.544000pt;}
._c_c02306{width:13.696000pt;}
._9_c02306{width:17.024000pt;}
._a_c02306{width:18.048000pt;}
._4_c02306{width:20.672000pt;}
._5_c02306{width:21.696000pt;}
._2_c02306{width:52.928000pt;}
.fs0_c02306{font-size:58.880000pt;}
.fs1_c02306{font-size:64.000000pt;}
.y0_c02306{bottom:0.000000pt;}
.y28_c02306{bottom:3.680000pt;}
.y19_c02306{bottom:4.000000pt;}
.y3_c02306{bottom:4.160000pt;}
.y2_c02306{bottom:37.152000pt;}
.y1_c02306{bottom:67.072000pt;}
.y2c_c02306{bottom:99.232000pt;}
.y2b_c02306{bottom:117.632000pt;}
.y2a_c02306{bottom:136.026667pt;}
.y29_c02306{bottom:154.426667pt;}
.y27_c02306{bottom:169.466667pt;}
.y26_c02306{bottom:188.506667pt;}
.y25_c02306{bottom:207.546667pt;}
.y24_c02306{bottom:226.586667pt;}
.y23_c02306{bottom:245.826667pt;}
.y22_c02306{bottom:264.866667pt;}
.y21_c02306{bottom:283.906667pt;}
.y20_c02306{bottom:302.946667pt;}
.y1f_c02306{bottom:321.986667pt;}
.y1e_c02306{bottom:341.026667pt;}
.y1d_c02306{bottom:360.226667pt;}
.y1c_c02306{bottom:379.266667pt;}
.y1b_c02306{bottom:398.306667pt;}
.y1a_c02306{bottom:417.346667pt;}
.y18_c02306{bottom:436.386667pt;}
.y17_c02306{bottom:459.426667pt;}
.y16_c02306{bottom:477.853333pt;}
.y15_c02306{bottom:496.253333pt;}
.y14_c02306{bottom:514.653333pt;}
.y13_c02306{bottom:542.173333pt;}
.y12_c02306{bottom:569.693333pt;}
.y11_c02306{bottom:597.373333pt;}
.y10_c02306{bottom:624.893333pt;}
.yf_c02306{bottom:652.573333pt;}
.ye_c02306{bottom:680.093333pt;}
.yd_c02306{bottom:707.813333pt;}
.yc_c02306{bottom:735.333333pt;}
.yb_c02306{bottom:763.013333pt;}
.ya_c02306{bottom:790.533333pt;}
.y9_c02306{bottom:818.213333pt;}
.y8_c02306{bottom:845.733333pt;}
.y7_c02306{bottom:864.293333pt;}
.y6_c02306{bottom:891.813333pt;}
.y5_c02306{bottom:919.333333pt;}
.y4_c02306{bottom:947.040000pt;}
.h4_c02306{height:18.400000pt;}
.h5_c02306{height:18.432000pt;}
.h2_c02306{height:20.000000pt;}
.h1_c02306{height:43.441250pt;}
.h3_c02306{height:62.812500pt;}
.h6_c02306{height:64.500000pt;}
.h0_c02306{height:1056.000000pt;}
.w1_c02306{width:59.232000pt;}
.w2_c02306{width:274.106667pt;}
.w3_c02306{width:275.426667pt;}
.w0_c02306{width:816.000000pt;}
.x0_c02306{left:0.000000pt;}
.x3_c02306{left:14.720000pt;}
.xc_c02306{left:75.066667pt;}
.x13_c02306{left:100.640000pt;}
.x14_c02306{left:103.360000pt;}
.x15_c02306{left:107.080000pt;}
.x16_c02306{left:109.160000pt;}
.xe_c02306{left:112.200000pt;}
.x1_c02306{left:113.472000pt;}
.xb_c02306{left:116.680000pt;}
.x11_c02306{left:118.440000pt;}
.xf_c02306{left:120.200000pt;}
.x12_c02306{left:121.640000pt;}
.x17_c02306{left:125.626667pt;}
.x10_c02306{left:129.626667pt;}
.xd_c02306{left:133.626667pt;}
.x5_c02306{left:137.466667pt;}
.x4_c02306{left:145.466667pt;}
.xa_c02306{left:159.386667pt;}
.x6_c02306{left:166.266667pt;}
.x8_c02306{left:270.786667pt;}
.x7_c02306{left:391.266667pt;}
.x9_c02306{left:434.466667pt;}
.x2_c02306{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02307 {
    display:none;
  }
  .loading-indicator_c02307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02307 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02307 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02307" -> "#page-container .classname_c02307")
 */
.pf_c02307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02307 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02307 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02307 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02307 {overflow:visible;}
  }
}
.c_c02307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02307 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02307:after { /* webkit #35443 */
  content: '';
}
.t_c02307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02307 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02307 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02307 { /* info for Javascript */
  display:none;
}
.l_c02307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02307:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02307 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02307.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02307;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02307{font-family:ff1_c02307;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02307;src:url('chunks/assets/font_b613c812e0625807bbafa106.woff2')format("woff");}.ff2_c02307{font-family:ff2_c02307;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;}
.m0_c02307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02307{vertical-align:0.000000px;}
.ls0_c02307{letter-spacing:0.000000px;}
.sc__c02307{text-shadow:none;}
.sc0_c02307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02307{-webkit-text-stroke:0px transparent;}
.sc0_c02307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02307{word-spacing:0.000000px;}
._3_c02307{margin-left:-1.140000px;}
._2_c02307{width:1.440000px;}
._e_c02307{width:2.736000px;}
._0_c02307{width:4.104000px;}
._1_c02307{width:5.472000px;}
._10_c02307{width:6.480000px;}
._11_c02307{width:7.992000px;}
._a_c02307{width:9.360000px;}
._b_c02307{width:10.512000px;}
._f_c02307{width:12.168000px;}
._6_c02307{width:13.752000px;}
._7_c02307{width:14.760000px;}
._4_c02307{width:16.260000px;}
._5_c02307{width:19.020000px;}
._8_c02307{width:20.052000px;}
._9_c02307{width:21.132000px;}
._c_c02307{width:29.016000px;}
._d_c02307{width:30.312000px;}
.fc1_c02307{color:rgb(192,80,77);}
.fc2_c02307{color:rgb(17,17,17);}
.fc0_c02307{color:rgb(0,0,0);}
.fs0_c02307{font-size:66.240000px;}
.fs1_c02307{font-size:72.000000px;}
.y0_c02307{bottom:0.000000px;}
.y3_c02307{bottom:4.680000px;}
.y2_c02307{bottom:41.796000px;}
.y1_c02307{bottom:75.456000px;}
.y24_c02307{bottom:123.696000px;}
.y23_c02307{bottom:144.396000px;}
.y22_c02307{bottom:165.090000px;}
.y21_c02307{bottom:185.610000px;}
.y20_c02307{bottom:206.310000px;}
.y1f_c02307{bottom:227.010000px;}
.y1e_c02307{bottom:257.970000px;}
.y1d_c02307{bottom:288.975000px;}
.y1c_c02307{bottom:320.115000px;}
.y1b_c02307{bottom:351.075000px;}
.y1a_c02307{bottom:382.215000px;}
.y19_c02307{bottom:413.175000px;}
.y18_c02307{bottom:444.315000px;}
.y17_c02307{bottom:475.275000px;}
.y16_c02307{bottom:506.415000px;}
.y15_c02307{bottom:537.405000px;}
.y14_c02307{bottom:568.545000px;}
.y13_c02307{bottom:599.505000px;}
.y12_c02307{bottom:630.645000px;}
.y11_c02307{bottom:661.605000px;}
.y10_c02307{bottom:692.745000px;}
.yf_c02307{bottom:723.705000px;}
.ye_c02307{bottom:754.845000px;}
.yd_c02307{bottom:785.805000px;}
.yc_c02307{bottom:816.990000px;}
.yb_c02307{bottom:847.950000px;}
.ya_c02307{bottom:879.090000px;}
.y9_c02307{bottom:910.050000px;}
.y8_c02307{bottom:941.190000px;}
.y7_c02307{bottom:972.150000px;}
.y6_c02307{bottom:1003.290000px;}
.y5_c02307{bottom:1034.250000px;}
.y4_c02307{bottom:1065.420000px;}
.h2_c02307{height:22.500000px;}
.h1_c02307{height:48.871406px;}
.h3_c02307{height:70.664062px;}
.h0_c02307{height:1188.000000px;}
.w1_c02307{width:66.636000px;}
.w0_c02307{width:918.000000px;}
.x0_c02307{left:0.000000px;}
.x3_c02307{left:16.560000px;}
.x1_c02307{left:127.656000px;}
.x4_c02307{left:187.050000px;}
.x2_c02307{left:820.950000px;}
@media print{
.v0_c02307{vertical-align:0.000000pt;}
.ls0_c02307{letter-spacing:0.000000pt;}
.ws0_c02307{word-spacing:0.000000pt;}
._3_c02307{margin-left:-1.013333pt;}
._2_c02307{width:1.280000pt;}
._e_c02307{width:2.432000pt;}
._0_c02307{width:3.648000pt;}
._1_c02307{width:4.864000pt;}
._10_c02307{width:5.760000pt;}
._11_c02307{width:7.104000pt;}
._a_c02307{width:8.320000pt;}
._b_c02307{width:9.344000pt;}
._f_c02307{width:10.816000pt;}
._6_c02307{width:12.224000pt;}
._7_c02307{width:13.120000pt;}
._4_c02307{width:14.453333pt;}
._5_c02307{width:16.906667pt;}
._8_c02307{width:17.824000pt;}
._9_c02307{width:18.784000pt;}
._c_c02307{width:25.792000pt;}
._d_c02307{width:26.944000pt;}
.fs0_c02307{font-size:58.880000pt;}
.fs1_c02307{font-size:64.000000pt;}
.y0_c02307{bottom:0.000000pt;}
.y3_c02307{bottom:4.160000pt;}
.y2_c02307{bottom:37.152000pt;}
.y1_c02307{bottom:67.072000pt;}
.y24_c02307{bottom:109.952000pt;}
.y23_c02307{bottom:128.352000pt;}
.y22_c02307{bottom:146.746667pt;}
.y21_c02307{bottom:164.986667pt;}
.y20_c02307{bottom:183.386667pt;}
.y1f_c02307{bottom:201.786667pt;}
.y1e_c02307{bottom:229.306667pt;}
.y1d_c02307{bottom:256.866667pt;}
.y1c_c02307{bottom:284.546667pt;}
.y1b_c02307{bottom:312.066667pt;}
.y1a_c02307{bottom:339.746667pt;}
.y19_c02307{bottom:367.266667pt;}
.y18_c02307{bottom:394.946667pt;}
.y17_c02307{bottom:422.466667pt;}
.y16_c02307{bottom:450.146667pt;}
.y15_c02307{bottom:477.693333pt;}
.y14_c02307{bottom:505.373333pt;}
.y13_c02307{bottom:532.893333pt;}
.y12_c02307{bottom:560.573333pt;}
.y11_c02307{bottom:588.093333pt;}
.y10_c02307{bottom:615.773333pt;}
.yf_c02307{bottom:643.293333pt;}
.ye_c02307{bottom:670.973333pt;}
.yd_c02307{bottom:698.493333pt;}
.yc_c02307{bottom:726.213333pt;}
.yb_c02307{bottom:753.733333pt;}
.ya_c02307{bottom:781.413333pt;}
.y9_c02307{bottom:808.933333pt;}
.y8_c02307{bottom:836.613333pt;}
.y7_c02307{bottom:864.133333pt;}
.y6_c02307{bottom:891.813333pt;}
.y5_c02307{bottom:919.333333pt;}
.y4_c02307{bottom:947.040000pt;}
.h2_c02307{height:20.000000pt;}
.h1_c02307{height:43.441250pt;}
.h3_c02307{height:62.812500pt;}
.h0_c02307{height:1056.000000pt;}
.w1_c02307{width:59.232000pt;}
.w0_c02307{width:816.000000pt;}
.x0_c02307{left:0.000000pt;}
.x3_c02307{left:14.720000pt;}
.x1_c02307{left:113.472000pt;}
.x4_c02307{left:166.266667pt;}
.x2_c02307{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02308 {
    display:none;
  }
  .loading-indicator_c02308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02308 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02308 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02308" -> "#page-container .classname_c02308")
 */
.pf_c02308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02308 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02308 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02308 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02308 {overflow:visible;}
  }
}
.c_c02308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02308 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02308:after { /* webkit #35443 */
  content: '';
}
.t_c02308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02308 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02308 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02308 { /* info for Javascript */
  display:none;
}
.l_c02308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02308:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02308 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02308.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02308;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02308{font-family:ff1_c02308;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02308;src:url('chunks/assets/font_3c9a26e0b84a8d8421fe24a2.woff2')format("woff");}.ff2_c02308{font-family:ff2_c02308;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:ff3_c02308;src:url('chunks/assets/font_bf045091e338746351ec316c.woff2')format("woff");}.ff3_c02308{font-family:ff3_c02308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02308{vertical-align:0.000000px;}
.ls0_c02308{letter-spacing:0.000000px;}
.sc__c02308{text-shadow:none;}
.sc0_c02308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02308{-webkit-text-stroke:0px transparent;}
.sc0_c02308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02308{word-spacing:-18.000000px;}
.ws1_c02308{word-spacing:0.000000px;}
._11_c02308{margin-left:-2.376000px;}
._0_c02308{margin-left:-1.152000px;}
._2_c02308{width:1.332000px;}
._c_c02308{width:2.736000px;}
._a_c02308{width:4.104000px;}
._b_c02308{width:5.112000px;}
._1_c02308{width:7.128000px;}
._3_c02308{width:8.712000px;}
._8_c02308{width:9.936000px;}
._12_c02308{width:11.124000px;}
._5_c02308{width:12.168000px;}
._4_c02308{width:13.176000px;}
._d_c02308{width:14.760000px;}
._10_c02308{width:16.128000px;}
._e_c02308{width:19.944000px;}
._f_c02308{width:20.952000px;}
._9_c02308{width:22.896000px;}
._6_c02308{width:24.408000px;}
._7_c02308{width:25.416000px;}
.fc1_c02308{color:rgb(192,80,77);}
.fc2_c02308{color:rgb(17,17,17);}
.fc0_c02308{color:rgb(0,0,0);}
.fs0_c02308{font-size:66.240000px;}
.fs1_c02308{font-size:72.000000px;}
.y0_c02308{bottom:0.000000px;}
.y3_c02308{bottom:4.680000px;}
.y2_c02308{bottom:41.796000px;}
.y1_c02308{bottom:75.456000px;}
.y22_c02308{bottom:133.776000px;}
.y21_c02308{bottom:164.910000px;}
.y20_c02308{bottom:195.870000px;}
.y1f_c02308{bottom:226.830000px;}
.y1e_c02308{bottom:257.970000px;}
.y1d_c02308{bottom:288.975000px;}
.y1c_c02308{bottom:320.115000px;}
.y1b_c02308{bottom:351.075000px;}
.y1a_c02308{bottom:382.215000px;}
.y19_c02308{bottom:413.175000px;}
.y18_c02308{bottom:444.315000px;}
.y17_c02308{bottom:475.275000px;}
.y16_c02308{bottom:506.415000px;}
.y15_c02308{bottom:537.405000px;}
.y14_c02308{bottom:568.545000px;}
.y13_c02308{bottom:599.505000px;}
.y12_c02308{bottom:630.645000px;}
.y11_c02308{bottom:661.605000px;}
.y10_c02308{bottom:692.745000px;}
.yf_c02308{bottom:723.705000px;}
.ye_c02308{bottom:754.845000px;}
.yd_c02308{bottom:785.805000px;}
.yc_c02308{bottom:816.990000px;}
.yb_c02308{bottom:847.950000px;}
.ya_c02308{bottom:879.090000px;}
.y9_c02308{bottom:910.050000px;}
.y8_c02308{bottom:941.190000px;}
.y7_c02308{bottom:972.150000px;}
.y6_c02308{bottom:1003.290000px;}
.y5_c02308{bottom:1034.250000px;}
.y4_c02308{bottom:1065.420000px;}
.h2_c02308{height:22.500000px;}
.h1_c02308{height:48.871406px;}
.h3_c02308{height:70.664062px;}
.h0_c02308{height:1188.000000px;}
.w1_c02308{width:66.636000px;}
.w0_c02308{width:918.000000px;}
.x0_c02308{left:0.000000px;}
.x3_c02308{left:16.560000px;}
.x1_c02308{left:127.656000px;}
.x4_c02308{left:154.650000px;}
.x5_c02308{left:187.050000px;}
.x2_c02308{left:820.950000px;}
@media print{
.v0_c02308{vertical-align:0.000000pt;}
.ls0_c02308{letter-spacing:0.000000pt;}
.ws0_c02308{word-spacing:-16.000000pt;}
.ws1_c02308{word-spacing:0.000000pt;}
._11_c02308{margin-left:-2.112000pt;}
._0_c02308{margin-left:-1.024000pt;}
._2_c02308{width:1.184000pt;}
._c_c02308{width:2.432000pt;}
._a_c02308{width:3.648000pt;}
._b_c02308{width:4.544000pt;}
._1_c02308{width:6.336000pt;}
._3_c02308{width:7.744000pt;}
._8_c02308{width:8.832000pt;}
._12_c02308{width:9.888000pt;}
._5_c02308{width:10.816000pt;}
._4_c02308{width:11.712000pt;}
._d_c02308{width:13.120000pt;}
._10_c02308{width:14.336000pt;}
._e_c02308{width:17.728000pt;}
._f_c02308{width:18.624000pt;}
._9_c02308{width:20.352000pt;}
._6_c02308{width:21.696000pt;}
._7_c02308{width:22.592000pt;}
.fs0_c02308{font-size:58.880000pt;}
.fs1_c02308{font-size:64.000000pt;}
.y0_c02308{bottom:0.000000pt;}
.y3_c02308{bottom:4.160000pt;}
.y2_c02308{bottom:37.152000pt;}
.y1_c02308{bottom:67.072000pt;}
.y22_c02308{bottom:118.912000pt;}
.y21_c02308{bottom:146.586667pt;}
.y20_c02308{bottom:174.106667pt;}
.y1f_c02308{bottom:201.626667pt;}
.y1e_c02308{bottom:229.306667pt;}
.y1d_c02308{bottom:256.866667pt;}
.y1c_c02308{bottom:284.546667pt;}
.y1b_c02308{bottom:312.066667pt;}
.y1a_c02308{bottom:339.746667pt;}
.y19_c02308{bottom:367.266667pt;}
.y18_c02308{bottom:394.946667pt;}
.y17_c02308{bottom:422.466667pt;}
.y16_c02308{bottom:450.146667pt;}
.y15_c02308{bottom:477.693333pt;}
.y14_c02308{bottom:505.373333pt;}
.y13_c02308{bottom:532.893333pt;}
.y12_c02308{bottom:560.573333pt;}
.y11_c02308{bottom:588.093333pt;}
.y10_c02308{bottom:615.773333pt;}
.yf_c02308{bottom:643.293333pt;}
.ye_c02308{bottom:670.973333pt;}
.yd_c02308{bottom:698.493333pt;}
.yc_c02308{bottom:726.213333pt;}
.yb_c02308{bottom:753.733333pt;}
.ya_c02308{bottom:781.413333pt;}
.y9_c02308{bottom:808.933333pt;}
.y8_c02308{bottom:836.613333pt;}
.y7_c02308{bottom:864.133333pt;}
.y6_c02308{bottom:891.813333pt;}
.y5_c02308{bottom:919.333333pt;}
.y4_c02308{bottom:947.040000pt;}
.h2_c02308{height:20.000000pt;}
.h1_c02308{height:43.441250pt;}
.h3_c02308{height:62.812500pt;}
.h0_c02308{height:1056.000000pt;}
.w1_c02308{width:59.232000pt;}
.w0_c02308{width:816.000000pt;}
.x0_c02308{left:0.000000pt;}
.x3_c02308{left:14.720000pt;}
.x1_c02308{left:113.472000pt;}
.x4_c02308{left:137.466667pt;}
.x5_c02308{left:166.266667pt;}
.x2_c02308{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02309 {
    display:none;
  }
  .loading-indicator_c02309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02309 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02309 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02309" -> "#page-container .classname_c02309")
 */
.pf_c02309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02309 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02309 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02309 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02309 {overflow:visible;}
  }
}
.c_c02309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02309 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02309:after { /* webkit #35443 */
  content: '';
}
.t_c02309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02309 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02309 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02309 { /* info for Javascript */
  display:none;
}
.l_c02309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02309:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02309 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02309.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02309;src:url('chunks/assets/font_ccbf79486361ad111fb99109.woff2')format("woff");}.ff1_c02309{font-family:ff1_c02309;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02309;src:url('chunks/assets/font_a91cb4300d48ba08c69808be.woff2')format("woff");}.ff2_c02309{font-family:ff2_c02309;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:ff3_c02309;src:url('chunks/assets/font_0ca0ece3fc3fb9760382c343.woff2')format("woff");}.ff3_c02309{font-family:ff3_c02309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02309{vertical-align:0.000000px;}
.ls0_c02309{letter-spacing:0.000000px;}
.sc__c02309{text-shadow:none;}
.sc0_c02309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02309{-webkit-text-stroke:0px transparent;}
.sc0_c02309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02309{word-spacing:0.000000px;}
._4_c02309{margin-left:-1.224000px;}
._2_c02309{width:1.224000px;}
._6_c02309{width:2.304000px;}
._3_c02309{width:3.672000px;}
._5_c02309{width:5.040000px;}
._0_c02309{width:6.192000px;}
._1_c02309{width:7.200000px;}
.fc1_c02309{color:rgb(192,80,77);}
.fc3_c02309{color:rgb(255,255,255);}
.fc2_c02309{color:rgb(17,17,17);}
.fc0_c02309{color:rgb(0,0,0);}
.fs0_c02309{font-size:66.240000px;}
.fs1_c02309{font-size:72.000000px;}
.y0_c02309{bottom:0.000000px;}
.y25_c02309{bottom:4.140000px;}
.yd_c02309{bottom:4.500000px;}
.y3_c02309{bottom:4.680000px;}
.y2_c02309{bottom:41.796000px;}
.y1_c02309{bottom:75.456000px;}
.y29_c02309{bottom:270.390000px;}
.y28_c02309{bottom:291.135000px;}
.y27_c02309{bottom:311.835000px;}
.y26_c02309{bottom:332.535000px;}
.y24_c02309{bottom:349.455000px;}
.y23_c02309{bottom:371.055000px;}
.y22_c02309{bottom:392.475000px;}
.y21_c02309{bottom:413.895000px;}
.y20_c02309{bottom:435.315000px;}
.y1f_c02309{bottom:456.735000px;}
.y1e_c02309{bottom:478.155000px;}
.y1d_c02309{bottom:499.755000px;}
.y1c_c02309{bottom:521.175000px;}
.y1b_c02309{bottom:542.625000px;}
.y1a_c02309{bottom:564.045000px;}
.y19_c02309{bottom:585.465000px;}
.y18_c02309{bottom:606.885000px;}
.y17_c02309{bottom:628.305000px;}
.y16_c02309{bottom:649.905000px;}
.y15_c02309{bottom:671.325000px;}
.y14_c02309{bottom:692.745000px;}
.y13_c02309{bottom:714.165000px;}
.y12_c02309{bottom:735.585000px;}
.y11_c02309{bottom:757.005000px;}
.y10_c02309{bottom:778.605000px;}
.yf_c02309{bottom:800.070000px;}
.ye_c02309{bottom:821.490000px;}
.yc_c02309{bottom:842.910000px;}
.yb_c02309{bottom:868.830000px;}
.ya_c02309{bottom:889.530000px;}
.y9_c02309{bottom:910.230000px;}
.y8_c02309{bottom:941.190000px;}
.y7_c02309{bottom:972.150000px;}
.y6_c02309{bottom:1003.290000px;}
.y5_c02309{bottom:1034.250000px;}
.y4_c02309{bottom:1065.420000px;}
.h4_c02309{height:20.700000px;}
.h5_c02309{height:20.736000px;}
.h2_c02309{height:22.500000px;}
.h1_c02309{height:48.871406px;}
.h3_c02309{height:70.664062px;}
.h6_c02309{height:72.562500px;}
.h0_c02309{height:1188.000000px;}
.w1_c02309{width:66.636000px;}
.w2_c02309{width:308.370000px;}
.w3_c02309{width:309.855000px;}
.w0_c02309{width:918.000000px;}
.x0_c02309{left:0.000000px;}
.x3_c02309{left:16.560000px;}
.x18_c02309{left:46.620000px;}
.x16_c02309{left:53.640000px;}
.x17_c02309{left:80.280000px;}
.xa_c02309{left:84.450000px;}
.x15_c02309{left:93.060000px;}
.xc_c02309{left:108.000000px;}
.x14_c02309{left:114.300000px;}
.xd_c02309{left:119.205000px;}
.x10_c02309{left:123.705000px;}
.x12_c02309{left:125.685000px;}
.x1_c02309{left:127.656000px;}
.x13_c02309{left:128.745000px;}
.x9_c02309{left:131.805000px;}
.xf_c02309{left:134.325000px;}
.xe_c02309{left:135.765000px;}
.x19_c02309{left:141.330000px;}
.xb_c02309{left:145.830000px;}
.x11_c02309{left:150.330000px;}
.x8_c02309{left:179.310000px;}
.x4_c02309{left:187.050000px;}
.x6_c02309{left:285.510000px;}
.x5_c02309{left:440.175000px;}
.x7_c02309{left:488.775000px;}
.x2_c02309{left:820.950000px;}
@media print{
.v0_c02309{vertical-align:0.000000pt;}
.ls0_c02309{letter-spacing:0.000000pt;}
.ws0_c02309{word-spacing:0.000000pt;}
._4_c02309{margin-left:-1.088000pt;}
._2_c02309{width:1.088000pt;}
._6_c02309{width:2.048000pt;}
._3_c02309{width:3.264000pt;}
._5_c02309{width:4.480000pt;}
._0_c02309{width:5.504000pt;}
._1_c02309{width:6.400000pt;}
.fs0_c02309{font-size:58.880000pt;}
.fs1_c02309{font-size:64.000000pt;}
.y0_c02309{bottom:0.000000pt;}
.y25_c02309{bottom:3.680000pt;}
.yd_c02309{bottom:4.000000pt;}
.y3_c02309{bottom:4.160000pt;}
.y2_c02309{bottom:37.152000pt;}
.y1_c02309{bottom:67.072000pt;}
.y29_c02309{bottom:240.346667pt;}
.y28_c02309{bottom:258.786667pt;}
.y27_c02309{bottom:277.186667pt;}
.y26_c02309{bottom:295.586667pt;}
.y24_c02309{bottom:310.626667pt;}
.y23_c02309{bottom:329.826667pt;}
.y22_c02309{bottom:348.866667pt;}
.y21_c02309{bottom:367.906667pt;}
.y20_c02309{bottom:386.946667pt;}
.y1f_c02309{bottom:405.986667pt;}
.y1e_c02309{bottom:425.026667pt;}
.y1d_c02309{bottom:444.226667pt;}
.y1c_c02309{bottom:463.266667pt;}
.y1b_c02309{bottom:482.333333pt;}
.y1a_c02309{bottom:501.373333pt;}
.y19_c02309{bottom:520.413333pt;}
.y18_c02309{bottom:539.453333pt;}
.y17_c02309{bottom:558.493333pt;}
.y16_c02309{bottom:577.693333pt;}
.y15_c02309{bottom:596.733333pt;}
.y14_c02309{bottom:615.773333pt;}
.y13_c02309{bottom:634.813333pt;}
.y12_c02309{bottom:653.853333pt;}
.y11_c02309{bottom:672.893333pt;}
.y10_c02309{bottom:692.093333pt;}
.yf_c02309{bottom:711.173333pt;}
.ye_c02309{bottom:730.213333pt;}
.yc_c02309{bottom:749.253333pt;}
.yb_c02309{bottom:772.293333pt;}
.ya_c02309{bottom:790.693333pt;}
.y9_c02309{bottom:809.093333pt;}
.y8_c02309{bottom:836.613333pt;}
.y7_c02309{bottom:864.133333pt;}
.y6_c02309{bottom:891.813333pt;}
.y5_c02309{bottom:919.333333pt;}
.y4_c02309{bottom:947.040000pt;}
.h4_c02309{height:18.400000pt;}
.h5_c02309{height:18.432000pt;}
.h2_c02309{height:20.000000pt;}
.h1_c02309{height:43.441250pt;}
.h3_c02309{height:62.812500pt;}
.h6_c02309{height:64.500000pt;}
.h0_c02309{height:1056.000000pt;}
.w1_c02309{width:59.232000pt;}
.w2_c02309{width:274.106667pt;}
.w3_c02309{width:275.426667pt;}
.w0_c02309{width:816.000000pt;}
.x0_c02309{left:0.000000pt;}
.x3_c02309{left:14.720000pt;}
.x18_c02309{left:41.440000pt;}
.x16_c02309{left:47.680000pt;}
.x17_c02309{left:71.360000pt;}
.xa_c02309{left:75.066667pt;}
.x15_c02309{left:82.720000pt;}
.xc_c02309{left:96.000000pt;}
.x14_c02309{left:101.600000pt;}
.xd_c02309{left:105.960000pt;}
.x10_c02309{left:109.960000pt;}
.x12_c02309{left:111.720000pt;}
.x1_c02309{left:113.472000pt;}
.x13_c02309{left:114.440000pt;}
.x9_c02309{left:117.160000pt;}
.xf_c02309{left:119.400000pt;}
.xe_c02309{left:120.680000pt;}
.x19_c02309{left:125.626667pt;}
.xb_c02309{left:129.626667pt;}
.x11_c02309{left:133.626667pt;}
.x8_c02309{left:159.386667pt;}
.x4_c02309{left:166.266667pt;}
.x6_c02309{left:253.786667pt;}
.x5_c02309{left:391.266667pt;}
.x7_c02309{left:434.466667pt;}
.x2_c02309{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02310 {
    display:none;
  }
  .loading-indicator_c02310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02310 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02310 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02310" -> "#page-container .classname_c02310")
 */
.pf_c02310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02310 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02310 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02310 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02310 {overflow:visible;}
  }
}
.c_c02310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02310 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02310:after { /* webkit #35443 */
  content: '';
}
.t_c02310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02310 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02310 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02310 { /* info for Javascript */
  display:none;
}
.l_c02310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02310:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02310 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02310.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02310;src:url('chunks/assets/font_adef02499f7e6e79b96c6dc1.woff2')format("woff");}.ff1_c02310{font-family:ff1_c02310;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02310;src:url('chunks/assets/font_37ca556ddc1ab709ab4f100f.woff2')format("woff");}.ff2_c02310{font-family:ff2_c02310;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:ff3_c02310;src:url('chunks/assets/font_670561ca5dfe244d27119828.woff2')format("woff");}.ff3_c02310{font-family:ff3_c02310;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02310{vertical-align:0.000000px;}
.ls0_c02310{letter-spacing:0.000000px;}
.sc__c02310{text-shadow:none;}
.sc0_c02310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02310{-webkit-text-stroke:0px transparent;}
.sc0_c02310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02310{word-spacing:0.000000px;}
._4_c02310{margin-left:-1.368000px;}
._1_c02310{width:1.080000px;}
._3_c02310{width:2.088000px;}
._5_c02310{width:3.168000px;}
._c_c02310{width:4.248000px;}
._d_c02310{width:5.832000px;}
._f_c02310{width:8.424000px;}
._e_c02310{width:9.576000px;}
._12_c02310{width:10.872000px;}
._13_c02310{width:12.024000px;}
._7_c02310{width:13.536000px;}
._8_c02310{width:14.904000px;}
._b_c02310{width:16.776000px;}
._14_c02310{width:19.008000px;}
._6_c02310{width:21.384000px;}
._0_c02310{width:31.896000px;}
._2_c02310{width:33.624000px;}
._a_c02310{width:35.856000px;}
._9_c02310{width:36.864000px;}
._10_c02310{width:40.392000px;}
._11_c02310{width:41.652000px;}
.fc1_c02310{color:rgb(192,80,77);}
.fc2_c02310{color:rgb(17,17,17);}
.fc0_c02310{color:rgb(0,0,0);}
.fs0_c02310{font-size:66.240000px;}
.fs1_c02310{font-size:72.000000px;}
.y0_c02310{bottom:0.000000px;}
.y3_c02310{bottom:4.680000px;}
.y2_c02310{bottom:41.796000px;}
.y1_c02310{bottom:75.456000px;}
.y22_c02310{bottom:133.776000px;}
.y21_c02310{bottom:164.910000px;}
.y20_c02310{bottom:195.870000px;}
.y1f_c02310{bottom:226.830000px;}
.y1e_c02310{bottom:257.970000px;}
.y1d_c02310{bottom:288.975000px;}
.y1c_c02310{bottom:320.115000px;}
.y1b_c02310{bottom:351.075000px;}
.y1a_c02310{bottom:382.215000px;}
.y19_c02310{bottom:413.175000px;}
.y18_c02310{bottom:444.315000px;}
.y17_c02310{bottom:475.275000px;}
.y16_c02310{bottom:506.415000px;}
.y15_c02310{bottom:537.405000px;}
.y14_c02310{bottom:568.545000px;}
.y13_c02310{bottom:599.505000px;}
.y12_c02310{bottom:630.645000px;}
.y11_c02310{bottom:661.605000px;}
.y10_c02310{bottom:692.745000px;}
.yf_c02310{bottom:723.705000px;}
.ye_c02310{bottom:754.845000px;}
.yd_c02310{bottom:785.805000px;}
.yc_c02310{bottom:816.990000px;}
.yb_c02310{bottom:847.950000px;}
.ya_c02310{bottom:879.090000px;}
.y9_c02310{bottom:910.050000px;}
.y8_c02310{bottom:941.190000px;}
.y7_c02310{bottom:972.150000px;}
.y6_c02310{bottom:1003.290000px;}
.y5_c02310{bottom:1034.250000px;}
.y4_c02310{bottom:1065.420000px;}
.h2_c02310{height:22.500000px;}
.h1_c02310{height:48.871406px;}
.h4_c02310{height:64.546875px;}
.h3_c02310{height:70.664062px;}
.h0_c02310{height:1188.000000px;}
.w1_c02310{width:66.636000px;}
.w0_c02310{width:918.000000px;}
.x0_c02310{left:0.000000px;}
.x3_c02310{left:16.560000px;}
.x1_c02310{left:127.656000px;}
.x4_c02310{left:154.650000px;}
.x5_c02310{left:187.050000px;}
.x2_c02310{left:820.950000px;}
@media print{
.v0_c02310{vertical-align:0.000000pt;}
.ls0_c02310{letter-spacing:0.000000pt;}
.ws0_c02310{word-spacing:0.000000pt;}
._4_c02310{margin-left:-1.216000pt;}
._1_c02310{width:0.960000pt;}
._3_c02310{width:1.856000pt;}
._5_c02310{width:2.816000pt;}
._c_c02310{width:3.776000pt;}
._d_c02310{width:5.184000pt;}
._f_c02310{width:7.488000pt;}
._e_c02310{width:8.512000pt;}
._12_c02310{width:9.664000pt;}
._13_c02310{width:10.688000pt;}
._7_c02310{width:12.032000pt;}
._8_c02310{width:13.248000pt;}
._b_c02310{width:14.912000pt;}
._14_c02310{width:16.896000pt;}
._6_c02310{width:19.008000pt;}
._0_c02310{width:28.352000pt;}
._2_c02310{width:29.888000pt;}
._a_c02310{width:31.872000pt;}
._9_c02310{width:32.768000pt;}
._10_c02310{width:35.904000pt;}
._11_c02310{width:37.024000pt;}
.fs0_c02310{font-size:58.880000pt;}
.fs1_c02310{font-size:64.000000pt;}
.y0_c02310{bottom:0.000000pt;}
.y3_c02310{bottom:4.160000pt;}
.y2_c02310{bottom:37.152000pt;}
.y1_c02310{bottom:67.072000pt;}
.y22_c02310{bottom:118.912000pt;}
.y21_c02310{bottom:146.586667pt;}
.y20_c02310{bottom:174.106667pt;}
.y1f_c02310{bottom:201.626667pt;}
.y1e_c02310{bottom:229.306667pt;}
.y1d_c02310{bottom:256.866667pt;}
.y1c_c02310{bottom:284.546667pt;}
.y1b_c02310{bottom:312.066667pt;}
.y1a_c02310{bottom:339.746667pt;}
.y19_c02310{bottom:367.266667pt;}
.y18_c02310{bottom:394.946667pt;}
.y17_c02310{bottom:422.466667pt;}
.y16_c02310{bottom:450.146667pt;}
.y15_c02310{bottom:477.693333pt;}
.y14_c02310{bottom:505.373333pt;}
.y13_c02310{bottom:532.893333pt;}
.y12_c02310{bottom:560.573333pt;}
.y11_c02310{bottom:588.093333pt;}
.y10_c02310{bottom:615.773333pt;}
.yf_c02310{bottom:643.293333pt;}
.ye_c02310{bottom:670.973333pt;}
.yd_c02310{bottom:698.493333pt;}
.yc_c02310{bottom:726.213333pt;}
.yb_c02310{bottom:753.733333pt;}
.ya_c02310{bottom:781.413333pt;}
.y9_c02310{bottom:808.933333pt;}
.y8_c02310{bottom:836.613333pt;}
.y7_c02310{bottom:864.133333pt;}
.y6_c02310{bottom:891.813333pt;}
.y5_c02310{bottom:919.333333pt;}
.y4_c02310{bottom:947.040000pt;}
.h2_c02310{height:20.000000pt;}
.h1_c02310{height:43.441250pt;}
.h4_c02310{height:57.375000pt;}
.h3_c02310{height:62.812500pt;}
.h0_c02310{height:1056.000000pt;}
.w1_c02310{width:59.232000pt;}
.w0_c02310{width:816.000000pt;}
.x0_c02310{left:0.000000pt;}
.x3_c02310{left:14.720000pt;}
.x1_c02310{left:113.472000pt;}
.x4_c02310{left:137.466667pt;}
.x5_c02310{left:166.266667pt;}
.x2_c02310{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02311 {
    display:none;
  }
  .loading-indicator_c02311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02311 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02311 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02311" -> "#page-container .classname_c02311")
 */
.pf_c02311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02311 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02311 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02311 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02311 {overflow:visible;}
  }
}
.c_c02311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02311 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02311:after { /* webkit #35443 */
  content: '';
}
.t_c02311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02311 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02311 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02311 { /* info for Javascript */
  display:none;
}
.l_c02311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02311:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02311 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02311.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02311;src:url('chunks/assets/font_44af4564633968b4ac3e67a3.woff2')format("woff");}.ff1_c02311{font-family:ff1_c02311;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02311;src:url('chunks/assets/font_24c047adaf6c94e2428f1a88.woff2')format("woff");}.ff2_c02311{font-family:ff2_c02311;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:ff3_c02311;src:url('chunks/assets/font_44e754e3a3fb33f21de475c3.woff2')format("woff");}.ff3_c02311{font-family:ff3_c02311;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02311{vertical-align:0.000000px;}
.ls0_c02311{letter-spacing:0.000000px;}
.sc__c02311{text-shadow:none;}
.sc0_c02311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02311{-webkit-text-stroke:0px transparent;}
.sc0_c02311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02311{word-spacing:0.000000px;}
._1_c02311{margin-left:-1.080000px;}
._4_c02311{width:1.152000px;}
._c_c02311{width:2.664000px;}
._3_c02311{width:3.744000px;}
._7_c02311{width:4.860000px;}
._6_c02311{width:5.904000px;}
._a_c02311{width:7.632000px;}
._b_c02311{width:9.648000px;}
._14_c02311{width:11.376000px;}
._e_c02311{width:12.456000px;}
._2_c02311{width:14.184000px;}
._0_c02311{width:15.336000px;}
._10_c02311{width:16.920000px;}
._5_c02311{width:19.944000px;}
._13_c02311{width:21.396000px;}
._12_c02311{width:22.608000px;}
._11_c02311{width:23.688000px;}
._f_c02311{width:24.912000px;}
._d_c02311{width:26.712000px;}
._8_c02311{width:44.424000px;}
._9_c02311{width:45.432000px;}
.fc1_c02311{color:rgb(192,80,77);}
.fc0_c02311{color:rgb(0,0,0);}
.fs0_c02311{font-size:66.240000px;}
.fs1_c02311{font-size:72.000000px;}
.y0_c02311{bottom:0.000000px;}
.y3_c02311{bottom:4.680000px;}
.y2_c02311{bottom:41.796000px;}
.y1_c02311{bottom:75.456000px;}
.y21_c02311{bottom:164.910000px;}
.y20_c02311{bottom:195.870000px;}
.y1f_c02311{bottom:226.830000px;}
.y1e_c02311{bottom:257.970000px;}
.y1d_c02311{bottom:288.975000px;}
.y1c_c02311{bottom:320.115000px;}
.y1b_c02311{bottom:351.075000px;}
.y1a_c02311{bottom:382.215000px;}
.y19_c02311{bottom:413.175000px;}
.y18_c02311{bottom:444.315000px;}
.y17_c02311{bottom:475.275000px;}
.y16_c02311{bottom:506.415000px;}
.y15_c02311{bottom:537.405000px;}
.y14_c02311{bottom:568.545000px;}
.y13_c02311{bottom:599.505000px;}
.y12_c02311{bottom:630.645000px;}
.y11_c02311{bottom:661.605000px;}
.y10_c02311{bottom:692.745000px;}
.yf_c02311{bottom:723.705000px;}
.ye_c02311{bottom:754.845000px;}
.yd_c02311{bottom:785.805000px;}
.yc_c02311{bottom:816.990000px;}
.yb_c02311{bottom:847.950000px;}
.ya_c02311{bottom:879.090000px;}
.y9_c02311{bottom:910.050000px;}
.y8_c02311{bottom:941.190000px;}
.y7_c02311{bottom:972.150000px;}
.y6_c02311{bottom:1003.290000px;}
.y5_c02311{bottom:1034.250000px;}
.y4_c02311{bottom:1065.420000px;}
.h2_c02311{height:22.500000px;}
.h1_c02311{height:48.871406px;}
.h4_c02311{height:64.546875px;}
.h3_c02311{height:70.664062px;}
.h0_c02311{height:1188.000000px;}
.w1_c02311{width:66.636000px;}
.w0_c02311{width:918.000000px;}
.x0_c02311{left:0.000000px;}
.x3_c02311{left:16.560000px;}
.x1_c02311{left:127.656000px;}
.x4_c02311{left:187.050000px;}
.x2_c02311{left:820.950000px;}
@media print{
.v0_c02311{vertical-align:0.000000pt;}
.ls0_c02311{letter-spacing:0.000000pt;}
.ws0_c02311{word-spacing:0.000000pt;}
._1_c02311{margin-left:-0.960000pt;}
._4_c02311{width:1.024000pt;}
._c_c02311{width:2.368000pt;}
._3_c02311{width:3.328000pt;}
._7_c02311{width:4.320000pt;}
._6_c02311{width:5.248000pt;}
._a_c02311{width:6.784000pt;}
._b_c02311{width:8.576000pt;}
._14_c02311{width:10.112000pt;}
._e_c02311{width:11.072000pt;}
._2_c02311{width:12.608000pt;}
._0_c02311{width:13.632000pt;}
._10_c02311{width:15.040000pt;}
._5_c02311{width:17.728000pt;}
._13_c02311{width:19.018667pt;}
._12_c02311{width:20.096000pt;}
._11_c02311{width:21.056000pt;}
._f_c02311{width:22.144000pt;}
._d_c02311{width:23.744000pt;}
._8_c02311{width:39.488000pt;}
._9_c02311{width:40.384000pt;}
.fs0_c02311{font-size:58.880000pt;}
.fs1_c02311{font-size:64.000000pt;}
.y0_c02311{bottom:0.000000pt;}
.y3_c02311{bottom:4.160000pt;}
.y2_c02311{bottom:37.152000pt;}
.y1_c02311{bottom:67.072000pt;}
.y21_c02311{bottom:146.586667pt;}
.y20_c02311{bottom:174.106667pt;}
.y1f_c02311{bottom:201.626667pt;}
.y1e_c02311{bottom:229.306667pt;}
.y1d_c02311{bottom:256.866667pt;}
.y1c_c02311{bottom:284.546667pt;}
.y1b_c02311{bottom:312.066667pt;}
.y1a_c02311{bottom:339.746667pt;}
.y19_c02311{bottom:367.266667pt;}
.y18_c02311{bottom:394.946667pt;}
.y17_c02311{bottom:422.466667pt;}
.y16_c02311{bottom:450.146667pt;}
.y15_c02311{bottom:477.693333pt;}
.y14_c02311{bottom:505.373333pt;}
.y13_c02311{bottom:532.893333pt;}
.y12_c02311{bottom:560.573333pt;}
.y11_c02311{bottom:588.093333pt;}
.y10_c02311{bottom:615.773333pt;}
.yf_c02311{bottom:643.293333pt;}
.ye_c02311{bottom:670.973333pt;}
.yd_c02311{bottom:698.493333pt;}
.yc_c02311{bottom:726.213333pt;}
.yb_c02311{bottom:753.733333pt;}
.ya_c02311{bottom:781.413333pt;}
.y9_c02311{bottom:808.933333pt;}
.y8_c02311{bottom:836.613333pt;}
.y7_c02311{bottom:864.133333pt;}
.y6_c02311{bottom:891.813333pt;}
.y5_c02311{bottom:919.333333pt;}
.y4_c02311{bottom:947.040000pt;}
.h2_c02311{height:20.000000pt;}
.h1_c02311{height:43.441250pt;}
.h4_c02311{height:57.375000pt;}
.h3_c02311{height:62.812500pt;}
.h0_c02311{height:1056.000000pt;}
.w1_c02311{width:59.232000pt;}
.w0_c02311{width:816.000000pt;}
.x0_c02311{left:0.000000pt;}
.x3_c02311{left:14.720000pt;}
.x1_c02311{left:113.472000pt;}
.x4_c02311{left:166.266667pt;}
.x2_c02311{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02312 {
    display:none;
  }
  .loading-indicator_c02312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02312 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02312 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02312" -> "#page-container .classname_c02312")
 */
.pf_c02312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02312 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02312 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02312 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02312 {overflow:visible;}
  }
}
.c_c02312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02312 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02312:after { /* webkit #35443 */
  content: '';
}
.t_c02312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02312 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02312 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02312 { /* info for Javascript */
  display:none;
}
.l_c02312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02312:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02312 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02312.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02312;src:url('chunks/assets/font_b6959c56e21bce763fd1084e.woff2')format("woff");}.ff1_c02312{font-family:ff1_c02312;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02312;src:url('chunks/assets/font_29d586149113103d1f68cc66.woff2')format("woff");}.ff2_c02312{font-family:ff2_c02312;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:ff3_c02312;src:url('chunks/assets/font_e6275c28eb77b819ef9fd81a.woff2')format("woff");}.ff3_c02312{font-family:ff3_c02312;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02312{vertical-align:0.000000px;}
.ls0_c02312{letter-spacing:0.000000px;}
.sc__c02312{text-shadow:none;}
.sc0_c02312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02312{-webkit-text-stroke:0px transparent;}
.sc0_c02312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02312{word-spacing:0.000000px;}
._4_c02312{margin-left:-1.152000px;}
._2_c02312{width:1.152000px;}
._c_c02312{width:2.160000px;}
._3_c02312{width:3.312000px;}
._1_c02312{width:4.968000px;}
._0_c02312{width:6.120000px;}
._e_c02312{width:7.776000px;}
._6_c02312{width:10.224000px;}
._7_c02312{width:11.448000px;}
._11_c02312{width:12.888000px;}
._5_c02312{width:15.624000px;}
._d_c02312{width:16.632000px;}
._10_c02312{width:19.440000px;}
._b_c02312{width:20.880000px;}
._a_c02312{width:21.960000px;}
._8_c02312{width:23.112000px;}
._9_c02312{width:24.264000px;}
._f_c02312{width:25.704000px;}
._12_c02312{width:28.080000px;}
.fc1_c02312{color:rgb(192,80,77);}
.fc0_c02312{color:rgb(0,0,0);}
.fs0_c02312{font-size:66.240000px;}
.fs1_c02312{font-size:72.000000px;}
.y0_c02312{bottom:0.000000px;}
.y3_c02312{bottom:4.680000px;}
.y2_c02312{bottom:41.796000px;}
.y1_c02312{bottom:75.456000px;}
.y22_c02312{bottom:133.776000px;}
.y21_c02312{bottom:164.910000px;}
.y20_c02312{bottom:195.870000px;}
.y1f_c02312{bottom:226.830000px;}
.y1e_c02312{bottom:257.970000px;}
.y1d_c02312{bottom:288.975000px;}
.y1c_c02312{bottom:320.115000px;}
.y1b_c02312{bottom:351.075000px;}
.y1a_c02312{bottom:382.215000px;}
.y19_c02312{bottom:413.175000px;}
.y18_c02312{bottom:444.315000px;}
.y17_c02312{bottom:475.275000px;}
.y16_c02312{bottom:506.415000px;}
.y15_c02312{bottom:537.405000px;}
.y14_c02312{bottom:568.545000px;}
.y13_c02312{bottom:599.505000px;}
.y12_c02312{bottom:630.645000px;}
.y11_c02312{bottom:661.605000px;}
.y10_c02312{bottom:692.745000px;}
.yf_c02312{bottom:723.705000px;}
.ye_c02312{bottom:754.845000px;}
.yd_c02312{bottom:785.805000px;}
.yc_c02312{bottom:816.990000px;}
.yb_c02312{bottom:847.950000px;}
.ya_c02312{bottom:879.090000px;}
.y9_c02312{bottom:910.050000px;}
.y8_c02312{bottom:941.190000px;}
.y7_c02312{bottom:972.150000px;}
.y6_c02312{bottom:1003.290000px;}
.y5_c02312{bottom:1034.250000px;}
.y4_c02312{bottom:1065.420000px;}
.h2_c02312{height:22.500000px;}
.h1_c02312{height:48.871406px;}
.h4_c02312{height:64.546875px;}
.h3_c02312{height:70.664062px;}
.h0_c02312{height:1188.000000px;}
.w1_c02312{width:66.636000px;}
.w0_c02312{width:918.000000px;}
.x0_c02312{left:0.000000px;}
.x3_c02312{left:16.560000px;}
.x1_c02312{left:127.656000px;}
.x4_c02312{left:187.050000px;}
.x2_c02312{left:820.950000px;}
@media print{
.v0_c02312{vertical-align:0.000000pt;}
.ls0_c02312{letter-spacing:0.000000pt;}
.ws0_c02312{word-spacing:0.000000pt;}
._4_c02312{margin-left:-1.024000pt;}
._2_c02312{width:1.024000pt;}
._c_c02312{width:1.920000pt;}
._3_c02312{width:2.944000pt;}
._1_c02312{width:4.416000pt;}
._0_c02312{width:5.440000pt;}
._e_c02312{width:6.912000pt;}
._6_c02312{width:9.088000pt;}
._7_c02312{width:10.176000pt;}
._11_c02312{width:11.456000pt;}
._5_c02312{width:13.888000pt;}
._d_c02312{width:14.784000pt;}
._10_c02312{width:17.280000pt;}
._b_c02312{width:18.560000pt;}
._a_c02312{width:19.520000pt;}
._8_c02312{width:20.544000pt;}
._9_c02312{width:21.568000pt;}
._f_c02312{width:22.848000pt;}
._12_c02312{width:24.960000pt;}
.fs0_c02312{font-size:58.880000pt;}
.fs1_c02312{font-size:64.000000pt;}
.y0_c02312{bottom:0.000000pt;}
.y3_c02312{bottom:4.160000pt;}
.y2_c02312{bottom:37.152000pt;}
.y1_c02312{bottom:67.072000pt;}
.y22_c02312{bottom:118.912000pt;}
.y21_c02312{bottom:146.586667pt;}
.y20_c02312{bottom:174.106667pt;}
.y1f_c02312{bottom:201.626667pt;}
.y1e_c02312{bottom:229.306667pt;}
.y1d_c02312{bottom:256.866667pt;}
.y1c_c02312{bottom:284.546667pt;}
.y1b_c02312{bottom:312.066667pt;}
.y1a_c02312{bottom:339.746667pt;}
.y19_c02312{bottom:367.266667pt;}
.y18_c02312{bottom:394.946667pt;}
.y17_c02312{bottom:422.466667pt;}
.y16_c02312{bottom:450.146667pt;}
.y15_c02312{bottom:477.693333pt;}
.y14_c02312{bottom:505.373333pt;}
.y13_c02312{bottom:532.893333pt;}
.y12_c02312{bottom:560.573333pt;}
.y11_c02312{bottom:588.093333pt;}
.y10_c02312{bottom:615.773333pt;}
.yf_c02312{bottom:643.293333pt;}
.ye_c02312{bottom:670.973333pt;}
.yd_c02312{bottom:698.493333pt;}
.yc_c02312{bottom:726.213333pt;}
.yb_c02312{bottom:753.733333pt;}
.ya_c02312{bottom:781.413333pt;}
.y9_c02312{bottom:808.933333pt;}
.y8_c02312{bottom:836.613333pt;}
.y7_c02312{bottom:864.133333pt;}
.y6_c02312{bottom:891.813333pt;}
.y5_c02312{bottom:919.333333pt;}
.y4_c02312{bottom:947.040000pt;}
.h2_c02312{height:20.000000pt;}
.h1_c02312{height:43.441250pt;}
.h4_c02312{height:57.375000pt;}
.h3_c02312{height:62.812500pt;}
.h0_c02312{height:1056.000000pt;}
.w1_c02312{width:59.232000pt;}
.w0_c02312{width:816.000000pt;}
.x0_c02312{left:0.000000pt;}
.x3_c02312{left:14.720000pt;}
.x1_c02312{left:113.472000pt;}
.x4_c02312{left:166.266667pt;}
.x2_c02312{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02313 {
    display:none;
  }
  .loading-indicator_c02313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02313 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02313 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02313" -> "#page-container .classname_c02313")
 */
.pf_c02313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02313 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02313 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02313 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02313 {overflow:visible;}
  }
}
.c_c02313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02313 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02313:after { /* webkit #35443 */
  content: '';
}
.t_c02313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02313 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02313 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02313 { /* info for Javascript */
  display:none;
}
.l_c02313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02313:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02313 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02313.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02313;src:url('chunks/assets/font_d4ded2c29fdc2bdf6f365143.woff2')format("woff");}.ff1_c02313{font-family:ff1_c02313;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02313;src:url('chunks/assets/font_7a504943b4f38ba7c6cbeae1.woff2')format("woff");}.ff2_c02313{font-family:ff2_c02313;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:ff3_c02313;src:url('chunks/assets/font_569b1f890e5ee66c121d2eda.woff2')format("woff");}.ff3_c02313{font-family:ff3_c02313;line-height:1.112305;font-style:normal;font-weight: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_c02313;src:url('chunks/assets/font_9b361a782fc83cd8d50f0343.woff2')format("woff");}.ff4_c02313{font-family:ff4_c02313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02313{vertical-align:0.000000px;}
.ls0_c02313{letter-spacing:0.000000px;}
.ls1_c02313{letter-spacing:0.720000px;}
.sc__c02313{text-shadow:none;}
.sc0_c02313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02313{-webkit-text-stroke:0px transparent;}
.sc0_c02313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02313{word-spacing:-18.720000px;}
.ws0_c02313{word-spacing:-18.000000px;}
.ws2_c02313{word-spacing:0.000000px;}
._15_c02313{margin-left:-2.304000px;}
._1_c02313{margin-left:-1.008000px;}
._4_c02313{width:1.368000px;}
._8_c02313{width:2.376000px;}
._2_c02313{width:3.384000px;}
._3_c02313{width:4.608000px;}
._b_c02313{width:5.688000px;}
._c_c02313{width:7.416000px;}
._0_c02313{width:8.640000px;}
._5_c02313{width:12.816000px;}
._6_c02313{width:20.088000px;}
._7_c02313{width:21.168000px;}
._11_c02313{width:23.256000px;}
._12_c02313{width:24.264000px;}
._9_c02313{width:25.776000px;}
._a_c02313{width:27.072000px;}
._f_c02313{width:28.080000px;}
._10_c02313{width:29.808000px;}
._d_c02313{width:34.344000px;}
._e_c02313{width:35.640000px;}
._13_c02313{width:43.200000px;}
._14_c02313{width:44.352000px;}
.fc1_c02313{color:rgb(192,80,77);}
.fc0_c02313{color:rgb(0,0,0);}
.fs0_c02313{font-size:66.240000px;}
.fs1_c02313{font-size:72.000000px;}
.y0_c02313{bottom:0.000000px;}
.y3_c02313{bottom:4.680000px;}
.y2_c02313{bottom:41.796000px;}
.y1_c02313{bottom:75.456000px;}
.y22_c02313{bottom:133.776000px;}
.y21_c02313{bottom:164.910000px;}
.y20_c02313{bottom:195.870000px;}
.y1f_c02313{bottom:226.830000px;}
.y1e_c02313{bottom:257.970000px;}
.y1d_c02313{bottom:288.975000px;}
.y1c_c02313{bottom:320.115000px;}
.y1b_c02313{bottom:351.075000px;}
.y1a_c02313{bottom:382.215000px;}
.y19_c02313{bottom:413.175000px;}
.y18_c02313{bottom:444.315000px;}
.y17_c02313{bottom:475.275000px;}
.y16_c02313{bottom:506.415000px;}
.y15_c02313{bottom:537.405000px;}
.y14_c02313{bottom:568.545000px;}
.y13_c02313{bottom:599.505000px;}
.y12_c02313{bottom:630.645000px;}
.y11_c02313{bottom:661.605000px;}
.y10_c02313{bottom:692.745000px;}
.yf_c02313{bottom:723.705000px;}
.ye_c02313{bottom:754.845000px;}
.yd_c02313{bottom:785.805000px;}
.yc_c02313{bottom:816.990000px;}
.yb_c02313{bottom:847.950000px;}
.ya_c02313{bottom:879.090000px;}
.y9_c02313{bottom:910.050000px;}
.y8_c02313{bottom:941.190000px;}
.y7_c02313{bottom:972.150000px;}
.y6_c02313{bottom:1003.290000px;}
.y5_c02313{bottom:1034.250000px;}
.y4_c02313{bottom:1065.420000px;}
.h2_c02313{height:22.500000px;}
.h1_c02313{height:48.871406px;}
.h4_c02313{height:64.546875px;}
.h3_c02313{height:70.664062px;}
.h0_c02313{height:1188.000000px;}
.w1_c02313{width:66.636000px;}
.w0_c02313{width:918.000000px;}
.x0_c02313{left:0.000000px;}
.x3_c02313{left:16.560000px;}
.x1_c02313{left:127.656000px;}
.x4_c02313{left:187.050000px;}
.x2_c02313{left:820.950000px;}
@media print{
.v0_c02313{vertical-align:0.000000pt;}
.ls0_c02313{letter-spacing:0.000000pt;}
.ls1_c02313{letter-spacing:0.640000pt;}
.ws1_c02313{word-spacing:-16.640000pt;}
.ws0_c02313{word-spacing:-16.000000pt;}
.ws2_c02313{word-spacing:0.000000pt;}
._15_c02313{margin-left:-2.048000pt;}
._1_c02313{margin-left:-0.896000pt;}
._4_c02313{width:1.216000pt;}
._8_c02313{width:2.112000pt;}
._2_c02313{width:3.008000pt;}
._3_c02313{width:4.096000pt;}
._b_c02313{width:5.056000pt;}
._c_c02313{width:6.592000pt;}
._0_c02313{width:7.680000pt;}
._5_c02313{width:11.392000pt;}
._6_c02313{width:17.856000pt;}
._7_c02313{width:18.816000pt;}
._11_c02313{width:20.672000pt;}
._12_c02313{width:21.568000pt;}
._9_c02313{width:22.912000pt;}
._a_c02313{width:24.064000pt;}
._f_c02313{width:24.960000pt;}
._10_c02313{width:26.496000pt;}
._d_c02313{width:30.528000pt;}
._e_c02313{width:31.680000pt;}
._13_c02313{width:38.400000pt;}
._14_c02313{width:39.424000pt;}
.fs0_c02313{font-size:58.880000pt;}
.fs1_c02313{font-size:64.000000pt;}
.y0_c02313{bottom:0.000000pt;}
.y3_c02313{bottom:4.160000pt;}
.y2_c02313{bottom:37.152000pt;}
.y1_c02313{bottom:67.072000pt;}
.y22_c02313{bottom:118.912000pt;}
.y21_c02313{bottom:146.586667pt;}
.y20_c02313{bottom:174.106667pt;}
.y1f_c02313{bottom:201.626667pt;}
.y1e_c02313{bottom:229.306667pt;}
.y1d_c02313{bottom:256.866667pt;}
.y1c_c02313{bottom:284.546667pt;}
.y1b_c02313{bottom:312.066667pt;}
.y1a_c02313{bottom:339.746667pt;}
.y19_c02313{bottom:367.266667pt;}
.y18_c02313{bottom:394.946667pt;}
.y17_c02313{bottom:422.466667pt;}
.y16_c02313{bottom:450.146667pt;}
.y15_c02313{bottom:477.693333pt;}
.y14_c02313{bottom:505.373333pt;}
.y13_c02313{bottom:532.893333pt;}
.y12_c02313{bottom:560.573333pt;}
.y11_c02313{bottom:588.093333pt;}
.y10_c02313{bottom:615.773333pt;}
.yf_c02313{bottom:643.293333pt;}
.ye_c02313{bottom:670.973333pt;}
.yd_c02313{bottom:698.493333pt;}
.yc_c02313{bottom:726.213333pt;}
.yb_c02313{bottom:753.733333pt;}
.ya_c02313{bottom:781.413333pt;}
.y9_c02313{bottom:808.933333pt;}
.y8_c02313{bottom:836.613333pt;}
.y7_c02313{bottom:864.133333pt;}
.y6_c02313{bottom:891.813333pt;}
.y5_c02313{bottom:919.333333pt;}
.y4_c02313{bottom:947.040000pt;}
.h2_c02313{height:20.000000pt;}
.h1_c02313{height:43.441250pt;}
.h4_c02313{height:57.375000pt;}
.h3_c02313{height:62.812500pt;}
.h0_c02313{height:1056.000000pt;}
.w1_c02313{width:59.232000pt;}
.w0_c02313{width:816.000000pt;}
.x0_c02313{left:0.000000pt;}
.x3_c02313{left:14.720000pt;}
.x1_c02313{left:113.472000pt;}
.x4_c02313{left:166.266667pt;}
.x2_c02313{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02314 {
    display:none;
  }
  .loading-indicator_c02314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02314 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02314 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02314" -> "#page-container .classname_c02314")
 */
.pf_c02314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02314 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02314 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02314 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02314 {overflow:visible;}
  }
}
.c_c02314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02314 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02314:after { /* webkit #35443 */
  content: '';
}
.t_c02314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02314 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02314 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02314 { /* info for Javascript */
  display:none;
}
.l_c02314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02314:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02314 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02314.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02314;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02314{font-family:ff1_c02314;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02314;src:url('chunks/assets/font_c77632c2979d2937ebe6d5c8.woff2')format("woff");}.ff2_c02314{font-family:ff2_c02314;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:ff3_c02314;src:url('chunks/assets/font_c4942e6bb5a521cf5d4d1988.woff2')format("woff");}.ff3_c02314{font-family:ff3_c02314;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02314{vertical-align:0.000000px;}
.ls0_c02314{letter-spacing:0.000000px;}
.sc__c02314{text-shadow:none;}
.sc0_c02314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02314{-webkit-text-stroke:0px transparent;}
.sc0_c02314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02314{word-spacing:-18.000000px;}
.ws1_c02314{word-spacing:0.000000px;}
._5_c02314{margin-left:-1.008000px;}
._2_c02314{width:1.080000px;}
._3_c02314{width:2.136000px;}
._a_c02314{width:3.672000px;}
._6_c02314{width:5.184000px;}
._0_c02314{width:6.192000px;}
._1_c02314{width:7.416000px;}
._9_c02314{width:8.532000px;}
._7_c02314{width:10.008000px;}
._8_c02314{width:11.196000px;}
._13_c02314{width:12.960000px;}
._d_c02314{width:14.256000px;}
._e_c02314{width:15.588000px;}
._f_c02314{width:16.920000px;}
._12_c02314{width:19.728000px;}
._10_c02314{width:27.144000px;}
._11_c02314{width:29.088000px;}
._b_c02314{width:34.776000px;}
._c_c02314{width:36.504000px;}
._4_c02314{width:41.472000px;}
.fc1_c02314{color:rgb(192,80,77);}
.fc0_c02314{color:rgb(0,0,0);}
.fs0_c02314{font-size:66.240000px;}
.fs1_c02314{font-size:72.000000px;}
.y0_c02314{bottom:0.000000px;}
.y3_c02314{bottom:4.680000px;}
.y2_c02314{bottom:41.796000px;}
.y1_c02314{bottom:75.456000px;}
.y22_c02314{bottom:133.776000px;}
.y21_c02314{bottom:164.910000px;}
.y20_c02314{bottom:195.870000px;}
.y1f_c02314{bottom:226.830000px;}
.y1e_c02314{bottom:257.970000px;}
.y1d_c02314{bottom:288.975000px;}
.y1c_c02314{bottom:320.115000px;}
.y1b_c02314{bottom:351.075000px;}
.y1a_c02314{bottom:382.215000px;}
.y19_c02314{bottom:413.175000px;}
.y18_c02314{bottom:444.315000px;}
.y17_c02314{bottom:475.275000px;}
.y16_c02314{bottom:506.415000px;}
.y15_c02314{bottom:537.405000px;}
.y14_c02314{bottom:568.545000px;}
.y13_c02314{bottom:599.505000px;}
.y12_c02314{bottom:630.645000px;}
.y11_c02314{bottom:661.605000px;}
.y10_c02314{bottom:692.745000px;}
.yf_c02314{bottom:723.705000px;}
.ye_c02314{bottom:754.845000px;}
.yd_c02314{bottom:785.805000px;}
.yc_c02314{bottom:816.990000px;}
.yb_c02314{bottom:847.950000px;}
.ya_c02314{bottom:879.090000px;}
.y9_c02314{bottom:910.050000px;}
.y8_c02314{bottom:941.190000px;}
.y7_c02314{bottom:972.150000px;}
.y6_c02314{bottom:1003.290000px;}
.y5_c02314{bottom:1034.250000px;}
.y4_c02314{bottom:1065.420000px;}
.h2_c02314{height:22.500000px;}
.h1_c02314{height:48.871406px;}
.h4_c02314{height:64.546875px;}
.h3_c02314{height:70.664062px;}
.h0_c02314{height:1188.000000px;}
.w1_c02314{width:66.636000px;}
.w0_c02314{width:918.000000px;}
.x0_c02314{left:0.000000px;}
.x3_c02314{left:16.560000px;}
.x1_c02314{left:127.656000px;}
.x4_c02314{left:187.050000px;}
.x2_c02314{left:820.950000px;}
@media print{
.v0_c02314{vertical-align:0.000000pt;}
.ls0_c02314{letter-spacing:0.000000pt;}
.ws0_c02314{word-spacing:-16.000000pt;}
.ws1_c02314{word-spacing:0.000000pt;}
._5_c02314{margin-left:-0.896000pt;}
._2_c02314{width:0.960000pt;}
._3_c02314{width:1.898667pt;}
._a_c02314{width:3.264000pt;}
._6_c02314{width:4.608000pt;}
._0_c02314{width:5.504000pt;}
._1_c02314{width:6.592000pt;}
._9_c02314{width:7.584000pt;}
._7_c02314{width:8.896000pt;}
._8_c02314{width:9.952000pt;}
._13_c02314{width:11.520000pt;}
._d_c02314{width:12.672000pt;}
._e_c02314{width:13.856000pt;}
._f_c02314{width:15.040000pt;}
._12_c02314{width:17.536000pt;}
._10_c02314{width:24.128000pt;}
._11_c02314{width:25.856000pt;}
._b_c02314{width:30.912000pt;}
._c_c02314{width:32.448000pt;}
._4_c02314{width:36.864000pt;}
.fs0_c02314{font-size:58.880000pt;}
.fs1_c02314{font-size:64.000000pt;}
.y0_c02314{bottom:0.000000pt;}
.y3_c02314{bottom:4.160000pt;}
.y2_c02314{bottom:37.152000pt;}
.y1_c02314{bottom:67.072000pt;}
.y22_c02314{bottom:118.912000pt;}
.y21_c02314{bottom:146.586667pt;}
.y20_c02314{bottom:174.106667pt;}
.y1f_c02314{bottom:201.626667pt;}
.y1e_c02314{bottom:229.306667pt;}
.y1d_c02314{bottom:256.866667pt;}
.y1c_c02314{bottom:284.546667pt;}
.y1b_c02314{bottom:312.066667pt;}
.y1a_c02314{bottom:339.746667pt;}
.y19_c02314{bottom:367.266667pt;}
.y18_c02314{bottom:394.946667pt;}
.y17_c02314{bottom:422.466667pt;}
.y16_c02314{bottom:450.146667pt;}
.y15_c02314{bottom:477.693333pt;}
.y14_c02314{bottom:505.373333pt;}
.y13_c02314{bottom:532.893333pt;}
.y12_c02314{bottom:560.573333pt;}
.y11_c02314{bottom:588.093333pt;}
.y10_c02314{bottom:615.773333pt;}
.yf_c02314{bottom:643.293333pt;}
.ye_c02314{bottom:670.973333pt;}
.yd_c02314{bottom:698.493333pt;}
.yc_c02314{bottom:726.213333pt;}
.yb_c02314{bottom:753.733333pt;}
.ya_c02314{bottom:781.413333pt;}
.y9_c02314{bottom:808.933333pt;}
.y8_c02314{bottom:836.613333pt;}
.y7_c02314{bottom:864.133333pt;}
.y6_c02314{bottom:891.813333pt;}
.y5_c02314{bottom:919.333333pt;}
.y4_c02314{bottom:947.040000pt;}
.h2_c02314{height:20.000000pt;}
.h1_c02314{height:43.441250pt;}
.h4_c02314{height:57.375000pt;}
.h3_c02314{height:62.812500pt;}
.h0_c02314{height:1056.000000pt;}
.w1_c02314{width:59.232000pt;}
.w0_c02314{width:816.000000pt;}
.x0_c02314{left:0.000000pt;}
.x3_c02314{left:14.720000pt;}
.x1_c02314{left:113.472000pt;}
.x4_c02314{left:166.266667pt;}
.x2_c02314{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02315 {
    display:none;
  }
  .loading-indicator_c02315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02315 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02315 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02315" -> "#page-container .classname_c02315")
 */
.pf_c02315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02315 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02315 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02315 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02315 {overflow:visible;}
  }
}
.c_c02315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02315 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02315:after { /* webkit #35443 */
  content: '';
}
.t_c02315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02315 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02315 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02315 { /* info for Javascript */
  display:none;
}
.l_c02315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02315:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02315 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02315.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02315;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02315{font-family:ff1_c02315;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02315;src:url('chunks/assets/font_6b3727921b1154f4fe9ec1b1.woff2')format("woff");}.ff2_c02315{font-family:ff2_c02315;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:ff3_c02315;src:url('chunks/assets/font_e2fab9eeae4b73b25f697312.woff2')format("woff");}.ff3_c02315{font-family:ff3_c02315;line-height:1.112305;font-style:normal;font-weight: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_c02315;src:url('chunks/assets/font_48136d44331539a9b176c361.woff2')format("woff");}.ff4_c02315{font-family:ff4_c02315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02315{vertical-align:0.000000px;}
.ls0_c02315{letter-spacing:0.000000px;}
.ls1_c02315{letter-spacing:0.072000px;}
.sc__c02315{text-shadow:none;}
.sc0_c02315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02315{-webkit-text-stroke:0px transparent;}
.sc0_c02315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02315{word-spacing:0.000000px;}
._6_c02315{margin-left:-1.224000px;}
._1_c02315{width:1.152000px;}
._7_c02315{width:2.592000px;}
._11_c02315{width:3.600000px;}
._13_c02315{width:4.680000px;}
._3_c02315{width:5.832000px;}
._4_c02315{width:6.840000px;}
._5_c02315{width:8.208000px;}
._8_c02315{width:9.720000px;}
._9_c02315{width:11.376000px;}
._15_c02315{width:12.816000px;}
._0_c02315{width:14.400000px;}
._2_c02315{width:15.408000px;}
._12_c02315{width:16.488000px;}
._10_c02315{width:19.188000px;}
._f_c02315{width:20.520000px;}
._e_c02315{width:21.600000px;}
._c_c02315{width:24.336000px;}
._d_c02315{width:25.488000px;}
._a_c02315{width:30.240000px;}
._b_c02315{width:31.608000px;}
._14_c02315{width:35.280000px;}
.fc1_c02315{color:rgb(192,80,77);}
.fc0_c02315{color:rgb(0,0,0);}
.fs0_c02315{font-size:66.240000px;}
.fs1_c02315{font-size:72.000000px;}
.y0_c02315{bottom:0.000000px;}
.y3_c02315{bottom:4.680000px;}
.y2_c02315{bottom:41.796000px;}
.y1_c02315{bottom:75.456000px;}
.y22_c02315{bottom:133.776000px;}
.y21_c02315{bottom:164.910000px;}
.y20_c02315{bottom:195.870000px;}
.y1f_c02315{bottom:226.830000px;}
.y1e_c02315{bottom:257.970000px;}
.y1d_c02315{bottom:288.975000px;}
.y1c_c02315{bottom:320.115000px;}
.y1b_c02315{bottom:351.075000px;}
.y1a_c02315{bottom:382.215000px;}
.y19_c02315{bottom:413.175000px;}
.y18_c02315{bottom:444.315000px;}
.y17_c02315{bottom:475.275000px;}
.y16_c02315{bottom:506.415000px;}
.y15_c02315{bottom:537.405000px;}
.y14_c02315{bottom:568.545000px;}
.y13_c02315{bottom:599.505000px;}
.y12_c02315{bottom:630.645000px;}
.y11_c02315{bottom:661.605000px;}
.y10_c02315{bottom:692.745000px;}
.yf_c02315{bottom:723.705000px;}
.ye_c02315{bottom:754.845000px;}
.yd_c02315{bottom:785.805000px;}
.yc_c02315{bottom:816.990000px;}
.yb_c02315{bottom:847.950000px;}
.ya_c02315{bottom:879.090000px;}
.y9_c02315{bottom:910.050000px;}
.y8_c02315{bottom:941.190000px;}
.y7_c02315{bottom:972.150000px;}
.y6_c02315{bottom:1003.290000px;}
.y5_c02315{bottom:1034.250000px;}
.y4_c02315{bottom:1065.420000px;}
.h2_c02315{height:22.500000px;}
.h1_c02315{height:48.871406px;}
.h4_c02315{height:64.546875px;}
.h3_c02315{height:70.664062px;}
.h0_c02315{height:1188.000000px;}
.w1_c02315{width:66.636000px;}
.w0_c02315{width:918.000000px;}
.x0_c02315{left:0.000000px;}
.x3_c02315{left:16.560000px;}
.x1_c02315{left:127.656000px;}
.x4_c02315{left:187.050000px;}
.x2_c02315{left:820.950000px;}
@media print{
.v0_c02315{vertical-align:0.000000pt;}
.ls0_c02315{letter-spacing:0.000000pt;}
.ls1_c02315{letter-spacing:0.064000pt;}
.ws0_c02315{word-spacing:0.000000pt;}
._6_c02315{margin-left:-1.088000pt;}
._1_c02315{width:1.024000pt;}
._7_c02315{width:2.304000pt;}
._11_c02315{width:3.200000pt;}
._13_c02315{width:4.160000pt;}
._3_c02315{width:5.184000pt;}
._4_c02315{width:6.080000pt;}
._5_c02315{width:7.296000pt;}
._8_c02315{width:8.640000pt;}
._9_c02315{width:10.112000pt;}
._15_c02315{width:11.392000pt;}
._0_c02315{width:12.800000pt;}
._2_c02315{width:13.696000pt;}
._12_c02315{width:14.656000pt;}
._10_c02315{width:17.056000pt;}
._f_c02315{width:18.240000pt;}
._e_c02315{width:19.200000pt;}
._c_c02315{width:21.632000pt;}
._d_c02315{width:22.656000pt;}
._a_c02315{width:26.880000pt;}
._b_c02315{width:28.096000pt;}
._14_c02315{width:31.360000pt;}
.fs0_c02315{font-size:58.880000pt;}
.fs1_c02315{font-size:64.000000pt;}
.y0_c02315{bottom:0.000000pt;}
.y3_c02315{bottom:4.160000pt;}
.y2_c02315{bottom:37.152000pt;}
.y1_c02315{bottom:67.072000pt;}
.y22_c02315{bottom:118.912000pt;}
.y21_c02315{bottom:146.586667pt;}
.y20_c02315{bottom:174.106667pt;}
.y1f_c02315{bottom:201.626667pt;}
.y1e_c02315{bottom:229.306667pt;}
.y1d_c02315{bottom:256.866667pt;}
.y1c_c02315{bottom:284.546667pt;}
.y1b_c02315{bottom:312.066667pt;}
.y1a_c02315{bottom:339.746667pt;}
.y19_c02315{bottom:367.266667pt;}
.y18_c02315{bottom:394.946667pt;}
.y17_c02315{bottom:422.466667pt;}
.y16_c02315{bottom:450.146667pt;}
.y15_c02315{bottom:477.693333pt;}
.y14_c02315{bottom:505.373333pt;}
.y13_c02315{bottom:532.893333pt;}
.y12_c02315{bottom:560.573333pt;}
.y11_c02315{bottom:588.093333pt;}
.y10_c02315{bottom:615.773333pt;}
.yf_c02315{bottom:643.293333pt;}
.ye_c02315{bottom:670.973333pt;}
.yd_c02315{bottom:698.493333pt;}
.yc_c02315{bottom:726.213333pt;}
.yb_c02315{bottom:753.733333pt;}
.ya_c02315{bottom:781.413333pt;}
.y9_c02315{bottom:808.933333pt;}
.y8_c02315{bottom:836.613333pt;}
.y7_c02315{bottom:864.133333pt;}
.y6_c02315{bottom:891.813333pt;}
.y5_c02315{bottom:919.333333pt;}
.y4_c02315{bottom:947.040000pt;}
.h2_c02315{height:20.000000pt;}
.h1_c02315{height:43.441250pt;}
.h4_c02315{height:57.375000pt;}
.h3_c02315{height:62.812500pt;}
.h0_c02315{height:1056.000000pt;}
.w1_c02315{width:59.232000pt;}
.w0_c02315{width:816.000000pt;}
.x0_c02315{left:0.000000pt;}
.x3_c02315{left:14.720000pt;}
.x1_c02315{left:113.472000pt;}
.x4_c02315{left:166.266667pt;}
.x2_c02315{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02316 {
    display:none;
  }
  .loading-indicator_c02316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02316 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02316 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02316" -> "#page-container .classname_c02316")
 */
.pf_c02316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02316 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02316 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02316 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02316 {overflow:visible;}
  }
}
.c_c02316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02316 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02316:after { /* webkit #35443 */
  content: '';
}
.t_c02316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02316 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02316 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02316 { /* info for Javascript */
  display:none;
}
.l_c02316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02316:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02316 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02316.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02316;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02316{font-family:ff1_c02316;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02316;src:url('chunks/assets/font_42932068aa0e1226d3a6c43a.woff2')format("woff");}.ff2_c02316{font-family:ff2_c02316;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:ff3_c02316;src:url('chunks/assets/font_0a1436d87ba0d0dda9adba10.woff2')format("woff");}.ff3_c02316{font-family:ff3_c02316;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02316{vertical-align:0.000000px;}
.ls0_c02316{letter-spacing:0.000000px;}
.sc__c02316{text-shadow:none;}
.sc0_c02316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02316{-webkit-text-stroke:0px transparent;}
.sc0_c02316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02316{word-spacing:-18.000000px;}
.ws1_c02316{word-spacing:0.000000px;}
._4_c02316{margin-left:-1.152000px;}
._5_c02316{width:1.008000px;}
._6_c02316{width:2.232000px;}
._c_c02316{width:3.528000px;}
._2_c02316{width:5.328000px;}
._3_c02316{width:6.336000px;}
._a_c02316{width:7.848000px;}
._b_c02316{width:8.928000px;}
._15_c02316{width:10.080000px;}
._14_c02316{width:12.672000px;}
._f_c02316{width:14.256000px;}
._11_c02316{width:15.336000px;}
._10_c02316{width:16.776000px;}
._8_c02316{width:19.152000px;}
._9_c02316{width:20.784000px;}
._16_c02316{width:22.392000px;}
._7_c02316{width:23.544000px;}
._0_c02316{width:25.776000px;}
._1_c02316{width:26.784000px;}
._12_c02316{width:30.384000px;}
._13_c02316{width:31.536000px;}
._d_c02316{width:43.848000px;}
._e_c02316{width:45.000000px;}
.fc1_c02316{color:rgb(192,80,77);}
.fc0_c02316{color:rgb(0,0,0);}
.fs0_c02316{font-size:66.240000px;}
.fs1_c02316{font-size:72.000000px;}
.y0_c02316{bottom:0.000000px;}
.y3_c02316{bottom:4.680000px;}
.y2_c02316{bottom:41.796000px;}
.y1_c02316{bottom:75.456000px;}
.y22_c02316{bottom:133.776000px;}
.y21_c02316{bottom:164.910000px;}
.y20_c02316{bottom:195.870000px;}
.y1f_c02316{bottom:226.830000px;}
.y1e_c02316{bottom:257.970000px;}
.y1d_c02316{bottom:288.975000px;}
.y1c_c02316{bottom:320.115000px;}
.y1b_c02316{bottom:351.075000px;}
.y1a_c02316{bottom:382.215000px;}
.y19_c02316{bottom:413.175000px;}
.y18_c02316{bottom:444.315000px;}
.y17_c02316{bottom:475.275000px;}
.y16_c02316{bottom:506.415000px;}
.y15_c02316{bottom:537.405000px;}
.y14_c02316{bottom:568.545000px;}
.y13_c02316{bottom:599.505000px;}
.y12_c02316{bottom:630.645000px;}
.y11_c02316{bottom:661.605000px;}
.y10_c02316{bottom:692.745000px;}
.yf_c02316{bottom:723.705000px;}
.ye_c02316{bottom:754.845000px;}
.yd_c02316{bottom:785.805000px;}
.yc_c02316{bottom:816.990000px;}
.yb_c02316{bottom:847.950000px;}
.ya_c02316{bottom:879.090000px;}
.y9_c02316{bottom:910.050000px;}
.y8_c02316{bottom:941.190000px;}
.y7_c02316{bottom:972.150000px;}
.y6_c02316{bottom:1003.290000px;}
.y5_c02316{bottom:1034.250000px;}
.y4_c02316{bottom:1065.420000px;}
.h2_c02316{height:22.500000px;}
.h1_c02316{height:48.871406px;}
.h4_c02316{height:64.546875px;}
.h3_c02316{height:70.664062px;}
.h0_c02316{height:1188.000000px;}
.w1_c02316{width:66.636000px;}
.w0_c02316{width:918.000000px;}
.x0_c02316{left:0.000000px;}
.x3_c02316{left:16.560000px;}
.x1_c02316{left:127.656000px;}
.x4_c02316{left:187.050000px;}
.x2_c02316{left:820.950000px;}
@media print{
.v0_c02316{vertical-align:0.000000pt;}
.ls0_c02316{letter-spacing:0.000000pt;}
.ws0_c02316{word-spacing:-16.000000pt;}
.ws1_c02316{word-spacing:0.000000pt;}
._4_c02316{margin-left:-1.024000pt;}
._5_c02316{width:0.896000pt;}
._6_c02316{width:1.984000pt;}
._c_c02316{width:3.136000pt;}
._2_c02316{width:4.736000pt;}
._3_c02316{width:5.632000pt;}
._a_c02316{width:6.976000pt;}
._b_c02316{width:7.936000pt;}
._15_c02316{width:8.960000pt;}
._14_c02316{width:11.264000pt;}
._f_c02316{width:12.672000pt;}
._11_c02316{width:13.632000pt;}
._10_c02316{width:14.912000pt;}
._8_c02316{width:17.024000pt;}
._9_c02316{width:18.474667pt;}
._16_c02316{width:19.904000pt;}
._7_c02316{width:20.928000pt;}
._0_c02316{width:22.912000pt;}
._1_c02316{width:23.808000pt;}
._12_c02316{width:27.008000pt;}
._13_c02316{width:28.032000pt;}
._d_c02316{width:38.976000pt;}
._e_c02316{width:40.000000pt;}
.fs0_c02316{font-size:58.880000pt;}
.fs1_c02316{font-size:64.000000pt;}
.y0_c02316{bottom:0.000000pt;}
.y3_c02316{bottom:4.160000pt;}
.y2_c02316{bottom:37.152000pt;}
.y1_c02316{bottom:67.072000pt;}
.y22_c02316{bottom:118.912000pt;}
.y21_c02316{bottom:146.586667pt;}
.y20_c02316{bottom:174.106667pt;}
.y1f_c02316{bottom:201.626667pt;}
.y1e_c02316{bottom:229.306667pt;}
.y1d_c02316{bottom:256.866667pt;}
.y1c_c02316{bottom:284.546667pt;}
.y1b_c02316{bottom:312.066667pt;}
.y1a_c02316{bottom:339.746667pt;}
.y19_c02316{bottom:367.266667pt;}
.y18_c02316{bottom:394.946667pt;}
.y17_c02316{bottom:422.466667pt;}
.y16_c02316{bottom:450.146667pt;}
.y15_c02316{bottom:477.693333pt;}
.y14_c02316{bottom:505.373333pt;}
.y13_c02316{bottom:532.893333pt;}
.y12_c02316{bottom:560.573333pt;}
.y11_c02316{bottom:588.093333pt;}
.y10_c02316{bottom:615.773333pt;}
.yf_c02316{bottom:643.293333pt;}
.ye_c02316{bottom:670.973333pt;}
.yd_c02316{bottom:698.493333pt;}
.yc_c02316{bottom:726.213333pt;}
.yb_c02316{bottom:753.733333pt;}
.ya_c02316{bottom:781.413333pt;}
.y9_c02316{bottom:808.933333pt;}
.y8_c02316{bottom:836.613333pt;}
.y7_c02316{bottom:864.133333pt;}
.y6_c02316{bottom:891.813333pt;}
.y5_c02316{bottom:919.333333pt;}
.y4_c02316{bottom:947.040000pt;}
.h2_c02316{height:20.000000pt;}
.h1_c02316{height:43.441250pt;}
.h4_c02316{height:57.375000pt;}
.h3_c02316{height:62.812500pt;}
.h0_c02316{height:1056.000000pt;}
.w1_c02316{width:59.232000pt;}
.w0_c02316{width:816.000000pt;}
.x0_c02316{left:0.000000pt;}
.x3_c02316{left:14.720000pt;}
.x1_c02316{left:113.472000pt;}
.x4_c02316{left:166.266667pt;}
.x2_c02316{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02317 {
    display:none;
  }
  .loading-indicator_c02317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02317 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02317 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02317" -> "#page-container .classname_c02317")
 */
.pf_c02317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02317 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02317 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02317 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02317 {overflow:visible;}
  }
}
.c_c02317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02317 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02317:after { /* webkit #35443 */
  content: '';
}
.t_c02317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02317 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02317 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02317 { /* info for Javascript */
  display:none;
}
.l_c02317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02317:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02317 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02317.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02317;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02317{font-family:ff1_c02317;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02317;src:url('chunks/assets/font_5294f11a7a8efe591e531419.woff2')format("woff");}.ff2_c02317{font-family:ff2_c02317;line-height:1.112305;font-style:normal;font-weight: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_c02317;src:url('chunks/assets/font_c6e985ad537ee1bcf41b1a77.woff2')format("woff");}.ff3_c02317{font-family:ff3_c02317;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;}
.m0_c02317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02317{vertical-align:0.000000px;}
.ls0_c02317{letter-spacing:0.000000px;}
.ls1_c02317{letter-spacing:0.216000px;}
.sc__c02317{text-shadow:none;}
.sc0_c02317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02317{-webkit-text-stroke:0px transparent;}
.sc0_c02317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02317{word-spacing:-18.216000px;}
.ws1_c02317{word-spacing:0.000000px;}
._1_c02317{margin-left:-1.440000px;}
._3_c02317{width:1.152000px;}
._9_c02317{width:2.592000px;}
._d_c02317{width:3.600000px;}
._e_c02317{width:5.112000px;}
._12_c02317{width:6.408000px;}
._7_c02317{width:7.776000px;}
._8_c02317{width:9.072000px;}
._14_c02317{width:11.088000px;}
._b_c02317{width:12.240000px;}
._2_c02317{width:13.608000px;}
._0_c02317{width:14.904000px;}
._4_c02317{width:15.912000px;}
._13_c02317{width:16.920000px;}
._c_c02317{width:19.152000px;}
._a_c02317{width:21.240000px;}
._f_c02317{width:24.840000px;}
._10_c02317{width:25.992000px;}
._11_c02317{width:27.936000px;}
._15_c02317{width:29.304000px;}
._5_c02317{width:34.632000px;}
._6_c02317{width:36.576000px;}
.fc1_c02317{color:rgb(192,80,77);}
.fc0_c02317{color:rgb(0,0,0);}
.fs0_c02317{font-size:66.240000px;}
.fs1_c02317{font-size:72.000000px;}
.y0_c02317{bottom:0.000000px;}
.y3_c02317{bottom:4.680000px;}
.y2_c02317{bottom:41.796000px;}
.y1_c02317{bottom:75.456000px;}
.y22_c02317{bottom:133.776000px;}
.y21_c02317{bottom:164.910000px;}
.y20_c02317{bottom:195.870000px;}
.y1f_c02317{bottom:226.830000px;}
.y1e_c02317{bottom:257.970000px;}
.y1d_c02317{bottom:288.975000px;}
.y1c_c02317{bottom:320.115000px;}
.y1b_c02317{bottom:351.075000px;}
.y1a_c02317{bottom:382.215000px;}
.y19_c02317{bottom:413.175000px;}
.y18_c02317{bottom:444.315000px;}
.y17_c02317{bottom:475.275000px;}
.y16_c02317{bottom:506.415000px;}
.y15_c02317{bottom:537.405000px;}
.y14_c02317{bottom:568.545000px;}
.y13_c02317{bottom:599.505000px;}
.y12_c02317{bottom:630.645000px;}
.y11_c02317{bottom:661.605000px;}
.y10_c02317{bottom:692.745000px;}
.yf_c02317{bottom:723.705000px;}
.ye_c02317{bottom:754.845000px;}
.yd_c02317{bottom:785.805000px;}
.yc_c02317{bottom:816.990000px;}
.yb_c02317{bottom:847.950000px;}
.ya_c02317{bottom:879.090000px;}
.y9_c02317{bottom:910.050000px;}
.y8_c02317{bottom:941.190000px;}
.y7_c02317{bottom:972.150000px;}
.y6_c02317{bottom:1003.290000px;}
.y5_c02317{bottom:1034.250000px;}
.y4_c02317{bottom:1065.420000px;}
.h2_c02317{height:22.500000px;}
.h1_c02317{height:48.871406px;}
.h3_c02317{height:64.546875px;}
.h4_c02317{height:70.664062px;}
.h0_c02317{height:1188.000000px;}
.w1_c02317{width:66.636000px;}
.w0_c02317{width:918.000000px;}
.x0_c02317{left:0.000000px;}
.x3_c02317{left:16.560000px;}
.x1_c02317{left:127.656000px;}
.x4_c02317{left:187.050000px;}
.x2_c02317{left:820.950000px;}
@media print{
.v0_c02317{vertical-align:0.000000pt;}
.ls0_c02317{letter-spacing:0.000000pt;}
.ls1_c02317{letter-spacing:0.192000pt;}
.ws0_c02317{word-spacing:-16.192000pt;}
.ws1_c02317{word-spacing:0.000000pt;}
._1_c02317{margin-left:-1.280000pt;}
._3_c02317{width:1.024000pt;}
._9_c02317{width:2.304000pt;}
._d_c02317{width:3.200000pt;}
._e_c02317{width:4.544000pt;}
._12_c02317{width:5.696000pt;}
._7_c02317{width:6.912000pt;}
._8_c02317{width:8.064000pt;}
._14_c02317{width:9.856000pt;}
._b_c02317{width:10.880000pt;}
._2_c02317{width:12.096000pt;}
._0_c02317{width:13.248000pt;}
._4_c02317{width:14.144000pt;}
._13_c02317{width:15.040000pt;}
._c_c02317{width:17.024000pt;}
._a_c02317{width:18.880000pt;}
._f_c02317{width:22.080000pt;}
._10_c02317{width:23.104000pt;}
._11_c02317{width:24.832000pt;}
._15_c02317{width:26.048000pt;}
._5_c02317{width:30.784000pt;}
._6_c02317{width:32.512000pt;}
.fs0_c02317{font-size:58.880000pt;}
.fs1_c02317{font-size:64.000000pt;}
.y0_c02317{bottom:0.000000pt;}
.y3_c02317{bottom:4.160000pt;}
.y2_c02317{bottom:37.152000pt;}
.y1_c02317{bottom:67.072000pt;}
.y22_c02317{bottom:118.912000pt;}
.y21_c02317{bottom:146.586667pt;}
.y20_c02317{bottom:174.106667pt;}
.y1f_c02317{bottom:201.626667pt;}
.y1e_c02317{bottom:229.306667pt;}
.y1d_c02317{bottom:256.866667pt;}
.y1c_c02317{bottom:284.546667pt;}
.y1b_c02317{bottom:312.066667pt;}
.y1a_c02317{bottom:339.746667pt;}
.y19_c02317{bottom:367.266667pt;}
.y18_c02317{bottom:394.946667pt;}
.y17_c02317{bottom:422.466667pt;}
.y16_c02317{bottom:450.146667pt;}
.y15_c02317{bottom:477.693333pt;}
.y14_c02317{bottom:505.373333pt;}
.y13_c02317{bottom:532.893333pt;}
.y12_c02317{bottom:560.573333pt;}
.y11_c02317{bottom:588.093333pt;}
.y10_c02317{bottom:615.773333pt;}
.yf_c02317{bottom:643.293333pt;}
.ye_c02317{bottom:670.973333pt;}
.yd_c02317{bottom:698.493333pt;}
.yc_c02317{bottom:726.213333pt;}
.yb_c02317{bottom:753.733333pt;}
.ya_c02317{bottom:781.413333pt;}
.y9_c02317{bottom:808.933333pt;}
.y8_c02317{bottom:836.613333pt;}
.y7_c02317{bottom:864.133333pt;}
.y6_c02317{bottom:891.813333pt;}
.y5_c02317{bottom:919.333333pt;}
.y4_c02317{bottom:947.040000pt;}
.h2_c02317{height:20.000000pt;}
.h1_c02317{height:43.441250pt;}
.h3_c02317{height:57.375000pt;}
.h4_c02317{height:62.812500pt;}
.h0_c02317{height:1056.000000pt;}
.w1_c02317{width:59.232000pt;}
.w0_c02317{width:816.000000pt;}
.x0_c02317{left:0.000000pt;}
.x3_c02317{left:14.720000pt;}
.x1_c02317{left:113.472000pt;}
.x4_c02317{left:166.266667pt;}
.x2_c02317{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02318 {
    display:none;
  }
  .loading-indicator_c02318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02318 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02318 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02318" -> "#page-container .classname_c02318")
 */
.pf_c02318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02318 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02318 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02318 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02318 {overflow:visible;}
  }
}
.c_c02318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02318 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02318:after { /* webkit #35443 */
  content: '';
}
.t_c02318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02318 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02318 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02318 { /* info for Javascript */
  display:none;
}
.l_c02318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02318:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02318 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02318.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02318;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02318{font-family:ff1_c02318;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02318;src:url('chunks/assets/font_2beda3174b01d7287eca7272.woff2')format("woff");}.ff2_c02318{font-family:ff2_c02318;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:ff3_c02318;src:url('chunks/assets/font_b8edff01d69bc03982e60d68.woff2')format("woff");}.ff3_c02318{font-family:ff3_c02318;line-height:1.284180;font-style:normal;font-weight: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_c02318;src:url('chunks/assets/font_57d6ff70d1c2b0fd739cd8c4.woff2')format("woff");}.ff4_c02318{font-family:ff4_c02318;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02318{vertical-align:0.000000px;}
.ls0_c02318{letter-spacing:0.000000px;}
.sc__c02318{text-shadow:none;}
.sc0_c02318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02318{-webkit-text-stroke:0px transparent;}
.sc0_c02318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02318{word-spacing:0.000000px;}
._3_c02318{margin-left:-1.080000px;}
._1_c02318{width:1.116000px;}
._8_c02318{width:2.448000px;}
._e_c02318{width:3.600000px;}
._6_c02318{width:4.752000px;}
._7_c02318{width:6.048000px;}
._9_c02318{width:7.560000px;}
._a_c02318{width:8.748000px;}
._13_c02318{width:10.584000px;}
._0_c02318{width:12.600000px;}
._b_c02318{width:13.752000px;}
._c_c02318{width:15.624000px;}
._12_c02318{width:19.944000px;}
._d_c02318{width:22.752000px;}
._5_c02318{width:24.336000px;}
._f_c02318{width:25.632000px;}
._10_c02318{width:29.376000px;}
._11_c02318{width:30.600000px;}
._2_c02318{width:37.008000px;}
._4_c02318{width:38.016000px;}
.fc1_c02318{color:rgb(192,80,77);}
.fc0_c02318{color:rgb(0,0,0);}
.fs0_c02318{font-size:66.240000px;}
.fs1_c02318{font-size:72.000000px;}
.y0_c02318{bottom:0.000000px;}
.y3_c02318{bottom:4.680000px;}
.y2_c02318{bottom:41.796000px;}
.y1_c02318{bottom:75.456000px;}
.y22_c02318{bottom:133.776000px;}
.y21_c02318{bottom:164.910000px;}
.y20_c02318{bottom:195.870000px;}
.y1f_c02318{bottom:226.830000px;}
.y1e_c02318{bottom:257.970000px;}
.y1d_c02318{bottom:288.975000px;}
.y1c_c02318{bottom:320.115000px;}
.y1b_c02318{bottom:351.075000px;}
.y1a_c02318{bottom:382.215000px;}
.y19_c02318{bottom:413.175000px;}
.y18_c02318{bottom:444.315000px;}
.y17_c02318{bottom:475.275000px;}
.y16_c02318{bottom:506.415000px;}
.y15_c02318{bottom:537.405000px;}
.y14_c02318{bottom:568.545000px;}
.y13_c02318{bottom:599.505000px;}
.y12_c02318{bottom:630.645000px;}
.y11_c02318{bottom:661.605000px;}
.y10_c02318{bottom:692.745000px;}
.yf_c02318{bottom:723.705000px;}
.ye_c02318{bottom:754.845000px;}
.yd_c02318{bottom:785.805000px;}
.yc_c02318{bottom:816.990000px;}
.yb_c02318{bottom:847.950000px;}
.ya_c02318{bottom:879.090000px;}
.y9_c02318{bottom:910.050000px;}
.y8_c02318{bottom:941.190000px;}
.y7_c02318{bottom:972.150000px;}
.y6_c02318{bottom:1003.290000px;}
.y5_c02318{bottom:1034.250000px;}
.y4_c02318{bottom:1065.420000px;}
.h2_c02318{height:22.500000px;}
.h1_c02318{height:48.871406px;}
.h4_c02318{height:64.546875px;}
.h3_c02318{height:70.664062px;}
.h0_c02318{height:1188.000000px;}
.w1_c02318{width:66.636000px;}
.w0_c02318{width:918.000000px;}
.x0_c02318{left:0.000000px;}
.x3_c02318{left:16.560000px;}
.x1_c02318{left:127.656000px;}
.x4_c02318{left:187.050000px;}
.x2_c02318{left:820.950000px;}
@media print{
.v0_c02318{vertical-align:0.000000pt;}
.ls0_c02318{letter-spacing:0.000000pt;}
.ws0_c02318{word-spacing:0.000000pt;}
._3_c02318{margin-left:-0.960000pt;}
._1_c02318{width:0.992000pt;}
._8_c02318{width:2.176000pt;}
._e_c02318{width:3.200000pt;}
._6_c02318{width:4.224000pt;}
._7_c02318{width:5.376000pt;}
._9_c02318{width:6.720000pt;}
._a_c02318{width:7.776000pt;}
._13_c02318{width:9.408000pt;}
._0_c02318{width:11.200000pt;}
._b_c02318{width:12.224000pt;}
._c_c02318{width:13.888000pt;}
._12_c02318{width:17.728000pt;}
._d_c02318{width:20.224000pt;}
._5_c02318{width:21.632000pt;}
._f_c02318{width:22.784000pt;}
._10_c02318{width:26.112000pt;}
._11_c02318{width:27.200000pt;}
._2_c02318{width:32.896000pt;}
._4_c02318{width:33.792000pt;}
.fs0_c02318{font-size:58.880000pt;}
.fs1_c02318{font-size:64.000000pt;}
.y0_c02318{bottom:0.000000pt;}
.y3_c02318{bottom:4.160000pt;}
.y2_c02318{bottom:37.152000pt;}
.y1_c02318{bottom:67.072000pt;}
.y22_c02318{bottom:118.912000pt;}
.y21_c02318{bottom:146.586667pt;}
.y20_c02318{bottom:174.106667pt;}
.y1f_c02318{bottom:201.626667pt;}
.y1e_c02318{bottom:229.306667pt;}
.y1d_c02318{bottom:256.866667pt;}
.y1c_c02318{bottom:284.546667pt;}
.y1b_c02318{bottom:312.066667pt;}
.y1a_c02318{bottom:339.746667pt;}
.y19_c02318{bottom:367.266667pt;}
.y18_c02318{bottom:394.946667pt;}
.y17_c02318{bottom:422.466667pt;}
.y16_c02318{bottom:450.146667pt;}
.y15_c02318{bottom:477.693333pt;}
.y14_c02318{bottom:505.373333pt;}
.y13_c02318{bottom:532.893333pt;}
.y12_c02318{bottom:560.573333pt;}
.y11_c02318{bottom:588.093333pt;}
.y10_c02318{bottom:615.773333pt;}
.yf_c02318{bottom:643.293333pt;}
.ye_c02318{bottom:670.973333pt;}
.yd_c02318{bottom:698.493333pt;}
.yc_c02318{bottom:726.213333pt;}
.yb_c02318{bottom:753.733333pt;}
.ya_c02318{bottom:781.413333pt;}
.y9_c02318{bottom:808.933333pt;}
.y8_c02318{bottom:836.613333pt;}
.y7_c02318{bottom:864.133333pt;}
.y6_c02318{bottom:891.813333pt;}
.y5_c02318{bottom:919.333333pt;}
.y4_c02318{bottom:947.040000pt;}
.h2_c02318{height:20.000000pt;}
.h1_c02318{height:43.441250pt;}
.h4_c02318{height:57.375000pt;}
.h3_c02318{height:62.812500pt;}
.h0_c02318{height:1056.000000pt;}
.w1_c02318{width:59.232000pt;}
.w0_c02318{width:816.000000pt;}
.x0_c02318{left:0.000000pt;}
.x3_c02318{left:14.720000pt;}
.x1_c02318{left:113.472000pt;}
.x4_c02318{left:166.266667pt;}
.x2_c02318{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02319 {
    display:none;
  }
  .loading-indicator_c02319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02319 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02319 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02319" -> "#page-container .classname_c02319")
 */
.pf_c02319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02319 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02319 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02319 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02319 {overflow:visible;}
  }
}
.c_c02319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02319 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02319:after { /* webkit #35443 */
  content: '';
}
.t_c02319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02319 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02319 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02319 { /* info for Javascript */
  display:none;
}
.l_c02319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02319:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02319 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02319.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02319;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02319{font-family:ff1_c02319;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02319;src:url('chunks/assets/font_768f8027368233566a779f1e.woff2')format("woff");}.ff2_c02319{font-family:ff2_c02319;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:ff3_c02319;src:url('chunks/assets/font_c5110b239c19842ae60dc7a6.woff2')format("woff");}.ff3_c02319{font-family:ff3_c02319;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02319{vertical-align:0.000000px;}
.ls1_c02319{letter-spacing:-0.720000px;}
.ls0_c02319{letter-spacing:0.000000px;}
.sc__c02319{text-shadow:none;}
.sc0_c02319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02319{-webkit-text-stroke:0px transparent;}
.sc0_c02319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02319{word-spacing:0.000000px;}
._12_c02319{margin-left:-2.052000px;}
._2_c02319{margin-left:-1.008000px;}
._3_c02319{width:1.080000px;}
._0_c02319{width:2.448000px;}
._1_c02319{width:3.888000px;}
._6_c02319{width:4.968000px;}
._c_c02319{width:6.984000px;}
._10_c02319{width:8.136000px;}
._b_c02319{width:9.144000px;}
._e_c02319{width:10.224000px;}
._f_c02319{width:11.376000px;}
._15_c02319{width:13.464000px;}
._a_c02319{width:14.544000px;}
._9_c02319{width:16.344000px;}
._11_c02319{width:20.304000px;}
._7_c02319{width:21.996000px;}
._4_c02319{width:23.040000px;}
._5_c02319{width:24.192000px;}
._d_c02319{width:25.416000px;}
._17_c02319{width:26.496000px;}
._16_c02319{width:27.648000px;}
._8_c02319{width:30.672000px;}
._13_c02319{width:32.688000px;}
._14_c02319{width:34.344000px;}
.fc1_c02319{color:rgb(192,80,77);}
.fc0_c02319{color:rgb(0,0,0);}
.fs0_c02319{font-size:66.240000px;}
.fs1_c02319{font-size:72.000000px;}
.y0_c02319{bottom:0.000000px;}
.y3_c02319{bottom:4.680000px;}
.y2_c02319{bottom:41.796000px;}
.y1_c02319{bottom:75.456000px;}
.y22_c02319{bottom:133.776000px;}
.y21_c02319{bottom:164.910000px;}
.y20_c02319{bottom:195.870000px;}
.y1f_c02319{bottom:226.830000px;}
.y1e_c02319{bottom:257.970000px;}
.y1d_c02319{bottom:288.975000px;}
.y1c_c02319{bottom:320.115000px;}
.y1b_c02319{bottom:351.075000px;}
.y1a_c02319{bottom:382.215000px;}
.y19_c02319{bottom:413.175000px;}
.y18_c02319{bottom:444.315000px;}
.y17_c02319{bottom:475.275000px;}
.y16_c02319{bottom:506.415000px;}
.y15_c02319{bottom:537.405000px;}
.y14_c02319{bottom:568.545000px;}
.y13_c02319{bottom:599.505000px;}
.y12_c02319{bottom:630.645000px;}
.y11_c02319{bottom:661.605000px;}
.y10_c02319{bottom:692.745000px;}
.yf_c02319{bottom:723.705000px;}
.ye_c02319{bottom:754.845000px;}
.yd_c02319{bottom:785.805000px;}
.yc_c02319{bottom:816.990000px;}
.yb_c02319{bottom:847.950000px;}
.ya_c02319{bottom:879.090000px;}
.y9_c02319{bottom:910.050000px;}
.y8_c02319{bottom:941.190000px;}
.y7_c02319{bottom:972.150000px;}
.y6_c02319{bottom:1003.290000px;}
.y5_c02319{bottom:1034.250000px;}
.y4_c02319{bottom:1065.420000px;}
.h2_c02319{height:22.500000px;}
.h1_c02319{height:48.871406px;}
.h4_c02319{height:64.546875px;}
.h3_c02319{height:70.664062px;}
.h0_c02319{height:1188.000000px;}
.w1_c02319{width:66.636000px;}
.w0_c02319{width:918.000000px;}
.x0_c02319{left:0.000000px;}
.x3_c02319{left:16.560000px;}
.x1_c02319{left:127.656000px;}
.x4_c02319{left:187.050000px;}
.x2_c02319{left:820.950000px;}
@media print{
.v0_c02319{vertical-align:0.000000pt;}
.ls1_c02319{letter-spacing:-0.640000pt;}
.ls0_c02319{letter-spacing:0.000000pt;}
.ws0_c02319{word-spacing:0.000000pt;}
._12_c02319{margin-left:-1.824000pt;}
._2_c02319{margin-left:-0.896000pt;}
._3_c02319{width:0.960000pt;}
._0_c02319{width:2.176000pt;}
._1_c02319{width:3.456000pt;}
._6_c02319{width:4.416000pt;}
._c_c02319{width:6.208000pt;}
._10_c02319{width:7.232000pt;}
._b_c02319{width:8.128000pt;}
._e_c02319{width:9.088000pt;}
._f_c02319{width:10.112000pt;}
._15_c02319{width:11.968000pt;}
._a_c02319{width:12.928000pt;}
._9_c02319{width:14.528000pt;}
._11_c02319{width:18.048000pt;}
._7_c02319{width:19.552000pt;}
._4_c02319{width:20.480000pt;}
._5_c02319{width:21.504000pt;}
._d_c02319{width:22.592000pt;}
._17_c02319{width:23.552000pt;}
._16_c02319{width:24.576000pt;}
._8_c02319{width:27.264000pt;}
._13_c02319{width:29.056000pt;}
._14_c02319{width:30.528000pt;}
.fs0_c02319{font-size:58.880000pt;}
.fs1_c02319{font-size:64.000000pt;}
.y0_c02319{bottom:0.000000pt;}
.y3_c02319{bottom:4.160000pt;}
.y2_c02319{bottom:37.152000pt;}
.y1_c02319{bottom:67.072000pt;}
.y22_c02319{bottom:118.912000pt;}
.y21_c02319{bottom:146.586667pt;}
.y20_c02319{bottom:174.106667pt;}
.y1f_c02319{bottom:201.626667pt;}
.y1e_c02319{bottom:229.306667pt;}
.y1d_c02319{bottom:256.866667pt;}
.y1c_c02319{bottom:284.546667pt;}
.y1b_c02319{bottom:312.066667pt;}
.y1a_c02319{bottom:339.746667pt;}
.y19_c02319{bottom:367.266667pt;}
.y18_c02319{bottom:394.946667pt;}
.y17_c02319{bottom:422.466667pt;}
.y16_c02319{bottom:450.146667pt;}
.y15_c02319{bottom:477.693333pt;}
.y14_c02319{bottom:505.373333pt;}
.y13_c02319{bottom:532.893333pt;}
.y12_c02319{bottom:560.573333pt;}
.y11_c02319{bottom:588.093333pt;}
.y10_c02319{bottom:615.773333pt;}
.yf_c02319{bottom:643.293333pt;}
.ye_c02319{bottom:670.973333pt;}
.yd_c02319{bottom:698.493333pt;}
.yc_c02319{bottom:726.213333pt;}
.yb_c02319{bottom:753.733333pt;}
.ya_c02319{bottom:781.413333pt;}
.y9_c02319{bottom:808.933333pt;}
.y8_c02319{bottom:836.613333pt;}
.y7_c02319{bottom:864.133333pt;}
.y6_c02319{bottom:891.813333pt;}
.y5_c02319{bottom:919.333333pt;}
.y4_c02319{bottom:947.040000pt;}
.h2_c02319{height:20.000000pt;}
.h1_c02319{height:43.441250pt;}
.h4_c02319{height:57.375000pt;}
.h3_c02319{height:62.812500pt;}
.h0_c02319{height:1056.000000pt;}
.w1_c02319{width:59.232000pt;}
.w0_c02319{width:816.000000pt;}
.x0_c02319{left:0.000000pt;}
.x3_c02319{left:14.720000pt;}
.x1_c02319{left:113.472000pt;}
.x4_c02319{left:166.266667pt;}
.x2_c02319{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02320 {
    display:none;
  }
  .loading-indicator_c02320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02320 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02320 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02320" -> "#page-container .classname_c02320")
 */
.pf_c02320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02320 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02320 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02320 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02320 {overflow:visible;}
  }
}
.c_c02320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02320 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02320:after { /* webkit #35443 */
  content: '';
}
.t_c02320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02320 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02320 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02320 { /* info for Javascript */
  display:none;
}
.l_c02320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02320:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02320 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02320.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02320;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02320{font-family:ff1_c02320;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02320;src:url('chunks/assets/font_c2537c7686e6de9dfdfb2519.woff2')format("woff");}.ff2_c02320{font-family:ff2_c02320;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:ff3_c02320;src:url('chunks/assets/font_278c61646bc8c2e3494b82f6.woff2')format("woff");}.ff3_c02320{font-family:ff3_c02320;line-height:1.112305;font-style:normal;font-weight: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_c02320;src:url('chunks/assets/font_12f684e299a81bfa94fcc580.woff2')format("woff");}.ff4_c02320{font-family:ff4_c02320;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02320{vertical-align:0.000000px;}
.ls0_c02320{letter-spacing:0.000000px;}
.sc__c02320{text-shadow:none;}
.sc0_c02320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02320{-webkit-text-stroke:0px transparent;}
.sc0_c02320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02320{word-spacing:-18.000000px;}
.ws1_c02320{word-spacing:0.000000px;}
._8_c02320{margin-left:-2.160000px;}
._5_c02320{margin-left:-1.008000px;}
._2_c02320{width:1.080000px;}
._6_c02320{width:2.448000px;}
._7_c02320{width:3.744000px;}
._10_c02320{width:5.616000px;}
._d_c02320{width:7.704000px;}
._e_c02320{width:8.784000px;}
._9_c02320{width:11.592000px;}
._12_c02320{width:12.600000px;}
._3_c02320{width:13.608000px;}
._4_c02320{width:15.012000px;}
._13_c02320{width:16.920000px;}
._11_c02320{width:19.296000px;}
._f_c02320{width:21.672000px;}
._b_c02320{width:23.328000px;}
._a_c02320{width:24.624000px;}
._c_c02320{width:25.992000px;}
._0_c02320{width:37.008000px;}
._1_c02320{width:38.160000px;}
.fc1_c02320{color:rgb(192,80,77);}
.fc0_c02320{color:rgb(0,0,0);}
.fs0_c02320{font-size:66.240000px;}
.fs1_c02320{font-size:72.000000px;}
.y0_c02320{bottom:0.000000px;}
.y3_c02320{bottom:4.680000px;}
.y2_c02320{bottom:41.796000px;}
.y1_c02320{bottom:75.456000px;}
.y21_c02320{bottom:164.910000px;}
.y20_c02320{bottom:195.870000px;}
.y1f_c02320{bottom:226.830000px;}
.y1e_c02320{bottom:257.970000px;}
.y1d_c02320{bottom:288.975000px;}
.y1c_c02320{bottom:320.115000px;}
.y1b_c02320{bottom:351.075000px;}
.y1a_c02320{bottom:382.215000px;}
.y19_c02320{bottom:413.175000px;}
.y18_c02320{bottom:444.315000px;}
.y17_c02320{bottom:475.275000px;}
.y16_c02320{bottom:506.415000px;}
.y15_c02320{bottom:537.405000px;}
.y14_c02320{bottom:568.545000px;}
.y13_c02320{bottom:599.505000px;}
.y12_c02320{bottom:630.645000px;}
.y11_c02320{bottom:661.605000px;}
.y10_c02320{bottom:692.745000px;}
.yf_c02320{bottom:723.705000px;}
.ye_c02320{bottom:754.845000px;}
.yd_c02320{bottom:785.805000px;}
.yc_c02320{bottom:816.990000px;}
.yb_c02320{bottom:847.950000px;}
.ya_c02320{bottom:879.090000px;}
.y9_c02320{bottom:910.050000px;}
.y8_c02320{bottom:941.190000px;}
.y7_c02320{bottom:972.150000px;}
.y6_c02320{bottom:1003.290000px;}
.y5_c02320{bottom:1034.250000px;}
.y4_c02320{bottom:1065.420000px;}
.h2_c02320{height:22.500000px;}
.h1_c02320{height:48.871406px;}
.h4_c02320{height:64.546875px;}
.h3_c02320{height:70.664062px;}
.h0_c02320{height:1188.000000px;}
.w1_c02320{width:66.636000px;}
.w0_c02320{width:918.000000px;}
.x0_c02320{left:0.000000px;}
.x3_c02320{left:16.560000px;}
.x1_c02320{left:127.656000px;}
.x4_c02320{left:187.050000px;}
.x2_c02320{left:820.950000px;}
@media print{
.v0_c02320{vertical-align:0.000000pt;}
.ls0_c02320{letter-spacing:0.000000pt;}
.ws0_c02320{word-spacing:-16.000000pt;}
.ws1_c02320{word-spacing:0.000000pt;}
._8_c02320{margin-left:-1.920000pt;}
._5_c02320{margin-left:-0.896000pt;}
._2_c02320{width:0.960000pt;}
._6_c02320{width:2.176000pt;}
._7_c02320{width:3.328000pt;}
._10_c02320{width:4.992000pt;}
._d_c02320{width:6.848000pt;}
._e_c02320{width:7.808000pt;}
._9_c02320{width:10.304000pt;}
._12_c02320{width:11.200000pt;}
._3_c02320{width:12.096000pt;}
._4_c02320{width:13.344000pt;}
._13_c02320{width:15.040000pt;}
._11_c02320{width:17.152000pt;}
._f_c02320{width:19.264000pt;}
._b_c02320{width:20.736000pt;}
._a_c02320{width:21.888000pt;}
._c_c02320{width:23.104000pt;}
._0_c02320{width:32.896000pt;}
._1_c02320{width:33.920000pt;}
.fs0_c02320{font-size:58.880000pt;}
.fs1_c02320{font-size:64.000000pt;}
.y0_c02320{bottom:0.000000pt;}
.y3_c02320{bottom:4.160000pt;}
.y2_c02320{bottom:37.152000pt;}
.y1_c02320{bottom:67.072000pt;}
.y21_c02320{bottom:146.586667pt;}
.y20_c02320{bottom:174.106667pt;}
.y1f_c02320{bottom:201.626667pt;}
.y1e_c02320{bottom:229.306667pt;}
.y1d_c02320{bottom:256.866667pt;}
.y1c_c02320{bottom:284.546667pt;}
.y1b_c02320{bottom:312.066667pt;}
.y1a_c02320{bottom:339.746667pt;}
.y19_c02320{bottom:367.266667pt;}
.y18_c02320{bottom:394.946667pt;}
.y17_c02320{bottom:422.466667pt;}
.y16_c02320{bottom:450.146667pt;}
.y15_c02320{bottom:477.693333pt;}
.y14_c02320{bottom:505.373333pt;}
.y13_c02320{bottom:532.893333pt;}
.y12_c02320{bottom:560.573333pt;}
.y11_c02320{bottom:588.093333pt;}
.y10_c02320{bottom:615.773333pt;}
.yf_c02320{bottom:643.293333pt;}
.ye_c02320{bottom:670.973333pt;}
.yd_c02320{bottom:698.493333pt;}
.yc_c02320{bottom:726.213333pt;}
.yb_c02320{bottom:753.733333pt;}
.ya_c02320{bottom:781.413333pt;}
.y9_c02320{bottom:808.933333pt;}
.y8_c02320{bottom:836.613333pt;}
.y7_c02320{bottom:864.133333pt;}
.y6_c02320{bottom:891.813333pt;}
.y5_c02320{bottom:919.333333pt;}
.y4_c02320{bottom:947.040000pt;}
.h2_c02320{height:20.000000pt;}
.h1_c02320{height:43.441250pt;}
.h4_c02320{height:57.375000pt;}
.h3_c02320{height:62.812500pt;}
.h0_c02320{height:1056.000000pt;}
.w1_c02320{width:59.232000pt;}
.w0_c02320{width:816.000000pt;}
.x0_c02320{left:0.000000pt;}
.x3_c02320{left:14.720000pt;}
.x1_c02320{left:113.472000pt;}
.x4_c02320{left:166.266667pt;}
.x2_c02320{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02321 {
    display:none;
  }
  .loading-indicator_c02321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02321 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02321 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02321" -> "#page-container .classname_c02321")
 */
.pf_c02321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02321 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02321 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02321 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02321 {overflow:visible;}
  }
}
.c_c02321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02321 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02321:after { /* webkit #35443 */
  content: '';
}
.t_c02321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02321 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02321 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02321 { /* info for Javascript */
  display:none;
}
.l_c02321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02321:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02321 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02321.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02321;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02321{font-family:ff1_c02321;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02321;src:url('chunks/assets/font_10eb4a1e73711c3f63816d7c.woff2')format("woff");}.ff2_c02321{font-family:ff2_c02321;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:ff3_c02321;src:url('chunks/assets/font_63126b886eb89bf1d5614414.woff2')format("woff");}.ff3_c02321{font-family:ff3_c02321;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02321{vertical-align:0.000000px;}
.ls0_c02321{letter-spacing:0.000000px;}
.sc__c02321{text-shadow:none;}
.sc0_c02321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02321{-webkit-text-stroke:0px transparent;}
.sc0_c02321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02321{word-spacing:0.000000px;}
._12_c02321{margin-left:-2.232000px;}
._1_c02321{margin-left:-1.152000px;}
._0_c02321{width:1.944000px;}
._b_c02321{width:2.952000px;}
._a_c02321{width:4.032000px;}
._9_c02321{width:5.040000px;}
._e_c02321{width:6.192000px;}
._8_c02321{width:7.704000px;}
._7_c02321{width:9.144000px;}
._11_c02321{width:10.656000px;}
._f_c02321{width:12.672000px;}
._10_c02321{width:13.896000px;}
._4_c02321{width:15.696000px;}
._5_c02321{width:16.704000px;}
._c_c02321{width:21.384000px;}
._13_c02321{width:22.392000px;}
._d_c02321{width:23.988000px;}
._6_c02321{width:26.136000px;}
._2_c02321{width:31.608000px;}
._3_c02321{width:32.760000px;}
.fc1_c02321{color:rgb(192,80,77);}
.fc0_c02321{color:rgb(0,0,0);}
.fs0_c02321{font-size:66.240000px;}
.fs1_c02321{font-size:72.000000px;}
.y0_c02321{bottom:0.000000px;}
.y3_c02321{bottom:4.680000px;}
.y2_c02321{bottom:41.796000px;}
.y1_c02321{bottom:75.456000px;}
.y22_c02321{bottom:133.776000px;}
.y21_c02321{bottom:164.910000px;}
.y20_c02321{bottom:195.870000px;}
.y1f_c02321{bottom:226.830000px;}
.y1e_c02321{bottom:257.970000px;}
.y1d_c02321{bottom:288.975000px;}
.y1c_c02321{bottom:320.115000px;}
.y1b_c02321{bottom:351.075000px;}
.y1a_c02321{bottom:382.215000px;}
.y19_c02321{bottom:413.175000px;}
.y18_c02321{bottom:444.315000px;}
.y17_c02321{bottom:475.275000px;}
.y16_c02321{bottom:506.415000px;}
.y15_c02321{bottom:537.405000px;}
.y14_c02321{bottom:568.545000px;}
.y13_c02321{bottom:599.505000px;}
.y12_c02321{bottom:630.645000px;}
.y11_c02321{bottom:661.605000px;}
.y10_c02321{bottom:692.745000px;}
.yf_c02321{bottom:723.705000px;}
.ye_c02321{bottom:754.845000px;}
.yd_c02321{bottom:785.805000px;}
.yc_c02321{bottom:816.990000px;}
.yb_c02321{bottom:847.950000px;}
.ya_c02321{bottom:879.090000px;}
.y9_c02321{bottom:910.050000px;}
.y8_c02321{bottom:941.190000px;}
.y7_c02321{bottom:972.150000px;}
.y6_c02321{bottom:1003.290000px;}
.y5_c02321{bottom:1034.250000px;}
.y4_c02321{bottom:1065.420000px;}
.h2_c02321{height:22.500000px;}
.h1_c02321{height:48.871406px;}
.h4_c02321{height:64.546875px;}
.h3_c02321{height:70.664062px;}
.h0_c02321{height:1188.000000px;}
.w1_c02321{width:66.636000px;}
.w0_c02321{width:918.000000px;}
.x0_c02321{left:0.000000px;}
.x3_c02321{left:16.560000px;}
.x1_c02321{left:127.656000px;}
.x4_c02321{left:187.050000px;}
.x2_c02321{left:820.950000px;}
@media print{
.v0_c02321{vertical-align:0.000000pt;}
.ls0_c02321{letter-spacing:0.000000pt;}
.ws0_c02321{word-spacing:0.000000pt;}
._12_c02321{margin-left:-1.984000pt;}
._1_c02321{margin-left:-1.024000pt;}
._0_c02321{width:1.728000pt;}
._b_c02321{width:2.624000pt;}
._a_c02321{width:3.584000pt;}
._9_c02321{width:4.480000pt;}
._e_c02321{width:5.504000pt;}
._8_c02321{width:6.848000pt;}
._7_c02321{width:8.128000pt;}
._11_c02321{width:9.472000pt;}
._f_c02321{width:11.264000pt;}
._10_c02321{width:12.352000pt;}
._4_c02321{width:13.952000pt;}
._5_c02321{width:14.848000pt;}
._c_c02321{width:19.008000pt;}
._13_c02321{width:19.904000pt;}
._d_c02321{width:21.322667pt;}
._6_c02321{width:23.232000pt;}
._2_c02321{width:28.096000pt;}
._3_c02321{width:29.120000pt;}
.fs0_c02321{font-size:58.880000pt;}
.fs1_c02321{font-size:64.000000pt;}
.y0_c02321{bottom:0.000000pt;}
.y3_c02321{bottom:4.160000pt;}
.y2_c02321{bottom:37.152000pt;}
.y1_c02321{bottom:67.072000pt;}
.y22_c02321{bottom:118.912000pt;}
.y21_c02321{bottom:146.586667pt;}
.y20_c02321{bottom:174.106667pt;}
.y1f_c02321{bottom:201.626667pt;}
.y1e_c02321{bottom:229.306667pt;}
.y1d_c02321{bottom:256.866667pt;}
.y1c_c02321{bottom:284.546667pt;}
.y1b_c02321{bottom:312.066667pt;}
.y1a_c02321{bottom:339.746667pt;}
.y19_c02321{bottom:367.266667pt;}
.y18_c02321{bottom:394.946667pt;}
.y17_c02321{bottom:422.466667pt;}
.y16_c02321{bottom:450.146667pt;}
.y15_c02321{bottom:477.693333pt;}
.y14_c02321{bottom:505.373333pt;}
.y13_c02321{bottom:532.893333pt;}
.y12_c02321{bottom:560.573333pt;}
.y11_c02321{bottom:588.093333pt;}
.y10_c02321{bottom:615.773333pt;}
.yf_c02321{bottom:643.293333pt;}
.ye_c02321{bottom:670.973333pt;}
.yd_c02321{bottom:698.493333pt;}
.yc_c02321{bottom:726.213333pt;}
.yb_c02321{bottom:753.733333pt;}
.ya_c02321{bottom:781.413333pt;}
.y9_c02321{bottom:808.933333pt;}
.y8_c02321{bottom:836.613333pt;}
.y7_c02321{bottom:864.133333pt;}
.y6_c02321{bottom:891.813333pt;}
.y5_c02321{bottom:919.333333pt;}
.y4_c02321{bottom:947.040000pt;}
.h2_c02321{height:20.000000pt;}
.h1_c02321{height:43.441250pt;}
.h4_c02321{height:57.375000pt;}
.h3_c02321{height:62.812500pt;}
.h0_c02321{height:1056.000000pt;}
.w1_c02321{width:59.232000pt;}
.w0_c02321{width:816.000000pt;}
.x0_c02321{left:0.000000pt;}
.x3_c02321{left:14.720000pt;}
.x1_c02321{left:113.472000pt;}
.x4_c02321{left:166.266667pt;}
.x2_c02321{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02322 {
    display:none;
  }
  .loading-indicator_c02322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02322 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02322 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02322" -> "#page-container .classname_c02322")
 */
.pf_c02322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02322 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02322 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02322 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02322 {overflow:visible;}
  }
}
.c_c02322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02322 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02322:after { /* webkit #35443 */
  content: '';
}
.t_c02322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02322 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02322 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02322 { /* info for Javascript */
  display:none;
}
.l_c02322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02322:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02322 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02322.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02322;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02322{font-family:ff1_c02322;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02322;src:url('chunks/assets/font_f3e222939c82bd4ff1057898.woff2')format("woff");}.ff2_c02322{font-family:ff2_c02322;line-height:1.112305;font-style:normal;font-weight: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_c02322;src:url('chunks/assets/font_f7f49473950f95d6f4c4e782.woff2')format("woff");}.ff3_c02322{font-family:ff3_c02322;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_c02322;src:url('chunks/assets/font_c63411b2a2fa0db3db253d66.woff2')format("woff");}.ff4_c02322{font-family:ff4_c02322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02322{vertical-align:0.000000px;}
.ls0_c02322{letter-spacing:0.000000px;}
.sc__c02322{text-shadow:none;}
.sc0_c02322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02322{-webkit-text-stroke:0px transparent;}
.sc0_c02322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02322{word-spacing:0.000000px;}
._3_c02322{margin-left:-1.440000px;}
._6_c02322{width:1.512000px;}
._0_c02322{width:2.736000px;}
._4_c02322{width:4.104000px;}
._5_c02322{width:5.544000px;}
._c_c02322{width:6.768000px;}
._e_c02322{width:7.848000px;}
._9_c02322{width:9.216000px;}
._7_c02322{width:10.224000px;}
._8_c02322{width:11.736000px;}
._d_c02322{width:12.888000px;}
._10_c02322{width:15.408000px;}
._f_c02322{width:16.704000px;}
._13_c02322{width:19.440000px;}
._14_c02322{width:20.520000px;}
._16_c02322{width:23.256000px;}
._15_c02322{width:24.552000px;}
._11_c02322{width:26.136000px;}
._12_c02322{width:27.504000px;}
._a_c02322{width:31.752000px;}
._b_c02322{width:33.192000px;}
._1_c02322{width:34.344000px;}
._2_c02322{width:35.856000px;}
.fc1_c02322{color:rgb(192,80,77);}
.fc2_c02322{color:rgb(17,17,17);}
.fc0_c02322{color:rgb(0,0,0);}
.fs0_c02322{font-size:66.240000px;}
.fs1_c02322{font-size:72.000000px;}
.y0_c02322{bottom:0.000000px;}
.y3_c02322{bottom:4.680000px;}
.y2_c02322{bottom:41.796000px;}
.y1_c02322{bottom:75.456000px;}
.y22_c02322{bottom:133.776000px;}
.y21_c02322{bottom:164.910000px;}
.y20_c02322{bottom:195.870000px;}
.y1f_c02322{bottom:226.830000px;}
.y1e_c02322{bottom:257.970000px;}
.y1d_c02322{bottom:288.975000px;}
.y1c_c02322{bottom:320.115000px;}
.y1b_c02322{bottom:351.075000px;}
.y1a_c02322{bottom:382.215000px;}
.y19_c02322{bottom:413.175000px;}
.y18_c02322{bottom:444.315000px;}
.y17_c02322{bottom:475.275000px;}
.y16_c02322{bottom:506.415000px;}
.y15_c02322{bottom:537.405000px;}
.y14_c02322{bottom:568.545000px;}
.y13_c02322{bottom:599.505000px;}
.y12_c02322{bottom:630.645000px;}
.y11_c02322{bottom:661.605000px;}
.y10_c02322{bottom:692.745000px;}
.yf_c02322{bottom:723.705000px;}
.ye_c02322{bottom:754.845000px;}
.yd_c02322{bottom:785.805000px;}
.yc_c02322{bottom:816.990000px;}
.yb_c02322{bottom:847.950000px;}
.ya_c02322{bottom:879.090000px;}
.y9_c02322{bottom:910.050000px;}
.y8_c02322{bottom:941.190000px;}
.y7_c02322{bottom:972.150000px;}
.y6_c02322{bottom:1003.290000px;}
.y5_c02322{bottom:1034.250000px;}
.y4_c02322{bottom:1065.420000px;}
.h2_c02322{height:22.500000px;}
.h1_c02322{height:48.871406px;}
.h3_c02322{height:64.546875px;}
.h4_c02322{height:70.664062px;}
.h0_c02322{height:1188.000000px;}
.w1_c02322{width:66.636000px;}
.w0_c02322{width:918.000000px;}
.x0_c02322{left:0.000000px;}
.x3_c02322{left:16.560000px;}
.x1_c02322{left:127.656000px;}
.x4_c02322{left:187.050000px;}
.x2_c02322{left:820.950000px;}
@media print{
.v0_c02322{vertical-align:0.000000pt;}
.ls0_c02322{letter-spacing:0.000000pt;}
.ws0_c02322{word-spacing:0.000000pt;}
._3_c02322{margin-left:-1.280000pt;}
._6_c02322{width:1.344000pt;}
._0_c02322{width:2.432000pt;}
._4_c02322{width:3.648000pt;}
._5_c02322{width:4.928000pt;}
._c_c02322{width:6.016000pt;}
._e_c02322{width:6.976000pt;}
._9_c02322{width:8.192000pt;}
._7_c02322{width:9.088000pt;}
._8_c02322{width:10.432000pt;}
._d_c02322{width:11.456000pt;}
._10_c02322{width:13.696000pt;}
._f_c02322{width:14.848000pt;}
._13_c02322{width:17.280000pt;}
._14_c02322{width:18.240000pt;}
._16_c02322{width:20.672000pt;}
._15_c02322{width:21.824000pt;}
._11_c02322{width:23.232000pt;}
._12_c02322{width:24.448000pt;}
._a_c02322{width:28.224000pt;}
._b_c02322{width:29.504000pt;}
._1_c02322{width:30.528000pt;}
._2_c02322{width:31.872000pt;}
.fs0_c02322{font-size:58.880000pt;}
.fs1_c02322{font-size:64.000000pt;}
.y0_c02322{bottom:0.000000pt;}
.y3_c02322{bottom:4.160000pt;}
.y2_c02322{bottom:37.152000pt;}
.y1_c02322{bottom:67.072000pt;}
.y22_c02322{bottom:118.912000pt;}
.y21_c02322{bottom:146.586667pt;}
.y20_c02322{bottom:174.106667pt;}
.y1f_c02322{bottom:201.626667pt;}
.y1e_c02322{bottom:229.306667pt;}
.y1d_c02322{bottom:256.866667pt;}
.y1c_c02322{bottom:284.546667pt;}
.y1b_c02322{bottom:312.066667pt;}
.y1a_c02322{bottom:339.746667pt;}
.y19_c02322{bottom:367.266667pt;}
.y18_c02322{bottom:394.946667pt;}
.y17_c02322{bottom:422.466667pt;}
.y16_c02322{bottom:450.146667pt;}
.y15_c02322{bottom:477.693333pt;}
.y14_c02322{bottom:505.373333pt;}
.y13_c02322{bottom:532.893333pt;}
.y12_c02322{bottom:560.573333pt;}
.y11_c02322{bottom:588.093333pt;}
.y10_c02322{bottom:615.773333pt;}
.yf_c02322{bottom:643.293333pt;}
.ye_c02322{bottom:670.973333pt;}
.yd_c02322{bottom:698.493333pt;}
.yc_c02322{bottom:726.213333pt;}
.yb_c02322{bottom:753.733333pt;}
.ya_c02322{bottom:781.413333pt;}
.y9_c02322{bottom:808.933333pt;}
.y8_c02322{bottom:836.613333pt;}
.y7_c02322{bottom:864.133333pt;}
.y6_c02322{bottom:891.813333pt;}
.y5_c02322{bottom:919.333333pt;}
.y4_c02322{bottom:947.040000pt;}
.h2_c02322{height:20.000000pt;}
.h1_c02322{height:43.441250pt;}
.h3_c02322{height:57.375000pt;}
.h4_c02322{height:62.812500pt;}
.h0_c02322{height:1056.000000pt;}
.w1_c02322{width:59.232000pt;}
.w0_c02322{width:816.000000pt;}
.x0_c02322{left:0.000000pt;}
.x3_c02322{left:14.720000pt;}
.x1_c02322{left:113.472000pt;}
.x4_c02322{left:166.266667pt;}
.x2_c02322{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02323 {
    display:none;
  }
  .loading-indicator_c02323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02323 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02323 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02323" -> "#page-container .classname_c02323")
 */
.pf_c02323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02323 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02323 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02323 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02323 {overflow:visible;}
  }
}
.c_c02323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02323 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02323:after { /* webkit #35443 */
  content: '';
}
.t_c02323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02323 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02323 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02323 { /* info for Javascript */
  display:none;
}
.l_c02323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02323:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02323 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02323.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02323;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02323{font-family:ff1_c02323;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02323;src:url('chunks/assets/font_80e58a122d740cde10e1b691.woff2')format("woff");}.ff2_c02323{font-family:ff2_c02323;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:ff3_c02323;src:url('chunks/assets/font_fad177b100d97fc968178c92.woff2')format("woff");}.ff3_c02323{font-family:ff3_c02323;line-height:1.112305;font-style:normal;font-weight: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_c02323;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02323{font-family:ff4_c02323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02323{vertical-align:0.000000px;}
.ls1_c02323{letter-spacing:-0.576000px;}
.ls0_c02323{letter-spacing:0.000000px;}
.sc__c02323{text-shadow:none;}
.sc0_c02323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02323{-webkit-text-stroke:0px transparent;}
.sc0_c02323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02323{word-spacing:0.000000px;}
._8_c02323{margin-left:-2.016000px;}
._2_c02323{margin-left:-1.008000px;}
._1_c02323{width:1.152000px;}
._14_c02323{width:2.160000px;}
._a_c02323{width:3.312000px;}
._5_c02323{width:4.320000px;}
._6_c02323{width:5.328000px;}
._10_c02323{width:6.336000px;}
._11_c02323{width:7.632000px;}
._0_c02323{width:8.712000px;}
._3_c02323{width:9.864000px;}
._4_c02323{width:10.956000px;}
._16_c02323{width:12.408000px;}
._9_c02323{width:15.840000px;}
._7_c02323{width:19.944000px;}
._12_c02323{width:22.392000px;}
._13_c02323{width:23.544000px;}
._e_c02323{width:25.776000px;}
._f_c02323{width:26.928000px;}
._b_c02323{width:29.952000px;}
._d_c02323{width:31.248000px;}
._c_c02323{width:32.292000px;}
._15_c02323{width:36.432000px;}
.fc1_c02323{color:rgb(192,80,77);}
.fc2_c02323{color:rgb(17,17,17);}
.fc0_c02323{color:rgb(0,0,0);}
.fs0_c02323{font-size:66.240000px;}
.fs1_c02323{font-size:72.000000px;}
.y0_c02323{bottom:0.000000px;}
.y3_c02323{bottom:4.680000px;}
.y2_c02323{bottom:41.796000px;}
.y1_c02323{bottom:75.456000px;}
.y22_c02323{bottom:133.776000px;}
.y21_c02323{bottom:164.910000px;}
.y20_c02323{bottom:195.870000px;}
.y1f_c02323{bottom:226.830000px;}
.y1e_c02323{bottom:257.970000px;}
.y1d_c02323{bottom:288.975000px;}
.y1c_c02323{bottom:320.115000px;}
.y1b_c02323{bottom:351.075000px;}
.y1a_c02323{bottom:382.215000px;}
.y19_c02323{bottom:413.175000px;}
.y18_c02323{bottom:444.315000px;}
.y17_c02323{bottom:475.275000px;}
.y16_c02323{bottom:506.055000px;}
.y15_c02323{bottom:537.405000px;}
.y14_c02323{bottom:568.545000px;}
.y13_c02323{bottom:599.505000px;}
.y12_c02323{bottom:630.645000px;}
.y11_c02323{bottom:661.605000px;}
.y10_c02323{bottom:692.745000px;}
.yf_c02323{bottom:723.705000px;}
.ye_c02323{bottom:754.845000px;}
.yd_c02323{bottom:785.805000px;}
.yc_c02323{bottom:816.990000px;}
.yb_c02323{bottom:847.950000px;}
.ya_c02323{bottom:879.090000px;}
.y9_c02323{bottom:910.050000px;}
.y8_c02323{bottom:941.190000px;}
.y7_c02323{bottom:972.150000px;}
.y6_c02323{bottom:1003.290000px;}
.y5_c02323{bottom:1034.250000px;}
.y4_c02323{bottom:1065.420000px;}
.h2_c02323{height:22.500000px;}
.h1_c02323{height:48.871406px;}
.h4_c02323{height:64.546875px;}
.h3_c02323{height:70.664062px;}
.h5_c02323{height:72.562500px;}
.h0_c02323{height:1188.000000px;}
.w1_c02323{width:66.636000px;}
.w0_c02323{width:918.000000px;}
.x0_c02323{left:0.000000px;}
.x3_c02323{left:16.560000px;}
.x1_c02323{left:127.656000px;}
.x4_c02323{left:187.050000px;}
.x2_c02323{left:820.950000px;}
@media print{
.v0_c02323{vertical-align:0.000000pt;}
.ls1_c02323{letter-spacing:-0.512000pt;}
.ls0_c02323{letter-spacing:0.000000pt;}
.ws0_c02323{word-spacing:0.000000pt;}
._8_c02323{margin-left:-1.792000pt;}
._2_c02323{margin-left:-0.896000pt;}
._1_c02323{width:1.024000pt;}
._14_c02323{width:1.920000pt;}
._a_c02323{width:2.944000pt;}
._5_c02323{width:3.840000pt;}
._6_c02323{width:4.736000pt;}
._10_c02323{width:5.632000pt;}
._11_c02323{width:6.784000pt;}
._0_c02323{width:7.744000pt;}
._3_c02323{width:8.768000pt;}
._4_c02323{width:9.738667pt;}
._16_c02323{width:11.029333pt;}
._9_c02323{width:14.080000pt;}
._7_c02323{width:17.728000pt;}
._12_c02323{width:19.904000pt;}
._13_c02323{width:20.928000pt;}
._e_c02323{width:22.912000pt;}
._f_c02323{width:23.936000pt;}
._b_c02323{width:26.624000pt;}
._d_c02323{width:27.776000pt;}
._c_c02323{width:28.704000pt;}
._15_c02323{width:32.384000pt;}
.fs0_c02323{font-size:58.880000pt;}
.fs1_c02323{font-size:64.000000pt;}
.y0_c02323{bottom:0.000000pt;}
.y3_c02323{bottom:4.160000pt;}
.y2_c02323{bottom:37.152000pt;}
.y1_c02323{bottom:67.072000pt;}
.y22_c02323{bottom:118.912000pt;}
.y21_c02323{bottom:146.586667pt;}
.y20_c02323{bottom:174.106667pt;}
.y1f_c02323{bottom:201.626667pt;}
.y1e_c02323{bottom:229.306667pt;}
.y1d_c02323{bottom:256.866667pt;}
.y1c_c02323{bottom:284.546667pt;}
.y1b_c02323{bottom:312.066667pt;}
.y1a_c02323{bottom:339.746667pt;}
.y19_c02323{bottom:367.266667pt;}
.y18_c02323{bottom:394.946667pt;}
.y17_c02323{bottom:422.466667pt;}
.y16_c02323{bottom:449.826667pt;}
.y15_c02323{bottom:477.693333pt;}
.y14_c02323{bottom:505.373333pt;}
.y13_c02323{bottom:532.893333pt;}
.y12_c02323{bottom:560.573333pt;}
.y11_c02323{bottom:588.093333pt;}
.y10_c02323{bottom:615.773333pt;}
.yf_c02323{bottom:643.293333pt;}
.ye_c02323{bottom:670.973333pt;}
.yd_c02323{bottom:698.493333pt;}
.yc_c02323{bottom:726.213333pt;}
.yb_c02323{bottom:753.733333pt;}
.ya_c02323{bottom:781.413333pt;}
.y9_c02323{bottom:808.933333pt;}
.y8_c02323{bottom:836.613333pt;}
.y7_c02323{bottom:864.133333pt;}
.y6_c02323{bottom:891.813333pt;}
.y5_c02323{bottom:919.333333pt;}
.y4_c02323{bottom:947.040000pt;}
.h2_c02323{height:20.000000pt;}
.h1_c02323{height:43.441250pt;}
.h4_c02323{height:57.375000pt;}
.h3_c02323{height:62.812500pt;}
.h5_c02323{height:64.500000pt;}
.h0_c02323{height:1056.000000pt;}
.w1_c02323{width:59.232000pt;}
.w0_c02323{width:816.000000pt;}
.x0_c02323{left:0.000000pt;}
.x3_c02323{left:14.720000pt;}
.x1_c02323{left:113.472000pt;}
.x4_c02323{left:166.266667pt;}
.x2_c02323{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02324 {
    display:none;
  }
  .loading-indicator_c02324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02324 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02324 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02324" -> "#page-container .classname_c02324")
 */
.pf_c02324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02324 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02324 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02324 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02324 {overflow:visible;}
  }
}
.c_c02324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02324 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02324:after { /* webkit #35443 */
  content: '';
}
.t_c02324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02324 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02324 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02324 { /* info for Javascript */
  display:none;
}
.l_c02324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02324:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02324 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02324.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02324;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c02324{font-family:ff1_c02324;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02324;src:url('chunks/assets/font_aa256f94a05e44eeb6bb3fa0.woff2')format("woff");}.ff2_c02324{font-family:ff2_c02324;line-height:1.284180;font-style:normal;font-weight: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_c02324;src:url('chunks/assets/font_4ce066d912980bd4692a9ef8.woff2')format("woff");}.ff3_c02324{font-family:ff3_c02324;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_c02324;src:url('chunks/assets/font_928e5b7d6a84be6075b7dd50.woff2')format("woff");}.ff4_c02324{font-family:ff4_c02324;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02324{vertical-align:0.000000px;}
.ls0_c02324{letter-spacing:0.000000px;}
.sc__c02324{text-shadow:none;}
.sc0_c02324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02324{-webkit-text-stroke:0px transparent;}
.sc0_c02324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02324{word-spacing:-18.000000px;}
.ws1_c02324{word-spacing:0.000000px;}
._2_c02324{margin-left:-1.296000px;}
._5_c02324{width:1.440000px;}
._f_c02324{width:2.736000px;}
._0_c02324{width:4.176000px;}
._1_c02324{width:5.472000px;}
._a_c02324{width:6.624000px;}
._b_c02324{width:8.496000px;}
._c_c02324{width:10.080000px;}
._10_c02324{width:11.160000px;}
._3_c02324{width:12.168000px;}
._4_c02324{width:13.248000px;}
._11_c02324{width:14.472000px;}
._9_c02324{width:15.552000px;}
._8_c02324{width:16.992000px;}
._e_c02324{width:19.368000px;}
._13_c02324{width:20.376000px;}
._6_c02324{width:21.528000px;}
._7_c02324{width:22.608000px;}
._d_c02324{width:23.976000px;}
._12_c02324{width:25.704000px;}
.fc1_c02324{color:rgb(192,80,77);}
.fc0_c02324{color:rgb(0,0,0);}
.fs0_c02324{font-size:66.240000px;}
.fs1_c02324{font-size:72.000000px;}
.y0_c02324{bottom:0.000000px;}
.y3_c02324{bottom:4.680000px;}
.y2_c02324{bottom:41.796000px;}
.y1_c02324{bottom:75.456000px;}
.y21_c02324{bottom:164.910000px;}
.y20_c02324{bottom:195.870000px;}
.y1f_c02324{bottom:226.830000px;}
.y1e_c02324{bottom:257.970000px;}
.y1d_c02324{bottom:288.975000px;}
.y1c_c02324{bottom:320.115000px;}
.y1b_c02324{bottom:351.075000px;}
.y1a_c02324{bottom:382.215000px;}
.y19_c02324{bottom:413.175000px;}
.y18_c02324{bottom:444.315000px;}
.y17_c02324{bottom:475.275000px;}
.y16_c02324{bottom:506.415000px;}
.y15_c02324{bottom:537.405000px;}
.y14_c02324{bottom:568.545000px;}
.y13_c02324{bottom:599.505000px;}
.y12_c02324{bottom:630.645000px;}
.y11_c02324{bottom:661.605000px;}
.y10_c02324{bottom:692.745000px;}
.yf_c02324{bottom:723.705000px;}
.ye_c02324{bottom:754.845000px;}
.yd_c02324{bottom:785.805000px;}
.yc_c02324{bottom:816.990000px;}
.yb_c02324{bottom:847.950000px;}
.ya_c02324{bottom:879.090000px;}
.y9_c02324{bottom:910.050000px;}
.y8_c02324{bottom:941.190000px;}
.y7_c02324{bottom:972.150000px;}
.y6_c02324{bottom:1003.290000px;}
.y5_c02324{bottom:1034.250000px;}
.y4_c02324{bottom:1065.420000px;}
.h2_c02324{height:22.500000px;}
.h1_c02324{height:48.871406px;}
.h4_c02324{height:64.546875px;}
.h3_c02324{height:70.664062px;}
.h0_c02324{height:1188.000000px;}
.w1_c02324{width:66.636000px;}
.w0_c02324{width:918.000000px;}
.x0_c02324{left:0.000000px;}
.x3_c02324{left:16.560000px;}
.x1_c02324{left:127.656000px;}
.x4_c02324{left:187.050000px;}
.x2_c02324{left:820.950000px;}
@media print{
.v0_c02324{vertical-align:0.000000pt;}
.ls0_c02324{letter-spacing:0.000000pt;}
.ws0_c02324{word-spacing:-16.000000pt;}
.ws1_c02324{word-spacing:0.000000pt;}
._2_c02324{margin-left:-1.152000pt;}
._5_c02324{width:1.280000pt;}
._f_c02324{width:2.432000pt;}
._0_c02324{width:3.712000pt;}
._1_c02324{width:4.864000pt;}
._a_c02324{width:5.888000pt;}
._b_c02324{width:7.552000pt;}
._c_c02324{width:8.960000pt;}
._10_c02324{width:9.920000pt;}
._3_c02324{width:10.816000pt;}
._4_c02324{width:11.776000pt;}
._11_c02324{width:12.864000pt;}
._9_c02324{width:13.824000pt;}
._8_c02324{width:15.104000pt;}
._e_c02324{width:17.216000pt;}
._13_c02324{width:18.112000pt;}
._6_c02324{width:19.136000pt;}
._7_c02324{width:20.096000pt;}
._d_c02324{width:21.312000pt;}
._12_c02324{width:22.848000pt;}
.fs0_c02324{font-size:58.880000pt;}
.fs1_c02324{font-size:64.000000pt;}
.y0_c02324{bottom:0.000000pt;}
.y3_c02324{bottom:4.160000pt;}
.y2_c02324{bottom:37.152000pt;}
.y1_c02324{bottom:67.072000pt;}
.y21_c02324{bottom:146.586667pt;}
.y20_c02324{bottom:174.106667pt;}
.y1f_c02324{bottom:201.626667pt;}
.y1e_c02324{bottom:229.306667pt;}
.y1d_c02324{bottom:256.866667pt;}
.y1c_c02324{bottom:284.546667pt;}
.y1b_c02324{bottom:312.066667pt;}
.y1a_c02324{bottom:339.746667pt;}
.y19_c02324{bottom:367.266667pt;}
.y18_c02324{bottom:394.946667pt;}
.y17_c02324{bottom:422.466667pt;}
.y16_c02324{bottom:450.146667pt;}
.y15_c02324{bottom:477.693333pt;}
.y14_c02324{bottom:505.373333pt;}
.y13_c02324{bottom:532.893333pt;}
.y12_c02324{bottom:560.573333pt;}
.y11_c02324{bottom:588.093333pt;}
.y10_c02324{bottom:615.773333pt;}
.yf_c02324{bottom:643.293333pt;}
.ye_c02324{bottom:670.973333pt;}
.yd_c02324{bottom:698.493333pt;}
.yc_c02324{bottom:726.213333pt;}
.yb_c02324{bottom:753.733333pt;}
.ya_c02324{bottom:781.413333pt;}
.y9_c02324{bottom:808.933333pt;}
.y8_c02324{bottom:836.613333pt;}
.y7_c02324{bottom:864.133333pt;}
.y6_c02324{bottom:891.813333pt;}
.y5_c02324{bottom:919.333333pt;}
.y4_c02324{bottom:947.040000pt;}
.h2_c02324{height:20.000000pt;}
.h1_c02324{height:43.441250pt;}
.h4_c02324{height:57.375000pt;}
.h3_c02324{height:62.812500pt;}
.h0_c02324{height:1056.000000pt;}
.w1_c02324{width:59.232000pt;}
.w0_c02324{width:816.000000pt;}
.x0_c02324{left:0.000000pt;}
.x3_c02324{left:14.720000pt;}
.x1_c02324{left:113.472000pt;}
.x4_c02324{left:166.266667pt;}
.x2_c02324{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02325 {
    display:none;
  }
  .loading-indicator_c02325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02325 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02325 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02325" -> "#page-container .classname_c02325")
 */
.pf_c02325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02325 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02325 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02325 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02325 {overflow:visible;}
  }
}
.c_c02325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02325 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02325:after { /* webkit #35443 */
  content: '';
}
.t_c02325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02325 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02325 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02325 { /* info for Javascript */
  display:none;
}
.l_c02325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02325:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02325 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02325.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02325;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02325{font-family:ff1_c02325;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02325;src:url('chunks/assets/font_ec7bb94a3f29d0195708f857.woff2')format("woff");}.ff2_c02325{font-family:ff2_c02325;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:ff3_c02325;src:url('chunks/assets/font_3887917ad15b36163d0bc908.woff2')format("woff");}.ff3_c02325{font-family:ff3_c02325;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02325{vertical-align:0.000000px;}
.ls1_c02325{letter-spacing:-0.072000px;}
.ls0_c02325{letter-spacing:0.000000px;}
.sc__c02325{text-shadow:none;}
.sc0_c02325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02325{-webkit-text-stroke:0px transparent;}
.sc0_c02325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02325{word-spacing:-17.928000px;}
.ws1_c02325{word-spacing:0.000000px;}
._4_c02325{margin-left:-1.152000px;}
._1_c02325{width:1.008000px;}
._7_c02325{width:2.160000px;}
._8_c02325{width:3.204000px;}
._5_c02325{width:4.392000px;}
._d_c02325{width:5.904000px;}
._e_c02325{width:7.572000px;}
._13_c02325{width:8.628000px;}
._0_c02325{width:9.720000px;}
._2_c02325{width:11.376000px;}
._3_c02325{width:12.468000px;}
._12_c02325{width:13.608000px;}
._14_c02325{width:15.048000px;}
._6_c02325{width:16.416000px;}
._9_c02325{width:19.152000px;}
._b_c02325{width:20.952000px;}
._a_c02325{width:22.104000px;}
._c_c02325{width:23.340000px;}
._11_c02325{width:24.456000px;}
._10_c02325{width:42.120000px;}
._f_c02325{width:43.272000px;}
.fc1_c02325{color:rgb(192,80,77);}
.fc0_c02325{color:rgb(0,0,0);}
.fs0_c02325{font-size:66.240000px;}
.fs1_c02325{font-size:72.000000px;}
.y0_c02325{bottom:0.000000px;}
.y3_c02325{bottom:4.680000px;}
.y2_c02325{bottom:41.796000px;}
.y1_c02325{bottom:75.456000px;}
.y22_c02325{bottom:133.776000px;}
.y21_c02325{bottom:164.910000px;}
.y20_c02325{bottom:195.870000px;}
.y1f_c02325{bottom:226.830000px;}
.y1e_c02325{bottom:257.970000px;}
.y1d_c02325{bottom:288.975000px;}
.y1c_c02325{bottom:320.115000px;}
.y1b_c02325{bottom:351.075000px;}
.y1a_c02325{bottom:382.215000px;}
.y19_c02325{bottom:413.175000px;}
.y18_c02325{bottom:444.315000px;}
.y17_c02325{bottom:475.275000px;}
.y16_c02325{bottom:506.415000px;}
.y15_c02325{bottom:537.405000px;}
.y14_c02325{bottom:568.545000px;}
.y13_c02325{bottom:599.505000px;}
.y12_c02325{bottom:630.645000px;}
.y11_c02325{bottom:661.605000px;}
.y10_c02325{bottom:692.745000px;}
.yf_c02325{bottom:723.705000px;}
.ye_c02325{bottom:754.845000px;}
.yd_c02325{bottom:785.805000px;}
.yc_c02325{bottom:816.990000px;}
.yb_c02325{bottom:847.950000px;}
.ya_c02325{bottom:879.090000px;}
.y9_c02325{bottom:910.050000px;}
.y8_c02325{bottom:941.190000px;}
.y7_c02325{bottom:972.150000px;}
.y6_c02325{bottom:1003.290000px;}
.y5_c02325{bottom:1034.250000px;}
.y4_c02325{bottom:1065.420000px;}
.h2_c02325{height:22.500000px;}
.h1_c02325{height:48.871406px;}
.h3_c02325{height:70.664062px;}
.h0_c02325{height:1188.000000px;}
.w1_c02325{width:66.636000px;}
.w0_c02325{width:918.000000px;}
.x0_c02325{left:0.000000px;}
.x3_c02325{left:16.560000px;}
.x1_c02325{left:127.656000px;}
.x4_c02325{left:187.050000px;}
.x2_c02325{left:820.950000px;}
@media print{
.v0_c02325{vertical-align:0.000000pt;}
.ls1_c02325{letter-spacing:-0.064000pt;}
.ls0_c02325{letter-spacing:0.000000pt;}
.ws0_c02325{word-spacing:-15.936000pt;}
.ws1_c02325{word-spacing:0.000000pt;}
._4_c02325{margin-left:-1.024000pt;}
._1_c02325{width:0.896000pt;}
._7_c02325{width:1.920000pt;}
._8_c02325{width:2.848000pt;}
._5_c02325{width:3.904000pt;}
._d_c02325{width:5.248000pt;}
._e_c02325{width:6.730667pt;}
._13_c02325{width:7.669333pt;}
._0_c02325{width:8.640000pt;}
._2_c02325{width:10.112000pt;}
._3_c02325{width:11.082667pt;}
._12_c02325{width:12.096000pt;}
._14_c02325{width:13.376000pt;}
._6_c02325{width:14.592000pt;}
._9_c02325{width:17.024000pt;}
._b_c02325{width:18.624000pt;}
._a_c02325{width:19.648000pt;}
._c_c02325{width:20.746667pt;}
._11_c02325{width:21.738667pt;}
._10_c02325{width:37.440000pt;}
._f_c02325{width:38.464000pt;}
.fs0_c02325{font-size:58.880000pt;}
.fs1_c02325{font-size:64.000000pt;}
.y0_c02325{bottom:0.000000pt;}
.y3_c02325{bottom:4.160000pt;}
.y2_c02325{bottom:37.152000pt;}
.y1_c02325{bottom:67.072000pt;}
.y22_c02325{bottom:118.912000pt;}
.y21_c02325{bottom:146.586667pt;}
.y20_c02325{bottom:174.106667pt;}
.y1f_c02325{bottom:201.626667pt;}
.y1e_c02325{bottom:229.306667pt;}
.y1d_c02325{bottom:256.866667pt;}
.y1c_c02325{bottom:284.546667pt;}
.y1b_c02325{bottom:312.066667pt;}
.y1a_c02325{bottom:339.746667pt;}
.y19_c02325{bottom:367.266667pt;}
.y18_c02325{bottom:394.946667pt;}
.y17_c02325{bottom:422.466667pt;}
.y16_c02325{bottom:450.146667pt;}
.y15_c02325{bottom:477.693333pt;}
.y14_c02325{bottom:505.373333pt;}
.y13_c02325{bottom:532.893333pt;}
.y12_c02325{bottom:560.573333pt;}
.y11_c02325{bottom:588.093333pt;}
.y10_c02325{bottom:615.773333pt;}
.yf_c02325{bottom:643.293333pt;}
.ye_c02325{bottom:670.973333pt;}
.yd_c02325{bottom:698.493333pt;}
.yc_c02325{bottom:726.213333pt;}
.yb_c02325{bottom:753.733333pt;}
.ya_c02325{bottom:781.413333pt;}
.y9_c02325{bottom:808.933333pt;}
.y8_c02325{bottom:836.613333pt;}
.y7_c02325{bottom:864.133333pt;}
.y6_c02325{bottom:891.813333pt;}
.y5_c02325{bottom:919.333333pt;}
.y4_c02325{bottom:947.040000pt;}
.h2_c02325{height:20.000000pt;}
.h1_c02325{height:43.441250pt;}
.h3_c02325{height:62.812500pt;}
.h0_c02325{height:1056.000000pt;}
.w1_c02325{width:59.232000pt;}
.w0_c02325{width:816.000000pt;}
.x0_c02325{left:0.000000pt;}
.x3_c02325{left:14.720000pt;}
.x1_c02325{left:113.472000pt;}
.x4_c02325{left:166.266667pt;}
.x2_c02325{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02326 {
    display:none;
  }
  .loading-indicator_c02326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02326 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02326 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02326" -> "#page-container .classname_c02326")
 */
.pf_c02326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02326 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02326 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02326 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02326 {overflow:visible;}
  }
}
.c_c02326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02326 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02326:after { /* webkit #35443 */
  content: '';
}
.t_c02326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02326 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02326 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02326 { /* info for Javascript */
  display:none;
}
.l_c02326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02326:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02326 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02326.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02326;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02326{font-family:ff1_c02326;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02326;src:url('chunks/assets/font_96bc23cd0f324cf0a484628a.woff2')format("woff");}.ff2_c02326{font-family:ff2_c02326;line-height:1.112305;font-style:normal;font-weight: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_c02326;src:url('chunks/assets/font_ea39abd2d0bcd81ba0577cc3.woff2')format("woff");}.ff3_c02326{font-family:ff3_c02326;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_c02326;src:url('chunks/assets/font_b5a8852adf66595adbd3ec07.woff2')format("woff");}.ff4_c02326{font-family:ff4_c02326;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02326{vertical-align:0.000000px;}
.ls1_c02326{letter-spacing:-0.288000px;}
.ls0_c02326{letter-spacing:0.000000px;}
.sc__c02326{text-shadow:none;}
.sc0_c02326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02326{-webkit-text-stroke:0px transparent;}
.sc0_c02326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02326{word-spacing:0.000000px;}
._f_c02326{margin-left:-2.160000px;}
._1_c02326{margin-left:-1.080000px;}
._0_c02326{width:1.584000px;}
._2_c02326{width:2.880000px;}
._12_c02326{width:3.888000px;}
._5_c02326{width:4.980000px;}
._17_c02326{width:6.396000px;}
._11_c02326{width:7.992000px;}
._4_c02326{width:9.144000px;}
._3_c02326{width:10.368000px;}
._9_c02326{width:11.808000px;}
._a_c02326{width:12.816000px;}
._10_c02326{width:14.400000px;}
._d_c02326{width:19.224000px;}
._e_c02326{width:20.244000px;}
._18_c02326{width:22.536000px;}
._b_c02326{width:23.688000px;}
._c_c02326{width:24.840000px;}
._15_c02326{width:25.920000px;}
._16_c02326{width:27.504000px;}
._14_c02326{width:29.100000px;}
._13_c02326{width:30.168000px;}
._8_c02326{width:39.600000px;}
._6_c02326{width:40.680000px;}
._7_c02326{width:42.336000px;}
.fc1_c02326{color:rgb(192,80,77);}
.fc0_c02326{color:rgb(0,0,0);}
.fs0_c02326{font-size:66.240000px;}
.fs1_c02326{font-size:72.000000px;}
.y0_c02326{bottom:0.000000px;}
.y3_c02326{bottom:4.680000px;}
.y2_c02326{bottom:41.796000px;}
.y1_c02326{bottom:75.456000px;}
.y21_c02326{bottom:164.910000px;}
.y20_c02326{bottom:195.870000px;}
.y1f_c02326{bottom:226.830000px;}
.y1e_c02326{bottom:257.970000px;}
.y1d_c02326{bottom:288.975000px;}
.y1c_c02326{bottom:320.115000px;}
.y1b_c02326{bottom:351.075000px;}
.y1a_c02326{bottom:382.215000px;}
.y19_c02326{bottom:413.175000px;}
.y18_c02326{bottom:444.315000px;}
.y17_c02326{bottom:475.275000px;}
.y16_c02326{bottom:506.415000px;}
.y15_c02326{bottom:537.405000px;}
.y14_c02326{bottom:568.545000px;}
.y13_c02326{bottom:599.505000px;}
.y12_c02326{bottom:630.645000px;}
.y11_c02326{bottom:661.605000px;}
.y10_c02326{bottom:692.745000px;}
.yf_c02326{bottom:723.705000px;}
.ye_c02326{bottom:754.845000px;}
.yd_c02326{bottom:785.805000px;}
.yc_c02326{bottom:816.990000px;}
.yb_c02326{bottom:847.950000px;}
.ya_c02326{bottom:879.090000px;}
.y9_c02326{bottom:910.050000px;}
.y8_c02326{bottom:941.190000px;}
.y7_c02326{bottom:972.150000px;}
.y6_c02326{bottom:1003.290000px;}
.y5_c02326{bottom:1034.250000px;}
.y4_c02326{bottom:1065.420000px;}
.h2_c02326{height:22.500000px;}
.h1_c02326{height:48.871406px;}
.h3_c02326{height:64.546875px;}
.h4_c02326{height:70.664062px;}
.h0_c02326{height:1188.000000px;}
.w1_c02326{width:66.636000px;}
.w0_c02326{width:918.000000px;}
.x0_c02326{left:0.000000px;}
.x3_c02326{left:16.560000px;}
.x1_c02326{left:127.656000px;}
.x4_c02326{left:187.050000px;}
.x2_c02326{left:820.950000px;}
@media print{
.v0_c02326{vertical-align:0.000000pt;}
.ls1_c02326{letter-spacing:-0.256000pt;}
.ls0_c02326{letter-spacing:0.000000pt;}
.ws0_c02326{word-spacing:0.000000pt;}
._f_c02326{margin-left:-1.920000pt;}
._1_c02326{margin-left:-0.960000pt;}
._0_c02326{width:1.408000pt;}
._2_c02326{width:2.560000pt;}
._12_c02326{width:3.456000pt;}
._5_c02326{width:4.426667pt;}
._17_c02326{width:5.685333pt;}
._11_c02326{width:7.104000pt;}
._4_c02326{width:8.128000pt;}
._3_c02326{width:9.216000pt;}
._9_c02326{width:10.496000pt;}
._a_c02326{width:11.392000pt;}
._10_c02326{width:12.800000pt;}
._d_c02326{width:17.088000pt;}
._e_c02326{width:17.994667pt;}
._18_c02326{width:20.032000pt;}
._b_c02326{width:21.056000pt;}
._c_c02326{width:22.080000pt;}
._15_c02326{width:23.040000pt;}
._16_c02326{width:24.448000pt;}
._14_c02326{width:25.866667pt;}
._13_c02326{width:26.816000pt;}
._8_c02326{width:35.200000pt;}
._6_c02326{width:36.160000pt;}
._7_c02326{width:37.632000pt;}
.fs0_c02326{font-size:58.880000pt;}
.fs1_c02326{font-size:64.000000pt;}
.y0_c02326{bottom:0.000000pt;}
.y3_c02326{bottom:4.160000pt;}
.y2_c02326{bottom:37.152000pt;}
.y1_c02326{bottom:67.072000pt;}
.y21_c02326{bottom:146.586667pt;}
.y20_c02326{bottom:174.106667pt;}
.y1f_c02326{bottom:201.626667pt;}
.y1e_c02326{bottom:229.306667pt;}
.y1d_c02326{bottom:256.866667pt;}
.y1c_c02326{bottom:284.546667pt;}
.y1b_c02326{bottom:312.066667pt;}
.y1a_c02326{bottom:339.746667pt;}
.y19_c02326{bottom:367.266667pt;}
.y18_c02326{bottom:394.946667pt;}
.y17_c02326{bottom:422.466667pt;}
.y16_c02326{bottom:450.146667pt;}
.y15_c02326{bottom:477.693333pt;}
.y14_c02326{bottom:505.373333pt;}
.y13_c02326{bottom:532.893333pt;}
.y12_c02326{bottom:560.573333pt;}
.y11_c02326{bottom:588.093333pt;}
.y10_c02326{bottom:615.773333pt;}
.yf_c02326{bottom:643.293333pt;}
.ye_c02326{bottom:670.973333pt;}
.yd_c02326{bottom:698.493333pt;}
.yc_c02326{bottom:726.213333pt;}
.yb_c02326{bottom:753.733333pt;}
.ya_c02326{bottom:781.413333pt;}
.y9_c02326{bottom:808.933333pt;}
.y8_c02326{bottom:836.613333pt;}
.y7_c02326{bottom:864.133333pt;}
.y6_c02326{bottom:891.813333pt;}
.y5_c02326{bottom:919.333333pt;}
.y4_c02326{bottom:947.040000pt;}
.h2_c02326{height:20.000000pt;}
.h1_c02326{height:43.441250pt;}
.h3_c02326{height:57.375000pt;}
.h4_c02326{height:62.812500pt;}
.h0_c02326{height:1056.000000pt;}
.w1_c02326{width:59.232000pt;}
.w0_c02326{width:816.000000pt;}
.x0_c02326{left:0.000000pt;}
.x3_c02326{left:14.720000pt;}
.x1_c02326{left:113.472000pt;}
.x4_c02326{left:166.266667pt;}
.x2_c02326{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02327 {
    display:none;
  }
  .loading-indicator_c02327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02327 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02327 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02327" -> "#page-container .classname_c02327")
 */
.pf_c02327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02327 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02327 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02327 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02327 {overflow:visible;}
  }
}
.c_c02327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02327 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02327:after { /* webkit #35443 */
  content: '';
}
.t_c02327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02327 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02327 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02327 { /* info for Javascript */
  display:none;
}
.l_c02327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02327:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02327 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02327.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02327;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02327{font-family:ff1_c02327;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02327;src:url('chunks/assets/font_dacde46369e46ff8363cba8f.woff2')format("woff");}.ff2_c02327{font-family:ff2_c02327;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:ff3_c02327;src:url('chunks/assets/font_0cf728630f307ddbbacc57d9.woff2')format("woff");}.ff3_c02327{font-family:ff3_c02327;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02327{vertical-align:0.000000px;}
.ls0_c02327{letter-spacing:0.000000px;}
.sc__c02327{text-shadow:none;}
.sc0_c02327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02327{-webkit-text-stroke:0px transparent;}
.sc0_c02327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02327{word-spacing:0.000000px;}
._4_c02327{margin-left:-1.800000px;}
._1_c02327{width:1.452000px;}
._c_c02327{width:2.796000px;}
._8_c02327{width:4.392000px;}
._0_c02327{width:5.760000px;}
._2_c02327{width:6.912000px;}
._3_c02327{width:8.352000px;}
._d_c02327{width:9.792000px;}
._11_c02327{width:12.960000px;}
._10_c02327{width:14.040000px;}
._b_c02327{width:15.048000px;}
._5_c02327{width:16.332000px;}
._9_c02327{width:19.080000px;}
._a_c02327{width:20.832000px;}
._6_c02327{width:30.816000px;}
._7_c02327{width:31.848000px;}
._e_c02327{width:37.152000px;}
._f_c02327{width:39.024000px;}
.fc1_c02327{color:rgb(192,80,77);}
.fc0_c02327{color:rgb(0,0,0);}
.fs0_c02327{font-size:66.240000px;}
.fs1_c02327{font-size:72.000000px;}
.y0_c02327{bottom:0.000000px;}
.y3_c02327{bottom:4.680000px;}
.y2_c02327{bottom:41.796000px;}
.y1_c02327{bottom:75.456000px;}
.y21_c02327{bottom:164.910000px;}
.y20_c02327{bottom:195.870000px;}
.y1f_c02327{bottom:226.830000px;}
.y1e_c02327{bottom:257.970000px;}
.y1d_c02327{bottom:288.975000px;}
.y1c_c02327{bottom:320.115000px;}
.y1b_c02327{bottom:351.075000px;}
.y1a_c02327{bottom:382.215000px;}
.y19_c02327{bottom:413.175000px;}
.y18_c02327{bottom:444.315000px;}
.y17_c02327{bottom:475.275000px;}
.y16_c02327{bottom:506.415000px;}
.y15_c02327{bottom:537.405000px;}
.y14_c02327{bottom:568.545000px;}
.y13_c02327{bottom:599.505000px;}
.y12_c02327{bottom:630.645000px;}
.y11_c02327{bottom:661.605000px;}
.y10_c02327{bottom:692.745000px;}
.yf_c02327{bottom:723.705000px;}
.ye_c02327{bottom:754.845000px;}
.yd_c02327{bottom:785.805000px;}
.yc_c02327{bottom:816.990000px;}
.yb_c02327{bottom:847.950000px;}
.ya_c02327{bottom:879.090000px;}
.y9_c02327{bottom:910.050000px;}
.y8_c02327{bottom:941.190000px;}
.y7_c02327{bottom:972.150000px;}
.y6_c02327{bottom:1003.290000px;}
.y5_c02327{bottom:1034.250000px;}
.y4_c02327{bottom:1065.420000px;}
.h2_c02327{height:22.500000px;}
.h1_c02327{height:48.871406px;}
.h4_c02327{height:64.546875px;}
.h3_c02327{height:70.664062px;}
.h0_c02327{height:1188.000000px;}
.w1_c02327{width:66.636000px;}
.w0_c02327{width:918.000000px;}
.x0_c02327{left:0.000000px;}
.x3_c02327{left:16.560000px;}
.x1_c02327{left:127.656000px;}
.x4_c02327{left:187.050000px;}
.x2_c02327{left:820.950000px;}
@media print{
.v0_c02327{vertical-align:0.000000pt;}
.ls0_c02327{letter-spacing:0.000000pt;}
.ws0_c02327{word-spacing:0.000000pt;}
._4_c02327{margin-left:-1.600000pt;}
._1_c02327{width:1.290667pt;}
._c_c02327{width:2.485333pt;}
._8_c02327{width:3.904000pt;}
._0_c02327{width:5.120000pt;}
._2_c02327{width:6.144000pt;}
._3_c02327{width:7.424000pt;}
._d_c02327{width:8.704000pt;}
._11_c02327{width:11.520000pt;}
._10_c02327{width:12.480000pt;}
._b_c02327{width:13.376000pt;}
._5_c02327{width:14.517333pt;}
._9_c02327{width:16.960000pt;}
._a_c02327{width:18.517333pt;}
._6_c02327{width:27.392000pt;}
._7_c02327{width:28.309333pt;}
._e_c02327{width:33.024000pt;}
._f_c02327{width:34.688000pt;}
.fs0_c02327{font-size:58.880000pt;}
.fs1_c02327{font-size:64.000000pt;}
.y0_c02327{bottom:0.000000pt;}
.y3_c02327{bottom:4.160000pt;}
.y2_c02327{bottom:37.152000pt;}
.y1_c02327{bottom:67.072000pt;}
.y21_c02327{bottom:146.586667pt;}
.y20_c02327{bottom:174.106667pt;}
.y1f_c02327{bottom:201.626667pt;}
.y1e_c02327{bottom:229.306667pt;}
.y1d_c02327{bottom:256.866667pt;}
.y1c_c02327{bottom:284.546667pt;}
.y1b_c02327{bottom:312.066667pt;}
.y1a_c02327{bottom:339.746667pt;}
.y19_c02327{bottom:367.266667pt;}
.y18_c02327{bottom:394.946667pt;}
.y17_c02327{bottom:422.466667pt;}
.y16_c02327{bottom:450.146667pt;}
.y15_c02327{bottom:477.693333pt;}
.y14_c02327{bottom:505.373333pt;}
.y13_c02327{bottom:532.893333pt;}
.y12_c02327{bottom:560.573333pt;}
.y11_c02327{bottom:588.093333pt;}
.y10_c02327{bottom:615.773333pt;}
.yf_c02327{bottom:643.293333pt;}
.ye_c02327{bottom:670.973333pt;}
.yd_c02327{bottom:698.493333pt;}
.yc_c02327{bottom:726.213333pt;}
.yb_c02327{bottom:753.733333pt;}
.ya_c02327{bottom:781.413333pt;}
.y9_c02327{bottom:808.933333pt;}
.y8_c02327{bottom:836.613333pt;}
.y7_c02327{bottom:864.133333pt;}
.y6_c02327{bottom:891.813333pt;}
.y5_c02327{bottom:919.333333pt;}
.y4_c02327{bottom:947.040000pt;}
.h2_c02327{height:20.000000pt;}
.h1_c02327{height:43.441250pt;}
.h4_c02327{height:57.375000pt;}
.h3_c02327{height:62.812500pt;}
.h0_c02327{height:1056.000000pt;}
.w1_c02327{width:59.232000pt;}
.w0_c02327{width:816.000000pt;}
.x0_c02327{left:0.000000pt;}
.x3_c02327{left:14.720000pt;}
.x1_c02327{left:113.472000pt;}
.x4_c02327{left:166.266667pt;}
.x2_c02327{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02328 {
    display:none;
  }
  .loading-indicator_c02328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02328 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02328 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02328" -> "#page-container .classname_c02328")
 */
.pf_c02328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02328 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02328 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02328 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02328 {overflow:visible;}
  }
}
.c_c02328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02328 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02328:after { /* webkit #35443 */
  content: '';
}
.t_c02328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02328 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02328 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02328 { /* info for Javascript */
  display:none;
}
.l_c02328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02328:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02328 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02328.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02328;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02328{font-family:ff1_c02328;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02328;src:url('chunks/assets/font_c5e01ecc83cbeac95865216a.woff2')format("woff");}.ff2_c02328{font-family:ff2_c02328;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:ff3_c02328;src:url('chunks/assets/font_06016ea379abf177e58af362.woff2')format("woff");}.ff3_c02328{font-family:ff3_c02328;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02328{vertical-align:0.000000px;}
.ls0_c02328{letter-spacing:0.000000px;}
.sc__c02328{text-shadow:none;}
.sc0_c02328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02328{-webkit-text-stroke:0px transparent;}
.sc0_c02328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02328{word-spacing:0.000000px;}
._1_c02328{margin-left:-1.080000px;}
._0_c02328{width:1.152000px;}
._a_c02328{width:2.736000px;}
._6_c02328{width:4.392000px;}
._7_c02328{width:5.616000px;}
._2_c02328{width:7.560000px;}
._e_c02328{width:11.232000px;}
._b_c02328{width:12.240000px;}
._8_c02328{width:13.464000px;}
._9_c02328{width:14.724000px;}
._3_c02328{width:16.488000px;}
._c_c02328{width:19.224000px;}
._d_c02328{width:20.664000px;}
._f_c02328{width:22.176000px;}
._10_c02328{width:23.184000px;}
._4_c02328{width:25.632000px;}
._5_c02328{width:26.712000px;}
.fc1_c02328{color:rgb(192,80,77);}
.fc0_c02328{color:rgb(0,0,0);}
.fs0_c02328{font-size:66.240000px;}
.fs1_c02328{font-size:72.000000px;}
.y0_c02328{bottom:0.000000px;}
.y3_c02328{bottom:4.680000px;}
.y2_c02328{bottom:41.796000px;}
.y1_c02328{bottom:75.456000px;}
.y22_c02328{bottom:133.776000px;}
.y21_c02328{bottom:164.910000px;}
.y20_c02328{bottom:195.870000px;}
.y1f_c02328{bottom:226.830000px;}
.y1e_c02328{bottom:257.970000px;}
.y1d_c02328{bottom:288.975000px;}
.y1c_c02328{bottom:320.115000px;}
.y1b_c02328{bottom:351.075000px;}
.y1a_c02328{bottom:382.215000px;}
.y19_c02328{bottom:413.175000px;}
.y18_c02328{bottom:444.315000px;}
.y17_c02328{bottom:475.275000px;}
.y16_c02328{bottom:506.415000px;}
.y15_c02328{bottom:537.405000px;}
.y14_c02328{bottom:568.545000px;}
.y13_c02328{bottom:599.505000px;}
.y12_c02328{bottom:630.645000px;}
.y11_c02328{bottom:661.605000px;}
.y10_c02328{bottom:692.745000px;}
.yf_c02328{bottom:723.705000px;}
.ye_c02328{bottom:754.845000px;}
.yd_c02328{bottom:785.805000px;}
.yc_c02328{bottom:816.990000px;}
.yb_c02328{bottom:847.950000px;}
.ya_c02328{bottom:879.090000px;}
.y9_c02328{bottom:910.050000px;}
.y8_c02328{bottom:941.190000px;}
.y7_c02328{bottom:972.150000px;}
.y6_c02328{bottom:1003.290000px;}
.y5_c02328{bottom:1034.250000px;}
.y4_c02328{bottom:1065.420000px;}
.h2_c02328{height:22.500000px;}
.h1_c02328{height:48.871406px;}
.h4_c02328{height:64.546875px;}
.h3_c02328{height:70.664062px;}
.h0_c02328{height:1188.000000px;}
.w1_c02328{width:66.636000px;}
.w0_c02328{width:918.000000px;}
.x0_c02328{left:0.000000px;}
.x3_c02328{left:16.560000px;}
.x1_c02328{left:127.656000px;}
.x4_c02328{left:187.050000px;}
.x2_c02328{left:820.950000px;}
@media print{
.v0_c02328{vertical-align:0.000000pt;}
.ls0_c02328{letter-spacing:0.000000pt;}
.ws0_c02328{word-spacing:0.000000pt;}
._1_c02328{margin-left:-0.960000pt;}
._0_c02328{width:1.024000pt;}
._a_c02328{width:2.432000pt;}
._6_c02328{width:3.904000pt;}
._7_c02328{width:4.992000pt;}
._2_c02328{width:6.720000pt;}
._e_c02328{width:9.984000pt;}
._b_c02328{width:10.880000pt;}
._8_c02328{width:11.968000pt;}
._9_c02328{width:13.088000pt;}
._3_c02328{width:14.656000pt;}
._c_c02328{width:17.088000pt;}
._d_c02328{width:18.368000pt;}
._f_c02328{width:19.712000pt;}
._10_c02328{width:20.608000pt;}
._4_c02328{width:22.784000pt;}
._5_c02328{width:23.744000pt;}
.fs0_c02328{font-size:58.880000pt;}
.fs1_c02328{font-size:64.000000pt;}
.y0_c02328{bottom:0.000000pt;}
.y3_c02328{bottom:4.160000pt;}
.y2_c02328{bottom:37.152000pt;}
.y1_c02328{bottom:67.072000pt;}
.y22_c02328{bottom:118.912000pt;}
.y21_c02328{bottom:146.586667pt;}
.y20_c02328{bottom:174.106667pt;}
.y1f_c02328{bottom:201.626667pt;}
.y1e_c02328{bottom:229.306667pt;}
.y1d_c02328{bottom:256.866667pt;}
.y1c_c02328{bottom:284.546667pt;}
.y1b_c02328{bottom:312.066667pt;}
.y1a_c02328{bottom:339.746667pt;}
.y19_c02328{bottom:367.266667pt;}
.y18_c02328{bottom:394.946667pt;}
.y17_c02328{bottom:422.466667pt;}
.y16_c02328{bottom:450.146667pt;}
.y15_c02328{bottom:477.693333pt;}
.y14_c02328{bottom:505.373333pt;}
.y13_c02328{bottom:532.893333pt;}
.y12_c02328{bottom:560.573333pt;}
.y11_c02328{bottom:588.093333pt;}
.y10_c02328{bottom:615.773333pt;}
.yf_c02328{bottom:643.293333pt;}
.ye_c02328{bottom:670.973333pt;}
.yd_c02328{bottom:698.493333pt;}
.yc_c02328{bottom:726.213333pt;}
.yb_c02328{bottom:753.733333pt;}
.ya_c02328{bottom:781.413333pt;}
.y9_c02328{bottom:808.933333pt;}
.y8_c02328{bottom:836.613333pt;}
.y7_c02328{bottom:864.133333pt;}
.y6_c02328{bottom:891.813333pt;}
.y5_c02328{bottom:919.333333pt;}
.y4_c02328{bottom:947.040000pt;}
.h2_c02328{height:20.000000pt;}
.h1_c02328{height:43.441250pt;}
.h4_c02328{height:57.375000pt;}
.h3_c02328{height:62.812500pt;}
.h0_c02328{height:1056.000000pt;}
.w1_c02328{width:59.232000pt;}
.w0_c02328{width:816.000000pt;}
.x0_c02328{left:0.000000pt;}
.x3_c02328{left:14.720000pt;}
.x1_c02328{left:113.472000pt;}
.x4_c02328{left:166.266667pt;}
.x2_c02328{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02329 {
    display:none;
  }
  .loading-indicator_c02329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02329 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02329 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02329" -> "#page-container .classname_c02329")
 */
.pf_c02329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02329 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02329 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02329 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02329 {overflow:visible;}
  }
}
.c_c02329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02329 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02329:after { /* webkit #35443 */
  content: '';
}
.t_c02329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02329 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02329 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02329 { /* info for Javascript */
  display:none;
}
.l_c02329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02329:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02329 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02329.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02329;src:url('chunks/assets/font_40b57cb2d2dd6cb3ac62197f.woff2')format("woff");}.ff1_c02329{font-family:ff1_c02329;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02329;src:url('chunks/assets/font_c7bc204d7e1e30ee71e9407e.woff2')format("woff");}.ff2_c02329{font-family:ff2_c02329;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:ff3_c02329;src:url('chunks/assets/font_204a3b6a149af5af9ed37095.woff2')format("woff");}.ff3_c02329{font-family:ff3_c02329;line-height:1.112305;font-style:normal;font-weight: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_c02329;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02329{font-family:ff4_c02329;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02329{vertical-align:0.000000px;}
.ls0_c02329{letter-spacing:0.000000px;}
.sc__c02329{text-shadow:none;}
.sc0_c02329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02329{-webkit-text-stroke:0px transparent;}
.sc0_c02329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02329{word-spacing:0.000000px;}
._1_c02329{margin-left:-1.008000px;}
._5_c02329{width:1.020000px;}
._0_c02329{width:2.088000px;}
._2_c02329{width:3.996000px;}
._c_c02329{width:5.040000px;}
._6_c02329{width:6.264000px;}
._7_c02329{width:7.272000px;}
._e_c02329{width:8.424000px;}
._4_c02329{width:9.648000px;}
._3_c02329{width:10.872000px;}
._d_c02329{width:12.384000px;}
._8_c02329{width:19.944000px;}
._9_c02329{width:21.036000px;}
._a_c02329{width:24.120000px;}
._b_c02329{width:25.200000px;}
.fc1_c02329{color:rgb(192,80,77);}
.fc2_c02329{color:rgb(17,17,17);}
.fc0_c02329{color:rgb(0,0,0);}
.fs0_c02329{font-size:66.240000px;}
.fs1_c02329{font-size:72.000000px;}
.y0_c02329{bottom:0.000000px;}
.y3_c02329{bottom:4.680000px;}
.y2_c02329{bottom:41.796000px;}
.y1_c02329{bottom:75.456000px;}
.y26_c02329{bottom:113.256000px;}
.y25_c02329{bottom:133.956000px;}
.y24_c02329{bottom:154.650000px;}
.y23_c02329{bottom:175.350000px;}
.y22_c02329{bottom:196.050000px;}
.y21_c02329{bottom:216.750000px;}
.y20_c02329{bottom:237.450000px;}
.y1f_c02329{bottom:258.150000px;}
.y1e_c02329{bottom:278.895000px;}
.y1d_c02329{bottom:299.595000px;}
.y1c_c02329{bottom:320.295000px;}
.y1b_c02329{bottom:351.075000px;}
.y1a_c02329{bottom:382.215000px;}
.y19_c02329{bottom:413.175000px;}
.y18_c02329{bottom:444.315000px;}
.y17_c02329{bottom:475.275000px;}
.y16_c02329{bottom:506.415000px;}
.y15_c02329{bottom:537.405000px;}
.y14_c02329{bottom:568.545000px;}
.y13_c02329{bottom:599.505000px;}
.y12_c02329{bottom:630.645000px;}
.y11_c02329{bottom:661.605000px;}
.y10_c02329{bottom:692.745000px;}
.yf_c02329{bottom:723.705000px;}
.ye_c02329{bottom:754.845000px;}
.yd_c02329{bottom:785.805000px;}
.yc_c02329{bottom:816.990000px;}
.yb_c02329{bottom:847.950000px;}
.ya_c02329{bottom:879.090000px;}
.y9_c02329{bottom:910.050000px;}
.y8_c02329{bottom:941.190000px;}
.y7_c02329{bottom:972.150000px;}
.y6_c02329{bottom:1003.290000px;}
.y5_c02329{bottom:1034.250000px;}
.y4_c02329{bottom:1065.420000px;}
.h2_c02329{height:22.500000px;}
.h1_c02329{height:48.871406px;}
.h4_c02329{height:64.546875px;}
.h3_c02329{height:70.664062px;}
.h5_c02329{height:72.562500px;}
.h0_c02329{height:1188.000000px;}
.w1_c02329{width:66.636000px;}
.w0_c02329{width:918.000000px;}
.x0_c02329{left:0.000000px;}
.x3_c02329{left:16.560000px;}
.x1_c02329{left:127.656000px;}
.x4_c02329{left:187.050000px;}
.x5_c02329{left:459.075000px;}
.x2_c02329{left:820.950000px;}
@media print{
.v0_c02329{vertical-align:0.000000pt;}
.ls0_c02329{letter-spacing:0.000000pt;}
.ws0_c02329{word-spacing:0.000000pt;}
._1_c02329{margin-left:-0.896000pt;}
._5_c02329{width:0.906667pt;}
._0_c02329{width:1.856000pt;}
._2_c02329{width:3.552000pt;}
._c_c02329{width:4.480000pt;}
._6_c02329{width:5.568000pt;}
._7_c02329{width:6.464000pt;}
._e_c02329{width:7.488000pt;}
._4_c02329{width:8.576000pt;}
._3_c02329{width:9.664000pt;}
._d_c02329{width:11.008000pt;}
._8_c02329{width:17.728000pt;}
._9_c02329{width:18.698667pt;}
._a_c02329{width:21.440000pt;}
._b_c02329{width:22.400000pt;}
.fs0_c02329{font-size:58.880000pt;}
.fs1_c02329{font-size:64.000000pt;}
.y0_c02329{bottom:0.000000pt;}
.y3_c02329{bottom:4.160000pt;}
.y2_c02329{bottom:37.152000pt;}
.y1_c02329{bottom:67.072000pt;}
.y26_c02329{bottom:100.672000pt;}
.y25_c02329{bottom:119.072000pt;}
.y24_c02329{bottom:137.466667pt;}
.y23_c02329{bottom:155.866667pt;}
.y22_c02329{bottom:174.266667pt;}
.y21_c02329{bottom:192.666667pt;}
.y20_c02329{bottom:211.066667pt;}
.y1f_c02329{bottom:229.466667pt;}
.y1e_c02329{bottom:247.906667pt;}
.y1d_c02329{bottom:266.306667pt;}
.y1c_c02329{bottom:284.706667pt;}
.y1b_c02329{bottom:312.066667pt;}
.y1a_c02329{bottom:339.746667pt;}
.y19_c02329{bottom:367.266667pt;}
.y18_c02329{bottom:394.946667pt;}
.y17_c02329{bottom:422.466667pt;}
.y16_c02329{bottom:450.146667pt;}
.y15_c02329{bottom:477.693333pt;}
.y14_c02329{bottom:505.373333pt;}
.y13_c02329{bottom:532.893333pt;}
.y12_c02329{bottom:560.573333pt;}
.y11_c02329{bottom:588.093333pt;}
.y10_c02329{bottom:615.773333pt;}
.yf_c02329{bottom:643.293333pt;}
.ye_c02329{bottom:670.973333pt;}
.yd_c02329{bottom:698.493333pt;}
.yc_c02329{bottom:726.213333pt;}
.yb_c02329{bottom:753.733333pt;}
.ya_c02329{bottom:781.413333pt;}
.y9_c02329{bottom:808.933333pt;}
.y8_c02329{bottom:836.613333pt;}
.y7_c02329{bottom:864.133333pt;}
.y6_c02329{bottom:891.813333pt;}
.y5_c02329{bottom:919.333333pt;}
.y4_c02329{bottom:947.040000pt;}
.h2_c02329{height:20.000000pt;}
.h1_c02329{height:43.441250pt;}
.h4_c02329{height:57.375000pt;}
.h3_c02329{height:62.812500pt;}
.h5_c02329{height:64.500000pt;}
.h0_c02329{height:1056.000000pt;}
.w1_c02329{width:59.232000pt;}
.w0_c02329{width:816.000000pt;}
.x0_c02329{left:0.000000pt;}
.x3_c02329{left:14.720000pt;}
.x1_c02329{left:113.472000pt;}
.x4_c02329{left:166.266667pt;}
.x5_c02329{left:408.066667pt;}
.x2_c02329{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02330 {
    display:none;
  }
  .loading-indicator_c02330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02330 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02330 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02330" -> "#page-container .classname_c02330")
 */
.pf_c02330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02330 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02330 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02330 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02330 {overflow:visible;}
  }
}
.c_c02330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02330 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02330:after { /* webkit #35443 */
  content: '';
}
.t_c02330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02330 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02330 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02330 { /* info for Javascript */
  display:none;
}
.l_c02330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02330:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02330 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02330.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02330;src:url('chunks/assets/font_0d4738a292e1122084f34b75.woff2')format("woff");}.ff1_c02330{font-family:ff1_c02330;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02330;src:url('chunks/assets/font_d29317739aaf55ce35f0311d.woff2')format("woff");}.ff2_c02330{font-family:ff2_c02330;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:ff3_c02330;src:url('chunks/assets/font_0ca0ece3fc3fb9760382c343.woff2')format("woff");}.ff3_c02330{font-family:ff3_c02330;line-height:1.311035;font-style:normal;font-weight: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_c02330;src:url('chunks/assets/font_94d89a0b1a013de9605f3caf.woff2')format("woff");}.ff4_c02330{font-family:ff4_c02330;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02330{vertical-align:0.000000px;}
.ls0_c02330{letter-spacing:0.000000px;}
.sc__c02330{text-shadow:none;}
.sc0_c02330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02330{-webkit-text-stroke:0px transparent;}
.sc0_c02330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02330{word-spacing:-18.000000px;}
.ws1_c02330{word-spacing:0.000000px;}
._0_c02330{margin-left:-1.152000px;}
._1_c02330{width:1.152000px;}
._a_c02330{width:2.232000px;}
._2_c02330{width:3.528000px;}
._3_c02330{width:4.824000px;}
._5_c02330{width:7.488000px;}
._4_c02330{width:8.640000px;}
._6_c02330{width:10.584000px;}
._7_c02330{width:11.592000px;}
._9_c02330{width:12.960000px;}
._8_c02330{width:23.256000px;}
._d_c02330{width:24.768000px;}
._b_c02330{width:26.496000px;}
._c_c02330{width:27.864000px;}
.fc1_c02330{color:rgb(192,80,77);}
.fc3_c02330{color:rgb(255,255,255);}
.fc2_c02330{color:rgb(17,17,17);}
.fc0_c02330{color:rgb(0,0,0);}
.fs0_c02330{font-size:66.240000px;}
.fs1_c02330{font-size:72.000000px;}
.y0_c02330{bottom:0.000000px;}
.y14_c02330{bottom:4.140000px;}
.y8_c02330{bottom:4.500000px;}
.y12_c02330{bottom:4.545000px;}
.y3_c02330{bottom:4.680000px;}
.y2_c02330{bottom:41.796000px;}
.y1_c02330{bottom:75.456000px;}
.y2b_c02330{bottom:135.216000px;}
.y2a_c02330{bottom:166.170000px;}
.y29_c02330{bottom:197.130000px;}
.y28_c02330{bottom:228.270000px;}
.y27_c02330{bottom:259.230000px;}
.y26_c02330{bottom:290.415000px;}
.y25_c02330{bottom:321.375000px;}
.y24_c02330{bottom:352.515000px;}
.y23_c02330{bottom:383.475000px;}
.y22_c02330{bottom:414.615000px;}
.y21_c02330{bottom:445.575000px;}
.y20_c02330{bottom:476.715000px;}
.y1f_c02330{bottom:507.675000px;}
.y1e_c02330{bottom:538.845000px;}
.y1d_c02330{bottom:569.805000px;}
.y1c_c02330{bottom:600.945000px;}
.y1b_c02330{bottom:631.905000px;}
.y1a_c02330{bottom:652.785000px;}
.y19_c02330{bottom:673.485000px;}
.y18_c02330{bottom:694.185000px;}
.y17_c02330{bottom:714.885000px;}
.y16_c02330{bottom:735.585000px;}
.y15_c02330{bottom:756.285000px;}
.y13_c02330{bottom:773.205000px;}
.y11_c02330{bottom:794.805000px;}
.y10_c02330{bottom:816.270000px;}
.yf_c02330{bottom:837.690000px;}
.ye_c02330{bottom:859.110000px;}
.yd_c02330{bottom:880.530000px;}
.yc_c02330{bottom:901.950000px;}
.yb_c02330{bottom:923.370000px;}
.ya_c02330{bottom:944.970000px;}
.y9_c02330{bottom:966.390000px;}
.y7_c02330{bottom:987.810000px;}
.y6_c02330{bottom:1023.990000px;}
.y5_c02330{bottom:1044.870000px;}
.y4_c02330{bottom:1065.600000px;}
.h4_c02330{height:20.700000px;}
.h5_c02330{height:20.736000px;}
.h2_c02330{height:22.500000px;}
.h1_c02330{height:48.871406px;}
.h3_c02330{height:70.664062px;}
.h6_c02330{height:72.562500px;}
.h0_c02330{height:1188.000000px;}
.w1_c02330{width:66.636000px;}
.w3_c02330{width:223.590000px;}
.w2_c02330{width:394.635000px;}
.w0_c02330{width:918.000000px;}
.x0_c02330{left:0.000000px;}
.x3_c02330{left:16.560000px;}
.x13_c02330{left:36.000000px;}
.xa_c02330{left:41.400000px;}
.x15_c02330{left:93.600000px;}
.x17_c02330{left:98.280000px;}
.xc_c02330{left:102.780000px;}
.x10_c02330{left:107.280000px;}
.x14_c02330{left:111.420000px;}
.x1_c02330{left:127.656000px;}
.xf_c02330{left:131.625000px;}
.xd_c02330{left:142.605000px;}
.xb_c02330{left:144.585000px;}
.x12_c02330{left:147.105000px;}
.xe_c02330{left:149.625000px;}
.x6_c02330{left:154.650000px;}
.x16_c02330{left:165.825000px;}
.x8_c02330{left:173.205000px;}
.x11_c02330{left:177.345000px;}
.x7_c02330{left:179.310000px;}
.x18_c02330{left:180.750000px;}
.x19_c02330{left:187.050000px;}
.x5_c02330{left:249.330000px;}
.x4_c02330{left:410.475000px;}
.x9_c02330{left:574.665000px;}
.x2_c02330{left:820.950000px;}
@media print{
.v0_c02330{vertical-align:0.000000pt;}
.ls0_c02330{letter-spacing:0.000000pt;}
.ws0_c02330{word-spacing:-16.000000pt;}
.ws1_c02330{word-spacing:0.000000pt;}
._0_c02330{margin-left:-1.024000pt;}
._1_c02330{width:1.024000pt;}
._a_c02330{width:1.984000pt;}
._2_c02330{width:3.136000pt;}
._3_c02330{width:4.288000pt;}
._5_c02330{width:6.656000pt;}
._4_c02330{width:7.680000pt;}
._6_c02330{width:9.408000pt;}
._7_c02330{width:10.304000pt;}
._9_c02330{width:11.520000pt;}
._8_c02330{width:20.672000pt;}
._d_c02330{width:22.016000pt;}
._b_c02330{width:23.552000pt;}
._c_c02330{width:24.768000pt;}
.fs0_c02330{font-size:58.880000pt;}
.fs1_c02330{font-size:64.000000pt;}
.y0_c02330{bottom:0.000000pt;}
.y14_c02330{bottom:3.680000pt;}
.y8_c02330{bottom:4.000000pt;}
.y12_c02330{bottom:4.040000pt;}
.y3_c02330{bottom:4.160000pt;}
.y2_c02330{bottom:37.152000pt;}
.y1_c02330{bottom:67.072000pt;}
.y2b_c02330{bottom:120.192000pt;}
.y2a_c02330{bottom:147.706667pt;}
.y29_c02330{bottom:175.226667pt;}
.y28_c02330{bottom:202.906667pt;}
.y27_c02330{bottom:230.426667pt;}
.y26_c02330{bottom:258.146667pt;}
.y25_c02330{bottom:285.666667pt;}
.y24_c02330{bottom:313.346667pt;}
.y23_c02330{bottom:340.866667pt;}
.y22_c02330{bottom:368.546667pt;}
.y21_c02330{bottom:396.066667pt;}
.y20_c02330{bottom:423.746667pt;}
.y1f_c02330{bottom:451.266667pt;}
.y1e_c02330{bottom:478.973333pt;}
.y1d_c02330{bottom:506.493333pt;}
.y1c_c02330{bottom:534.173333pt;}
.y1b_c02330{bottom:561.693333pt;}
.y1a_c02330{bottom:580.253333pt;}
.y19_c02330{bottom:598.653333pt;}
.y18_c02330{bottom:617.053333pt;}
.y17_c02330{bottom:635.453333pt;}
.y16_c02330{bottom:653.853333pt;}
.y15_c02330{bottom:672.253333pt;}
.y13_c02330{bottom:687.293333pt;}
.y11_c02330{bottom:706.493333pt;}
.y10_c02330{bottom:725.573333pt;}
.yf_c02330{bottom:744.613333pt;}
.ye_c02330{bottom:763.653333pt;}
.yd_c02330{bottom:782.693333pt;}
.yc_c02330{bottom:801.733333pt;}
.yb_c02330{bottom:820.773333pt;}
.ya_c02330{bottom:839.973333pt;}
.y9_c02330{bottom:859.013333pt;}
.y7_c02330{bottom:878.053333pt;}
.y6_c02330{bottom:910.213333pt;}
.y5_c02330{bottom:928.773333pt;}
.y4_c02330{bottom:947.200000pt;}
.h4_c02330{height:18.400000pt;}
.h5_c02330{height:18.432000pt;}
.h2_c02330{height:20.000000pt;}
.h1_c02330{height:43.441250pt;}
.h3_c02330{height:62.812500pt;}
.h6_c02330{height:64.500000pt;}
.h0_c02330{height:1056.000000pt;}
.w1_c02330{width:59.232000pt;}
.w3_c02330{width:198.746667pt;}
.w2_c02330{width:350.786667pt;}
.w0_c02330{width:816.000000pt;}
.x0_c02330{left:0.000000pt;}
.x3_c02330{left:14.720000pt;}
.x13_c02330{left:32.000000pt;}
.xa_c02330{left:36.800000pt;}
.x15_c02330{left:83.200000pt;}
.x17_c02330{left:87.360000pt;}
.xc_c02330{left:91.360000pt;}
.x10_c02330{left:95.360000pt;}
.x14_c02330{left:99.040000pt;}
.x1_c02330{left:113.472000pt;}
.xf_c02330{left:117.000000pt;}
.xd_c02330{left:126.760000pt;}
.xb_c02330{left:128.520000pt;}
.x12_c02330{left:130.760000pt;}
.xe_c02330{left:133.000000pt;}
.x6_c02330{left:137.466667pt;}
.x16_c02330{left:147.400000pt;}
.x8_c02330{left:153.960000pt;}
.x11_c02330{left:157.640000pt;}
.x7_c02330{left:159.386667pt;}
.x18_c02330{left:160.666667pt;}
.x19_c02330{left:166.266667pt;}
.x5_c02330{left:221.626667pt;}
.x4_c02330{left:364.866667pt;}
.x9_c02330{left:510.813333pt;}
.x2_c02330{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02331 {
    display:none;
  }
  .loading-indicator_c02331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02331 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02331 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02331" -> "#page-container .classname_c02331")
 */
.pf_c02331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02331 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02331 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02331 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02331 {overflow:visible;}
  }
}
.c_c02331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02331 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02331:after { /* webkit #35443 */
  content: '';
}
.t_c02331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02331 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02331 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02331 { /* info for Javascript */
  display:none;
}
.l_c02331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02331:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02331 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02331.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02331;src:url('chunks/assets/font_044dbdafc4387d37cb3ad241.woff2')format("woff");}.ff1_c02331{font-family:ff1_c02331;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02331;src:url('chunks/assets/font_64b6da39eff4bd3e41b4c042.woff2')format("woff");}.ff2_c02331{font-family:ff2_c02331;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;}
.m0_c02331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02331{vertical-align:0.000000px;}
.ls1_c02331{letter-spacing:-0.072000px;}
.ls0_c02331{letter-spacing:0.000000px;}
.sc__c02331{text-shadow:none;}
.sc0_c02331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02331{-webkit-text-stroke:0px transparent;}
.sc0_c02331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02331{word-spacing:-17.928000px;}
.ws1_c02331{word-spacing:0.000000px;}
._9_c02331{margin-left:-2.592000px;}
._10_c02331{margin-left:-1.008000px;}
._4_c02331{width:1.008000px;}
._7_c02331{width:2.016000px;}
._2_c02331{width:3.240000px;}
._3_c02331{width:4.248000px;}
._0_c02331{width:5.256000px;}
._1_c02331{width:6.480000px;}
._c_c02331{width:7.488000px;}
._d_c02331{width:8.784000px;}
._11_c02331{width:9.936000px;}
._8_c02331{width:12.600000px;}
._5_c02331{width:14.544000px;}
._15_c02331{width:15.552000px;}
._6_c02331{width:16.560000px;}
._14_c02331{width:19.080000px;}
._13_c02331{width:20.376000px;}
._12_c02331{width:24.264000px;}
._a_c02331{width:25.776000px;}
._b_c02331{width:27.000000px;}
._e_c02331{width:36.216000px;}
._f_c02331{width:37.224000px;}
.fc1_c02331{color:rgb(192,80,77);}
.fc0_c02331{color:rgb(0,0,0);}
.fs0_c02331{font-size:66.240000px;}
.fs1_c02331{font-size:72.000000px;}
.y0_c02331{bottom:0.000000px;}
.y3_c02331{bottom:4.680000px;}
.y2_c02331{bottom:41.796000px;}
.y1_c02331{bottom:75.456000px;}
.y21_c02331{bottom:164.910000px;}
.y20_c02331{bottom:195.870000px;}
.y1f_c02331{bottom:226.830000px;}
.y1e_c02331{bottom:257.970000px;}
.y1d_c02331{bottom:288.975000px;}
.y1c_c02331{bottom:320.115000px;}
.y1b_c02331{bottom:351.075000px;}
.y1a_c02331{bottom:382.215000px;}
.y19_c02331{bottom:413.175000px;}
.y18_c02331{bottom:444.315000px;}
.y17_c02331{bottom:475.275000px;}
.y16_c02331{bottom:506.415000px;}
.y15_c02331{bottom:537.405000px;}
.y14_c02331{bottom:568.545000px;}
.y13_c02331{bottom:599.505000px;}
.y12_c02331{bottom:630.645000px;}
.y11_c02331{bottom:661.605000px;}
.y10_c02331{bottom:692.745000px;}
.yf_c02331{bottom:723.705000px;}
.ye_c02331{bottom:754.845000px;}
.yd_c02331{bottom:785.805000px;}
.yc_c02331{bottom:816.990000px;}
.yb_c02331{bottom:847.950000px;}
.ya_c02331{bottom:879.090000px;}
.y9_c02331{bottom:910.050000px;}
.y8_c02331{bottom:941.190000px;}
.y7_c02331{bottom:972.150000px;}
.y6_c02331{bottom:1003.290000px;}
.y5_c02331{bottom:1034.250000px;}
.y4_c02331{bottom:1065.420000px;}
.h2_c02331{height:22.500000px;}
.h1_c02331{height:48.871406px;}
.h3_c02331{height:70.664062px;}
.h0_c02331{height:1188.000000px;}
.w1_c02331{width:66.636000px;}
.w0_c02331{width:918.000000px;}
.x0_c02331{left:0.000000px;}
.x3_c02331{left:16.560000px;}
.x1_c02331{left:127.656000px;}
.x4_c02331{left:187.050000px;}
.x2_c02331{left:820.950000px;}
@media print{
.v0_c02331{vertical-align:0.000000pt;}
.ls1_c02331{letter-spacing:-0.064000pt;}
.ls0_c02331{letter-spacing:0.000000pt;}
.ws0_c02331{word-spacing:-15.936000pt;}
.ws1_c02331{word-spacing:0.000000pt;}
._9_c02331{margin-left:-2.304000pt;}
._10_c02331{margin-left:-0.896000pt;}
._4_c02331{width:0.896000pt;}
._7_c02331{width:1.792000pt;}
._2_c02331{width:2.880000pt;}
._3_c02331{width:3.776000pt;}
._0_c02331{width:4.672000pt;}
._1_c02331{width:5.760000pt;}
._c_c02331{width:6.656000pt;}
._d_c02331{width:7.808000pt;}
._11_c02331{width:8.832000pt;}
._8_c02331{width:11.200000pt;}
._5_c02331{width:12.928000pt;}
._15_c02331{width:13.824000pt;}
._6_c02331{width:14.720000pt;}
._14_c02331{width:16.960000pt;}
._13_c02331{width:18.112000pt;}
._12_c02331{width:21.568000pt;}
._a_c02331{width:22.912000pt;}
._b_c02331{width:24.000000pt;}
._e_c02331{width:32.192000pt;}
._f_c02331{width:33.088000pt;}
.fs0_c02331{font-size:58.880000pt;}
.fs1_c02331{font-size:64.000000pt;}
.y0_c02331{bottom:0.000000pt;}
.y3_c02331{bottom:4.160000pt;}
.y2_c02331{bottom:37.152000pt;}
.y1_c02331{bottom:67.072000pt;}
.y21_c02331{bottom:146.586667pt;}
.y20_c02331{bottom:174.106667pt;}
.y1f_c02331{bottom:201.626667pt;}
.y1e_c02331{bottom:229.306667pt;}
.y1d_c02331{bottom:256.866667pt;}
.y1c_c02331{bottom:284.546667pt;}
.y1b_c02331{bottom:312.066667pt;}
.y1a_c02331{bottom:339.746667pt;}
.y19_c02331{bottom:367.266667pt;}
.y18_c02331{bottom:394.946667pt;}
.y17_c02331{bottom:422.466667pt;}
.y16_c02331{bottom:450.146667pt;}
.y15_c02331{bottom:477.693333pt;}
.y14_c02331{bottom:505.373333pt;}
.y13_c02331{bottom:532.893333pt;}
.y12_c02331{bottom:560.573333pt;}
.y11_c02331{bottom:588.093333pt;}
.y10_c02331{bottom:615.773333pt;}
.yf_c02331{bottom:643.293333pt;}
.ye_c02331{bottom:670.973333pt;}
.yd_c02331{bottom:698.493333pt;}
.yc_c02331{bottom:726.213333pt;}
.yb_c02331{bottom:753.733333pt;}
.ya_c02331{bottom:781.413333pt;}
.y9_c02331{bottom:808.933333pt;}
.y8_c02331{bottom:836.613333pt;}
.y7_c02331{bottom:864.133333pt;}
.y6_c02331{bottom:891.813333pt;}
.y5_c02331{bottom:919.333333pt;}
.y4_c02331{bottom:947.040000pt;}
.h2_c02331{height:20.000000pt;}
.h1_c02331{height:43.441250pt;}
.h3_c02331{height:62.812500pt;}
.h0_c02331{height:1056.000000pt;}
.w1_c02331{width:59.232000pt;}
.w0_c02331{width:816.000000pt;}
.x0_c02331{left:0.000000pt;}
.x3_c02331{left:14.720000pt;}
.x1_c02331{left:113.472000pt;}
.x4_c02331{left:166.266667pt;}
.x2_c02331{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02332 {
    display:none;
  }
  .loading-indicator_c02332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02332 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02332 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02332" -> "#page-container .classname_c02332")
 */
.pf_c02332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02332 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02332 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02332 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02332 {overflow:visible;}
  }
}
.c_c02332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02332 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02332:after { /* webkit #35443 */
  content: '';
}
.t_c02332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02332 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02332 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02332 { /* info for Javascript */
  display:none;
}
.l_c02332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02332:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02332 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02332.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02332;src:url('chunks/assets/font_6a92061f9d52f8bf65f090a8.woff2')format("woff");}.ff1_c02332{font-family:ff1_c02332;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02332;src:url('chunks/assets/font_2c08a718085e35ea372a9017.woff2')format("woff");}.ff2_c02332{font-family:ff2_c02332;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:ff3_c02332;src:url('chunks/assets/font_d0715ced7e846f61b0003422.woff2')format("woff");}.ff3_c02332{font-family:ff3_c02332;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02332{vertical-align:0.000000px;}
.ls0_c02332{letter-spacing:0.000000px;}
.ls1_c02332{letter-spacing:0.256200px;}
.sc__c02332{text-shadow:none;}
.sc0_c02332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02332{-webkit-text-stroke:0px transparent;}
.sc0_c02332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02332{word-spacing:-15.226440px;}
.ws1_c02332{word-spacing:0.000000px;}
._0_c02332{margin-left:-1.439520px;}
._2_c02332{width:1.080000px;}
._9_c02332{width:2.663520px;}
._7_c02332{width:3.744000px;}
._8_c02332{width:4.752000px;}
._3_c02332{width:6.696000px;}
._4_c02332{width:7.776000px;}
._6_c02332{width:8.854560px;}
._5_c02332{width:9.864000px;}
._1_c02332{width:11.016000px;}
._c_c02332{width:12.168000px;}
._e_c02332{width:13.679520px;}
._16_c02332{width:15.120000px;}
._d_c02332{width:16.992000px;}
._f_c02332{width:19.512000px;}
._a_c02332{width:20.520000px;}
._b_c02332{width:21.828000px;}
._10_c02332{width:22.896000px;}
._13_c02332{width:24.624000px;}
._14_c02332{width:27.576000px;}
._15_c02332{width:28.908000px;}
._11_c02332{width:32.904000px;}
._12_c02332{width:34.272000px;}
.fc1_c02332{color:rgb(192,80,77);}
.fc0_c02332{color:rgb(0,0,0);}
.fs0_c02332{font-size:66.240000px;}
.fs1_c02332{font-size:72.000000px;}
.y0_c02332{bottom:0.000000px;}
.y3_c02332{bottom:4.680000px;}
.y2_c02332{bottom:41.796000px;}
.y1_c02332{bottom:75.456000px;}
.y22_c02332{bottom:133.776000px;}
.y21_c02332{bottom:164.910000px;}
.y20_c02332{bottom:195.870000px;}
.y1f_c02332{bottom:226.830000px;}
.y1e_c02332{bottom:257.970000px;}
.y1d_c02332{bottom:288.975000px;}
.y1c_c02332{bottom:320.115000px;}
.y1b_c02332{bottom:351.075000px;}
.y1a_c02332{bottom:382.215000px;}
.y19_c02332{bottom:413.175000px;}
.y18_c02332{bottom:444.315000px;}
.y17_c02332{bottom:475.275000px;}
.y16_c02332{bottom:506.415000px;}
.y15_c02332{bottom:537.405000px;}
.y14_c02332{bottom:568.545000px;}
.y13_c02332{bottom:599.505000px;}
.y12_c02332{bottom:630.645000px;}
.y11_c02332{bottom:661.605000px;}
.y10_c02332{bottom:692.745000px;}
.yf_c02332{bottom:723.705000px;}
.ye_c02332{bottom:754.845000px;}
.yd_c02332{bottom:785.805000px;}
.yc_c02332{bottom:816.990000px;}
.yb_c02332{bottom:847.950000px;}
.ya_c02332{bottom:879.090000px;}
.y9_c02332{bottom:910.050000px;}
.y8_c02332{bottom:941.190000px;}
.y7_c02332{bottom:972.150000px;}
.y6_c02332{bottom:1003.290000px;}
.y5_c02332{bottom:1034.250000px;}
.y4_c02332{bottom:1065.420000px;}
.h2_c02332{height:22.500000px;}
.h1_c02332{height:48.871406px;}
.h3_c02332{height:70.664062px;}
.h0_c02332{height:1188.000000px;}
.w1_c02332{width:66.636000px;}
.w0_c02332{width:918.000000px;}
.x0_c02332{left:0.000000px;}
.x3_c02332{left:16.560000px;}
.x1_c02332{left:127.656000px;}
.x4_c02332{left:187.050000px;}
.x2_c02332{left:820.950000px;}
@media print{
.v0_c02332{vertical-align:0.000000pt;}
.ls0_c02332{letter-spacing:0.000000pt;}
.ls1_c02332{letter-spacing:0.227733pt;}
.ws0_c02332{word-spacing:-13.534613pt;}
.ws1_c02332{word-spacing:0.000000pt;}
._0_c02332{margin-left:-1.279573pt;}
._2_c02332{width:0.960000pt;}
._9_c02332{width:2.367573pt;}
._7_c02332{width:3.328000pt;}
._8_c02332{width:4.224000pt;}
._3_c02332{width:5.952000pt;}
._4_c02332{width:6.912000pt;}
._6_c02332{width:7.870720pt;}
._5_c02332{width:8.768000pt;}
._1_c02332{width:9.792000pt;}
._c_c02332{width:10.816000pt;}
._e_c02332{width:12.159573pt;}
._16_c02332{width:13.440000pt;}
._d_c02332{width:15.104000pt;}
._f_c02332{width:17.344000pt;}
._a_c02332{width:18.240000pt;}
._b_c02332{width:19.402667pt;}
._10_c02332{width:20.352000pt;}
._13_c02332{width:21.888000pt;}
._14_c02332{width:24.512000pt;}
._15_c02332{width:25.696000pt;}
._11_c02332{width:29.248000pt;}
._12_c02332{width:30.464000pt;}
.fs0_c02332{font-size:58.880000pt;}
.fs1_c02332{font-size:64.000000pt;}
.y0_c02332{bottom:0.000000pt;}
.y3_c02332{bottom:4.160000pt;}
.y2_c02332{bottom:37.152000pt;}
.y1_c02332{bottom:67.072000pt;}
.y22_c02332{bottom:118.912000pt;}
.y21_c02332{bottom:146.586667pt;}
.y20_c02332{bottom:174.106667pt;}
.y1f_c02332{bottom:201.626667pt;}
.y1e_c02332{bottom:229.306667pt;}
.y1d_c02332{bottom:256.866667pt;}
.y1c_c02332{bottom:284.546667pt;}
.y1b_c02332{bottom:312.066667pt;}
.y1a_c02332{bottom:339.746667pt;}
.y19_c02332{bottom:367.266667pt;}
.y18_c02332{bottom:394.946667pt;}
.y17_c02332{bottom:422.466667pt;}
.y16_c02332{bottom:450.146667pt;}
.y15_c02332{bottom:477.693333pt;}
.y14_c02332{bottom:505.373333pt;}
.y13_c02332{bottom:532.893333pt;}
.y12_c02332{bottom:560.573333pt;}
.y11_c02332{bottom:588.093333pt;}
.y10_c02332{bottom:615.773333pt;}
.yf_c02332{bottom:643.293333pt;}
.ye_c02332{bottom:670.973333pt;}
.yd_c02332{bottom:698.493333pt;}
.yc_c02332{bottom:726.213333pt;}
.yb_c02332{bottom:753.733333pt;}
.ya_c02332{bottom:781.413333pt;}
.y9_c02332{bottom:808.933333pt;}
.y8_c02332{bottom:836.613333pt;}
.y7_c02332{bottom:864.133333pt;}
.y6_c02332{bottom:891.813333pt;}
.y5_c02332{bottom:919.333333pt;}
.y4_c02332{bottom:947.040000pt;}
.h2_c02332{height:20.000000pt;}
.h1_c02332{height:43.441250pt;}
.h3_c02332{height:62.812500pt;}
.h0_c02332{height:1056.000000pt;}
.w1_c02332{width:59.232000pt;}
.w0_c02332{width:816.000000pt;}
.x0_c02332{left:0.000000pt;}
.x3_c02332{left:14.720000pt;}
.x1_c02332{left:113.472000pt;}
.x4_c02332{left:166.266667pt;}
.x2_c02332{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02333 {
    display:none;
  }
  .loading-indicator_c02333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02333 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02333 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02333" -> "#page-container .classname_c02333")
 */
.pf_c02333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02333 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02333 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02333 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02333 {overflow:visible;}
  }
}
.c_c02333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02333 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02333:after { /* webkit #35443 */
  content: '';
}
.t_c02333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02333 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02333 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02333 { /* info for Javascript */
  display:none;
}
.l_c02333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02333:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02333 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02333.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02333;src:url('chunks/assets/font_8dc2d45fb4c3425b49abd944.woff2')format("woff");}.ff1_c02333{font-family:ff1_c02333;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02333;src:url('chunks/assets/font_86fabc64a0106f732f8980b8.woff2')format("woff");}.ff2_c02333{font-family:ff2_c02333;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:ff3_c02333;src:url('chunks/assets/font_0078524cdfbd9ca3d6f1e567.woff2')format("woff");}.ff3_c02333{font-family:ff3_c02333;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02333{vertical-align:0.000000px;}
.ls0_c02333{letter-spacing:0.000000px;}
.sc__c02333{text-shadow:none;}
.sc0_c02333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02333{-webkit-text-stroke:0px transparent;}
.sc0_c02333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02333{word-spacing:0.000000px;}
._2_c02333{margin-left:-1.008000px;}
._0_c02333{width:1.080000px;}
._a_c02333{width:3.024000px;}
._b_c02333{width:4.752000px;}
._8_c02333{width:6.552000px;}
._9_c02333{width:8.388000px;}
._c_c02333{width:10.080000px;}
._d_c02333{width:11.232000px;}
._1_c02333{width:14.040000px;}
._3_c02333{width:15.408000px;}
._e_c02333{width:16.776000px;}
._f_c02333{width:28.584000px;}
._7_c02333{width:30.456000px;}
._6_c02333{width:31.824000px;}
._4_c02333{width:42.552000px;}
._5_c02333{width:44.064000px;}
.fc1_c02333{color:rgb(192,80,77);}
.fc0_c02333{color:rgb(0,0,0);}
.fs0_c02333{font-size:66.240000px;}
.fs1_c02333{font-size:72.000000px;}
.y0_c02333{bottom:0.000000px;}
.y3_c02333{bottom:4.680000px;}
.y2_c02333{bottom:41.796000px;}
.y1_c02333{bottom:75.456000px;}
.y22_c02333{bottom:133.776000px;}
.y21_c02333{bottom:164.910000px;}
.y20_c02333{bottom:195.870000px;}
.y1f_c02333{bottom:226.830000px;}
.y1e_c02333{bottom:257.970000px;}
.y1d_c02333{bottom:288.975000px;}
.y1c_c02333{bottom:320.115000px;}
.y1b_c02333{bottom:351.075000px;}
.y1a_c02333{bottom:382.215000px;}
.y19_c02333{bottom:413.175000px;}
.y18_c02333{bottom:444.315000px;}
.y17_c02333{bottom:475.275000px;}
.y16_c02333{bottom:506.415000px;}
.y15_c02333{bottom:537.405000px;}
.y14_c02333{bottom:568.545000px;}
.y13_c02333{bottom:599.505000px;}
.y12_c02333{bottom:630.645000px;}
.y11_c02333{bottom:661.605000px;}
.y10_c02333{bottom:692.745000px;}
.yf_c02333{bottom:723.705000px;}
.ye_c02333{bottom:754.845000px;}
.yd_c02333{bottom:785.805000px;}
.yc_c02333{bottom:816.990000px;}
.yb_c02333{bottom:847.950000px;}
.ya_c02333{bottom:879.090000px;}
.y9_c02333{bottom:910.050000px;}
.y8_c02333{bottom:941.190000px;}
.y7_c02333{bottom:972.150000px;}
.y6_c02333{bottom:1003.290000px;}
.y5_c02333{bottom:1034.250000px;}
.y4_c02333{bottom:1065.420000px;}
.h2_c02333{height:22.500000px;}
.h1_c02333{height:48.871406px;}
.h3_c02333{height:70.664062px;}
.h0_c02333{height:1188.000000px;}
.w1_c02333{width:66.636000px;}
.w0_c02333{width:918.000000px;}
.x0_c02333{left:0.000000px;}
.x3_c02333{left:16.560000px;}
.x1_c02333{left:127.656000px;}
.x4_c02333{left:187.050000px;}
.x2_c02333{left:820.950000px;}
@media print{
.v0_c02333{vertical-align:0.000000pt;}
.ls0_c02333{letter-spacing:0.000000pt;}
.ws0_c02333{word-spacing:0.000000pt;}
._2_c02333{margin-left:-0.896000pt;}
._0_c02333{width:0.960000pt;}
._a_c02333{width:2.688000pt;}
._b_c02333{width:4.224000pt;}
._8_c02333{width:5.824000pt;}
._9_c02333{width:7.456000pt;}
._c_c02333{width:8.960000pt;}
._d_c02333{width:9.984000pt;}
._1_c02333{width:12.480000pt;}
._3_c02333{width:13.696000pt;}
._e_c02333{width:14.912000pt;}
._f_c02333{width:25.408000pt;}
._7_c02333{width:27.072000pt;}
._6_c02333{width:28.288000pt;}
._4_c02333{width:37.824000pt;}
._5_c02333{width:39.168000pt;}
.fs0_c02333{font-size:58.880000pt;}
.fs1_c02333{font-size:64.000000pt;}
.y0_c02333{bottom:0.000000pt;}
.y3_c02333{bottom:4.160000pt;}
.y2_c02333{bottom:37.152000pt;}
.y1_c02333{bottom:67.072000pt;}
.y22_c02333{bottom:118.912000pt;}
.y21_c02333{bottom:146.586667pt;}
.y20_c02333{bottom:174.106667pt;}
.y1f_c02333{bottom:201.626667pt;}
.y1e_c02333{bottom:229.306667pt;}
.y1d_c02333{bottom:256.866667pt;}
.y1c_c02333{bottom:284.546667pt;}
.y1b_c02333{bottom:312.066667pt;}
.y1a_c02333{bottom:339.746667pt;}
.y19_c02333{bottom:367.266667pt;}
.y18_c02333{bottom:394.946667pt;}
.y17_c02333{bottom:422.466667pt;}
.y16_c02333{bottom:450.146667pt;}
.y15_c02333{bottom:477.693333pt;}
.y14_c02333{bottom:505.373333pt;}
.y13_c02333{bottom:532.893333pt;}
.y12_c02333{bottom:560.573333pt;}
.y11_c02333{bottom:588.093333pt;}
.y10_c02333{bottom:615.773333pt;}
.yf_c02333{bottom:643.293333pt;}
.ye_c02333{bottom:670.973333pt;}
.yd_c02333{bottom:698.493333pt;}
.yc_c02333{bottom:726.213333pt;}
.yb_c02333{bottom:753.733333pt;}
.ya_c02333{bottom:781.413333pt;}
.y9_c02333{bottom:808.933333pt;}
.y8_c02333{bottom:836.613333pt;}
.y7_c02333{bottom:864.133333pt;}
.y6_c02333{bottom:891.813333pt;}
.y5_c02333{bottom:919.333333pt;}
.y4_c02333{bottom:947.040000pt;}
.h2_c02333{height:20.000000pt;}
.h1_c02333{height:43.441250pt;}
.h3_c02333{height:62.812500pt;}
.h0_c02333{height:1056.000000pt;}
.w1_c02333{width:59.232000pt;}
.w0_c02333{width:816.000000pt;}
.x0_c02333{left:0.000000pt;}
.x3_c02333{left:14.720000pt;}
.x1_c02333{left:113.472000pt;}
.x4_c02333{left:166.266667pt;}
.x2_c02333{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02334 {
    display:none;
  }
  .loading-indicator_c02334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02334 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02334 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02334" -> "#page-container .classname_c02334")
 */
.pf_c02334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02334 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02334 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02334 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02334 {overflow:visible;}
  }
}
.c_c02334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02334 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02334:after { /* webkit #35443 */
  content: '';
}
.t_c02334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02334 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02334 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02334 { /* info for Javascript */
  display:none;
}
.l_c02334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02334:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02334 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02334.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02334;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02334{font-family:ff1_c02334;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02334;src:url('chunks/assets/font_13020b9c9eb43d13d534faef.woff2')format("woff");}.ff2_c02334{font-family:ff2_c02334;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:ff3_c02334;src:url('chunks/assets/font_3f12cc562a18d18a137500c0.woff2')format("woff");}.ff3_c02334{font-family:ff3_c02334;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02334{vertical-align:0.000000px;}
.ls1_c02334{letter-spacing:0.000000px;}
.ls0_c02334{letter-spacing:1.440000px;}
.sc__c02334{text-shadow:none;}
.sc0_c02334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02334{-webkit-text-stroke:0px transparent;}
.sc0_c02334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02334{word-spacing:-18.000000px;}
.ws1_c02334{word-spacing:0.000000px;}
._f_c02334{margin-left:-2.184000px;}
._1_c02334{margin-left:-1.080000px;}
._3_c02334{width:1.224000px;}
._e_c02334{width:2.304000px;}
._6_c02334{width:3.456000px;}
._2_c02334{width:5.544000px;}
._4_c02334{width:6.696000px;}
._a_c02334{width:7.704000px;}
._d_c02334{width:9.072000px;}
._5_c02334{width:11.160000px;}
._7_c02334{width:13.536000px;}
._8_c02334{width:14.760000px;}
._9_c02334{width:15.768000px;}
._0_c02334{width:16.920000px;}
._b_c02334{width:22.032000px;}
._c_c02334{width:23.760000px;}
.fc1_c02334{color:rgb(192,80,77);}
.fc2_c02334{color:rgb(17,17,17);}
.fc0_c02334{color:rgb(0,0,0);}
.fs0_c02334{font-size:66.240000px;}
.fs1_c02334{font-size:72.000000px;}
.y0_c02334{bottom:0.000000px;}
.y3_c02334{bottom:4.680000px;}
.y2_c02334{bottom:41.796000px;}
.y1_c02334{bottom:75.456000px;}
.y22_c02334{bottom:133.776000px;}
.y21_c02334{bottom:164.910000px;}
.y20_c02334{bottom:195.870000px;}
.y1f_c02334{bottom:226.830000px;}
.y1e_c02334{bottom:257.970000px;}
.y1d_c02334{bottom:288.975000px;}
.y1c_c02334{bottom:320.115000px;}
.y1b_c02334{bottom:351.075000px;}
.y1a_c02334{bottom:382.215000px;}
.y19_c02334{bottom:413.175000px;}
.y18_c02334{bottom:444.315000px;}
.y17_c02334{bottom:475.275000px;}
.y16_c02334{bottom:506.415000px;}
.y15_c02334{bottom:537.405000px;}
.y14_c02334{bottom:568.545000px;}
.y13_c02334{bottom:599.505000px;}
.y12_c02334{bottom:630.645000px;}
.y11_c02334{bottom:661.605000px;}
.y10_c02334{bottom:692.745000px;}
.yf_c02334{bottom:723.705000px;}
.ye_c02334{bottom:754.845000px;}
.yd_c02334{bottom:785.805000px;}
.yc_c02334{bottom:816.990000px;}
.yb_c02334{bottom:847.950000px;}
.ya_c02334{bottom:879.090000px;}
.y9_c02334{bottom:910.050000px;}
.y8_c02334{bottom:941.190000px;}
.y7_c02334{bottom:972.150000px;}
.y6_c02334{bottom:1003.290000px;}
.y5_c02334{bottom:1034.250000px;}
.y4_c02334{bottom:1065.420000px;}
.h2_c02334{height:22.500000px;}
.h1_c02334{height:48.871406px;}
.h3_c02334{height:70.664062px;}
.h0_c02334{height:1188.000000px;}
.w1_c02334{width:66.636000px;}
.w0_c02334{width:918.000000px;}
.x0_c02334{left:0.000000px;}
.x3_c02334{left:16.560000px;}
.x1_c02334{left:127.656000px;}
.x4_c02334{left:187.050000px;}
.x2_c02334{left:820.950000px;}
@media print{
.v0_c02334{vertical-align:0.000000pt;}
.ls1_c02334{letter-spacing:0.000000pt;}
.ls0_c02334{letter-spacing:1.280000pt;}
.ws0_c02334{word-spacing:-16.000000pt;}
.ws1_c02334{word-spacing:0.000000pt;}
._f_c02334{margin-left:-1.941333pt;}
._1_c02334{margin-left:-0.960000pt;}
._3_c02334{width:1.088000pt;}
._e_c02334{width:2.048000pt;}
._6_c02334{width:3.072000pt;}
._2_c02334{width:4.928000pt;}
._4_c02334{width:5.952000pt;}
._a_c02334{width:6.848000pt;}
._d_c02334{width:8.064000pt;}
._5_c02334{width:9.920000pt;}
._7_c02334{width:12.032000pt;}
._8_c02334{width:13.120000pt;}
._9_c02334{width:14.016000pt;}
._0_c02334{width:15.040000pt;}
._b_c02334{width:19.584000pt;}
._c_c02334{width:21.120000pt;}
.fs0_c02334{font-size:58.880000pt;}
.fs1_c02334{font-size:64.000000pt;}
.y0_c02334{bottom:0.000000pt;}
.y3_c02334{bottom:4.160000pt;}
.y2_c02334{bottom:37.152000pt;}
.y1_c02334{bottom:67.072000pt;}
.y22_c02334{bottom:118.912000pt;}
.y21_c02334{bottom:146.586667pt;}
.y20_c02334{bottom:174.106667pt;}
.y1f_c02334{bottom:201.626667pt;}
.y1e_c02334{bottom:229.306667pt;}
.y1d_c02334{bottom:256.866667pt;}
.y1c_c02334{bottom:284.546667pt;}
.y1b_c02334{bottom:312.066667pt;}
.y1a_c02334{bottom:339.746667pt;}
.y19_c02334{bottom:367.266667pt;}
.y18_c02334{bottom:394.946667pt;}
.y17_c02334{bottom:422.466667pt;}
.y16_c02334{bottom:450.146667pt;}
.y15_c02334{bottom:477.693333pt;}
.y14_c02334{bottom:505.373333pt;}
.y13_c02334{bottom:532.893333pt;}
.y12_c02334{bottom:560.573333pt;}
.y11_c02334{bottom:588.093333pt;}
.y10_c02334{bottom:615.773333pt;}
.yf_c02334{bottom:643.293333pt;}
.ye_c02334{bottom:670.973333pt;}
.yd_c02334{bottom:698.493333pt;}
.yc_c02334{bottom:726.213333pt;}
.yb_c02334{bottom:753.733333pt;}
.ya_c02334{bottom:781.413333pt;}
.y9_c02334{bottom:808.933333pt;}
.y8_c02334{bottom:836.613333pt;}
.y7_c02334{bottom:864.133333pt;}
.y6_c02334{bottom:891.813333pt;}
.y5_c02334{bottom:919.333333pt;}
.y4_c02334{bottom:947.040000pt;}
.h2_c02334{height:20.000000pt;}
.h1_c02334{height:43.441250pt;}
.h3_c02334{height:62.812500pt;}
.h0_c02334{height:1056.000000pt;}
.w1_c02334{width:59.232000pt;}
.w0_c02334{width:816.000000pt;}
.x0_c02334{left:0.000000pt;}
.x3_c02334{left:14.720000pt;}
.x1_c02334{left:113.472000pt;}
.x4_c02334{left:166.266667pt;}
.x2_c02334{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02335 {
    display:none;
  }
  .loading-indicator_c02335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02335 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02335 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02335" -> "#page-container .classname_c02335")
 */
.pf_c02335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02335 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02335 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02335 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02335 {overflow:visible;}
  }
}
.c_c02335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02335 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02335:after { /* webkit #35443 */
  content: '';
}
.t_c02335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02335 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02335 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02335 { /* info for Javascript */
  display:none;
}
.l_c02335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02335:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02335 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02335.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02335;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02335{font-family:ff1_c02335;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02335;src:url('chunks/assets/font_d5538aad859cdd94f8c928c7.woff2')format("woff");}.ff2_c02335{font-family:ff2_c02335;line-height:1.112305;font-style:normal;font-weight: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_c02335;src:url('chunks/assets/font_6aed88cf67292da5e9e75ade.woff2')format("woff");}.ff3_c02335{font-family:ff3_c02335;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;}
.m0_c02335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02335{vertical-align:0.000000px;}
.ls0_c02335{letter-spacing:0.000000px;}
.sc__c02335{text-shadow:none;}
.sc0_c02335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02335{-webkit-text-stroke:0px transparent;}
.sc0_c02335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02335{word-spacing:0.000000px;}
._14_c02335{margin-left:-2.232000px;}
._1_c02335{margin-left:-1.008000px;}
._4_c02335{width:1.008000px;}
._a_c02335{width:2.736000px;}
._d_c02335{width:4.032000px;}
._b_c02335{width:5.832000px;}
._3_c02335{width:7.776000px;}
._5_c02335{width:8.856000px;}
._8_c02335{width:10.152000px;}
._9_c02335{width:11.376000px;}
._c_c02335{width:12.468000px;}
._6_c02335{width:14.472000px;}
._7_c02335{width:15.984000px;}
._15_c02335{width:20.736000px;}
._e_c02335{width:21.960000px;}
._f_c02335{width:23.220000px;}
._0_c02335{width:26.568000px;}
._2_c02335{width:27.660000px;}
._10_c02335{width:31.536000px;}
._11_c02335{width:33.120000px;}
._12_c02335{width:34.992000px;}
._13_c02335{width:36.648000px;}
.fc1_c02335{color:rgb(192,80,77);}
.fc2_c02335{color:rgb(17,17,17);}
.fc0_c02335{color:rgb(0,0,0);}
.fs0_c02335{font-size:66.240000px;}
.fs1_c02335{font-size:72.000000px;}
.y0_c02335{bottom:0.000000px;}
.y3_c02335{bottom:4.680000px;}
.y2_c02335{bottom:41.796000px;}
.y1_c02335{bottom:75.456000px;}
.y21_c02335{bottom:164.910000px;}
.y20_c02335{bottom:195.870000px;}
.y1f_c02335{bottom:226.830000px;}
.y1e_c02335{bottom:257.970000px;}
.y1d_c02335{bottom:288.975000px;}
.y1c_c02335{bottom:320.115000px;}
.y1b_c02335{bottom:351.075000px;}
.y1a_c02335{bottom:382.215000px;}
.y19_c02335{bottom:413.175000px;}
.y18_c02335{bottom:444.315000px;}
.y17_c02335{bottom:475.275000px;}
.y16_c02335{bottom:506.415000px;}
.y15_c02335{bottom:537.405000px;}
.y14_c02335{bottom:568.545000px;}
.y13_c02335{bottom:599.505000px;}
.y12_c02335{bottom:630.645000px;}
.y11_c02335{bottom:661.605000px;}
.y10_c02335{bottom:692.745000px;}
.yf_c02335{bottom:723.705000px;}
.ye_c02335{bottom:754.845000px;}
.yd_c02335{bottom:785.805000px;}
.yc_c02335{bottom:816.990000px;}
.yb_c02335{bottom:847.950000px;}
.ya_c02335{bottom:879.090000px;}
.y9_c02335{bottom:910.050000px;}
.y8_c02335{bottom:941.190000px;}
.y7_c02335{bottom:972.150000px;}
.y6_c02335{bottom:1003.290000px;}
.y5_c02335{bottom:1034.250000px;}
.y4_c02335{bottom:1065.420000px;}
.h2_c02335{height:22.500000px;}
.h1_c02335{height:48.871406px;}
.h4_c02335{height:64.546875px;}
.h3_c02335{height:70.664062px;}
.h0_c02335{height:1188.000000px;}
.w1_c02335{width:66.636000px;}
.w0_c02335{width:918.000000px;}
.x0_c02335{left:0.000000px;}
.x3_c02335{left:16.560000px;}
.x1_c02335{left:127.656000px;}
.x4_c02335{left:187.050000px;}
.x2_c02335{left:820.950000px;}
@media print{
.v0_c02335{vertical-align:0.000000pt;}
.ls0_c02335{letter-spacing:0.000000pt;}
.ws0_c02335{word-spacing:0.000000pt;}
._14_c02335{margin-left:-1.984000pt;}
._1_c02335{margin-left:-0.896000pt;}
._4_c02335{width:0.896000pt;}
._a_c02335{width:2.432000pt;}
._d_c02335{width:3.584000pt;}
._b_c02335{width:5.184000pt;}
._3_c02335{width:6.912000pt;}
._5_c02335{width:7.872000pt;}
._8_c02335{width:9.024000pt;}
._9_c02335{width:10.112000pt;}
._c_c02335{width:11.082667pt;}
._6_c02335{width:12.864000pt;}
._7_c02335{width:14.208000pt;}
._15_c02335{width:18.432000pt;}
._e_c02335{width:19.520000pt;}
._f_c02335{width:20.640000pt;}
._0_c02335{width:23.616000pt;}
._2_c02335{width:24.586667pt;}
._10_c02335{width:28.032000pt;}
._11_c02335{width:29.440000pt;}
._12_c02335{width:31.104000pt;}
._13_c02335{width:32.576000pt;}
.fs0_c02335{font-size:58.880000pt;}
.fs1_c02335{font-size:64.000000pt;}
.y0_c02335{bottom:0.000000pt;}
.y3_c02335{bottom:4.160000pt;}
.y2_c02335{bottom:37.152000pt;}
.y1_c02335{bottom:67.072000pt;}
.y21_c02335{bottom:146.586667pt;}
.y20_c02335{bottom:174.106667pt;}
.y1f_c02335{bottom:201.626667pt;}
.y1e_c02335{bottom:229.306667pt;}
.y1d_c02335{bottom:256.866667pt;}
.y1c_c02335{bottom:284.546667pt;}
.y1b_c02335{bottom:312.066667pt;}
.y1a_c02335{bottom:339.746667pt;}
.y19_c02335{bottom:367.266667pt;}
.y18_c02335{bottom:394.946667pt;}
.y17_c02335{bottom:422.466667pt;}
.y16_c02335{bottom:450.146667pt;}
.y15_c02335{bottom:477.693333pt;}
.y14_c02335{bottom:505.373333pt;}
.y13_c02335{bottom:532.893333pt;}
.y12_c02335{bottom:560.573333pt;}
.y11_c02335{bottom:588.093333pt;}
.y10_c02335{bottom:615.773333pt;}
.yf_c02335{bottom:643.293333pt;}
.ye_c02335{bottom:670.973333pt;}
.yd_c02335{bottom:698.493333pt;}
.yc_c02335{bottom:726.213333pt;}
.yb_c02335{bottom:753.733333pt;}
.ya_c02335{bottom:781.413333pt;}
.y9_c02335{bottom:808.933333pt;}
.y8_c02335{bottom:836.613333pt;}
.y7_c02335{bottom:864.133333pt;}
.y6_c02335{bottom:891.813333pt;}
.y5_c02335{bottom:919.333333pt;}
.y4_c02335{bottom:947.040000pt;}
.h2_c02335{height:20.000000pt;}
.h1_c02335{height:43.441250pt;}
.h4_c02335{height:57.375000pt;}
.h3_c02335{height:62.812500pt;}
.h0_c02335{height:1056.000000pt;}
.w1_c02335{width:59.232000pt;}
.w0_c02335{width:816.000000pt;}
.x0_c02335{left:0.000000pt;}
.x3_c02335{left:14.720000pt;}
.x1_c02335{left:113.472000pt;}
.x4_c02335{left:166.266667pt;}
.x2_c02335{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02336 {
    display:none;
  }
  .loading-indicator_c02336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02336 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02336 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02336" -> "#page-container .classname_c02336")
 */
.pf_c02336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02336 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02336 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02336 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02336 {overflow:visible;}
  }
}
.c_c02336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02336 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02336:after { /* webkit #35443 */
  content: '';
}
.t_c02336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02336 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02336 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02336 { /* info for Javascript */
  display:none;
}
.l_c02336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02336:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02336 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02336.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02336;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02336{font-family:ff1_c02336;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02336;src:url('chunks/assets/font_d6961dedcd9d265fe821b3eb.woff2')format("woff");}.ff2_c02336{font-family:ff2_c02336;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:ff3_c02336;src:url('chunks/assets/font_36c5b3380b49e76c81ce5cd2.woff2')format("woff");}.ff3_c02336{font-family:ff3_c02336;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02336{vertical-align:0.000000px;}
.ls0_c02336{letter-spacing:0.000000px;}
.sc__c02336{text-shadow:none;}
.sc0_c02336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02336{-webkit-text-stroke:0px transparent;}
.sc0_c02336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02336{word-spacing:0.000000px;}
._1_c02336{margin-left:-1.440000px;}
._3_c02336{width:1.584000px;}
._b_c02336{width:2.736000px;}
._6_c02336{width:3.744000px;}
._7_c02336{width:4.896000px;}
._8_c02336{width:6.120000px;}
._4_c02336{width:7.416000px;}
._2_c02336{width:9.360000px;}
._0_c02336{width:11.232000px;}
._9_c02336{width:13.464000px;}
._d_c02336{width:14.832000px;}
._a_c02336{width:15.840000px;}
._5_c02336{width:16.848000px;}
._c_c02336{width:21.600000px;}
.fc1_c02336{color:rgb(192,80,77);}
.fc0_c02336{color:rgb(0,0,0);}
.fs0_c02336{font-size:66.240000px;}
.fs1_c02336{font-size:72.000000px;}
.y0_c02336{bottom:0.000000px;}
.y3_c02336{bottom:4.680000px;}
.y2_c02336{bottom:41.796000px;}
.y1_c02336{bottom:75.456000px;}
.y22_c02336{bottom:133.776000px;}
.y21_c02336{bottom:164.910000px;}
.y20_c02336{bottom:195.870000px;}
.y1f_c02336{bottom:226.830000px;}
.y1e_c02336{bottom:257.970000px;}
.y1d_c02336{bottom:288.975000px;}
.y1c_c02336{bottom:320.115000px;}
.y1b_c02336{bottom:351.075000px;}
.y1a_c02336{bottom:382.215000px;}
.y19_c02336{bottom:413.175000px;}
.y18_c02336{bottom:444.315000px;}
.y17_c02336{bottom:475.275000px;}
.y16_c02336{bottom:506.415000px;}
.y15_c02336{bottom:537.405000px;}
.y14_c02336{bottom:568.545000px;}
.y13_c02336{bottom:599.505000px;}
.y12_c02336{bottom:630.645000px;}
.y11_c02336{bottom:661.605000px;}
.y10_c02336{bottom:692.745000px;}
.yf_c02336{bottom:723.705000px;}
.ye_c02336{bottom:754.845000px;}
.yd_c02336{bottom:785.805000px;}
.yc_c02336{bottom:816.990000px;}
.yb_c02336{bottom:847.950000px;}
.ya_c02336{bottom:879.090000px;}
.y9_c02336{bottom:910.050000px;}
.y8_c02336{bottom:941.190000px;}
.y7_c02336{bottom:972.150000px;}
.y6_c02336{bottom:1003.290000px;}
.y5_c02336{bottom:1034.250000px;}
.y4_c02336{bottom:1065.420000px;}
.h2_c02336{height:22.500000px;}
.h1_c02336{height:48.871406px;}
.h4_c02336{height:64.546875px;}
.h3_c02336{height:70.664062px;}
.h0_c02336{height:1188.000000px;}
.w1_c02336{width:66.636000px;}
.w0_c02336{width:918.000000px;}
.x0_c02336{left:0.000000px;}
.x3_c02336{left:16.560000px;}
.x1_c02336{left:127.656000px;}
.x4_c02336{left:187.050000px;}
.x2_c02336{left:820.950000px;}
@media print{
.v0_c02336{vertical-align:0.000000pt;}
.ls0_c02336{letter-spacing:0.000000pt;}
.ws0_c02336{word-spacing:0.000000pt;}
._1_c02336{margin-left:-1.280000pt;}
._3_c02336{width:1.408000pt;}
._b_c02336{width:2.432000pt;}
._6_c02336{width:3.328000pt;}
._7_c02336{width:4.352000pt;}
._8_c02336{width:5.440000pt;}
._4_c02336{width:6.592000pt;}
._2_c02336{width:8.320000pt;}
._0_c02336{width:9.984000pt;}
._9_c02336{width:11.968000pt;}
._d_c02336{width:13.184000pt;}
._a_c02336{width:14.080000pt;}
._5_c02336{width:14.976000pt;}
._c_c02336{width:19.200000pt;}
.fs0_c02336{font-size:58.880000pt;}
.fs1_c02336{font-size:64.000000pt;}
.y0_c02336{bottom:0.000000pt;}
.y3_c02336{bottom:4.160000pt;}
.y2_c02336{bottom:37.152000pt;}
.y1_c02336{bottom:67.072000pt;}
.y22_c02336{bottom:118.912000pt;}
.y21_c02336{bottom:146.586667pt;}
.y20_c02336{bottom:174.106667pt;}
.y1f_c02336{bottom:201.626667pt;}
.y1e_c02336{bottom:229.306667pt;}
.y1d_c02336{bottom:256.866667pt;}
.y1c_c02336{bottom:284.546667pt;}
.y1b_c02336{bottom:312.066667pt;}
.y1a_c02336{bottom:339.746667pt;}
.y19_c02336{bottom:367.266667pt;}
.y18_c02336{bottom:394.946667pt;}
.y17_c02336{bottom:422.466667pt;}
.y16_c02336{bottom:450.146667pt;}
.y15_c02336{bottom:477.693333pt;}
.y14_c02336{bottom:505.373333pt;}
.y13_c02336{bottom:532.893333pt;}
.y12_c02336{bottom:560.573333pt;}
.y11_c02336{bottom:588.093333pt;}
.y10_c02336{bottom:615.773333pt;}
.yf_c02336{bottom:643.293333pt;}
.ye_c02336{bottom:670.973333pt;}
.yd_c02336{bottom:698.493333pt;}
.yc_c02336{bottom:726.213333pt;}
.yb_c02336{bottom:753.733333pt;}
.ya_c02336{bottom:781.413333pt;}
.y9_c02336{bottom:808.933333pt;}
.y8_c02336{bottom:836.613333pt;}
.y7_c02336{bottom:864.133333pt;}
.y6_c02336{bottom:891.813333pt;}
.y5_c02336{bottom:919.333333pt;}
.y4_c02336{bottom:947.040000pt;}
.h2_c02336{height:20.000000pt;}
.h1_c02336{height:43.441250pt;}
.h4_c02336{height:57.375000pt;}
.h3_c02336{height:62.812500pt;}
.h0_c02336{height:1056.000000pt;}
.w1_c02336{width:59.232000pt;}
.w0_c02336{width:816.000000pt;}
.x0_c02336{left:0.000000pt;}
.x3_c02336{left:14.720000pt;}
.x1_c02336{left:113.472000pt;}
.x4_c02336{left:166.266667pt;}
.x2_c02336{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02337 {
    display:none;
  }
  .loading-indicator_c02337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02337 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02337 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02337" -> "#page-container .classname_c02337")
 */
.pf_c02337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02337 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02337 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02337 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02337 {overflow:visible;}
  }
}
.c_c02337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02337 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02337:after { /* webkit #35443 */
  content: '';
}
.t_c02337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02337 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02337 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02337 { /* info for Javascript */
  display:none;
}
.l_c02337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02337:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02337 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02337.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02337;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02337{font-family:ff1_c02337;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02337;src:url('chunks/assets/font_bc1382223c2c77f9ba9962d4.woff2')format("woff");}.ff2_c02337{font-family:ff2_c02337;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;}
.m0_c02337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02337{vertical-align:0.000000px;}
.ls0_c02337{letter-spacing:0.000000px;}
.sc__c02337{text-shadow:none;}
.sc0_c02337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02337{-webkit-text-stroke:0px transparent;}
.sc0_c02337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02337{word-spacing:0.000000px;}
._6_c02337{margin-left:-1.080000px;}
._5_c02337{width:1.044000px;}
._0_c02337{width:2.304000px;}
._c_c02337{width:4.176000px;}
._b_c02337{width:5.544000px;}
._8_c02337{width:6.840000px;}
._7_c02337{width:7.920000px;}
._9_c02337{width:9.180000px;}
._a_c02337{width:10.188000px;}
._1_c02337{width:11.880000px;}
._2_c02337{width:13.140000px;}
._e_c02337{width:19.728000px;}
._f_c02337{width:20.808000px;}
._d_c02337{width:22.104000px;}
._10_c02337{width:26.424000px;}
._11_c02337{width:27.648000px;}
._3_c02337{width:31.824000px;}
._4_c02337{width:32.832000px;}
.fc1_c02337{color:rgb(192,80,77);}
.fc0_c02337{color:rgb(0,0,0);}
.fs0_c02337{font-size:66.240000px;}
.fs1_c02337{font-size:72.000000px;}
.y0_c02337{bottom:0.000000px;}
.y3_c02337{bottom:4.680000px;}
.y2_c02337{bottom:41.796000px;}
.y1_c02337{bottom:75.456000px;}
.y21_c02337{bottom:164.910000px;}
.y20_c02337{bottom:195.870000px;}
.y1f_c02337{bottom:226.830000px;}
.y1e_c02337{bottom:257.970000px;}
.y1d_c02337{bottom:288.975000px;}
.y1c_c02337{bottom:320.115000px;}
.y1b_c02337{bottom:351.075000px;}
.y1a_c02337{bottom:382.215000px;}
.y19_c02337{bottom:413.175000px;}
.y18_c02337{bottom:444.315000px;}
.y17_c02337{bottom:475.275000px;}
.y16_c02337{bottom:506.415000px;}
.y15_c02337{bottom:537.405000px;}
.y14_c02337{bottom:568.545000px;}
.y13_c02337{bottom:599.505000px;}
.y12_c02337{bottom:630.645000px;}
.y11_c02337{bottom:661.605000px;}
.y10_c02337{bottom:692.745000px;}
.yf_c02337{bottom:723.705000px;}
.ye_c02337{bottom:754.845000px;}
.yd_c02337{bottom:785.805000px;}
.yc_c02337{bottom:816.990000px;}
.yb_c02337{bottom:847.950000px;}
.ya_c02337{bottom:879.090000px;}
.y9_c02337{bottom:910.050000px;}
.y8_c02337{bottom:941.190000px;}
.y7_c02337{bottom:972.150000px;}
.y6_c02337{bottom:1003.290000px;}
.y5_c02337{bottom:1034.250000px;}
.y4_c02337{bottom:1065.420000px;}
.h2_c02337{height:22.500000px;}
.h1_c02337{height:48.871406px;}
.h3_c02337{height:70.664062px;}
.h0_c02337{height:1188.000000px;}
.w1_c02337{width:66.636000px;}
.w0_c02337{width:918.000000px;}
.x0_c02337{left:0.000000px;}
.x3_c02337{left:16.560000px;}
.x1_c02337{left:127.656000px;}
.x4_c02337{left:187.050000px;}
.x2_c02337{left:820.950000px;}
@media print{
.v0_c02337{vertical-align:0.000000pt;}
.ls0_c02337{letter-spacing:0.000000pt;}
.ws0_c02337{word-spacing:0.000000pt;}
._6_c02337{margin-left:-0.960000pt;}
._5_c02337{width:0.928000pt;}
._0_c02337{width:2.048000pt;}
._c_c02337{width:3.712000pt;}
._b_c02337{width:4.928000pt;}
._8_c02337{width:6.080000pt;}
._7_c02337{width:7.040000pt;}
._9_c02337{width:8.160000pt;}
._a_c02337{width:9.056000pt;}
._1_c02337{width:10.560000pt;}
._2_c02337{width:11.680000pt;}
._e_c02337{width:17.536000pt;}
._f_c02337{width:18.496000pt;}
._d_c02337{width:19.648000pt;}
._10_c02337{width:23.488000pt;}
._11_c02337{width:24.576000pt;}
._3_c02337{width:28.288000pt;}
._4_c02337{width:29.184000pt;}
.fs0_c02337{font-size:58.880000pt;}
.fs1_c02337{font-size:64.000000pt;}
.y0_c02337{bottom:0.000000pt;}
.y3_c02337{bottom:4.160000pt;}
.y2_c02337{bottom:37.152000pt;}
.y1_c02337{bottom:67.072000pt;}
.y21_c02337{bottom:146.586667pt;}
.y20_c02337{bottom:174.106667pt;}
.y1f_c02337{bottom:201.626667pt;}
.y1e_c02337{bottom:229.306667pt;}
.y1d_c02337{bottom:256.866667pt;}
.y1c_c02337{bottom:284.546667pt;}
.y1b_c02337{bottom:312.066667pt;}
.y1a_c02337{bottom:339.746667pt;}
.y19_c02337{bottom:367.266667pt;}
.y18_c02337{bottom:394.946667pt;}
.y17_c02337{bottom:422.466667pt;}
.y16_c02337{bottom:450.146667pt;}
.y15_c02337{bottom:477.693333pt;}
.y14_c02337{bottom:505.373333pt;}
.y13_c02337{bottom:532.893333pt;}
.y12_c02337{bottom:560.573333pt;}
.y11_c02337{bottom:588.093333pt;}
.y10_c02337{bottom:615.773333pt;}
.yf_c02337{bottom:643.293333pt;}
.ye_c02337{bottom:670.973333pt;}
.yd_c02337{bottom:698.493333pt;}
.yc_c02337{bottom:726.213333pt;}
.yb_c02337{bottom:753.733333pt;}
.ya_c02337{bottom:781.413333pt;}
.y9_c02337{bottom:808.933333pt;}
.y8_c02337{bottom:836.613333pt;}
.y7_c02337{bottom:864.133333pt;}
.y6_c02337{bottom:891.813333pt;}
.y5_c02337{bottom:919.333333pt;}
.y4_c02337{bottom:947.040000pt;}
.h2_c02337{height:20.000000pt;}
.h1_c02337{height:43.441250pt;}
.h3_c02337{height:62.812500pt;}
.h0_c02337{height:1056.000000pt;}
.w1_c02337{width:59.232000pt;}
.w0_c02337{width:816.000000pt;}
.x0_c02337{left:0.000000pt;}
.x3_c02337{left:14.720000pt;}
.x1_c02337{left:113.472000pt;}
.x4_c02337{left:166.266667pt;}
.x2_c02337{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02338 {
    display:none;
  }
  .loading-indicator_c02338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02338 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02338 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02338" -> "#page-container .classname_c02338")
 */
.pf_c02338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02338 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02338 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02338 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02338 {overflow:visible;}
  }
}
.c_c02338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02338 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02338:after { /* webkit #35443 */
  content: '';
}
.t_c02338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02338 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02338 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02338 { /* info for Javascript */
  display:none;
}
.l_c02338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02338:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02338 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02338.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02338;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02338{font-family:ff1_c02338;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02338;src:url('chunks/assets/font_a801c97e35e25d8796d2e6d4.woff2')format("woff");}.ff2_c02338{font-family:ff2_c02338;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;}
.m0_c02338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02338{vertical-align:0.000000px;}
.ls0_c02338{letter-spacing:0.000000px;}
.sc__c02338{text-shadow:none;}
.sc0_c02338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02338{-webkit-text-stroke:0px transparent;}
.sc0_c02338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02338{word-spacing:0.000000px;}
._1_c02338{margin-left:-1.080000px;}
._5_c02338{width:1.560000px;}
._a_c02338{width:3.384000px;}
._9_c02338{width:4.536000px;}
._7_c02338{width:5.904000px;}
._0_c02338{width:7.272000px;}
._2_c02338{width:8.280000px;}
._4_c02338{width:9.720000px;}
._3_c02338{width:11.016000px;}
._b_c02338{width:12.024000px;}
._6_c02338{width:19.968000px;}
._c_c02338{width:21.096000px;}
._d_c02338{width:22.248000px;}
._8_c02338{width:23.400000px;}
._f_c02338{width:27.000000px;}
._e_c02338{width:28.008000px;}
._10_c02338{width:29.016000px;}
.fc1_c02338{color:rgb(192,80,77);}
.fc0_c02338{color:rgb(0,0,0);}
.fs0_c02338{font-size:66.240000px;}
.fs1_c02338{font-size:72.000000px;}
.y0_c02338{bottom:0.000000px;}
.y3_c02338{bottom:4.680000px;}
.y2_c02338{bottom:41.796000px;}
.y1_c02338{bottom:75.456000px;}
.y22_c02338{bottom:133.776000px;}
.y21_c02338{bottom:164.910000px;}
.y20_c02338{bottom:195.870000px;}
.y1f_c02338{bottom:226.830000px;}
.y1e_c02338{bottom:257.970000px;}
.y1d_c02338{bottom:288.975000px;}
.y1c_c02338{bottom:320.115000px;}
.y1b_c02338{bottom:351.075000px;}
.y1a_c02338{bottom:382.215000px;}
.y19_c02338{bottom:413.175000px;}
.y18_c02338{bottom:444.315000px;}
.y17_c02338{bottom:475.275000px;}
.y16_c02338{bottom:506.415000px;}
.y15_c02338{bottom:537.405000px;}
.y14_c02338{bottom:568.545000px;}
.y13_c02338{bottom:599.505000px;}
.y12_c02338{bottom:630.645000px;}
.y11_c02338{bottom:661.605000px;}
.y10_c02338{bottom:692.745000px;}
.yf_c02338{bottom:723.705000px;}
.ye_c02338{bottom:754.845000px;}
.yd_c02338{bottom:785.805000px;}
.yc_c02338{bottom:816.990000px;}
.yb_c02338{bottom:847.950000px;}
.ya_c02338{bottom:879.090000px;}
.y9_c02338{bottom:910.050000px;}
.y8_c02338{bottom:941.190000px;}
.y7_c02338{bottom:972.150000px;}
.y6_c02338{bottom:1003.290000px;}
.y5_c02338{bottom:1034.250000px;}
.y4_c02338{bottom:1065.420000px;}
.h2_c02338{height:22.500000px;}
.h1_c02338{height:48.871406px;}
.h3_c02338{height:70.664062px;}
.h0_c02338{height:1188.000000px;}
.w1_c02338{width:66.636000px;}
.w0_c02338{width:918.000000px;}
.x0_c02338{left:0.000000px;}
.x3_c02338{left:16.560000px;}
.x1_c02338{left:127.656000px;}
.x4_c02338{left:187.050000px;}
.x2_c02338{left:820.950000px;}
@media print{
.v0_c02338{vertical-align:0.000000pt;}
.ls0_c02338{letter-spacing:0.000000pt;}
.ws0_c02338{word-spacing:0.000000pt;}
._1_c02338{margin-left:-0.960000pt;}
._5_c02338{width:1.386667pt;}
._a_c02338{width:3.008000pt;}
._9_c02338{width:4.032000pt;}
._7_c02338{width:5.248000pt;}
._0_c02338{width:6.464000pt;}
._2_c02338{width:7.360000pt;}
._4_c02338{width:8.640000pt;}
._3_c02338{width:9.792000pt;}
._b_c02338{width:10.688000pt;}
._6_c02338{width:17.749333pt;}
._c_c02338{width:18.752000pt;}
._d_c02338{width:19.776000pt;}
._8_c02338{width:20.800000pt;}
._f_c02338{width:24.000000pt;}
._e_c02338{width:24.896000pt;}
._10_c02338{width:25.792000pt;}
.fs0_c02338{font-size:58.880000pt;}
.fs1_c02338{font-size:64.000000pt;}
.y0_c02338{bottom:0.000000pt;}
.y3_c02338{bottom:4.160000pt;}
.y2_c02338{bottom:37.152000pt;}
.y1_c02338{bottom:67.072000pt;}
.y22_c02338{bottom:118.912000pt;}
.y21_c02338{bottom:146.586667pt;}
.y20_c02338{bottom:174.106667pt;}
.y1f_c02338{bottom:201.626667pt;}
.y1e_c02338{bottom:229.306667pt;}
.y1d_c02338{bottom:256.866667pt;}
.y1c_c02338{bottom:284.546667pt;}
.y1b_c02338{bottom:312.066667pt;}
.y1a_c02338{bottom:339.746667pt;}
.y19_c02338{bottom:367.266667pt;}
.y18_c02338{bottom:394.946667pt;}
.y17_c02338{bottom:422.466667pt;}
.y16_c02338{bottom:450.146667pt;}
.y15_c02338{bottom:477.693333pt;}
.y14_c02338{bottom:505.373333pt;}
.y13_c02338{bottom:532.893333pt;}
.y12_c02338{bottom:560.573333pt;}
.y11_c02338{bottom:588.093333pt;}
.y10_c02338{bottom:615.773333pt;}
.yf_c02338{bottom:643.293333pt;}
.ye_c02338{bottom:670.973333pt;}
.yd_c02338{bottom:698.493333pt;}
.yc_c02338{bottom:726.213333pt;}
.yb_c02338{bottom:753.733333pt;}
.ya_c02338{bottom:781.413333pt;}
.y9_c02338{bottom:808.933333pt;}
.y8_c02338{bottom:836.613333pt;}
.y7_c02338{bottom:864.133333pt;}
.y6_c02338{bottom:891.813333pt;}
.y5_c02338{bottom:919.333333pt;}
.y4_c02338{bottom:947.040000pt;}
.h2_c02338{height:20.000000pt;}
.h1_c02338{height:43.441250pt;}
.h3_c02338{height:62.812500pt;}
.h0_c02338{height:1056.000000pt;}
.w1_c02338{width:59.232000pt;}
.w0_c02338{width:816.000000pt;}
.x0_c02338{left:0.000000pt;}
.x3_c02338{left:14.720000pt;}
.x1_c02338{left:113.472000pt;}
.x4_c02338{left:166.266667pt;}
.x2_c02338{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02339 {
    display:none;
  }
  .loading-indicator_c02339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02339 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02339 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02339" -> "#page-container .classname_c02339")
 */
.pf_c02339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02339 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02339 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02339 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02339 {overflow:visible;}
  }
}
.c_c02339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02339 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02339:after { /* webkit #35443 */
  content: '';
}
.t_c02339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02339 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02339 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02339 { /* info for Javascript */
  display:none;
}
.l_c02339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02339:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02339 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02339.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02339;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02339{font-family:ff1_c02339;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02339;src:url('chunks/assets/font_985b6b17cff868555c3b6f65.woff2')format("woff");}.ff2_c02339{font-family:ff2_c02339;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:ff3_c02339;src:url('chunks/assets/font_4ffe277479175eee9e032a9b.woff2')format("woff");}.ff3_c02339{font-family:ff3_c02339;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02339{vertical-align:0.000000px;}
.ls0_c02339{letter-spacing:0.000000px;}
.sc__c02339{text-shadow:none;}
.sc0_c02339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02339{-webkit-text-stroke:0px transparent;}
.sc0_c02339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02339{word-spacing:0.000000px;}
._e_c02339{margin-left:-2.808000px;}
._3_c02339{margin-left:-1.296000px;}
._2_c02339{width:1.332000px;}
._5_c02339{width:3.276000px;}
._0_c02339{width:5.184000px;}
._1_c02339{width:6.192000px;}
._6_c02339{width:7.416000px;}
._8_c02339{width:8.424000px;}
._7_c02339{width:9.468000px;}
._a_c02339{width:12.024000px;}
._13_c02339{width:13.824000px;}
._9_c02339{width:15.120000px;}
._c_c02339{width:16.920000px;}
._4_c02339{width:19.224000px;}
._b_c02339{width:20.820000px;}
._f_c02339{width:24.120000px;}
._10_c02339{width:25.200000px;}
._11_c02339{width:26.856000px;}
._12_c02339{width:27.936000px;}
._d_c02339{width:40.104000px;}
.fc1_c02339{color:rgb(192,80,77);}
.fc0_c02339{color:rgb(0,0,0);}
.fs0_c02339{font-size:66.240000px;}
.fs1_c02339{font-size:72.000000px;}
.y0_c02339{bottom:0.000000px;}
.y3_c02339{bottom:4.680000px;}
.y2_c02339{bottom:41.796000px;}
.y1_c02339{bottom:75.456000px;}
.y22_c02339{bottom:133.776000px;}
.y21_c02339{bottom:164.910000px;}
.y20_c02339{bottom:195.870000px;}
.y1f_c02339{bottom:226.830000px;}
.y1e_c02339{bottom:257.970000px;}
.y1d_c02339{bottom:288.975000px;}
.y1c_c02339{bottom:320.115000px;}
.y1b_c02339{bottom:351.075000px;}
.y1a_c02339{bottom:382.215000px;}
.y19_c02339{bottom:413.175000px;}
.y18_c02339{bottom:444.315000px;}
.y17_c02339{bottom:475.275000px;}
.y16_c02339{bottom:506.415000px;}
.y15_c02339{bottom:537.405000px;}
.y14_c02339{bottom:568.545000px;}
.y13_c02339{bottom:599.505000px;}
.y12_c02339{bottom:630.645000px;}
.y11_c02339{bottom:661.605000px;}
.y10_c02339{bottom:692.745000px;}
.yf_c02339{bottom:723.705000px;}
.ye_c02339{bottom:754.845000px;}
.yd_c02339{bottom:785.805000px;}
.yc_c02339{bottom:816.990000px;}
.yb_c02339{bottom:847.950000px;}
.ya_c02339{bottom:879.090000px;}
.y9_c02339{bottom:910.050000px;}
.y8_c02339{bottom:941.190000px;}
.y7_c02339{bottom:972.150000px;}
.y6_c02339{bottom:1003.290000px;}
.y5_c02339{bottom:1034.250000px;}
.y4_c02339{bottom:1065.420000px;}
.h2_c02339{height:22.500000px;}
.h1_c02339{height:48.871406px;}
.h4_c02339{height:64.546875px;}
.h3_c02339{height:70.664062px;}
.h0_c02339{height:1188.000000px;}
.w1_c02339{width:66.636000px;}
.w0_c02339{width:918.000000px;}
.x0_c02339{left:0.000000px;}
.x3_c02339{left:16.560000px;}
.x1_c02339{left:127.656000px;}
.x4_c02339{left:187.050000px;}
.x2_c02339{left:820.950000px;}
@media print{
.v0_c02339{vertical-align:0.000000pt;}
.ls0_c02339{letter-spacing:0.000000pt;}
.ws0_c02339{word-spacing:0.000000pt;}
._e_c02339{margin-left:-2.496000pt;}
._3_c02339{margin-left:-1.152000pt;}
._2_c02339{width:1.184000pt;}
._5_c02339{width:2.912000pt;}
._0_c02339{width:4.608000pt;}
._1_c02339{width:5.504000pt;}
._6_c02339{width:6.592000pt;}
._8_c02339{width:7.488000pt;}
._7_c02339{width:8.416000pt;}
._a_c02339{width:10.688000pt;}
._13_c02339{width:12.288000pt;}
._9_c02339{width:13.440000pt;}
._c_c02339{width:15.040000pt;}
._4_c02339{width:17.088000pt;}
._b_c02339{width:18.506667pt;}
._f_c02339{width:21.440000pt;}
._10_c02339{width:22.400000pt;}
._11_c02339{width:23.872000pt;}
._12_c02339{width:24.832000pt;}
._d_c02339{width:35.648000pt;}
.fs0_c02339{font-size:58.880000pt;}
.fs1_c02339{font-size:64.000000pt;}
.y0_c02339{bottom:0.000000pt;}
.y3_c02339{bottom:4.160000pt;}
.y2_c02339{bottom:37.152000pt;}
.y1_c02339{bottom:67.072000pt;}
.y22_c02339{bottom:118.912000pt;}
.y21_c02339{bottom:146.586667pt;}
.y20_c02339{bottom:174.106667pt;}
.y1f_c02339{bottom:201.626667pt;}
.y1e_c02339{bottom:229.306667pt;}
.y1d_c02339{bottom:256.866667pt;}
.y1c_c02339{bottom:284.546667pt;}
.y1b_c02339{bottom:312.066667pt;}
.y1a_c02339{bottom:339.746667pt;}
.y19_c02339{bottom:367.266667pt;}
.y18_c02339{bottom:394.946667pt;}
.y17_c02339{bottom:422.466667pt;}
.y16_c02339{bottom:450.146667pt;}
.y15_c02339{bottom:477.693333pt;}
.y14_c02339{bottom:505.373333pt;}
.y13_c02339{bottom:532.893333pt;}
.y12_c02339{bottom:560.573333pt;}
.y11_c02339{bottom:588.093333pt;}
.y10_c02339{bottom:615.773333pt;}
.yf_c02339{bottom:643.293333pt;}
.ye_c02339{bottom:670.973333pt;}
.yd_c02339{bottom:698.493333pt;}
.yc_c02339{bottom:726.213333pt;}
.yb_c02339{bottom:753.733333pt;}
.ya_c02339{bottom:781.413333pt;}
.y9_c02339{bottom:808.933333pt;}
.y8_c02339{bottom:836.613333pt;}
.y7_c02339{bottom:864.133333pt;}
.y6_c02339{bottom:891.813333pt;}
.y5_c02339{bottom:919.333333pt;}
.y4_c02339{bottom:947.040000pt;}
.h2_c02339{height:20.000000pt;}
.h1_c02339{height:43.441250pt;}
.h4_c02339{height:57.375000pt;}
.h3_c02339{height:62.812500pt;}
.h0_c02339{height:1056.000000pt;}
.w1_c02339{width:59.232000pt;}
.w0_c02339{width:816.000000pt;}
.x0_c02339{left:0.000000pt;}
.x3_c02339{left:14.720000pt;}
.x1_c02339{left:113.472000pt;}
.x4_c02339{left:166.266667pt;}
.x2_c02339{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02340 {
    display:none;
  }
  .loading-indicator_c02340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02340 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02340 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02340" -> "#page-container .classname_c02340")
 */
.pf_c02340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02340 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02340 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02340 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02340 {overflow:visible;}
  }
}
.c_c02340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02340 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02340:after { /* webkit #35443 */
  content: '';
}
.t_c02340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02340 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02340 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02340 { /* info for Javascript */
  display:none;
}
.l_c02340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02340:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02340 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02340.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02340;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02340{font-family:ff1_c02340;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02340;src:url('chunks/assets/font_1ff3a3e333446154cbb314f1.woff2')format("woff");}.ff2_c02340{font-family:ff2_c02340;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;}
.m0_c02340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02340{vertical-align:0.000000px;}
.ls0_c02340{letter-spacing:0.000000px;}
.sc__c02340{text-shadow:none;}
.sc0_c02340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02340{-webkit-text-stroke:0px transparent;}
.sc0_c02340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02340{word-spacing:0.000000px;}
._18_c02340{margin-left:-2.088000px;}
._2_c02340{margin-left:-1.044000px;}
._1_c02340{width:1.080000px;}
._0_c02340{width:2.160000px;}
._8_c02340{width:3.636000px;}
._15_c02340{width:5.436000px;}
._4_c02340{width:6.948000px;}
._3_c02340{width:8.064000px;}
._5_c02340{width:9.324000px;}
._16_c02340{width:11.160000px;}
._11_c02340{width:12.744000px;}
._d_c02340{width:13.824000px;}
._e_c02340{width:14.832000px;}
._14_c02340{width:16.992000px;}
._13_c02340{width:20.736000px;}
._12_c02340{width:21.816000px;}
._f_c02340{width:23.544000px;}
._10_c02340{width:24.588000px;}
._6_c02340{width:26.424000px;}
._7_c02340{width:27.576000px;}
._19_c02340{width:28.692000px;}
._17_c02340{width:29.736000px;}
._9_c02340{width:30.888000px;}
._a_c02340{width:32.112000px;}
._b_c02340{width:35.352000px;}
._c_c02340{width:36.432000px;}
.fc1_c02340{color:rgb(192,80,77);}
.fc0_c02340{color:rgb(0,0,0);}
.fs0_c02340{font-size:66.240000px;}
.fs1_c02340{font-size:72.000000px;}
.y0_c02340{bottom:0.000000px;}
.y3_c02340{bottom:4.680000px;}
.y2_c02340{bottom:41.796000px;}
.y1_c02340{bottom:75.456000px;}
.y22_c02340{bottom:133.776000px;}
.y21_c02340{bottom:164.910000px;}
.y20_c02340{bottom:195.870000px;}
.y1f_c02340{bottom:226.830000px;}
.y1e_c02340{bottom:257.970000px;}
.y1d_c02340{bottom:288.975000px;}
.y1c_c02340{bottom:320.115000px;}
.y1b_c02340{bottom:351.075000px;}
.y1a_c02340{bottom:382.215000px;}
.y19_c02340{bottom:413.175000px;}
.y18_c02340{bottom:444.315000px;}
.y17_c02340{bottom:475.275000px;}
.y16_c02340{bottom:506.415000px;}
.y15_c02340{bottom:537.405000px;}
.y14_c02340{bottom:568.545000px;}
.y13_c02340{bottom:599.505000px;}
.y12_c02340{bottom:630.645000px;}
.y11_c02340{bottom:661.605000px;}
.y10_c02340{bottom:692.745000px;}
.yf_c02340{bottom:723.705000px;}
.ye_c02340{bottom:754.845000px;}
.yd_c02340{bottom:785.805000px;}
.yc_c02340{bottom:816.990000px;}
.yb_c02340{bottom:847.950000px;}
.ya_c02340{bottom:879.090000px;}
.y9_c02340{bottom:910.050000px;}
.y8_c02340{bottom:941.190000px;}
.y7_c02340{bottom:972.150000px;}
.y6_c02340{bottom:1003.290000px;}
.y5_c02340{bottom:1034.250000px;}
.y4_c02340{bottom:1065.420000px;}
.h2_c02340{height:22.500000px;}
.h1_c02340{height:48.871406px;}
.h3_c02340{height:70.664062px;}
.h0_c02340{height:1188.000000px;}
.w1_c02340{width:66.636000px;}
.w0_c02340{width:918.000000px;}
.x0_c02340{left:0.000000px;}
.x3_c02340{left:16.560000px;}
.x1_c02340{left:127.656000px;}
.x4_c02340{left:187.050000px;}
.x2_c02340{left:820.950000px;}
@media print{
.v0_c02340{vertical-align:0.000000pt;}
.ls0_c02340{letter-spacing:0.000000pt;}
.ws0_c02340{word-spacing:0.000000pt;}
._18_c02340{margin-left:-1.856000pt;}
._2_c02340{margin-left:-0.928000pt;}
._1_c02340{width:0.960000pt;}
._0_c02340{width:1.920000pt;}
._8_c02340{width:3.232000pt;}
._15_c02340{width:4.832000pt;}
._4_c02340{width:6.176000pt;}
._3_c02340{width:7.168000pt;}
._5_c02340{width:8.288000pt;}
._16_c02340{width:9.920000pt;}
._11_c02340{width:11.328000pt;}
._d_c02340{width:12.288000pt;}
._e_c02340{width:13.184000pt;}
._14_c02340{width:15.104000pt;}
._13_c02340{width:18.432000pt;}
._12_c02340{width:19.392000pt;}
._f_c02340{width:20.928000pt;}
._10_c02340{width:21.856000pt;}
._6_c02340{width:23.488000pt;}
._7_c02340{width:24.512000pt;}
._19_c02340{width:25.504000pt;}
._17_c02340{width:26.432000pt;}
._9_c02340{width:27.456000pt;}
._a_c02340{width:28.544000pt;}
._b_c02340{width:31.424000pt;}
._c_c02340{width:32.384000pt;}
.fs0_c02340{font-size:58.880000pt;}
.fs1_c02340{font-size:64.000000pt;}
.y0_c02340{bottom:0.000000pt;}
.y3_c02340{bottom:4.160000pt;}
.y2_c02340{bottom:37.152000pt;}
.y1_c02340{bottom:67.072000pt;}
.y22_c02340{bottom:118.912000pt;}
.y21_c02340{bottom:146.586667pt;}
.y20_c02340{bottom:174.106667pt;}
.y1f_c02340{bottom:201.626667pt;}
.y1e_c02340{bottom:229.306667pt;}
.y1d_c02340{bottom:256.866667pt;}
.y1c_c02340{bottom:284.546667pt;}
.y1b_c02340{bottom:312.066667pt;}
.y1a_c02340{bottom:339.746667pt;}
.y19_c02340{bottom:367.266667pt;}
.y18_c02340{bottom:394.946667pt;}
.y17_c02340{bottom:422.466667pt;}
.y16_c02340{bottom:450.146667pt;}
.y15_c02340{bottom:477.693333pt;}
.y14_c02340{bottom:505.373333pt;}
.y13_c02340{bottom:532.893333pt;}
.y12_c02340{bottom:560.573333pt;}
.y11_c02340{bottom:588.093333pt;}
.y10_c02340{bottom:615.773333pt;}
.yf_c02340{bottom:643.293333pt;}
.ye_c02340{bottom:670.973333pt;}
.yd_c02340{bottom:698.493333pt;}
.yc_c02340{bottom:726.213333pt;}
.yb_c02340{bottom:753.733333pt;}
.ya_c02340{bottom:781.413333pt;}
.y9_c02340{bottom:808.933333pt;}
.y8_c02340{bottom:836.613333pt;}
.y7_c02340{bottom:864.133333pt;}
.y6_c02340{bottom:891.813333pt;}
.y5_c02340{bottom:919.333333pt;}
.y4_c02340{bottom:947.040000pt;}
.h2_c02340{height:20.000000pt;}
.h1_c02340{height:43.441250pt;}
.h3_c02340{height:62.812500pt;}
.h0_c02340{height:1056.000000pt;}
.w1_c02340{width:59.232000pt;}
.w0_c02340{width:816.000000pt;}
.x0_c02340{left:0.000000pt;}
.x3_c02340{left:14.720000pt;}
.x1_c02340{left:113.472000pt;}
.x4_c02340{left:166.266667pt;}
.x2_c02340{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02341 {
    display:none;
  }
  .loading-indicator_c02341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02341 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02341 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02341" -> "#page-container .classname_c02341")
 */
.pf_c02341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02341 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02341 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02341 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02341 {overflow:visible;}
  }
}
.c_c02341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02341 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02341:after { /* webkit #35443 */
  content: '';
}
.t_c02341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02341 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02341 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02341 { /* info for Javascript */
  display:none;
}
.l_c02341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02341:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02341 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02341.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02341;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02341{font-family:ff1_c02341;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02341;src:url('chunks/assets/font_a451159e8529203656d7a828.woff2')format("woff");}.ff2_c02341{font-family:ff2_c02341;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:ff3_c02341;src:url('chunks/assets/font_2aa7d859917c7d34c94eac7a.woff2')format("woff");}.ff3_c02341{font-family:ff3_c02341;line-height:1.284180;font-style:normal;font-weight: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_c02341;src:url('chunks/assets/font_ff9ed187a6a03464bfbd1f9f.woff2')format("woff");}.ff4_c02341{font-family:ff4_c02341;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02341{vertical-align:0.000000px;}
.ls0_c02341{letter-spacing:0.000000px;}
.sc__c02341{text-shadow:none;}
.sc0_c02341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02341{-webkit-text-stroke:0px transparent;}
.sc0_c02341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02341{word-spacing:0.000000px;}
._9_c02341{margin-left:-2.376000px;}
._3_c02341{margin-left:-1.224000px;}
._1_c02341{width:1.452000px;}
._0_c02341{width:3.168000px;}
._2_c02341{width:4.752000px;}
._7_c02341{width:6.768000px;}
._8_c02341{width:8.616000px;}
._10_c02341{width:12.312000px;}
._11_c02341{width:13.824000px;}
._4_c02341{width:16.632000px;}
._b_c02341{width:20.520000px;}
._a_c02341{width:21.888000px;}
._c_c02341{width:24.120000px;}
._d_c02341{width:26.052000px;}
._f_c02341{width:27.300000px;}
._e_c02341{width:28.368000px;}
._12_c02341{width:29.400000px;}
._5_c02341{width:31.608000px;}
._6_c02341{width:33.192000px;}
.fc1_c02341{color:rgb(192,80,77);}
.fc0_c02341{color:rgb(0,0,0);}
.fs0_c02341{font-size:66.240000px;}
.fs1_c02341{font-size:72.000000px;}
.y0_c02341{bottom:0.000000px;}
.y3_c02341{bottom:4.680000px;}
.y2_c02341{bottom:41.796000px;}
.y1_c02341{bottom:75.456000px;}
.y21_c02341{bottom:164.910000px;}
.y20_c02341{bottom:195.870000px;}
.y1f_c02341{bottom:226.830000px;}
.y1e_c02341{bottom:257.970000px;}
.y1d_c02341{bottom:288.975000px;}
.y1c_c02341{bottom:320.115000px;}
.y1b_c02341{bottom:351.075000px;}
.y1a_c02341{bottom:382.215000px;}
.y19_c02341{bottom:413.175000px;}
.y18_c02341{bottom:444.315000px;}
.y17_c02341{bottom:475.275000px;}
.y16_c02341{bottom:506.415000px;}
.y15_c02341{bottom:537.405000px;}
.y14_c02341{bottom:568.545000px;}
.y13_c02341{bottom:599.505000px;}
.y12_c02341{bottom:630.645000px;}
.y11_c02341{bottom:661.605000px;}
.y10_c02341{bottom:692.745000px;}
.yf_c02341{bottom:723.705000px;}
.ye_c02341{bottom:754.845000px;}
.yd_c02341{bottom:785.805000px;}
.yc_c02341{bottom:816.990000px;}
.yb_c02341{bottom:847.950000px;}
.ya_c02341{bottom:879.090000px;}
.y9_c02341{bottom:910.050000px;}
.y8_c02341{bottom:941.190000px;}
.y7_c02341{bottom:972.150000px;}
.y6_c02341{bottom:1003.290000px;}
.y5_c02341{bottom:1034.250000px;}
.y4_c02341{bottom:1065.420000px;}
.h2_c02341{height:22.500000px;}
.h1_c02341{height:48.871406px;}
.h4_c02341{height:64.546875px;}
.h3_c02341{height:70.664062px;}
.h0_c02341{height:1188.000000px;}
.w1_c02341{width:66.636000px;}
.w0_c02341{width:918.000000px;}
.x0_c02341{left:0.000000px;}
.x3_c02341{left:16.560000px;}
.x1_c02341{left:127.656000px;}
.x4_c02341{left:187.050000px;}
.x2_c02341{left:820.950000px;}
@media print{
.v0_c02341{vertical-align:0.000000pt;}
.ls0_c02341{letter-spacing:0.000000pt;}
.ws0_c02341{word-spacing:0.000000pt;}
._9_c02341{margin-left:-2.112000pt;}
._3_c02341{margin-left:-1.088000pt;}
._1_c02341{width:1.290667pt;}
._0_c02341{width:2.816000pt;}
._2_c02341{width:4.224000pt;}
._7_c02341{width:6.016000pt;}
._8_c02341{width:7.658667pt;}
._10_c02341{width:10.944000pt;}
._11_c02341{width:12.288000pt;}
._4_c02341{width:14.784000pt;}
._b_c02341{width:18.240000pt;}
._a_c02341{width:19.456000pt;}
._c_c02341{width:21.440000pt;}
._d_c02341{width:23.157333pt;}
._f_c02341{width:24.266667pt;}
._e_c02341{width:25.216000pt;}
._12_c02341{width:26.133333pt;}
._5_c02341{width:28.096000pt;}
._6_c02341{width:29.504000pt;}
.fs0_c02341{font-size:58.880000pt;}
.fs1_c02341{font-size:64.000000pt;}
.y0_c02341{bottom:0.000000pt;}
.y3_c02341{bottom:4.160000pt;}
.y2_c02341{bottom:37.152000pt;}
.y1_c02341{bottom:67.072000pt;}
.y21_c02341{bottom:146.586667pt;}
.y20_c02341{bottom:174.106667pt;}
.y1f_c02341{bottom:201.626667pt;}
.y1e_c02341{bottom:229.306667pt;}
.y1d_c02341{bottom:256.866667pt;}
.y1c_c02341{bottom:284.546667pt;}
.y1b_c02341{bottom:312.066667pt;}
.y1a_c02341{bottom:339.746667pt;}
.y19_c02341{bottom:367.266667pt;}
.y18_c02341{bottom:394.946667pt;}
.y17_c02341{bottom:422.466667pt;}
.y16_c02341{bottom:450.146667pt;}
.y15_c02341{bottom:477.693333pt;}
.y14_c02341{bottom:505.373333pt;}
.y13_c02341{bottom:532.893333pt;}
.y12_c02341{bottom:560.573333pt;}
.y11_c02341{bottom:588.093333pt;}
.y10_c02341{bottom:615.773333pt;}
.yf_c02341{bottom:643.293333pt;}
.ye_c02341{bottom:670.973333pt;}
.yd_c02341{bottom:698.493333pt;}
.yc_c02341{bottom:726.213333pt;}
.yb_c02341{bottom:753.733333pt;}
.ya_c02341{bottom:781.413333pt;}
.y9_c02341{bottom:808.933333pt;}
.y8_c02341{bottom:836.613333pt;}
.y7_c02341{bottom:864.133333pt;}
.y6_c02341{bottom:891.813333pt;}
.y5_c02341{bottom:919.333333pt;}
.y4_c02341{bottom:947.040000pt;}
.h2_c02341{height:20.000000pt;}
.h1_c02341{height:43.441250pt;}
.h4_c02341{height:57.375000pt;}
.h3_c02341{height:62.812500pt;}
.h0_c02341{height:1056.000000pt;}
.w1_c02341{width:59.232000pt;}
.w0_c02341{width:816.000000pt;}
.x0_c02341{left:0.000000pt;}
.x3_c02341{left:14.720000pt;}
.x1_c02341{left:113.472000pt;}
.x4_c02341{left:166.266667pt;}
.x2_c02341{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02342 {
    display:none;
  }
  .loading-indicator_c02342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02342 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02342 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02342" -> "#page-container .classname_c02342")
 */
.pf_c02342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02342 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02342 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02342 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02342 {overflow:visible;}
  }
}
.c_c02342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02342 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02342:after { /* webkit #35443 */
  content: '';
}
.t_c02342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02342 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02342 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02342 { /* info for Javascript */
  display:none;
}
.l_c02342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02342:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02342 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02342.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02342;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02342{font-family:ff1_c02342;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02342;src:url('chunks/assets/font_2821d5c8cd79139517ea82ae.woff2')format("woff");}.ff2_c02342{font-family:ff2_c02342;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;}
.m0_c02342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02342{vertical-align:0.000000px;}
.ls0_c02342{letter-spacing:0.000000px;}
.sc__c02342{text-shadow:none;}
.sc0_c02342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02342{-webkit-text-stroke:0px transparent;}
.sc0_c02342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02342{word-spacing:0.000000px;}
._d_c02342{margin-left:-2.016000px;}
._0_c02342{margin-left:-1.008000px;}
._1_c02342{width:1.740000px;}
._5_c02342{width:3.456000px;}
._6_c02342{width:4.512000px;}
._c_c02342{width:5.724000px;}
._2_c02342{width:7.344000px;}
._3_c02342{width:9.264000px;}
._4_c02342{width:10.344000px;}
._a_c02342{width:11.376000px;}
._8_c02342{width:13.248000px;}
._7_c02342{width:14.616000px;}
._9_c02342{width:16.848000px;}
._e_c02342{width:22.608000px;}
._b_c02342{width:23.976000px;}
.fc1_c02342{color:rgb(192,80,77);}
.fc0_c02342{color:rgb(0,0,0);}
.fs0_c02342{font-size:66.240000px;}
.fs1_c02342{font-size:72.000000px;}
.y0_c02342{bottom:0.000000px;}
.y3_c02342{bottom:4.680000px;}
.y2_c02342{bottom:41.796000px;}
.y1_c02342{bottom:75.456000px;}
.y21_c02342{bottom:164.910000px;}
.y20_c02342{bottom:195.870000px;}
.y1f_c02342{bottom:226.830000px;}
.y1e_c02342{bottom:257.970000px;}
.y1d_c02342{bottom:288.975000px;}
.y1c_c02342{bottom:320.115000px;}
.y1b_c02342{bottom:351.075000px;}
.y1a_c02342{bottom:382.215000px;}
.y19_c02342{bottom:413.175000px;}
.y18_c02342{bottom:444.315000px;}
.y17_c02342{bottom:475.275000px;}
.y16_c02342{bottom:506.415000px;}
.y15_c02342{bottom:537.405000px;}
.y14_c02342{bottom:568.545000px;}
.y13_c02342{bottom:599.505000px;}
.y12_c02342{bottom:630.645000px;}
.y11_c02342{bottom:661.605000px;}
.y10_c02342{bottom:692.745000px;}
.yf_c02342{bottom:723.705000px;}
.ye_c02342{bottom:754.845000px;}
.yd_c02342{bottom:785.805000px;}
.yc_c02342{bottom:816.990000px;}
.yb_c02342{bottom:847.950000px;}
.ya_c02342{bottom:879.090000px;}
.y9_c02342{bottom:910.050000px;}
.y8_c02342{bottom:941.190000px;}
.y7_c02342{bottom:972.150000px;}
.y6_c02342{bottom:1003.290000px;}
.y5_c02342{bottom:1034.250000px;}
.y4_c02342{bottom:1065.420000px;}
.h2_c02342{height:22.500000px;}
.h1_c02342{height:48.871406px;}
.h3_c02342{height:70.664062px;}
.h0_c02342{height:1188.000000px;}
.w1_c02342{width:66.636000px;}
.w0_c02342{width:918.000000px;}
.x0_c02342{left:0.000000px;}
.x3_c02342{left:16.560000px;}
.x1_c02342{left:127.656000px;}
.x4_c02342{left:187.050000px;}
.x2_c02342{left:820.950000px;}
@media print{
.v0_c02342{vertical-align:0.000000pt;}
.ls0_c02342{letter-spacing:0.000000pt;}
.ws0_c02342{word-spacing:0.000000pt;}
._d_c02342{margin-left:-1.792000pt;}
._0_c02342{margin-left:-0.896000pt;}
._1_c02342{width:1.546667pt;}
._5_c02342{width:3.072000pt;}
._6_c02342{width:4.010667pt;}
._c_c02342{width:5.088000pt;}
._2_c02342{width:6.528000pt;}
._3_c02342{width:8.234667pt;}
._4_c02342{width:9.194667pt;}
._a_c02342{width:10.112000pt;}
._8_c02342{width:11.776000pt;}
._7_c02342{width:12.992000pt;}
._9_c02342{width:14.976000pt;}
._e_c02342{width:20.096000pt;}
._b_c02342{width:21.312000pt;}
.fs0_c02342{font-size:58.880000pt;}
.fs1_c02342{font-size:64.000000pt;}
.y0_c02342{bottom:0.000000pt;}
.y3_c02342{bottom:4.160000pt;}
.y2_c02342{bottom:37.152000pt;}
.y1_c02342{bottom:67.072000pt;}
.y21_c02342{bottom:146.586667pt;}
.y20_c02342{bottom:174.106667pt;}
.y1f_c02342{bottom:201.626667pt;}
.y1e_c02342{bottom:229.306667pt;}
.y1d_c02342{bottom:256.866667pt;}
.y1c_c02342{bottom:284.546667pt;}
.y1b_c02342{bottom:312.066667pt;}
.y1a_c02342{bottom:339.746667pt;}
.y19_c02342{bottom:367.266667pt;}
.y18_c02342{bottom:394.946667pt;}
.y17_c02342{bottom:422.466667pt;}
.y16_c02342{bottom:450.146667pt;}
.y15_c02342{bottom:477.693333pt;}
.y14_c02342{bottom:505.373333pt;}
.y13_c02342{bottom:532.893333pt;}
.y12_c02342{bottom:560.573333pt;}
.y11_c02342{bottom:588.093333pt;}
.y10_c02342{bottom:615.773333pt;}
.yf_c02342{bottom:643.293333pt;}
.ye_c02342{bottom:670.973333pt;}
.yd_c02342{bottom:698.493333pt;}
.yc_c02342{bottom:726.213333pt;}
.yb_c02342{bottom:753.733333pt;}
.ya_c02342{bottom:781.413333pt;}
.y9_c02342{bottom:808.933333pt;}
.y8_c02342{bottom:836.613333pt;}
.y7_c02342{bottom:864.133333pt;}
.y6_c02342{bottom:891.813333pt;}
.y5_c02342{bottom:919.333333pt;}
.y4_c02342{bottom:947.040000pt;}
.h2_c02342{height:20.000000pt;}
.h1_c02342{height:43.441250pt;}
.h3_c02342{height:62.812500pt;}
.h0_c02342{height:1056.000000pt;}
.w1_c02342{width:59.232000pt;}
.w0_c02342{width:816.000000pt;}
.x0_c02342{left:0.000000pt;}
.x3_c02342{left:14.720000pt;}
.x1_c02342{left:113.472000pt;}
.x4_c02342{left:166.266667pt;}
.x2_c02342{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02343 {
    display:none;
  }
  .loading-indicator_c02343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02343 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02343 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02343" -> "#page-container .classname_c02343")
 */
.pf_c02343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02343 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02343 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02343 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02343 {overflow:visible;}
  }
}
.c_c02343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02343 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02343:after { /* webkit #35443 */
  content: '';
}
.t_c02343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02343 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02343 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02343 { /* info for Javascript */
  display:none;
}
.l_c02343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02343:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02343 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02343.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02343;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02343{font-family:ff1_c02343;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02343;src:url('chunks/assets/font_cda4973c0b4fc2a18d7b6115.woff2')format("woff");}.ff2_c02343{font-family:ff2_c02343;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:ff3_c02343;src:url('chunks/assets/font_a1e3781fb8c625032cc6b845.woff2')format("woff");}.ff3_c02343{font-family:ff3_c02343;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02343{vertical-align:0.000000px;}
.ls0_c02343{letter-spacing:0.000000px;}
.sc__c02343{text-shadow:none;}
.sc0_c02343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02343{-webkit-text-stroke:0px transparent;}
.sc0_c02343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02343{word-spacing:0.000000px;}
._f_c02343{margin-left:-2.088000px;}
._0_c02343{margin-left:-1.080000px;}
._4_c02343{width:1.080000px;}
._e_c02343{width:2.088000px;}
._3_c02343{width:3.960000px;}
._2_c02343{width:5.040000px;}
._7_c02343{width:6.984000px;}
._1_c02343{width:8.064000px;}
._12_c02343{width:9.144000px;}
._14_c02343{width:10.188000px;}
._13_c02343{width:11.196000px;}
._a_c02343{width:13.320000px;}
._b_c02343{width:14.328000px;}
._10_c02343{width:15.552000px;}
._11_c02343{width:16.680000px;}
._d_c02343{width:21.312000px;}
._6_c02343{width:23.400000px;}
._5_c02343{width:24.408000px;}
._c_c02343{width:26.640000px;}
._8_c02343{width:28.368000px;}
._9_c02343{width:29.412000px;}
.fc1_c02343{color:rgb(192,80,77);}
.fc0_c02343{color:rgb(0,0,0);}
.fs0_c02343{font-size:66.240000px;}
.fs1_c02343{font-size:72.000000px;}
.y0_c02343{bottom:0.000000px;}
.y3_c02343{bottom:4.680000px;}
.y2_c02343{bottom:41.796000px;}
.y1_c02343{bottom:75.456000px;}
.y21_c02343{bottom:164.910000px;}
.y20_c02343{bottom:195.870000px;}
.y1f_c02343{bottom:226.830000px;}
.y1e_c02343{bottom:257.970000px;}
.y1d_c02343{bottom:288.975000px;}
.y1c_c02343{bottom:320.115000px;}
.y1b_c02343{bottom:351.075000px;}
.y1a_c02343{bottom:382.215000px;}
.y19_c02343{bottom:413.175000px;}
.y18_c02343{bottom:444.315000px;}
.y17_c02343{bottom:475.275000px;}
.y16_c02343{bottom:506.415000px;}
.y15_c02343{bottom:537.405000px;}
.y14_c02343{bottom:568.545000px;}
.y13_c02343{bottom:599.505000px;}
.y12_c02343{bottom:630.645000px;}
.y11_c02343{bottom:661.605000px;}
.y10_c02343{bottom:692.745000px;}
.yf_c02343{bottom:723.705000px;}
.ye_c02343{bottom:754.845000px;}
.yd_c02343{bottom:785.805000px;}
.yc_c02343{bottom:816.990000px;}
.yb_c02343{bottom:847.950000px;}
.ya_c02343{bottom:879.090000px;}
.y9_c02343{bottom:910.050000px;}
.y8_c02343{bottom:941.190000px;}
.y7_c02343{bottom:972.150000px;}
.y6_c02343{bottom:1003.290000px;}
.y5_c02343{bottom:1034.250000px;}
.y4_c02343{bottom:1065.420000px;}
.h2_c02343{height:22.500000px;}
.h1_c02343{height:48.871406px;}
.h3_c02343{height:70.664062px;}
.h0_c02343{height:1188.000000px;}
.w1_c02343{width:66.636000px;}
.w0_c02343{width:918.000000px;}
.x0_c02343{left:0.000000px;}
.x3_c02343{left:16.560000px;}
.x1_c02343{left:127.656000px;}
.x4_c02343{left:187.050000px;}
.x2_c02343{left:820.950000px;}
@media print{
.v0_c02343{vertical-align:0.000000pt;}
.ls0_c02343{letter-spacing:0.000000pt;}
.ws0_c02343{word-spacing:0.000000pt;}
._f_c02343{margin-left:-1.856000pt;}
._0_c02343{margin-left:-0.960000pt;}
._4_c02343{width:0.960000pt;}
._e_c02343{width:1.856000pt;}
._3_c02343{width:3.520000pt;}
._2_c02343{width:4.480000pt;}
._7_c02343{width:6.208000pt;}
._1_c02343{width:7.168000pt;}
._12_c02343{width:8.128000pt;}
._14_c02343{width:9.056000pt;}
._13_c02343{width:9.952000pt;}
._a_c02343{width:11.840000pt;}
._b_c02343{width:12.736000pt;}
._10_c02343{width:13.824000pt;}
._11_c02343{width:14.826667pt;}
._d_c02343{width:18.944000pt;}
._6_c02343{width:20.800000pt;}
._5_c02343{width:21.696000pt;}
._c_c02343{width:23.680000pt;}
._8_c02343{width:25.216000pt;}
._9_c02343{width:26.144000pt;}
.fs0_c02343{font-size:58.880000pt;}
.fs1_c02343{font-size:64.000000pt;}
.y0_c02343{bottom:0.000000pt;}
.y3_c02343{bottom:4.160000pt;}
.y2_c02343{bottom:37.152000pt;}
.y1_c02343{bottom:67.072000pt;}
.y21_c02343{bottom:146.586667pt;}
.y20_c02343{bottom:174.106667pt;}
.y1f_c02343{bottom:201.626667pt;}
.y1e_c02343{bottom:229.306667pt;}
.y1d_c02343{bottom:256.866667pt;}
.y1c_c02343{bottom:284.546667pt;}
.y1b_c02343{bottom:312.066667pt;}
.y1a_c02343{bottom:339.746667pt;}
.y19_c02343{bottom:367.266667pt;}
.y18_c02343{bottom:394.946667pt;}
.y17_c02343{bottom:422.466667pt;}
.y16_c02343{bottom:450.146667pt;}
.y15_c02343{bottom:477.693333pt;}
.y14_c02343{bottom:505.373333pt;}
.y13_c02343{bottom:532.893333pt;}
.y12_c02343{bottom:560.573333pt;}
.y11_c02343{bottom:588.093333pt;}
.y10_c02343{bottom:615.773333pt;}
.yf_c02343{bottom:643.293333pt;}
.ye_c02343{bottom:670.973333pt;}
.yd_c02343{bottom:698.493333pt;}
.yc_c02343{bottom:726.213333pt;}
.yb_c02343{bottom:753.733333pt;}
.ya_c02343{bottom:781.413333pt;}
.y9_c02343{bottom:808.933333pt;}
.y8_c02343{bottom:836.613333pt;}
.y7_c02343{bottom:864.133333pt;}
.y6_c02343{bottom:891.813333pt;}
.y5_c02343{bottom:919.333333pt;}
.y4_c02343{bottom:947.040000pt;}
.h2_c02343{height:20.000000pt;}
.h1_c02343{height:43.441250pt;}
.h3_c02343{height:62.812500pt;}
.h0_c02343{height:1056.000000pt;}
.w1_c02343{width:59.232000pt;}
.w0_c02343{width:816.000000pt;}
.x0_c02343{left:0.000000pt;}
.x3_c02343{left:14.720000pt;}
.x1_c02343{left:113.472000pt;}
.x4_c02343{left:166.266667pt;}
.x2_c02343{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02344 {
    display:none;
  }
  .loading-indicator_c02344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02344 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02344 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02344" -> "#page-container .classname_c02344")
 */
.pf_c02344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02344 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02344 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02344 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02344 {overflow:visible;}
  }
}
.c_c02344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02344 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02344:after { /* webkit #35443 */
  content: '';
}
.t_c02344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02344 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02344 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02344 { /* info for Javascript */
  display:none;
}
.l_c02344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02344:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02344 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02344.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02344;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02344{font-family:ff1_c02344;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02344;src:url('chunks/assets/font_93e08a3fd76c50d1965e1f5d.woff2')format("woff");}.ff2_c02344{font-family:ff2_c02344;line-height:1.112305;font-style:normal;font-weight: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_c02344;src:url('chunks/assets/font_c2ff701137a3b4780de0c9cd.woff2')format("woff");}.ff3_c02344{font-family:ff3_c02344;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_c02344;src:url('chunks/assets/font_8ede501f20fb01d3f6432c82.woff2')format("woff");}.ff4_c02344{font-family:ff4_c02344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02344{vertical-align:0.000000px;}
.ls1_c02344{letter-spacing:0.000000px;}
.ls2_c02344{letter-spacing:0.720000px;}
.ls0_c02344{letter-spacing:2.160000px;}
.sc__c02344{text-shadow:none;}
.sc0_c02344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02344{-webkit-text-stroke:0px transparent;}
.sc0_c02344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02344{word-spacing:-18.000000px;}
.ws1_c02344{word-spacing:0.000000px;}
._3_c02344{margin-left:-1.212000px;}
._2_c02344{width:1.080000px;}
._b_c02344{width:2.232000px;}
._a_c02344{width:3.672000px;}
._4_c02344{width:4.680000px;}
._5_c02344{width:5.688000px;}
._0_c02344{width:6.984000px;}
._1_c02344{width:8.136000px;}
._9_c02344{width:9.780000px;}
._8_c02344{width:11.088000px;}
._6_c02344{width:12.456000px;}
._7_c02344{width:13.824000px;}
._e_c02344{width:16.944000px;}
._14_c02344{width:23.112000px;}
._12_c02344{width:24.192000px;}
._f_c02344{width:25.488000px;}
._10_c02344{width:26.592000px;}
._11_c02344{width:27.636000px;}
._13_c02344{width:32.040000px;}
._c_c02344{width:37.080000px;}
._d_c02344{width:38.592000px;}
.fc1_c02344{color:rgb(192,80,77);}
.fc0_c02344{color:rgb(0,0,0);}
.fs0_c02344{font-size:66.240000px;}
.fs1_c02344{font-size:72.000000px;}
.y0_c02344{bottom:0.000000px;}
.y3_c02344{bottom:4.680000px;}
.y2_c02344{bottom:41.796000px;}
.y1_c02344{bottom:75.456000px;}
.y22_c02344{bottom:133.776000px;}
.y21_c02344{bottom:164.910000px;}
.y20_c02344{bottom:195.870000px;}
.y1f_c02344{bottom:226.830000px;}
.y1e_c02344{bottom:257.970000px;}
.y1d_c02344{bottom:288.975000px;}
.y1c_c02344{bottom:320.115000px;}
.y1b_c02344{bottom:351.075000px;}
.y1a_c02344{bottom:382.215000px;}
.y19_c02344{bottom:413.175000px;}
.y18_c02344{bottom:444.315000px;}
.y17_c02344{bottom:475.275000px;}
.y16_c02344{bottom:506.415000px;}
.y15_c02344{bottom:537.405000px;}
.y14_c02344{bottom:568.545000px;}
.y13_c02344{bottom:599.505000px;}
.y12_c02344{bottom:630.645000px;}
.y11_c02344{bottom:661.605000px;}
.y10_c02344{bottom:692.745000px;}
.yf_c02344{bottom:723.705000px;}
.ye_c02344{bottom:754.845000px;}
.yd_c02344{bottom:785.805000px;}
.yc_c02344{bottom:816.990000px;}
.yb_c02344{bottom:847.950000px;}
.ya_c02344{bottom:879.090000px;}
.y9_c02344{bottom:910.050000px;}
.y8_c02344{bottom:941.190000px;}
.y7_c02344{bottom:972.150000px;}
.y6_c02344{bottom:1003.290000px;}
.y5_c02344{bottom:1034.250000px;}
.y4_c02344{bottom:1065.420000px;}
.h2_c02344{height:22.500000px;}
.h1_c02344{height:48.871406px;}
.h3_c02344{height:64.546875px;}
.h4_c02344{height:70.664062px;}
.h0_c02344{height:1188.000000px;}
.w1_c02344{width:66.636000px;}
.w0_c02344{width:918.000000px;}
.x0_c02344{left:0.000000px;}
.x3_c02344{left:16.560000px;}
.x1_c02344{left:127.656000px;}
.x4_c02344{left:187.050000px;}
.x2_c02344{left:820.950000px;}
@media print{
.v0_c02344{vertical-align:0.000000pt;}
.ls1_c02344{letter-spacing:0.000000pt;}
.ls2_c02344{letter-spacing:0.640000pt;}
.ls0_c02344{letter-spacing:1.920000pt;}
.ws0_c02344{word-spacing:-16.000000pt;}
.ws1_c02344{word-spacing:0.000000pt;}
._3_c02344{margin-left:-1.077333pt;}
._2_c02344{width:0.960000pt;}
._b_c02344{width:1.984000pt;}
._a_c02344{width:3.264000pt;}
._4_c02344{width:4.160000pt;}
._5_c02344{width:5.056000pt;}
._0_c02344{width:6.208000pt;}
._1_c02344{width:7.232000pt;}
._9_c02344{width:8.693333pt;}
._8_c02344{width:9.856000pt;}
._6_c02344{width:11.072000pt;}
._7_c02344{width:12.288000pt;}
._e_c02344{width:15.061333pt;}
._14_c02344{width:20.544000pt;}
._12_c02344{width:21.504000pt;}
._f_c02344{width:22.656000pt;}
._10_c02344{width:23.637333pt;}
._11_c02344{width:24.565333pt;}
._13_c02344{width:28.480000pt;}
._c_c02344{width:32.960000pt;}
._d_c02344{width:34.304000pt;}
.fs0_c02344{font-size:58.880000pt;}
.fs1_c02344{font-size:64.000000pt;}
.y0_c02344{bottom:0.000000pt;}
.y3_c02344{bottom:4.160000pt;}
.y2_c02344{bottom:37.152000pt;}
.y1_c02344{bottom:67.072000pt;}
.y22_c02344{bottom:118.912000pt;}
.y21_c02344{bottom:146.586667pt;}
.y20_c02344{bottom:174.106667pt;}
.y1f_c02344{bottom:201.626667pt;}
.y1e_c02344{bottom:229.306667pt;}
.y1d_c02344{bottom:256.866667pt;}
.y1c_c02344{bottom:284.546667pt;}
.y1b_c02344{bottom:312.066667pt;}
.y1a_c02344{bottom:339.746667pt;}
.y19_c02344{bottom:367.266667pt;}
.y18_c02344{bottom:394.946667pt;}
.y17_c02344{bottom:422.466667pt;}
.y16_c02344{bottom:450.146667pt;}
.y15_c02344{bottom:477.693333pt;}
.y14_c02344{bottom:505.373333pt;}
.y13_c02344{bottom:532.893333pt;}
.y12_c02344{bottom:560.573333pt;}
.y11_c02344{bottom:588.093333pt;}
.y10_c02344{bottom:615.773333pt;}
.yf_c02344{bottom:643.293333pt;}
.ye_c02344{bottom:670.973333pt;}
.yd_c02344{bottom:698.493333pt;}
.yc_c02344{bottom:726.213333pt;}
.yb_c02344{bottom:753.733333pt;}
.ya_c02344{bottom:781.413333pt;}
.y9_c02344{bottom:808.933333pt;}
.y8_c02344{bottom:836.613333pt;}
.y7_c02344{bottom:864.133333pt;}
.y6_c02344{bottom:891.813333pt;}
.y5_c02344{bottom:919.333333pt;}
.y4_c02344{bottom:947.040000pt;}
.h2_c02344{height:20.000000pt;}
.h1_c02344{height:43.441250pt;}
.h3_c02344{height:57.375000pt;}
.h4_c02344{height:62.812500pt;}
.h0_c02344{height:1056.000000pt;}
.w1_c02344{width:59.232000pt;}
.w0_c02344{width:816.000000pt;}
.x0_c02344{left:0.000000pt;}
.x3_c02344{left:14.720000pt;}
.x1_c02344{left:113.472000pt;}
.x4_c02344{left:166.266667pt;}
.x2_c02344{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02345 {
    display:none;
  }
  .loading-indicator_c02345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02345 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02345 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02345" -> "#page-container .classname_c02345")
 */
.pf_c02345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02345 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02345 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02345 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02345 {overflow:visible;}
  }
}
.c_c02345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02345 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02345:after { /* webkit #35443 */
  content: '';
}
.t_c02345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02345 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02345 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02345 { /* info for Javascript */
  display:none;
}
.l_c02345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02345:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02345 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02345.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02345;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02345{font-family:ff1_c02345;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02345;src:url('chunks/assets/font_77409913d8682d0876d29dcb.woff2')format("woff");}.ff2_c02345{font-family:ff2_c02345;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:ff3_c02345;src:url('chunks/assets/font_013c7f23dac3a9436ccdbc64.woff2')format("woff");}.ff3_c02345{font-family:ff3_c02345;line-height:1.112305;font-style:normal;font-weight: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_c02345;src:url('chunks/assets/font_b5a8852adf66595adbd3ec07.woff2')format("woff");}.ff4_c02345{font-family:ff4_c02345;line-height:1.284180;font-style:normal;font-weight: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_c02345;src:url('chunks/assets/font_749748da39e0684e0a6480f3.woff2')format("woff");}.ff5_c02345{font-family:ff5_c02345;line-height:1.099121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02345{vertical-align:0.000000px;}
.ls2_c02345{letter-spacing:0.000000px;}
.ls3_c02345{letter-spacing:0.576000px;}
.ls0_c02345{letter-spacing:0.720000px;}
.ls1_c02345{letter-spacing:8.640000px;}
.sc__c02345{text-shadow:none;}
.sc0_c02345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02345{-webkit-text-stroke:0px transparent;}
.sc0_c02345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02345{word-spacing:-18.576000px;}
.ws0_c02345{word-spacing:-18.000000px;}
.ws2_c02345{word-spacing:0.000000px;}
._12_c02345{margin-left:-2.436000px;}
._7_c02345{margin-left:-1.368000px;}
._1_c02345{width:1.080000px;}
._a_c02345{width:2.604000px;}
._9_c02345{width:3.672000px;}
._14_c02345{width:5.472000px;}
._15_c02345{width:6.552000px;}
._0_c02345{width:7.560000px;}
._2_c02345{width:8.640000px;}
._3_c02345{width:9.936000px;}
._4_c02345{width:11.232000px;}
._13_c02345{width:13.392000px;}
._8_c02345{width:16.992000px;}
._11_c02345{width:19.800000px;}
._b_c02345{width:22.464000px;}
._c_c02345{width:23.832000px;}
._d_c02345{width:25.632000px;}
._e_c02345{width:26.640000px;}
._5_c02345{width:28.152000px;}
._6_c02345{width:29.484000px;}
._16_c02345{width:30.960000px;}
._f_c02345{width:35.496000px;}
._10_c02345{width:36.864000px;}
.fc1_c02345{color:rgb(192,80,77);}
.fc0_c02345{color:rgb(0,0,0);}
.fs0_c02345{font-size:66.240000px;}
.fs1_c02345{font-size:72.000000px;}
.y0_c02345{bottom:0.000000px;}
.y3_c02345{bottom:4.680000px;}
.y2_c02345{bottom:41.796000px;}
.y1_c02345{bottom:75.456000px;}
.y22_c02345{bottom:133.776000px;}
.y21_c02345{bottom:164.910000px;}
.y20_c02345{bottom:195.870000px;}
.y1f_c02345{bottom:226.830000px;}
.y1e_c02345{bottom:257.970000px;}
.y1d_c02345{bottom:288.975000px;}
.y1c_c02345{bottom:320.115000px;}
.y1b_c02345{bottom:351.075000px;}
.y1a_c02345{bottom:382.215000px;}
.y19_c02345{bottom:413.175000px;}
.y18_c02345{bottom:444.315000px;}
.y17_c02345{bottom:475.275000px;}
.y16_c02345{bottom:506.415000px;}
.y15_c02345{bottom:537.405000px;}
.y14_c02345{bottom:568.545000px;}
.y13_c02345{bottom:599.505000px;}
.y12_c02345{bottom:630.645000px;}
.y11_c02345{bottom:661.605000px;}
.y10_c02345{bottom:692.745000px;}
.yf_c02345{bottom:723.705000px;}
.ye_c02345{bottom:754.845000px;}
.yd_c02345{bottom:785.805000px;}
.yc_c02345{bottom:816.990000px;}
.yb_c02345{bottom:847.950000px;}
.ya_c02345{bottom:879.090000px;}
.y9_c02345{bottom:910.050000px;}
.y8_c02345{bottom:941.190000px;}
.y7_c02345{bottom:972.150000px;}
.y6_c02345{bottom:1003.290000px;}
.y5_c02345{bottom:1034.250000px;}
.y4_c02345{bottom:1065.420000px;}
.h2_c02345{height:22.500000px;}
.h1_c02345{height:48.871406px;}
.h4_c02345{height:64.546875px;}
.h3_c02345{height:70.664062px;}
.h0_c02345{height:1188.000000px;}
.w1_c02345{width:66.636000px;}
.w0_c02345{width:918.000000px;}
.x0_c02345{left:0.000000px;}
.x3_c02345{left:16.560000px;}
.x1_c02345{left:127.656000px;}
.x4_c02345{left:187.050000px;}
.x2_c02345{left:820.950000px;}
@media print{
.v0_c02345{vertical-align:0.000000pt;}
.ls2_c02345{letter-spacing:0.000000pt;}
.ls3_c02345{letter-spacing:0.512000pt;}
.ls0_c02345{letter-spacing:0.640000pt;}
.ls1_c02345{letter-spacing:7.680000pt;}
.ws1_c02345{word-spacing:-16.512000pt;}
.ws0_c02345{word-spacing:-16.000000pt;}
.ws2_c02345{word-spacing:0.000000pt;}
._12_c02345{margin-left:-2.165333pt;}
._7_c02345{margin-left:-1.216000pt;}
._1_c02345{width:0.960000pt;}
._a_c02345{width:2.314667pt;}
._9_c02345{width:3.264000pt;}
._14_c02345{width:4.864000pt;}
._15_c02345{width:5.824000pt;}
._0_c02345{width:6.720000pt;}
._2_c02345{width:7.680000pt;}
._3_c02345{width:8.832000pt;}
._4_c02345{width:9.984000pt;}
._13_c02345{width:11.904000pt;}
._8_c02345{width:15.104000pt;}
._11_c02345{width:17.600000pt;}
._b_c02345{width:19.968000pt;}
._c_c02345{width:21.184000pt;}
._d_c02345{width:22.784000pt;}
._e_c02345{width:23.680000pt;}
._5_c02345{width:25.024000pt;}
._6_c02345{width:26.208000pt;}
._16_c02345{width:27.520000pt;}
._f_c02345{width:31.552000pt;}
._10_c02345{width:32.768000pt;}
.fs0_c02345{font-size:58.880000pt;}
.fs1_c02345{font-size:64.000000pt;}
.y0_c02345{bottom:0.000000pt;}
.y3_c02345{bottom:4.160000pt;}
.y2_c02345{bottom:37.152000pt;}
.y1_c02345{bottom:67.072000pt;}
.y22_c02345{bottom:118.912000pt;}
.y21_c02345{bottom:146.586667pt;}
.y20_c02345{bottom:174.106667pt;}
.y1f_c02345{bottom:201.626667pt;}
.y1e_c02345{bottom:229.306667pt;}
.y1d_c02345{bottom:256.866667pt;}
.y1c_c02345{bottom:284.546667pt;}
.y1b_c02345{bottom:312.066667pt;}
.y1a_c02345{bottom:339.746667pt;}
.y19_c02345{bottom:367.266667pt;}
.y18_c02345{bottom:394.946667pt;}
.y17_c02345{bottom:422.466667pt;}
.y16_c02345{bottom:450.146667pt;}
.y15_c02345{bottom:477.693333pt;}
.y14_c02345{bottom:505.373333pt;}
.y13_c02345{bottom:532.893333pt;}
.y12_c02345{bottom:560.573333pt;}
.y11_c02345{bottom:588.093333pt;}
.y10_c02345{bottom:615.773333pt;}
.yf_c02345{bottom:643.293333pt;}
.ye_c02345{bottom:670.973333pt;}
.yd_c02345{bottom:698.493333pt;}
.yc_c02345{bottom:726.213333pt;}
.yb_c02345{bottom:753.733333pt;}
.ya_c02345{bottom:781.413333pt;}
.y9_c02345{bottom:808.933333pt;}
.y8_c02345{bottom:836.613333pt;}
.y7_c02345{bottom:864.133333pt;}
.y6_c02345{bottom:891.813333pt;}
.y5_c02345{bottom:919.333333pt;}
.y4_c02345{bottom:947.040000pt;}
.h2_c02345{height:20.000000pt;}
.h1_c02345{height:43.441250pt;}
.h4_c02345{height:57.375000pt;}
.h3_c02345{height:62.812500pt;}
.h0_c02345{height:1056.000000pt;}
.w1_c02345{width:59.232000pt;}
.w0_c02345{width:816.000000pt;}
.x0_c02345{left:0.000000pt;}
.x3_c02345{left:14.720000pt;}
.x1_c02345{left:113.472000pt;}
.x4_c02345{left:166.266667pt;}
.x2_c02345{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02346 {
    display:none;
  }
  .loading-indicator_c02346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02346 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02346 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02346" -> "#page-container .classname_c02346")
 */
.pf_c02346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02346 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02346 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02346 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02346 {overflow:visible;}
  }
}
.c_c02346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02346 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02346:after { /* webkit #35443 */
  content: '';
}
.t_c02346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02346 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02346 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02346 { /* info for Javascript */
  display:none;
}
.l_c02346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02346:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02346 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02346.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02346;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02346{font-family:ff1_c02346;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02346;src:url('chunks/assets/font_31e016ff4a1e30bb0dd19fe2.woff2')format("woff");}.ff2_c02346{font-family:ff2_c02346;line-height:1.284180;font-style:normal;font-weight: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_c02346;src:url('chunks/assets/font_956c6e130da2065edd0d4fe5.woff2')format("woff");}.ff3_c02346{font-family:ff3_c02346;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_c02346;src:url('chunks/assets/font_b91f10f1c7c24cacc96ceeac.woff2')format("woff");}.ff4_c02346{font-family:ff4_c02346;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02346{vertical-align:0.000000px;}
.ls1_c02346{letter-spacing:-0.288000px;}
.ls0_c02346{letter-spacing:0.000000px;}
.sc__c02346{text-shadow:none;}
.sc0_c02346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02346{-webkit-text-stroke:0px transparent;}
.sc0_c02346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02346{word-spacing:-17.712000px;}
.ws1_c02346{word-spacing:0.000000px;}
._0_c02346{margin-left:-1.500000px;}
._2_c02346{width:1.296000px;}
._9_c02346{width:2.520000px;}
._8_c02346{width:3.816000px;}
._1_c02346{width:5.544000px;}
._3_c02346{width:6.840000px;}
._c_c02346{width:8.340000px;}
._a_c02346{width:10.728000px;}
._b_c02346{width:11.808000px;}
._d_c02346{width:15.120000px;}
._e_c02346{width:16.200000px;}
._4_c02346{width:19.296000px;}
._7_c02346{width:20.592000px;}
._5_c02346{width:22.248000px;}
._6_c02346{width:24.288000px;}
._13_c02346{width:28.152000px;}
._14_c02346{width:29.376000px;}
._f_c02346{width:31.392000px;}
._10_c02346{width:32.832000px;}
._11_c02346{width:59.976000px;}
._12_c02346{width:61.188000px;}
.fc1_c02346{color:rgb(192,80,77);}
.fc0_c02346{color:rgb(0,0,0);}
.fs0_c02346{font-size:66.240000px;}
.fs1_c02346{font-size:72.000000px;}
.y0_c02346{bottom:0.000000px;}
.y3_c02346{bottom:4.680000px;}
.y2_c02346{bottom:41.796000px;}
.y1_c02346{bottom:75.456000px;}
.y22_c02346{bottom:133.776000px;}
.y21_c02346{bottom:164.910000px;}
.y20_c02346{bottom:195.870000px;}
.y1f_c02346{bottom:226.830000px;}
.y1e_c02346{bottom:257.970000px;}
.y1d_c02346{bottom:288.975000px;}
.y1c_c02346{bottom:320.115000px;}
.y1b_c02346{bottom:351.075000px;}
.y1a_c02346{bottom:382.215000px;}
.y19_c02346{bottom:413.175000px;}
.y18_c02346{bottom:444.315000px;}
.y17_c02346{bottom:475.275000px;}
.y16_c02346{bottom:506.415000px;}
.y15_c02346{bottom:537.405000px;}
.y14_c02346{bottom:568.545000px;}
.y13_c02346{bottom:599.505000px;}
.y12_c02346{bottom:630.645000px;}
.y11_c02346{bottom:661.605000px;}
.y10_c02346{bottom:692.745000px;}
.yf_c02346{bottom:723.705000px;}
.ye_c02346{bottom:754.845000px;}
.yd_c02346{bottom:785.805000px;}
.yc_c02346{bottom:816.990000px;}
.yb_c02346{bottom:847.950000px;}
.ya_c02346{bottom:879.090000px;}
.y9_c02346{bottom:910.050000px;}
.y8_c02346{bottom:941.190000px;}
.y7_c02346{bottom:972.150000px;}
.y6_c02346{bottom:1003.290000px;}
.y5_c02346{bottom:1034.250000px;}
.y4_c02346{bottom:1065.420000px;}
.h2_c02346{height:22.500000px;}
.h1_c02346{height:48.871406px;}
.h4_c02346{height:64.546875px;}
.h3_c02346{height:70.664062px;}
.h0_c02346{height:1188.000000px;}
.w1_c02346{width:66.636000px;}
.w0_c02346{width:918.000000px;}
.x0_c02346{left:0.000000px;}
.x3_c02346{left:16.560000px;}
.x1_c02346{left:127.656000px;}
.x4_c02346{left:187.050000px;}
.x2_c02346{left:820.950000px;}
@media print{
.v0_c02346{vertical-align:0.000000pt;}
.ls1_c02346{letter-spacing:-0.256000pt;}
.ls0_c02346{letter-spacing:0.000000pt;}
.ws0_c02346{word-spacing:-15.744000pt;}
.ws1_c02346{word-spacing:0.000000pt;}
._0_c02346{margin-left:-1.333333pt;}
._2_c02346{width:1.152000pt;}
._9_c02346{width:2.240000pt;}
._8_c02346{width:3.392000pt;}
._1_c02346{width:4.928000pt;}
._3_c02346{width:6.080000pt;}
._c_c02346{width:7.413333pt;}
._a_c02346{width:9.536000pt;}
._b_c02346{width:10.496000pt;}
._d_c02346{width:13.440000pt;}
._e_c02346{width:14.400000pt;}
._4_c02346{width:17.152000pt;}
._7_c02346{width:18.304000pt;}
._5_c02346{width:19.776000pt;}
._6_c02346{width:21.589333pt;}
._13_c02346{width:25.024000pt;}
._14_c02346{width:26.112000pt;}
._f_c02346{width:27.904000pt;}
._10_c02346{width:29.184000pt;}
._11_c02346{width:53.312000pt;}
._12_c02346{width:54.389333pt;}
.fs0_c02346{font-size:58.880000pt;}
.fs1_c02346{font-size:64.000000pt;}
.y0_c02346{bottom:0.000000pt;}
.y3_c02346{bottom:4.160000pt;}
.y2_c02346{bottom:37.152000pt;}
.y1_c02346{bottom:67.072000pt;}
.y22_c02346{bottom:118.912000pt;}
.y21_c02346{bottom:146.586667pt;}
.y20_c02346{bottom:174.106667pt;}
.y1f_c02346{bottom:201.626667pt;}
.y1e_c02346{bottom:229.306667pt;}
.y1d_c02346{bottom:256.866667pt;}
.y1c_c02346{bottom:284.546667pt;}
.y1b_c02346{bottom:312.066667pt;}
.y1a_c02346{bottom:339.746667pt;}
.y19_c02346{bottom:367.266667pt;}
.y18_c02346{bottom:394.946667pt;}
.y17_c02346{bottom:422.466667pt;}
.y16_c02346{bottom:450.146667pt;}
.y15_c02346{bottom:477.693333pt;}
.y14_c02346{bottom:505.373333pt;}
.y13_c02346{bottom:532.893333pt;}
.y12_c02346{bottom:560.573333pt;}
.y11_c02346{bottom:588.093333pt;}
.y10_c02346{bottom:615.773333pt;}
.yf_c02346{bottom:643.293333pt;}
.ye_c02346{bottom:670.973333pt;}
.yd_c02346{bottom:698.493333pt;}
.yc_c02346{bottom:726.213333pt;}
.yb_c02346{bottom:753.733333pt;}
.ya_c02346{bottom:781.413333pt;}
.y9_c02346{bottom:808.933333pt;}
.y8_c02346{bottom:836.613333pt;}
.y7_c02346{bottom:864.133333pt;}
.y6_c02346{bottom:891.813333pt;}
.y5_c02346{bottom:919.333333pt;}
.y4_c02346{bottom:947.040000pt;}
.h2_c02346{height:20.000000pt;}
.h1_c02346{height:43.441250pt;}
.h4_c02346{height:57.375000pt;}
.h3_c02346{height:62.812500pt;}
.h0_c02346{height:1056.000000pt;}
.w1_c02346{width:59.232000pt;}
.w0_c02346{width:816.000000pt;}
.x0_c02346{left:0.000000pt;}
.x3_c02346{left:14.720000pt;}
.x1_c02346{left:113.472000pt;}
.x4_c02346{left:166.266667pt;}
.x2_c02346{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02347 {
    display:none;
  }
  .loading-indicator_c02347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02347 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02347 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02347" -> "#page-container .classname_c02347")
 */
.pf_c02347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02347 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02347 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02347 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02347 {overflow:visible;}
  }
}
.c_c02347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02347 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02347:after { /* webkit #35443 */
  content: '';
}
.t_c02347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02347 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02347 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02347 { /* info for Javascript */
  display:none;
}
.l_c02347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02347:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02347 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02347.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02347;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02347{font-family:ff1_c02347;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02347;src:url('chunks/assets/font_e050957cdd4496e3d09a0e14.woff2')format("woff");}.ff2_c02347{font-family:ff2_c02347;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:ff3_c02347;src:url('chunks/assets/font_aabaf87600ab7aab3b899ac6.woff2')format("woff");}.ff3_c02347{font-family:ff3_c02347;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02347{vertical-align:0.000000px;}
.ls0_c02347{letter-spacing:0.000000px;}
.sc__c02347{text-shadow:none;}
.sc0_c02347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02347{-webkit-text-stroke:0px transparent;}
.sc0_c02347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02347{word-spacing:0.000000px;}
._3_c02347{margin-left:-1.080000px;}
._2_c02347{width:1.008000px;}
._6_c02347{width:2.280000px;}
._b_c02347{width:3.456000px;}
._a_c02347{width:4.824000px;}
._0_c02347{width:5.832000px;}
._1_c02347{width:6.840000px;}
._d_c02347{width:8.496000px;}
._5_c02347{width:9.720000px;}
._4_c02347{width:10.800000px;}
._c_c02347{width:14.256000px;}
._9_c02347{width:19.728000px;}
._8_c02347{width:21.384000px;}
._e_c02347{width:30.672000px;}
._7_c02347{width:34.416000px;}
.fc1_c02347{color:rgb(192,80,77);}
.fc3_c02347{color:rgb(255,255,255);}
.fc2_c02347{color:rgb(17,17,17);}
.fc0_c02347{color:rgb(0,0,0);}
.fs0_c02347{font-size:66.240000px;}
.fs1_c02347{font-size:72.000000px;}
.y0_c02347{bottom:0.000000px;}
.y15_c02347{bottom:4.500000px;}
.y3_c02347{bottom:4.680000px;}
.y13_c02347{bottom:8.820000px;}
.y2_c02347{bottom:41.796000px;}
.y1_c02347{bottom:75.456000px;}
.y2a_c02347{bottom:142.776000px;}
.y29_c02347{bottom:173.730000px;}
.y28_c02347{bottom:204.870000px;}
.y27_c02347{bottom:235.830000px;}
.y26_c02347{bottom:266.970000px;}
.y25_c02347{bottom:297.975000px;}
.y24_c02347{bottom:329.115000px;}
.y23_c02347{bottom:349.995000px;}
.y22_c02347{bottom:370.695000px;}
.y21_c02347{bottom:391.395000px;}
.y20_c02347{bottom:412.095000px;}
.y1f_c02347{bottom:432.795000px;}
.y1e_c02347{bottom:453.495000px;}
.y1d_c02347{bottom:474.195000px;}
.y1c_c02347{bottom:491.115000px;}
.y1b_c02347{bottom:512.535000px;}
.y1a_c02347{bottom:533.985000px;}
.y19_c02347{bottom:555.405000px;}
.y18_c02347{bottom:577.005000px;}
.y17_c02347{bottom:598.425000px;}
.y16_c02347{bottom:619.845000px;}
.y14_c02347{bottom:641.265000px;}
.y12_c02347{bottom:662.685000px;}
.y11_c02347{bottom:692.925000px;}
.y10_c02347{bottom:713.625000px;}
.yf_c02347{bottom:734.325000px;}
.ye_c02347{bottom:755.025000px;}
.yd_c02347{bottom:785.805000px;}
.yc_c02347{bottom:816.990000px;}
.yb_c02347{bottom:847.950000px;}
.ya_c02347{bottom:879.090000px;}
.y9_c02347{bottom:910.050000px;}
.y8_c02347{bottom:941.190000px;}
.y7_c02347{bottom:972.150000px;}
.y6_c02347{bottom:1003.290000px;}
.y5_c02347{bottom:1034.250000px;}
.y4_c02347{bottom:1065.420000px;}
.h5_c02347{height:20.700000px;}
.h6_c02347{height:20.736000px;}
.h2_c02347{height:22.500000px;}
.h4_c02347{height:25.020000px;}
.h1_c02347{height:48.871406px;}
.h3_c02347{height:70.664062px;}
.h0_c02347{height:1188.000000px;}
.w1_c02347{width:66.636000px;}
.w3_c02347{width:169.410000px;}
.w2_c02347{width:437.115000px;}
.w0_c02347{width:918.000000px;}
.x0_c02347{left:0.000000px;}
.xb_c02347{left:14.220000px;}
.x3_c02347{left:16.560000px;}
.xd_c02347{left:71.100000px;}
.xf_c02347{left:80.145000px;}
.x1_c02347{left:127.656000px;}
.xe_c02347{left:154.845000px;}
.xc_c02347{left:160.785000px;}
.x10_c02347{left:167.265000px;}
.x11_c02347{left:173.205000px;}
.x8_c02347{left:179.310000px;}
.x12_c02347{left:183.465000px;}
.x4_c02347{left:187.050000px;}
.x9_c02347{left:190.485000px;}
.x13_c02347{left:198.585000px;}
.x7_c02347{left:265.530000px;}
.x6_c02347{left:440.175000px;}
.x5_c02347{left:488.775000px;}
.xa_c02347{left:617.145000px;}
.x2_c02347{left:820.950000px;}
@media print{
.v0_c02347{vertical-align:0.000000pt;}
.ls0_c02347{letter-spacing:0.000000pt;}
.ws0_c02347{word-spacing:0.000000pt;}
._3_c02347{margin-left:-0.960000pt;}
._2_c02347{width:0.896000pt;}
._6_c02347{width:2.026667pt;}
._b_c02347{width:3.072000pt;}
._a_c02347{width:4.288000pt;}
._0_c02347{width:5.184000pt;}
._1_c02347{width:6.080000pt;}
._d_c02347{width:7.552000pt;}
._5_c02347{width:8.640000pt;}
._4_c02347{width:9.600000pt;}
._c_c02347{width:12.672000pt;}
._9_c02347{width:17.536000pt;}
._8_c02347{width:19.008000pt;}
._e_c02347{width:27.264000pt;}
._7_c02347{width:30.592000pt;}
.fs0_c02347{font-size:58.880000pt;}
.fs1_c02347{font-size:64.000000pt;}
.y0_c02347{bottom:0.000000pt;}
.y15_c02347{bottom:4.000000pt;}
.y3_c02347{bottom:4.160000pt;}
.y13_c02347{bottom:7.840000pt;}
.y2_c02347{bottom:37.152000pt;}
.y1_c02347{bottom:67.072000pt;}
.y2a_c02347{bottom:126.912000pt;}
.y29_c02347{bottom:154.426667pt;}
.y28_c02347{bottom:182.106667pt;}
.y27_c02347{bottom:209.626667pt;}
.y26_c02347{bottom:237.306667pt;}
.y25_c02347{bottom:264.866667pt;}
.y24_c02347{bottom:292.546667pt;}
.y23_c02347{bottom:311.106667pt;}
.y22_c02347{bottom:329.506667pt;}
.y21_c02347{bottom:347.906667pt;}
.y20_c02347{bottom:366.306667pt;}
.y1f_c02347{bottom:384.706667pt;}
.y1e_c02347{bottom:403.106667pt;}
.y1d_c02347{bottom:421.506667pt;}
.y1c_c02347{bottom:436.546667pt;}
.y1b_c02347{bottom:455.586667pt;}
.y1a_c02347{bottom:474.653333pt;}
.y19_c02347{bottom:493.693333pt;}
.y18_c02347{bottom:512.893333pt;}
.y17_c02347{bottom:531.933333pt;}
.y16_c02347{bottom:550.973333pt;}
.y14_c02347{bottom:570.013333pt;}
.y12_c02347{bottom:589.053333pt;}
.y11_c02347{bottom:615.933333pt;}
.y10_c02347{bottom:634.333333pt;}
.yf_c02347{bottom:652.733333pt;}
.ye_c02347{bottom:671.133333pt;}
.yd_c02347{bottom:698.493333pt;}
.yc_c02347{bottom:726.213333pt;}
.yb_c02347{bottom:753.733333pt;}
.ya_c02347{bottom:781.413333pt;}
.y9_c02347{bottom:808.933333pt;}
.y8_c02347{bottom:836.613333pt;}
.y7_c02347{bottom:864.133333pt;}
.y6_c02347{bottom:891.813333pt;}
.y5_c02347{bottom:919.333333pt;}
.y4_c02347{bottom:947.040000pt;}
.h5_c02347{height:18.400000pt;}
.h6_c02347{height:18.432000pt;}
.h2_c02347{height:20.000000pt;}
.h4_c02347{height:22.240000pt;}
.h1_c02347{height:43.441250pt;}
.h3_c02347{height:62.812500pt;}
.h0_c02347{height:1056.000000pt;}
.w1_c02347{width:59.232000pt;}
.w3_c02347{width:150.586667pt;}
.w2_c02347{width:388.546667pt;}
.w0_c02347{width:816.000000pt;}
.x0_c02347{left:0.000000pt;}
.xb_c02347{left:12.640000pt;}
.x3_c02347{left:14.720000pt;}
.xd_c02347{left:63.200000pt;}
.xf_c02347{left:71.240000pt;}
.x1_c02347{left:113.472000pt;}
.xe_c02347{left:137.640000pt;}
.xc_c02347{left:142.920000pt;}
.x10_c02347{left:148.680000pt;}
.x11_c02347{left:153.960000pt;}
.x8_c02347{left:159.386667pt;}
.x12_c02347{left:163.080000pt;}
.x4_c02347{left:166.266667pt;}
.x9_c02347{left:169.320000pt;}
.x13_c02347{left:176.520000pt;}
.x7_c02347{left:236.026667pt;}
.x6_c02347{left:391.266667pt;}
.x5_c02347{left:434.466667pt;}
.xa_c02347{left:548.573333pt;}
.x2_c02347{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02348 {
    display:none;
  }
  .loading-indicator_c02348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02348 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02348 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02348" -> "#page-container .classname_c02348")
 */
.pf_c02348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02348 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02348 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02348 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02348 {overflow:visible;}
  }
}
.c_c02348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02348 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02348:after { /* webkit #35443 */
  content: '';
}
.t_c02348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02348 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02348 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02348 { /* info for Javascript */
  display:none;
}
.l_c02348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02348:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02348 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02348.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02348;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02348{font-family:ff1_c02348;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02348;src:url('chunks/assets/font_aa540e62f7dbd948edcdde7e.woff2')format("woff");}.ff2_c02348{font-family:ff2_c02348;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:ff3_c02348;src:url('chunks/assets/font_0ca0ece3fc3fb9760382c343.woff2')format("woff");}.ff3_c02348{font-family:ff3_c02348;line-height:1.311035;font-style:normal;font-weight: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_c02348;src:url('chunks/assets/font_5eaa257dc99c8b9ba47b1a4b.woff2')format("woff");}.ff4_c02348{font-family:ff4_c02348;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02348{vertical-align:0.000000px;}
.ls1_c02348{letter-spacing:0.000000px;}
.ls0_c02348{letter-spacing:0.144000px;}
.sc__c02348{text-shadow:none;}
.sc0_c02348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02348{-webkit-text-stroke:0px transparent;}
.sc0_c02348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02348{word-spacing:0.000000px;}
._6_c02348{margin-left:-2.088000px;}
._3_c02348{margin-left:-1.008000px;}
._1_c02348{width:1.368000px;}
._7_c02348{width:2.640000px;}
._4_c02348{width:4.248000px;}
._0_c02348{width:6.120000px;}
._2_c02348{width:7.272000px;}
._5_c02348{width:8.352000px;}
._e_c02348{width:9.936000px;}
._d_c02348{width:11.232000px;}
._8_c02348{width:15.120000px;}
._9_c02348{width:16.560000px;}
._a_c02348{width:19.368000px;}
._f_c02348{width:20.592000px;}
._11_c02348{width:25.200000px;}
._b_c02348{width:30.456000px;}
._c_c02348{width:31.752000px;}
._10_c02348{width:33.336000px;}
.fc1_c02348{color:rgb(192,80,77);}
.fc3_c02348{color:rgb(255,255,255);}
.fc2_c02348{color:rgb(17,17,17);}
.fc0_c02348{color:rgb(0,0,0);}
.fs0_c02348{font-size:66.240000px;}
.fs1_c02348{font-size:72.000000px;}
.y0_c02348{bottom:0.000000px;}
.y11_c02348{bottom:4.140000px;}
.yb_c02348{bottom:4.320000px;}
.yd_c02348{bottom:4.500000px;}
.y3_c02348{bottom:4.680000px;}
.y2_c02348{bottom:41.796000px;}
.y1_c02348{bottom:75.456000px;}
.y29_c02348{bottom:119.016000px;}
.y28_c02348{bottom:149.976000px;}
.y27_c02348{bottom:180.930000px;}
.y26_c02348{bottom:212.070000px;}
.y25_c02348{bottom:243.030000px;}
.y24_c02348{bottom:274.215000px;}
.y23_c02348{bottom:305.175000px;}
.y22_c02348{bottom:336.315000px;}
.y21_c02348{bottom:367.275000px;}
.y20_c02348{bottom:398.415000px;}
.y1f_c02348{bottom:429.375000px;}
.y1e_c02348{bottom:460.515000px;}
.y1d_c02348{bottom:491.475000px;}
.y1c_c02348{bottom:522.615000px;}
.y1b_c02348{bottom:553.605000px;}
.y1a_c02348{bottom:584.745000px;}
.y19_c02348{bottom:615.705000px;}
.y18_c02348{bottom:646.845000px;}
.y17_c02348{bottom:677.805000px;}
.y16_c02348{bottom:708.945000px;}
.y15_c02348{bottom:729.825000px;}
.y14_c02348{bottom:750.525000px;}
.y13_c02348{bottom:771.225000px;}
.y12_c02348{bottom:791.925000px;}
.y10_c02348{bottom:808.890000px;}
.yf_c02348{bottom:830.310000px;}
.ye_c02348{bottom:851.730000px;}
.yc_c02348{bottom:873.150000px;}
.ya_c02348{bottom:894.750000px;}
.y9_c02348{bottom:930.750000px;}
.y8_c02348{bottom:951.630000px;}
.y7_c02348{bottom:972.330000px;}
.y6_c02348{bottom:1003.290000px;}
.y5_c02348{bottom:1034.250000px;}
.y4_c02348{bottom:1065.420000px;}
.h4_c02348{height:20.520000px;}
.h5_c02348{height:20.700000px;}
.h2_c02348{height:22.500000px;}
.h1_c02348{height:48.871406px;}
.h7_c02348{height:64.546875px;}
.h3_c02348{height:70.664062px;}
.h6_c02348{height:72.562500px;}
.h0_c02348{height:1188.000000px;}
.w1_c02348{width:66.636000px;}
.w3_c02348{width:308.235000px;}
.w2_c02348{width:309.990000px;}
.w0_c02348{width:918.000000px;}
.x0_c02348{left:0.000000px;}
.x3_c02348{left:16.560000px;}
.xb_c02348{left:83.730000px;}
.x9_c02348{left:117.585000px;}
.xe_c02348{left:122.445000px;}
.x10_c02348{left:123.525000px;}
.xc_c02348{left:126.045000px;}
.x1_c02348{left:127.656000px;}
.xf_c02348{left:130.545000px;}
.x11_c02348{left:140.610000px;}
.xd_c02348{left:145.110000px;}
.x8_c02348{left:179.310000px;}
.x4_c02348{left:187.050000px;}
.x7_c02348{left:256.530000px;}
.x6_c02348{left:440.175000px;}
.x5_c02348{left:488.775000px;}
.xa_c02348{left:490.035000px;}
.x2_c02348{left:820.950000px;}
@media print{
.v0_c02348{vertical-align:0.000000pt;}
.ls1_c02348{letter-spacing:0.000000pt;}
.ls0_c02348{letter-spacing:0.128000pt;}
.ws0_c02348{word-spacing:0.000000pt;}
._6_c02348{margin-left:-1.856000pt;}
._3_c02348{margin-left:-0.896000pt;}
._1_c02348{width:1.216000pt;}
._7_c02348{width:2.346667pt;}
._4_c02348{width:3.776000pt;}
._0_c02348{width:5.440000pt;}
._2_c02348{width:6.464000pt;}
._5_c02348{width:7.424000pt;}
._e_c02348{width:8.832000pt;}
._d_c02348{width:9.984000pt;}
._8_c02348{width:13.440000pt;}
._9_c02348{width:14.720000pt;}
._a_c02348{width:17.216000pt;}
._f_c02348{width:18.304000pt;}
._11_c02348{width:22.400000pt;}
._b_c02348{width:27.072000pt;}
._c_c02348{width:28.224000pt;}
._10_c02348{width:29.632000pt;}
.fs0_c02348{font-size:58.880000pt;}
.fs1_c02348{font-size:64.000000pt;}
.y0_c02348{bottom:0.000000pt;}
.y11_c02348{bottom:3.680000pt;}
.yb_c02348{bottom:3.840000pt;}
.yd_c02348{bottom:4.000000pt;}
.y3_c02348{bottom:4.160000pt;}
.y2_c02348{bottom:37.152000pt;}
.y1_c02348{bottom:67.072000pt;}
.y29_c02348{bottom:105.792000pt;}
.y28_c02348{bottom:133.312000pt;}
.y27_c02348{bottom:160.826667pt;}
.y26_c02348{bottom:188.506667pt;}
.y25_c02348{bottom:216.026667pt;}
.y24_c02348{bottom:243.746667pt;}
.y23_c02348{bottom:271.266667pt;}
.y22_c02348{bottom:298.946667pt;}
.y21_c02348{bottom:326.466667pt;}
.y20_c02348{bottom:354.146667pt;}
.y1f_c02348{bottom:381.666667pt;}
.y1e_c02348{bottom:409.346667pt;}
.y1d_c02348{bottom:436.866667pt;}
.y1c_c02348{bottom:464.546667pt;}
.y1b_c02348{bottom:492.093333pt;}
.y1a_c02348{bottom:519.773333pt;}
.y19_c02348{bottom:547.293333pt;}
.y18_c02348{bottom:574.973333pt;}
.y17_c02348{bottom:602.493333pt;}
.y16_c02348{bottom:630.173333pt;}
.y15_c02348{bottom:648.733333pt;}
.y14_c02348{bottom:667.133333pt;}
.y13_c02348{bottom:685.533333pt;}
.y12_c02348{bottom:703.933333pt;}
.y10_c02348{bottom:719.013333pt;}
.yf_c02348{bottom:738.053333pt;}
.ye_c02348{bottom:757.093333pt;}
.yc_c02348{bottom:776.133333pt;}
.ya_c02348{bottom:795.333333pt;}
.y9_c02348{bottom:827.333333pt;}
.y8_c02348{bottom:845.893333pt;}
.y7_c02348{bottom:864.293333pt;}
.y6_c02348{bottom:891.813333pt;}
.y5_c02348{bottom:919.333333pt;}
.y4_c02348{bottom:947.040000pt;}
.h4_c02348{height:18.240000pt;}
.h5_c02348{height:18.400000pt;}
.h2_c02348{height:20.000000pt;}
.h1_c02348{height:43.441250pt;}
.h7_c02348{height:57.375000pt;}
.h3_c02348{height:62.812500pt;}
.h6_c02348{height:64.500000pt;}
.h0_c02348{height:1056.000000pt;}
.w1_c02348{width:59.232000pt;}
.w3_c02348{width:273.986667pt;}
.w2_c02348{width:275.546667pt;}
.w0_c02348{width:816.000000pt;}
.x0_c02348{left:0.000000pt;}
.x3_c02348{left:14.720000pt;}
.xb_c02348{left:74.426667pt;}
.x9_c02348{left:104.520000pt;}
.xe_c02348{left:108.840000pt;}
.x10_c02348{left:109.800000pt;}
.xc_c02348{left:112.040000pt;}
.x1_c02348{left:113.472000pt;}
.xf_c02348{left:116.040000pt;}
.x11_c02348{left:124.986667pt;}
.xd_c02348{left:128.986667pt;}
.x8_c02348{left:159.386667pt;}
.x4_c02348{left:166.266667pt;}
.x7_c02348{left:228.026667pt;}
.x6_c02348{left:391.266667pt;}
.x5_c02348{left:434.466667pt;}
.xa_c02348{left:435.586667pt;}
.x2_c02348{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02349 {
    display:none;
  }
  .loading-indicator_c02349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02349 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02349 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02349" -> "#page-container .classname_c02349")
 */
.pf_c02349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02349 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02349 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02349 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02349 {overflow:visible;}
  }
}
.c_c02349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02349 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02349:after { /* webkit #35443 */
  content: '';
}
.t_c02349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02349 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02349 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02349 { /* info for Javascript */
  display:none;
}
.l_c02349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02349:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02349 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02349.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02349;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02349{font-family:ff1_c02349;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02349;src:url('chunks/assets/font_5d854177936905aa630a2790.woff2')format("woff");}.ff2_c02349{font-family:ff2_c02349;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:ff3_c02349;src:url('chunks/assets/font_08565c44c75c9bc10dfd4bbf.woff2')format("woff");}.ff3_c02349{font-family:ff3_c02349;line-height:1.112305;font-style:normal;font-weight: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_c02349;src:url('chunks/assets/font_6f8f0ee43a408530659b7d38.woff2')format("woff");}.ff4_c02349{font-family:ff4_c02349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02349{vertical-align:0.000000px;}
.ls0_c02349{letter-spacing:0.000000px;}
.ls1_c02349{letter-spacing:0.216000px;}
.sc__c02349{text-shadow:none;}
.sc0_c02349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02349{-webkit-text-stroke:0px transparent;}
.sc0_c02349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02349{word-spacing:-18.216000px;}
.ws1_c02349{word-spacing:0.000000px;}
._9_c02349{margin-left:-2.016000px;}
._2_c02349{margin-left:-1.008000px;}
._3_c02349{width:1.044000px;}
._0_c02349{width:2.088000px;}
._1_c02349{width:3.600000px;}
._4_c02349{width:4.680000px;}
._5_c02349{width:6.048000px;}
._a_c02349{width:7.920000px;}
._6_c02349{width:9.000000px;}
._8_c02349{width:10.152000px;}
._7_c02349{width:11.412000px;}
._b_c02349{width:12.672000px;}
._c_c02349{width:19.224000px;}
._d_c02349{width:20.376000px;}
.fc1_c02349{color:rgb(192,80,77);}
.fc3_c02349{color:rgb(255,255,255);}
.fc2_c02349{color:rgb(17,17,17);}
.fc0_c02349{color:rgb(0,0,0);}
.fs0_c02349{font-size:66.240000px;}
.fs1_c02349{font-size:72.000000px;}
.y0_c02349{bottom:0.000000px;}
.y11_c02349{bottom:4.140000px;}
.ye_c02349{bottom:4.500000px;}
.y3_c02349{bottom:4.680000px;}
.yf_c02349{bottom:4.860000px;}
.yc_c02349{bottom:5.220000px;}
.y18_c02349{bottom:24.840000px;}
.y17_c02349{bottom:25.200000px;}
.yb_c02349{bottom:25.920000px;}
.y2_c02349{bottom:41.796000px;}
.y1_c02349{bottom:75.456000px;}
.y2f_c02349{bottom:113.616000px;}
.y2e_c02349{bottom:144.756000px;}
.y2d_c02349{bottom:175.710000px;}
.y2c_c02349{bottom:206.850000px;}
.y2b_c02349{bottom:237.810000px;}
.y2a_c02349{bottom:268.950000px;}
.y29_c02349{bottom:299.955000px;}
.y28_c02349{bottom:331.095000px;}
.y27_c02349{bottom:362.055000px;}
.y26_c02349{bottom:393.195000px;}
.y25_c02349{bottom:424.155000px;}
.y24_c02349{bottom:455.295000px;}
.y23_c02349{bottom:486.255000px;}
.y22_c02349{bottom:517.395000px;}
.y21_c02349{bottom:548.385000px;}
.y20_c02349{bottom:569.265000px;}
.y1f_c02349{bottom:589.965000px;}
.y1e_c02349{bottom:610.665000px;}
.y1d_c02349{bottom:631.365000px;}
.y1c_c02349{bottom:648.285000px;}
.y1b_c02349{bottom:669.705000px;}
.y1a_c02349{bottom:691.305000px;}
.y19_c02349{bottom:712.725000px;}
.y16_c02349{bottom:734.145000px;}
.y15_c02349{bottom:776.265000px;}
.y14_c02349{bottom:797.730000px;}
.y13_c02349{bottom:819.150000px;}
.y12_c02349{bottom:840.750000px;}
.y10_c02349{bottom:862.170000px;}
.ya_c02349{bottom:883.590000px;}
.yd_c02349{bottom:905.010000px;}
.y9_c02349{bottom:930.930000px;}
.y8_c02349{bottom:951.630000px;}
.y7_c02349{bottom:972.330000px;}
.y6_c02349{bottom:1003.290000px;}
.y5_c02349{bottom:1034.250000px;}
.y4_c02349{bottom:1065.420000px;}
.h5_c02349{height:20.700000px;}
.h7_c02349{height:20.736000px;}
.h2_c02349{height:22.500000px;}
.h8_c02349{height:41.400000px;}
.h4_c02349{height:42.120000px;}
.h1_c02349{height:48.871406px;}
.h9_c02349{height:64.546875px;}
.h3_c02349{height:70.664062px;}
.h6_c02349{height:72.562500px;}
.h0_c02349{height:1188.000000px;}
.w1_c02349{width:66.636000px;}
.w7_c02349{width:73.656000px;}
.w4_c02349{width:85.320000px;}
.w6_c02349{width:94.860000px;}
.w5_c02349{width:94.896000px;}
.w3_c02349{width:265.035000px;}
.w2_c02349{width:266.970000px;}
.w0_c02349{width:918.000000px;}
.x0_c02349{left:0.000000px;}
.xf_c02349{left:11.160000px;}
.x14_c02349{left:12.420000px;}
.x12_c02349{left:14.760000px;}
.x3_c02349{left:16.560000px;}
.x10_c02349{left:18.540000px;}
.x17_c02349{left:27.900000px;}
.x21_c02349{left:29.700000px;}
.x1a_c02349{left:32.400000px;}
.x18_c02349{left:33.660000px;}
.x20_c02349{left:36.900000px;}
.x16_c02349{left:38.520000px;}
.xe_c02349{left:42.660000px;}
.x1f_c02349{left:47.550000px;}
.x19_c02349{left:67.680000px;}
.x1e_c02349{left:75.960000px;}
.x1c_c02349{left:78.660000px;}
.x15_c02349{left:80.640000px;}
.x1d_c02349{left:83.160000px;}
.x1b_c02349{left:85.680000px;}
.xc_c02349{left:95.070000px;}
.x23_c02349{left:101.880000px;}
.xa_c02349{left:109.440000px;}
.x22_c02349{left:113.400000px;}
.x1_c02349{left:127.656000px;}
.x9_c02349{left:133.425000px;}
.x8_c02349{left:179.310000px;}
.x4_c02349{left:187.050000px;}
.x7_c02349{left:230.070000px;}
.x6_c02349{left:440.175000px;}
.xb_c02349{left:447.015000px;}
.x5_c02349{left:488.775000px;}
.x11_c02349{left:542.805000px;}
.x13_c02349{left:638.385000px;}
.xd_c02349{left:712.950000px;}
.x2_c02349{left:820.950000px;}
@media print{
.v0_c02349{vertical-align:0.000000pt;}
.ls0_c02349{letter-spacing:0.000000pt;}
.ls1_c02349{letter-spacing:0.192000pt;}
.ws0_c02349{word-spacing:-16.192000pt;}
.ws1_c02349{word-spacing:0.000000pt;}
._9_c02349{margin-left:-1.792000pt;}
._2_c02349{margin-left:-0.896000pt;}
._3_c02349{width:0.928000pt;}
._0_c02349{width:1.856000pt;}
._1_c02349{width:3.200000pt;}
._4_c02349{width:4.160000pt;}
._5_c02349{width:5.376000pt;}
._a_c02349{width:7.040000pt;}
._6_c02349{width:8.000000pt;}
._8_c02349{width:9.024000pt;}
._7_c02349{width:10.144000pt;}
._b_c02349{width:11.264000pt;}
._c_c02349{width:17.088000pt;}
._d_c02349{width:18.112000pt;}
.fs0_c02349{font-size:58.880000pt;}
.fs1_c02349{font-size:64.000000pt;}
.y0_c02349{bottom:0.000000pt;}
.y11_c02349{bottom:3.680000pt;}
.ye_c02349{bottom:4.000000pt;}
.y3_c02349{bottom:4.160000pt;}
.yf_c02349{bottom:4.320000pt;}
.yc_c02349{bottom:4.640000pt;}
.y18_c02349{bottom:22.080000pt;}
.y17_c02349{bottom:22.400000pt;}
.yb_c02349{bottom:23.040000pt;}
.y2_c02349{bottom:37.152000pt;}
.y1_c02349{bottom:67.072000pt;}
.y2f_c02349{bottom:100.992000pt;}
.y2e_c02349{bottom:128.672000pt;}
.y2d_c02349{bottom:156.186667pt;}
.y2c_c02349{bottom:183.866667pt;}
.y2b_c02349{bottom:211.386667pt;}
.y2a_c02349{bottom:239.066667pt;}
.y29_c02349{bottom:266.626667pt;}
.y28_c02349{bottom:294.306667pt;}
.y27_c02349{bottom:321.826667pt;}
.y26_c02349{bottom:349.506667pt;}
.y25_c02349{bottom:377.026667pt;}
.y24_c02349{bottom:404.706667pt;}
.y23_c02349{bottom:432.226667pt;}
.y22_c02349{bottom:459.906667pt;}
.y21_c02349{bottom:487.453333pt;}
.y20_c02349{bottom:506.013333pt;}
.y1f_c02349{bottom:524.413333pt;}
.y1e_c02349{bottom:542.813333pt;}
.y1d_c02349{bottom:561.213333pt;}
.y1c_c02349{bottom:576.253333pt;}
.y1b_c02349{bottom:595.293333pt;}
.y1a_c02349{bottom:614.493333pt;}
.y19_c02349{bottom:633.533333pt;}
.y16_c02349{bottom:652.573333pt;}
.y15_c02349{bottom:690.013333pt;}
.y14_c02349{bottom:709.093333pt;}
.y13_c02349{bottom:728.133333pt;}
.y12_c02349{bottom:747.333333pt;}
.y10_c02349{bottom:766.373333pt;}
.ya_c02349{bottom:785.413333pt;}
.yd_c02349{bottom:804.453333pt;}
.y9_c02349{bottom:827.493333pt;}
.y8_c02349{bottom:845.893333pt;}
.y7_c02349{bottom:864.293333pt;}
.y6_c02349{bottom:891.813333pt;}
.y5_c02349{bottom:919.333333pt;}
.y4_c02349{bottom:947.040000pt;}
.h5_c02349{height:18.400000pt;}
.h7_c02349{height:18.432000pt;}
.h2_c02349{height:20.000000pt;}
.h8_c02349{height:36.800000pt;}
.h4_c02349{height:37.440000pt;}
.h1_c02349{height:43.441250pt;}
.h9_c02349{height:57.375000pt;}
.h3_c02349{height:62.812500pt;}
.h6_c02349{height:64.500000pt;}
.h0_c02349{height:1056.000000pt;}
.w1_c02349{width:59.232000pt;}
.w7_c02349{width:65.472000pt;}
.w4_c02349{width:75.840000pt;}
.w6_c02349{width:84.320000pt;}
.w5_c02349{width:84.352000pt;}
.w3_c02349{width:235.586667pt;}
.w2_c02349{width:237.306667pt;}
.w0_c02349{width:816.000000pt;}
.x0_c02349{left:0.000000pt;}
.xf_c02349{left:9.920000pt;}
.x14_c02349{left:11.040000pt;}
.x12_c02349{left:13.120000pt;}
.x3_c02349{left:14.720000pt;}
.x10_c02349{left:16.480000pt;}
.x17_c02349{left:24.800000pt;}
.x21_c02349{left:26.400000pt;}
.x1a_c02349{left:28.800000pt;}
.x18_c02349{left:29.920000pt;}
.x20_c02349{left:32.800000pt;}
.x16_c02349{left:34.240000pt;}
.xe_c02349{left:37.920000pt;}
.x1f_c02349{left:42.266667pt;}
.x19_c02349{left:60.160000pt;}
.x1e_c02349{left:67.520000pt;}
.x1c_c02349{left:69.920000pt;}
.x15_c02349{left:71.680000pt;}
.x1d_c02349{left:73.920000pt;}
.x1b_c02349{left:76.160000pt;}
.xc_c02349{left:84.506667pt;}
.x23_c02349{left:90.560000pt;}
.xa_c02349{left:97.280000pt;}
.x22_c02349{left:100.800000pt;}
.x1_c02349{left:113.472000pt;}
.x9_c02349{left:118.600000pt;}
.x8_c02349{left:159.386667pt;}
.x4_c02349{left:166.266667pt;}
.x7_c02349{left:204.506667pt;}
.x6_c02349{left:391.266667pt;}
.xb_c02349{left:397.346667pt;}
.x5_c02349{left:434.466667pt;}
.x11_c02349{left:482.493333pt;}
.x13_c02349{left:567.453333pt;}
.xd_c02349{left:633.733333pt;}
.x2_c02349{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02350 {
    display:none;
  }
  .loading-indicator_c02350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02350 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02350 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02350" -> "#page-container .classname_c02350")
 */
.pf_c02350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02350 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02350 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02350 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02350 {overflow:visible;}
  }
}
.c_c02350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02350 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02350:after { /* webkit #35443 */
  content: '';
}
.t_c02350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02350 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02350 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02350 { /* info for Javascript */
  display:none;
}
.l_c02350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02350:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02350 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02350.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02350;src:url('chunks/assets/font_d2f60a5a5c40aedb9d7b2974.woff2')format("woff");}.ff1_c02350{font-family:ff1_c02350;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02350;src:url('chunks/assets/font_c21ce703a51a6daea815b12d.woff2')format("woff");}.ff2_c02350{font-family:ff2_c02350;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:ff3_c02350;src:url('chunks/assets/font_97a4cbba5bf23a6e00529e3a.woff2')format("woff");}.ff3_c02350{font-family:ff3_c02350;line-height:1.112305;font-style:normal;font-weight: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_c02350;src:url('chunks/assets/font_e21294948ea499bc49b5f9e3.woff2')format("woff");}.ff4_c02350{font-family:ff4_c02350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02350{vertical-align:0.000000px;}
.ls1_c02350{letter-spacing:-0.072000px;}
.ls0_c02350{letter-spacing:0.000000px;}
.sc__c02350{text-shadow:none;}
.sc0_c02350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02350{-webkit-text-stroke:0px transparent;}
.sc0_c02350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02350{word-spacing:-17.928000px;}
.ws1_c02350{word-spacing:0.000000px;}
._1_c02350{margin-left:-1.440000px;}
._3_c02350{width:1.584000px;}
._6_c02350{width:3.672000px;}
._4_c02350{width:4.968000px;}
._5_c02350{width:6.444000px;}
._8_c02350{width:7.488000px;}
._2_c02350{width:9.288000px;}
._0_c02350{width:10.368000px;}
._7_c02350{width:41.688000px;}
.fc1_c02350{color:rgb(192,80,77);}
.fc3_c02350{color:rgb(255,255,255);}
.fc2_c02350{color:rgb(17,17,17);}
.fc0_c02350{color:rgb(0,0,0);}
.fs0_c02350{font-size:66.240000px;}
.fs1_c02350{font-size:72.000000px;}
.y0_c02350{bottom:0.000000px;}
.y19_c02350{bottom:4.140000px;}
.y16_c02350{bottom:4.500000px;}
.y3_c02350{bottom:4.680000px;}
.y17_c02350{bottom:5.040000px;}
.y14_c02350{bottom:5.400000px;}
.y20_c02350{bottom:24.840000px;}
.y1f_c02350{bottom:25.200000px;}
.y13_c02350{bottom:26.100000px;}
.y2_c02350{bottom:41.796000px;}
.y1_c02350{bottom:75.456000px;}
.y28_c02350{bottom:331.275000px;}
.y27_c02350{bottom:351.975000px;}
.y26_c02350{bottom:372.675000px;}
.y25_c02350{bottom:393.375000px;}
.y24_c02350{bottom:410.295000px;}
.y23_c02350{bottom:431.715000px;}
.y22_c02350{bottom:453.135000px;}
.y21_c02350{bottom:474.555000px;}
.y1e_c02350{bottom:496.155000px;}
.y1d_c02350{bottom:538.305000px;}
.y1c_c02350{bottom:559.725000px;}
.y1b_c02350{bottom:581.145000px;}
.y1a_c02350{bottom:602.565000px;}
.y18_c02350{bottom:623.985000px;}
.y12_c02350{bottom:645.405000px;}
.y15_c02350{bottom:667.005000px;}
.y11_c02350{bottom:692.925000px;}
.y10_c02350{bottom:713.625000px;}
.yf_c02350{bottom:734.325000px;}
.ye_c02350{bottom:755.025000px;}
.yd_c02350{bottom:785.805000px;}
.yc_c02350{bottom:816.990000px;}
.yb_c02350{bottom:847.950000px;}
.ya_c02350{bottom:879.090000px;}
.y9_c02350{bottom:910.050000px;}
.y8_c02350{bottom:941.190000px;}
.y7_c02350{bottom:972.150000px;}
.y6_c02350{bottom:1003.290000px;}
.y5_c02350{bottom:1034.250000px;}
.y4_c02350{bottom:1065.420000px;}
.h6_c02350{height:20.700000px;}
.h2_c02350{height:22.500000px;}
.h8_c02350{height:41.436000px;}
.h5_c02350{height:42.300000px;}
.h1_c02350{height:48.871406px;}
.h4_c02350{height:64.546875px;}
.h3_c02350{height:70.664062px;}
.h7_c02350{height:72.562500px;}
.h0_c02350{height:1188.000000px;}
.w1_c02350{width:66.636000px;}
.w4_c02350{width:79.020000px;}
.w7_c02350{width:92.016000px;}
.w5_c02350{width:94.356000px;}
.w6_c02350{width:96.120000px;}
.w2_c02350{width:254.550000px;}
.w3_c02350{width:283.935000px;}
.w0_c02350{width:918.000000px;}
.x0_c02350{left:0.000000px;}
.xf_c02350{left:7.920000px;}
.x12_c02350{left:15.480000px;}
.x3_c02350{left:16.560000px;}
.x10_c02350{left:18.180000px;}
.x14_c02350{left:21.420000px;}
.x22_c02350{left:23.580000px;}
.x1e_c02350{left:25.740000px;}
.x18_c02350{left:30.420000px;}
.x1a_c02350{left:34.920000px;}
.x25_c02350{left:38.160000px;}
.xe_c02350{left:39.420000px;}
.x17_c02350{left:41.400000px;}
.x16_c02350{left:42.660000px;}
.x21_c02350{left:45.900000px;}
.x20_c02350{left:47.160000px;}
.x19_c02350{left:61.560000px;}
.x1f_c02350{left:69.660000px;}
.x1c_c02350{left:72.540000px;}
.x15_c02350{left:74.520000px;}
.x1d_c02350{left:77.040000px;}
.x1b_c02350{left:79.560000px;}
.x24_c02350{left:95.760000px;}
.xa_c02350{left:103.140000px;}
.xc_c02350{left:104.430000px;}
.x23_c02350{left:107.280000px;}
.x1_c02350{left:127.656000px;}
.x9_c02350{left:179.310000px;}
.x4_c02350{left:187.050000px;}
.x6_c02350{left:297.255000px;}
.x7_c02350{left:348.735000px;}
.xb_c02350{left:434.595000px;}
.x5_c02350{left:440.175000px;}
.x8_c02350{left:488.775000px;}
.x11_c02350{left:529.665000px;}
.x13_c02350{left:626.505000px;}
.xd_c02350{left:719.250000px;}
.x2_c02350{left:820.950000px;}
@media print{
.v0_c02350{vertical-align:0.000000pt;}
.ls1_c02350{letter-spacing:-0.064000pt;}
.ls0_c02350{letter-spacing:0.000000pt;}
.ws0_c02350{word-spacing:-15.936000pt;}
.ws1_c02350{word-spacing:0.000000pt;}
._1_c02350{margin-left:-1.280000pt;}
._3_c02350{width:1.408000pt;}
._6_c02350{width:3.264000pt;}
._4_c02350{width:4.416000pt;}
._5_c02350{width:5.728000pt;}
._8_c02350{width:6.656000pt;}
._2_c02350{width:8.256000pt;}
._0_c02350{width:9.216000pt;}
._7_c02350{width:37.056000pt;}
.fs0_c02350{font-size:58.880000pt;}
.fs1_c02350{font-size:64.000000pt;}
.y0_c02350{bottom:0.000000pt;}
.y19_c02350{bottom:3.680000pt;}
.y16_c02350{bottom:4.000000pt;}
.y3_c02350{bottom:4.160000pt;}
.y17_c02350{bottom:4.480000pt;}
.y14_c02350{bottom:4.800000pt;}
.y20_c02350{bottom:22.080000pt;}
.y1f_c02350{bottom:22.400000pt;}
.y13_c02350{bottom:23.200000pt;}
.y2_c02350{bottom:37.152000pt;}
.y1_c02350{bottom:67.072000pt;}
.y28_c02350{bottom:294.466667pt;}
.y27_c02350{bottom:312.866667pt;}
.y26_c02350{bottom:331.266667pt;}
.y25_c02350{bottom:349.666667pt;}
.y24_c02350{bottom:364.706667pt;}
.y23_c02350{bottom:383.746667pt;}
.y22_c02350{bottom:402.786667pt;}
.y21_c02350{bottom:421.826667pt;}
.y1e_c02350{bottom:441.026667pt;}
.y1d_c02350{bottom:478.493333pt;}
.y1c_c02350{bottom:497.533333pt;}
.y1b_c02350{bottom:516.573333pt;}
.y1a_c02350{bottom:535.613333pt;}
.y18_c02350{bottom:554.653333pt;}
.y12_c02350{bottom:573.693333pt;}
.y15_c02350{bottom:592.893333pt;}
.y11_c02350{bottom:615.933333pt;}
.y10_c02350{bottom:634.333333pt;}
.yf_c02350{bottom:652.733333pt;}
.ye_c02350{bottom:671.133333pt;}
.yd_c02350{bottom:698.493333pt;}
.yc_c02350{bottom:726.213333pt;}
.yb_c02350{bottom:753.733333pt;}
.ya_c02350{bottom:781.413333pt;}
.y9_c02350{bottom:808.933333pt;}
.y8_c02350{bottom:836.613333pt;}
.y7_c02350{bottom:864.133333pt;}
.y6_c02350{bottom:891.813333pt;}
.y5_c02350{bottom:919.333333pt;}
.y4_c02350{bottom:947.040000pt;}
.h6_c02350{height:18.400000pt;}
.h2_c02350{height:20.000000pt;}
.h8_c02350{height:36.832000pt;}
.h5_c02350{height:37.600000pt;}
.h1_c02350{height:43.441250pt;}
.h4_c02350{height:57.375000pt;}
.h3_c02350{height:62.812500pt;}
.h7_c02350{height:64.500000pt;}
.h0_c02350{height:1056.000000pt;}
.w1_c02350{width:59.232000pt;}
.w4_c02350{width:70.240000pt;}
.w7_c02350{width:81.792000pt;}
.w5_c02350{width:83.872000pt;}
.w6_c02350{width:85.440000pt;}
.w2_c02350{width:226.266667pt;}
.w3_c02350{width:252.386667pt;}
.w0_c02350{width:816.000000pt;}
.x0_c02350{left:0.000000pt;}
.xf_c02350{left:7.040000pt;}
.x12_c02350{left:13.760000pt;}
.x3_c02350{left:14.720000pt;}
.x10_c02350{left:16.160000pt;}
.x14_c02350{left:19.040000pt;}
.x22_c02350{left:20.960000pt;}
.x1e_c02350{left:22.880000pt;}
.x18_c02350{left:27.040000pt;}
.x1a_c02350{left:31.040000pt;}
.x25_c02350{left:33.920000pt;}
.xe_c02350{left:35.040000pt;}
.x17_c02350{left:36.800000pt;}
.x16_c02350{left:37.920000pt;}
.x21_c02350{left:40.800000pt;}
.x20_c02350{left:41.920000pt;}
.x19_c02350{left:54.720000pt;}
.x1f_c02350{left:61.920000pt;}
.x1c_c02350{left:64.480000pt;}
.x15_c02350{left:66.240000pt;}
.x1d_c02350{left:68.480000pt;}
.x1b_c02350{left:70.720000pt;}
.x24_c02350{left:85.120000pt;}
.xa_c02350{left:91.680000pt;}
.xc_c02350{left:92.826667pt;}
.x23_c02350{left:95.360000pt;}
.x1_c02350{left:113.472000pt;}
.x9_c02350{left:159.386667pt;}
.x4_c02350{left:166.266667pt;}
.x6_c02350{left:264.226667pt;}
.x7_c02350{left:309.986667pt;}
.xb_c02350{left:386.306667pt;}
.x5_c02350{left:391.266667pt;}
.x8_c02350{left:434.466667pt;}
.x11_c02350{left:470.813333pt;}
.x13_c02350{left:556.893333pt;}
.xd_c02350{left:639.333333pt;}
.x2_c02350{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02351 {
    display:none;
  }
  .loading-indicator_c02351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02351 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02351 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02351" -> "#page-container .classname_c02351")
 */
.pf_c02351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02351 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02351 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02351 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02351 {overflow:visible;}
  }
}
.c_c02351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02351 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02351:after { /* webkit #35443 */
  content: '';
}
.t_c02351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02351 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02351 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02351 { /* info for Javascript */
  display:none;
}
.l_c02351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02351:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02351 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02351.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02351;src:url('chunks/assets/font_fbe5004b0fc4e978bb983be9.woff2')format("woff");}.ff1_c02351{font-family:ff1_c02351;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02351;src:url('chunks/assets/font_0e091406aecb08af004f4279.woff2')format("woff");}.ff2_c02351{font-family:ff2_c02351;line-height:1.112305;font-style:normal;font-weight: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_c02351;src:url('chunks/assets/font_0b5dd6aeeb3270d70a6691a3.woff2')format("woff");}.ff3_c02351{font-family:ff3_c02351;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_c02351;src:url('chunks/assets/font_3ec305c6526cc343e5ffe18d.woff2')format("woff");}.ff4_c02351{font-family:ff4_c02351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02351{vertical-align:0.000000px;}
.ls0_c02351{letter-spacing:0.000000px;}
.sc__c02351{text-shadow:none;}
.sc0_c02351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02351{-webkit-text-stroke:0px transparent;}
.sc0_c02351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02351{word-spacing:0.000000px;}
._1_c02351{margin-left:-1.224000px;}
._6_c02351{width:1.296000px;}
._a_c02351{width:2.352000px;}
._2_c02351{width:3.600000px;}
._3_c02351{width:4.968000px;}
._9_c02351{width:6.336000px;}
._b_c02351{width:7.704000px;}
._c_c02351{width:8.712000px;}
._4_c02351{width:10.080000px;}
._5_c02351{width:11.232000px;}
._f_c02351{width:13.248000px;}
._10_c02351{width:14.256000px;}
._0_c02351{width:16.632000px;}
._d_c02351{width:21.816000px;}
._e_c02351{width:22.968000px;}
._7_c02351{width:25.488000px;}
._8_c02351{width:26.640000px;}
.fc1_c02351{color:rgb(192,80,77);}
.fc3_c02351{color:rgb(255,255,255);}
.fc2_c02351{color:rgb(17,17,17);}
.fc0_c02351{color:rgb(0,0,0);}
.fs0_c02351{font-size:66.240000px;}
.fs1_c02351{font-size:72.000000px;}
.y0_c02351{bottom:0.000000px;}
.y1e_c02351{bottom:4.140000px;}
.y1b_c02351{bottom:4.500000px;}
.y3_c02351{bottom:4.680000px;}
.y1c_c02351{bottom:4.860000px;}
.y19_c02351{bottom:5.220000px;}
.y25_c02351{bottom:24.840000px;}
.y24_c02351{bottom:25.200000px;}
.y18_c02351{bottom:25.920000px;}
.y2_c02351{bottom:41.796000px;}
.y1_c02351{bottom:75.456000px;}
.y2f_c02351{bottom:113.616000px;}
.y2e_c02351{bottom:144.756000px;}
.y2d_c02351{bottom:165.630000px;}
.y2c_c02351{bottom:186.330000px;}
.y2b_c02351{bottom:207.030000px;}
.y2a_c02351{bottom:227.730000px;}
.y29_c02351{bottom:244.650000px;}
.y28_c02351{bottom:266.070000px;}
.y27_c02351{bottom:287.535000px;}
.y26_c02351{bottom:308.955000px;}
.y23_c02351{bottom:330.555000px;}
.y22_c02351{bottom:372.675000px;}
.y21_c02351{bottom:394.095000px;}
.y20_c02351{bottom:415.515000px;}
.y1f_c02351{bottom:436.935000px;}
.y1d_c02351{bottom:458.355000px;}
.y17_c02351{bottom:479.955000px;}
.y1a_c02351{bottom:501.375000px;}
.y16_c02351{bottom:537.405000px;}
.y15_c02351{bottom:558.285000px;}
.y14_c02351{bottom:578.985000px;}
.y13_c02351{bottom:599.685000px;}
.y12_c02351{bottom:630.645000px;}
.y11_c02351{bottom:661.605000px;}
.y10_c02351{bottom:692.745000px;}
.yf_c02351{bottom:723.705000px;}
.ye_c02351{bottom:754.845000px;}
.yd_c02351{bottom:785.805000px;}
.yc_c02351{bottom:816.990000px;}
.yb_c02351{bottom:847.950000px;}
.ya_c02351{bottom:879.090000px;}
.y9_c02351{bottom:910.050000px;}
.y8_c02351{bottom:941.190000px;}
.y7_c02351{bottom:972.150000px;}
.y6_c02351{bottom:1003.290000px;}
.y5_c02351{bottom:1034.250000px;}
.y4_c02351{bottom:1065.420000px;}
.h6_c02351{height:20.700000px;}
.h9_c02351{height:20.736000px;}
.h2_c02351{height:22.500000px;}
.h8_c02351{height:41.400000px;}
.h5_c02351{height:42.120000px;}
.h1_c02351{height:48.871406px;}
.h3_c02351{height:64.546875px;}
.h4_c02351{height:70.664062px;}
.h7_c02351{height:72.562500px;}
.h0_c02351{height:1188.000000px;}
.w1_c02351{width:66.636000px;}
.w4_c02351{width:79.020000px;}
.w7_c02351{width:92.016000px;}
.w5_c02351{width:94.356000px;}
.w6_c02351{width:96.120000px;}
.w2_c02351{width:254.550000px;}
.w3_c02351{width:283.935000px;}
.w0_c02351{width:918.000000px;}
.x0_c02351{left:0.000000px;}
.xf_c02351{left:7.920000px;}
.x12_c02351{left:15.480000px;}
.x3_c02351{left:16.560000px;}
.x10_c02351{left:18.180000px;}
.x14_c02351{left:21.420000px;}
.x22_c02351{left:23.580000px;}
.x1e_c02351{left:25.740000px;}
.x18_c02351{left:30.420000px;}
.x1a_c02351{left:34.920000px;}
.x26_c02351{left:36.900000px;}
.x25_c02351{left:38.160000px;}
.xe_c02351{left:39.420000px;}
.x17_c02351{left:41.400000px;}
.x16_c02351{left:42.660000px;}
.x21_c02351{left:45.900000px;}
.x20_c02351{left:47.160000px;}
.x19_c02351{left:61.560000px;}
.x1f_c02351{left:69.660000px;}
.x1c_c02351{left:72.540000px;}
.x15_c02351{left:74.520000px;}
.x1d_c02351{left:77.040000px;}
.x1b_c02351{left:79.560000px;}
.x24_c02351{left:95.760000px;}
.xa_c02351{left:103.140000px;}
.xc_c02351{left:104.430000px;}
.x23_c02351{left:107.280000px;}
.x1_c02351{left:127.656000px;}
.x9_c02351{left:179.310000px;}
.x4_c02351{left:187.050000px;}
.x7_c02351{left:277.050000px;}
.x8_c02351{left:348.735000px;}
.xb_c02351{left:434.595000px;}
.x6_c02351{left:440.175000px;}
.x5_c02351{left:488.775000px;}
.x11_c02351{left:529.665000px;}
.x13_c02351{left:626.505000px;}
.xd_c02351{left:719.250000px;}
.x2_c02351{left:820.950000px;}
@media print{
.v0_c02351{vertical-align:0.000000pt;}
.ls0_c02351{letter-spacing:0.000000pt;}
.ws0_c02351{word-spacing:0.000000pt;}
._1_c02351{margin-left:-1.088000pt;}
._6_c02351{width:1.152000pt;}
._a_c02351{width:2.090667pt;}
._2_c02351{width:3.200000pt;}
._3_c02351{width:4.416000pt;}
._9_c02351{width:5.632000pt;}
._b_c02351{width:6.848000pt;}
._c_c02351{width:7.744000pt;}
._4_c02351{width:8.960000pt;}
._5_c02351{width:9.984000pt;}
._f_c02351{width:11.776000pt;}
._10_c02351{width:12.672000pt;}
._0_c02351{width:14.784000pt;}
._d_c02351{width:19.392000pt;}
._e_c02351{width:20.416000pt;}
._7_c02351{width:22.656000pt;}
._8_c02351{width:23.680000pt;}
.fs0_c02351{font-size:58.880000pt;}
.fs1_c02351{font-size:64.000000pt;}
.y0_c02351{bottom:0.000000pt;}
.y1e_c02351{bottom:3.680000pt;}
.y1b_c02351{bottom:4.000000pt;}
.y3_c02351{bottom:4.160000pt;}
.y1c_c02351{bottom:4.320000pt;}
.y19_c02351{bottom:4.640000pt;}
.y25_c02351{bottom:22.080000pt;}
.y24_c02351{bottom:22.400000pt;}
.y18_c02351{bottom:23.040000pt;}
.y2_c02351{bottom:37.152000pt;}
.y1_c02351{bottom:67.072000pt;}
.y2f_c02351{bottom:100.992000pt;}
.y2e_c02351{bottom:128.672000pt;}
.y2d_c02351{bottom:147.226667pt;}
.y2c_c02351{bottom:165.626667pt;}
.y2b_c02351{bottom:184.026667pt;}
.y2a_c02351{bottom:202.426667pt;}
.y29_c02351{bottom:217.466667pt;}
.y28_c02351{bottom:236.506667pt;}
.y27_c02351{bottom:255.586667pt;}
.y26_c02351{bottom:274.626667pt;}
.y23_c02351{bottom:293.826667pt;}
.y22_c02351{bottom:331.266667pt;}
.y21_c02351{bottom:350.306667pt;}
.y20_c02351{bottom:369.346667pt;}
.y1f_c02351{bottom:388.386667pt;}
.y1d_c02351{bottom:407.426667pt;}
.y17_c02351{bottom:426.626667pt;}
.y1a_c02351{bottom:445.666667pt;}
.y16_c02351{bottom:477.693333pt;}
.y15_c02351{bottom:496.253333pt;}
.y14_c02351{bottom:514.653333pt;}
.y13_c02351{bottom:533.053333pt;}
.y12_c02351{bottom:560.573333pt;}
.y11_c02351{bottom:588.093333pt;}
.y10_c02351{bottom:615.773333pt;}
.yf_c02351{bottom:643.293333pt;}
.ye_c02351{bottom:670.973333pt;}
.yd_c02351{bottom:698.493333pt;}
.yc_c02351{bottom:726.213333pt;}
.yb_c02351{bottom:753.733333pt;}
.ya_c02351{bottom:781.413333pt;}
.y9_c02351{bottom:808.933333pt;}
.y8_c02351{bottom:836.613333pt;}
.y7_c02351{bottom:864.133333pt;}
.y6_c02351{bottom:891.813333pt;}
.y5_c02351{bottom:919.333333pt;}
.y4_c02351{bottom:947.040000pt;}
.h6_c02351{height:18.400000pt;}
.h9_c02351{height:18.432000pt;}
.h2_c02351{height:20.000000pt;}
.h8_c02351{height:36.800000pt;}
.h5_c02351{height:37.440000pt;}
.h1_c02351{height:43.441250pt;}
.h3_c02351{height:57.375000pt;}
.h4_c02351{height:62.812500pt;}
.h7_c02351{height:64.500000pt;}
.h0_c02351{height:1056.000000pt;}
.w1_c02351{width:59.232000pt;}
.w4_c02351{width:70.240000pt;}
.w7_c02351{width:81.792000pt;}
.w5_c02351{width:83.872000pt;}
.w6_c02351{width:85.440000pt;}
.w2_c02351{width:226.266667pt;}
.w3_c02351{width:252.386667pt;}
.w0_c02351{width:816.000000pt;}
.x0_c02351{left:0.000000pt;}
.xf_c02351{left:7.040000pt;}
.x12_c02351{left:13.760000pt;}
.x3_c02351{left:14.720000pt;}
.x10_c02351{left:16.160000pt;}
.x14_c02351{left:19.040000pt;}
.x22_c02351{left:20.960000pt;}
.x1e_c02351{left:22.880000pt;}
.x18_c02351{left:27.040000pt;}
.x1a_c02351{left:31.040000pt;}
.x26_c02351{left:32.800000pt;}
.x25_c02351{left:33.920000pt;}
.xe_c02351{left:35.040000pt;}
.x17_c02351{left:36.800000pt;}
.x16_c02351{left:37.920000pt;}
.x21_c02351{left:40.800000pt;}
.x20_c02351{left:41.920000pt;}
.x19_c02351{left:54.720000pt;}
.x1f_c02351{left:61.920000pt;}
.x1c_c02351{left:64.480000pt;}
.x15_c02351{left:66.240000pt;}
.x1d_c02351{left:68.480000pt;}
.x1b_c02351{left:70.720000pt;}
.x24_c02351{left:85.120000pt;}
.xa_c02351{left:91.680000pt;}
.xc_c02351{left:92.826667pt;}
.x23_c02351{left:95.360000pt;}
.x1_c02351{left:113.472000pt;}
.x9_c02351{left:159.386667pt;}
.x4_c02351{left:166.266667pt;}
.x7_c02351{left:246.266667pt;}
.x8_c02351{left:309.986667pt;}
.xb_c02351{left:386.306667pt;}
.x6_c02351{left:391.266667pt;}
.x5_c02351{left:434.466667pt;}
.x11_c02351{left:470.813333pt;}
.x13_c02351{left:556.893333pt;}
.xd_c02351{left:639.333333pt;}
.x2_c02351{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02352 {
    display:none;
  }
  .loading-indicator_c02352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02352 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02352 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02352" -> "#page-container .classname_c02352")
 */
.pf_c02352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02352 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02352 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02352 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02352 {overflow:visible;}
  }
}
.c_c02352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02352 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02352:after { /* webkit #35443 */
  content: '';
}
.t_c02352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02352 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02352 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02352 { /* info for Javascript */
  display:none;
}
.l_c02352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02352:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02352 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02352.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02352;src:url('chunks/assets/font_2f02494bf375dcaea84cd5ea.woff2')format("woff");}.ff1_c02352{font-family:ff1_c02352;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02352;src:url('chunks/assets/font_718bfbfd335cec258eea8419.woff2')format("woff");}.ff2_c02352{font-family:ff2_c02352;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:ff3_c02352;src:url('chunks/assets/font_17cd952489c1c6e5d8aafe7f.woff2')format("woff");}.ff3_c02352{font-family:ff3_c02352;line-height:1.112305;font-style:normal;font-weight: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_c02352;src:url('chunks/assets/font_c1d121a37a9a59ab2abd57d1.woff2')format("woff");}.ff4_c02352{font-family:ff4_c02352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02352{vertical-align:0.000000px;}
.ls0_c02352{letter-spacing:0.000000px;}
.sc__c02352{text-shadow:none;}
.sc0_c02352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02352{-webkit-text-stroke:0px transparent;}
.sc0_c02352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02352{word-spacing:0.000000px;}
._2_c02352{margin-left:-2.100000px;}
._4_c02352{margin-left:-1.032000px;}
._1_c02352{width:1.956000px;}
._3_c02352{width:3.180000px;}
._b_c02352{width:4.512000px;}
._0_c02352{width:5.544000px;}
._a_c02352{width:8.568000px;}
._6_c02352{width:11.880000px;}
._7_c02352{width:13.176000px;}
._8_c02352{width:14.688000px;}
._5_c02352{width:16.488000px;}
._9_c02352{width:20.016000px;}
.fc1_c02352{color:rgb(192,80,77);}
.fc3_c02352{color:rgb(255,255,255);}
.fc2_c02352{color:rgb(17,17,17);}
.fc0_c02352{color:rgb(0,0,0);}
.fs0_c02352{font-size:66.240000px;}
.fs1_c02352{font-size:72.000000px;}
.y0_c02352{bottom:0.000000px;}
.y1e_c02352{bottom:4.140000px;}
.y1b_c02352{bottom:4.500000px;}
.y3_c02352{bottom:4.680000px;}
.y1c_c02352{bottom:4.860000px;}
.y19_c02352{bottom:5.220000px;}
.y25_c02352{bottom:24.840000px;}
.y24_c02352{bottom:25.200000px;}
.y18_c02352{bottom:25.920000px;}
.y2_c02352{bottom:41.796000px;}
.y1_c02352{bottom:75.456000px;}
.y2f_c02352{bottom:113.616000px;}
.y2e_c02352{bottom:144.756000px;}
.y2d_c02352{bottom:165.630000px;}
.y2c_c02352{bottom:186.330000px;}
.y2b_c02352{bottom:207.030000px;}
.y2a_c02352{bottom:227.730000px;}
.y29_c02352{bottom:244.650000px;}
.y28_c02352{bottom:266.070000px;}
.y27_c02352{bottom:287.535000px;}
.y26_c02352{bottom:308.955000px;}
.y23_c02352{bottom:330.555000px;}
.y22_c02352{bottom:372.675000px;}
.y21_c02352{bottom:394.095000px;}
.y20_c02352{bottom:415.515000px;}
.y1f_c02352{bottom:436.935000px;}
.y1d_c02352{bottom:458.355000px;}
.y17_c02352{bottom:479.955000px;}
.y1a_c02352{bottom:501.375000px;}
.y16_c02352{bottom:537.405000px;}
.y15_c02352{bottom:558.285000px;}
.y14_c02352{bottom:578.985000px;}
.y13_c02352{bottom:599.685000px;}
.y12_c02352{bottom:630.645000px;}
.y11_c02352{bottom:661.605000px;}
.y10_c02352{bottom:692.745000px;}
.yf_c02352{bottom:723.705000px;}
.ye_c02352{bottom:754.845000px;}
.yd_c02352{bottom:785.805000px;}
.yc_c02352{bottom:816.990000px;}
.yb_c02352{bottom:847.950000px;}
.ya_c02352{bottom:879.090000px;}
.y9_c02352{bottom:910.050000px;}
.y8_c02352{bottom:941.190000px;}
.y7_c02352{bottom:972.150000px;}
.y6_c02352{bottom:1003.290000px;}
.y5_c02352{bottom:1034.250000px;}
.y4_c02352{bottom:1065.420000px;}
.h6_c02352{height:20.700000px;}
.h9_c02352{height:20.736000px;}
.h2_c02352{height:22.500000px;}
.h8_c02352{height:41.400000px;}
.h5_c02352{height:42.120000px;}
.h1_c02352{height:48.871406px;}
.h4_c02352{height:64.546875px;}
.h3_c02352{height:70.664062px;}
.h7_c02352{height:72.562500px;}
.h0_c02352{height:1188.000000px;}
.w1_c02352{width:66.636000px;}
.w4_c02352{width:79.020000px;}
.w7_c02352{width:92.016000px;}
.w5_c02352{width:94.356000px;}
.w6_c02352{width:96.120000px;}
.w2_c02352{width:254.550000px;}
.w3_c02352{width:283.935000px;}
.w0_c02352{width:918.000000px;}
.x0_c02352{left:0.000000px;}
.xf_c02352{left:7.920000px;}
.x12_c02352{left:15.480000px;}
.x3_c02352{left:16.560000px;}
.x10_c02352{left:18.180000px;}
.x14_c02352{left:21.420000px;}
.x22_c02352{left:23.580000px;}
.x1e_c02352{left:25.740000px;}
.x18_c02352{left:30.420000px;}
.x1a_c02352{left:34.920000px;}
.x25_c02352{left:36.900000px;}
.xe_c02352{left:39.420000px;}
.x17_c02352{left:41.400000px;}
.x16_c02352{left:42.660000px;}
.x21_c02352{left:45.900000px;}
.x20_c02352{left:47.160000px;}
.x19_c02352{left:61.560000px;}
.x1f_c02352{left:69.660000px;}
.x1c_c02352{left:72.540000px;}
.x15_c02352{left:74.520000px;}
.x1d_c02352{left:77.040000px;}
.x1b_c02352{left:79.560000px;}
.x24_c02352{left:95.760000px;}
.xa_c02352{left:103.140000px;}
.xc_c02352{left:104.430000px;}
.x23_c02352{left:107.280000px;}
.x1_c02352{left:127.656000px;}
.x9_c02352{left:179.310000px;}
.x4_c02352{left:187.050000px;}
.x7_c02352{left:296.895000px;}
.x8_c02352{left:348.735000px;}
.xb_c02352{left:434.595000px;}
.x6_c02352{left:440.175000px;}
.x5_c02352{left:488.775000px;}
.x11_c02352{left:529.665000px;}
.x13_c02352{left:626.505000px;}
.xd_c02352{left:719.250000px;}
.x2_c02352{left:820.950000px;}
@media print{
.v0_c02352{vertical-align:0.000000pt;}
.ls0_c02352{letter-spacing:0.000000pt;}
.ws0_c02352{word-spacing:0.000000pt;}
._2_c02352{margin-left:-1.866667pt;}
._4_c02352{margin-left:-0.917333pt;}
._1_c02352{width:1.738667pt;}
._3_c02352{width:2.826667pt;}
._b_c02352{width:4.010667pt;}
._0_c02352{width:4.928000pt;}
._a_c02352{width:7.616000pt;}
._6_c02352{width:10.560000pt;}
._7_c02352{width:11.712000pt;}
._8_c02352{width:13.056000pt;}
._5_c02352{width:14.656000pt;}
._9_c02352{width:17.792000pt;}
.fs0_c02352{font-size:58.880000pt;}
.fs1_c02352{font-size:64.000000pt;}
.y0_c02352{bottom:0.000000pt;}
.y1e_c02352{bottom:3.680000pt;}
.y1b_c02352{bottom:4.000000pt;}
.y3_c02352{bottom:4.160000pt;}
.y1c_c02352{bottom:4.320000pt;}
.y19_c02352{bottom:4.640000pt;}
.y25_c02352{bottom:22.080000pt;}
.y24_c02352{bottom:22.400000pt;}
.y18_c02352{bottom:23.040000pt;}
.y2_c02352{bottom:37.152000pt;}
.y1_c02352{bottom:67.072000pt;}
.y2f_c02352{bottom:100.992000pt;}
.y2e_c02352{bottom:128.672000pt;}
.y2d_c02352{bottom:147.226667pt;}
.y2c_c02352{bottom:165.626667pt;}
.y2b_c02352{bottom:184.026667pt;}
.y2a_c02352{bottom:202.426667pt;}
.y29_c02352{bottom:217.466667pt;}
.y28_c02352{bottom:236.506667pt;}
.y27_c02352{bottom:255.586667pt;}
.y26_c02352{bottom:274.626667pt;}
.y23_c02352{bottom:293.826667pt;}
.y22_c02352{bottom:331.266667pt;}
.y21_c02352{bottom:350.306667pt;}
.y20_c02352{bottom:369.346667pt;}
.y1f_c02352{bottom:388.386667pt;}
.y1d_c02352{bottom:407.426667pt;}
.y17_c02352{bottom:426.626667pt;}
.y1a_c02352{bottom:445.666667pt;}
.y16_c02352{bottom:477.693333pt;}
.y15_c02352{bottom:496.253333pt;}
.y14_c02352{bottom:514.653333pt;}
.y13_c02352{bottom:533.053333pt;}
.y12_c02352{bottom:560.573333pt;}
.y11_c02352{bottom:588.093333pt;}
.y10_c02352{bottom:615.773333pt;}
.yf_c02352{bottom:643.293333pt;}
.ye_c02352{bottom:670.973333pt;}
.yd_c02352{bottom:698.493333pt;}
.yc_c02352{bottom:726.213333pt;}
.yb_c02352{bottom:753.733333pt;}
.ya_c02352{bottom:781.413333pt;}
.y9_c02352{bottom:808.933333pt;}
.y8_c02352{bottom:836.613333pt;}
.y7_c02352{bottom:864.133333pt;}
.y6_c02352{bottom:891.813333pt;}
.y5_c02352{bottom:919.333333pt;}
.y4_c02352{bottom:947.040000pt;}
.h6_c02352{height:18.400000pt;}
.h9_c02352{height:18.432000pt;}
.h2_c02352{height:20.000000pt;}
.h8_c02352{height:36.800000pt;}
.h5_c02352{height:37.440000pt;}
.h1_c02352{height:43.441250pt;}
.h4_c02352{height:57.375000pt;}
.h3_c02352{height:62.812500pt;}
.h7_c02352{height:64.500000pt;}
.h0_c02352{height:1056.000000pt;}
.w1_c02352{width:59.232000pt;}
.w4_c02352{width:70.240000pt;}
.w7_c02352{width:81.792000pt;}
.w5_c02352{width:83.872000pt;}
.w6_c02352{width:85.440000pt;}
.w2_c02352{width:226.266667pt;}
.w3_c02352{width:252.386667pt;}
.w0_c02352{width:816.000000pt;}
.x0_c02352{left:0.000000pt;}
.xf_c02352{left:7.040000pt;}
.x12_c02352{left:13.760000pt;}
.x3_c02352{left:14.720000pt;}
.x10_c02352{left:16.160000pt;}
.x14_c02352{left:19.040000pt;}
.x22_c02352{left:20.960000pt;}
.x1e_c02352{left:22.880000pt;}
.x18_c02352{left:27.040000pt;}
.x1a_c02352{left:31.040000pt;}
.x25_c02352{left:32.800000pt;}
.xe_c02352{left:35.040000pt;}
.x17_c02352{left:36.800000pt;}
.x16_c02352{left:37.920000pt;}
.x21_c02352{left:40.800000pt;}
.x20_c02352{left:41.920000pt;}
.x19_c02352{left:54.720000pt;}
.x1f_c02352{left:61.920000pt;}
.x1c_c02352{left:64.480000pt;}
.x15_c02352{left:66.240000pt;}
.x1d_c02352{left:68.480000pt;}
.x1b_c02352{left:70.720000pt;}
.x24_c02352{left:85.120000pt;}
.xa_c02352{left:91.680000pt;}
.xc_c02352{left:92.826667pt;}
.x23_c02352{left:95.360000pt;}
.x1_c02352{left:113.472000pt;}
.x9_c02352{left:159.386667pt;}
.x4_c02352{left:166.266667pt;}
.x7_c02352{left:263.906667pt;}
.x8_c02352{left:309.986667pt;}
.xb_c02352{left:386.306667pt;}
.x6_c02352{left:391.266667pt;}
.x5_c02352{left:434.466667pt;}
.x11_c02352{left:470.813333pt;}
.x13_c02352{left:556.893333pt;}
.xd_c02352{left:639.333333pt;}
.x2_c02352{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02353 {
    display:none;
  }
  .loading-indicator_c02353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02353 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02353 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02353" -> "#page-container .classname_c02353")
 */
.pf_c02353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02353 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02353 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02353 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02353 {overflow:visible;}
  }
}
.c_c02353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02353 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02353:after { /* webkit #35443 */
  content: '';
}
.t_c02353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02353 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02353 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02353 { /* info for Javascript */
  display:none;
}
.l_c02353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02353:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02353 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02353.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02353;src:url('chunks/assets/font_371e75858281c911a8ed40c9.woff2')format("woff");}.ff1_c02353{font-family:ff1_c02353;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02353;src:url('chunks/assets/font_9b2470b1ddd6cf0ee08996cd.woff2')format("woff");}.ff2_c02353{font-family:ff2_c02353;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:ff3_c02353;src:url('chunks/assets/font_4c081d3dc3eecfcb41b9f680.woff2')format("woff");}.ff3_c02353{font-family:ff3_c02353;line-height:1.112305;font-style:normal;font-weight: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_c02353;src:url('chunks/assets/font_05be706ecca383f6b11e53ed.woff2')format("woff");}.ff4_c02353{font-family:ff4_c02353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02353{vertical-align:0.000000px;}
.ls1_c02353{letter-spacing:0.000000px;}
.ls0_c02353{letter-spacing:8.640000px;}
.sc__c02353{text-shadow:none;}
.sc0_c02353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02353{-webkit-text-stroke:0px transparent;}
.sc0_c02353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02353{word-spacing:0.000000px;}
._1_c02353{margin-left:-1.080000px;}
._3_c02353{width:1.080000px;}
._7_c02353{width:2.088000px;}
._5_c02353{width:4.032000px;}
._4_c02353{width:5.040000px;}
._2_c02353{width:6.624000px;}
._0_c02353{width:7.776000px;}
._6_c02353{width:8.784000px;}
._8_c02353{width:25.560000px;}
.fc1_c02353{color:rgb(192,80,77);}
.fc3_c02353{color:rgb(255,255,255);}
.fc2_c02353{color:rgb(17,17,17);}
.fc0_c02353{color:rgb(0,0,0);}
.fs0_c02353{font-size:66.240000px;}
.fs1_c02353{font-size:72.000000px;}
.y0_c02353{bottom:0.000000px;}
.y1e_c02353{bottom:4.140000px;}
.y1a_c02353{bottom:4.500000px;}
.y3_c02353{bottom:4.680000px;}
.y1c_c02353{bottom:4.860000px;}
.y18_c02353{bottom:5.220000px;}
.y25_c02353{bottom:24.840000px;}
.y24_c02353{bottom:25.200000px;}
.y1b_c02353{bottom:25.590000px;}
.y17_c02353{bottom:25.950000px;}
.y2_c02353{bottom:41.796000px;}
.y1_c02353{bottom:75.456000px;}
.y2d_c02353{bottom:207.030000px;}
.y2c_c02353{bottom:227.730000px;}
.y2b_c02353{bottom:248.430000px;}
.y2a_c02353{bottom:269.130000px;}
.y29_c02353{bottom:286.095000px;}
.y28_c02353{bottom:307.515000px;}
.y27_c02353{bottom:328.935000px;}
.y26_c02353{bottom:350.355000px;}
.y23_c02353{bottom:371.955000px;}
.y22_c02353{bottom:414.075000px;}
.y21_c02353{bottom:435.495000px;}
.y20_c02353{bottom:456.915000px;}
.y1f_c02353{bottom:478.335000px;}
.y1d_c02353{bottom:499.755000px;}
.y16_c02353{bottom:521.355000px;}
.y19_c02353{bottom:542.805000px;}
.y15_c02353{bottom:568.725000px;}
.y14_c02353{bottom:589.425000px;}
.y13_c02353{bottom:610.125000px;}
.y12_c02353{bottom:630.825000px;}
.y11_c02353{bottom:661.605000px;}
.y10_c02353{bottom:692.745000px;}
.yf_c02353{bottom:723.705000px;}
.ye_c02353{bottom:754.845000px;}
.yd_c02353{bottom:785.805000px;}
.yc_c02353{bottom:816.990000px;}
.yb_c02353{bottom:847.950000px;}
.ya_c02353{bottom:879.090000px;}
.y9_c02353{bottom:910.050000px;}
.y8_c02353{bottom:941.190000px;}
.y7_c02353{bottom:972.150000px;}
.y6_c02353{bottom:1003.290000px;}
.y5_c02353{bottom:1034.250000px;}
.y4_c02353{bottom:1065.420000px;}
.h6_c02353{height:20.700000px;}
.h8_c02353{height:20.736000px;}
.h2_c02353{height:22.500000px;}
.h9_c02353{height:41.400000px;}
.h5_c02353{height:42.156000px;}
.h1_c02353{height:48.871406px;}
.h4_c02353{height:64.546875px;}
.h3_c02353{height:70.664062px;}
.h7_c02353{height:72.562500px;}
.h0_c02353{height:1188.000000px;}
.w1_c02353{width:66.636000px;}
.w4_c02353{width:79.020000px;}
.w7_c02353{width:92.016000px;}
.w5_c02353{width:94.356000px;}
.w6_c02353{width:96.120000px;}
.w2_c02353{width:254.550000px;}
.w3_c02353{width:283.935000px;}
.w0_c02353{width:918.000000px;}
.x0_c02353{left:0.000000px;}
.xf_c02353{left:7.920000px;}
.x12_c02353{left:15.480000px;}
.x3_c02353{left:16.560000px;}
.x10_c02353{left:18.180000px;}
.x14_c02353{left:21.420000px;}
.x22_c02353{left:23.580000px;}
.x1e_c02353{left:25.740000px;}
.x1c_c02353{left:30.420000px;}
.x18_c02353{left:34.920000px;}
.x25_c02353{left:36.900000px;}
.xe_c02353{left:39.420000px;}
.x17_c02353{left:41.400000px;}
.x16_c02353{left:42.660000px;}
.x21_c02353{left:45.900000px;}
.x20_c02353{left:47.160000px;}
.x19_c02353{left:61.560000px;}
.x1f_c02353{left:69.660000px;}
.x1b_c02353{left:72.540000px;}
.x15_c02353{left:74.520000px;}
.x1d_c02353{left:77.040000px;}
.x1a_c02353{left:79.560000px;}
.x24_c02353{left:95.760000px;}
.xa_c02353{left:103.140000px;}
.xc_c02353{left:104.430000px;}
.x23_c02353{left:107.280000px;}
.x1_c02353{left:127.656000px;}
.x9_c02353{left:179.310000px;}
.x4_c02353{left:187.050000px;}
.x6_c02353{left:288.210000px;}
.x7_c02353{left:348.735000px;}
.xb_c02353{left:434.595000px;}
.x5_c02353{left:440.175000px;}
.x8_c02353{left:488.775000px;}
.x11_c02353{left:529.665000px;}
.x13_c02353{left:626.505000px;}
.xd_c02353{left:719.250000px;}
.x2_c02353{left:820.950000px;}
@media print{
.v0_c02353{vertical-align:0.000000pt;}
.ls1_c02353{letter-spacing:0.000000pt;}
.ls0_c02353{letter-spacing:7.680000pt;}
.ws0_c02353{word-spacing:0.000000pt;}
._1_c02353{margin-left:-0.960000pt;}
._3_c02353{width:0.960000pt;}
._7_c02353{width:1.856000pt;}
._5_c02353{width:3.584000pt;}
._4_c02353{width:4.480000pt;}
._2_c02353{width:5.888000pt;}
._0_c02353{width:6.912000pt;}
._6_c02353{width:7.808000pt;}
._8_c02353{width:22.720000pt;}
.fs0_c02353{font-size:58.880000pt;}
.fs1_c02353{font-size:64.000000pt;}
.y0_c02353{bottom:0.000000pt;}
.y1e_c02353{bottom:3.680000pt;}
.y1a_c02353{bottom:4.000000pt;}
.y3_c02353{bottom:4.160000pt;}
.y1c_c02353{bottom:4.320000pt;}
.y18_c02353{bottom:4.640000pt;}
.y25_c02353{bottom:22.080000pt;}
.y24_c02353{bottom:22.400000pt;}
.y1b_c02353{bottom:22.746667pt;}
.y17_c02353{bottom:23.066667pt;}
.y2_c02353{bottom:37.152000pt;}
.y1_c02353{bottom:67.072000pt;}
.y2d_c02353{bottom:184.026667pt;}
.y2c_c02353{bottom:202.426667pt;}
.y2b_c02353{bottom:220.826667pt;}
.y2a_c02353{bottom:239.226667pt;}
.y29_c02353{bottom:254.306667pt;}
.y28_c02353{bottom:273.346667pt;}
.y27_c02353{bottom:292.386667pt;}
.y26_c02353{bottom:311.426667pt;}
.y23_c02353{bottom:330.626667pt;}
.y22_c02353{bottom:368.066667pt;}
.y21_c02353{bottom:387.106667pt;}
.y20_c02353{bottom:406.146667pt;}
.y1f_c02353{bottom:425.186667pt;}
.y1d_c02353{bottom:444.226667pt;}
.y16_c02353{bottom:463.426667pt;}
.y19_c02353{bottom:482.493333pt;}
.y15_c02353{bottom:505.533333pt;}
.y14_c02353{bottom:523.933333pt;}
.y13_c02353{bottom:542.333333pt;}
.y12_c02353{bottom:560.733333pt;}
.y11_c02353{bottom:588.093333pt;}
.y10_c02353{bottom:615.773333pt;}
.yf_c02353{bottom:643.293333pt;}
.ye_c02353{bottom:670.973333pt;}
.yd_c02353{bottom:698.493333pt;}
.yc_c02353{bottom:726.213333pt;}
.yb_c02353{bottom:753.733333pt;}
.ya_c02353{bottom:781.413333pt;}
.y9_c02353{bottom:808.933333pt;}
.y8_c02353{bottom:836.613333pt;}
.y7_c02353{bottom:864.133333pt;}
.y6_c02353{bottom:891.813333pt;}
.y5_c02353{bottom:919.333333pt;}
.y4_c02353{bottom:947.040000pt;}
.h6_c02353{height:18.400000pt;}
.h8_c02353{height:18.432000pt;}
.h2_c02353{height:20.000000pt;}
.h9_c02353{height:36.800000pt;}
.h5_c02353{height:37.472000pt;}
.h1_c02353{height:43.441250pt;}
.h4_c02353{height:57.375000pt;}
.h3_c02353{height:62.812500pt;}
.h7_c02353{height:64.500000pt;}
.h0_c02353{height:1056.000000pt;}
.w1_c02353{width:59.232000pt;}
.w4_c02353{width:70.240000pt;}
.w7_c02353{width:81.792000pt;}
.w5_c02353{width:83.872000pt;}
.w6_c02353{width:85.440000pt;}
.w2_c02353{width:226.266667pt;}
.w3_c02353{width:252.386667pt;}
.w0_c02353{width:816.000000pt;}
.x0_c02353{left:0.000000pt;}
.xf_c02353{left:7.040000pt;}
.x12_c02353{left:13.760000pt;}
.x3_c02353{left:14.720000pt;}
.x10_c02353{left:16.160000pt;}
.x14_c02353{left:19.040000pt;}
.x22_c02353{left:20.960000pt;}
.x1e_c02353{left:22.880000pt;}
.x1c_c02353{left:27.040000pt;}
.x18_c02353{left:31.040000pt;}
.x25_c02353{left:32.800000pt;}
.xe_c02353{left:35.040000pt;}
.x17_c02353{left:36.800000pt;}
.x16_c02353{left:37.920000pt;}
.x21_c02353{left:40.800000pt;}
.x20_c02353{left:41.920000pt;}
.x19_c02353{left:54.720000pt;}
.x1f_c02353{left:61.920000pt;}
.x1b_c02353{left:64.480000pt;}
.x15_c02353{left:66.240000pt;}
.x1d_c02353{left:68.480000pt;}
.x1a_c02353{left:70.720000pt;}
.x24_c02353{left:85.120000pt;}
.xa_c02353{left:91.680000pt;}
.xc_c02353{left:92.826667pt;}
.x23_c02353{left:95.360000pt;}
.x1_c02353{left:113.472000pt;}
.x9_c02353{left:159.386667pt;}
.x4_c02353{left:166.266667pt;}
.x6_c02353{left:256.186667pt;}
.x7_c02353{left:309.986667pt;}
.xb_c02353{left:386.306667pt;}
.x5_c02353{left:391.266667pt;}
.x8_c02353{left:434.466667pt;}
.x11_c02353{left:470.813333pt;}
.x13_c02353{left:556.893333pt;}
.xd_c02353{left:639.333333pt;}
.x2_c02353{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02354 {
    display:none;
  }
  .loading-indicator_c02354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02354 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02354 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02354" -> "#page-container .classname_c02354")
 */
.pf_c02354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02354 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02354 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02354 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02354 {overflow:visible;}
  }
}
.c_c02354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02354 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02354:after { /* webkit #35443 */
  content: '';
}
.t_c02354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02354 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02354 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02354 { /* info for Javascript */
  display:none;
}
.l_c02354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02354:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02354 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02354.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02354;src:url('chunks/assets/font_ccbf79486361ad111fb99109.woff2')format("woff");}.ff1_c02354{font-family:ff1_c02354;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02354;src:url('chunks/assets/font_4588c444c2aaa46259b46f10.woff2')format("woff");}.ff2_c02354{font-family:ff2_c02354;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:ff3_c02354;src:url('chunks/assets/font_5864fe572927970a4442633f.woff2')format("woff");}.ff3_c02354{font-family:ff3_c02354;line-height:1.112305;font-style:normal;font-weight: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_c02354;src:url('chunks/assets/font_8cc0776cc4c058b348ba3424.woff2')format("woff");}.ff4_c02354{font-family:ff4_c02354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02354{vertical-align:0.000000px;}
.ls1_c02354{letter-spacing:0.000000px;}
.ls0_c02354{letter-spacing:32.400000px;}
.sc__c02354{text-shadow:none;}
.sc0_c02354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02354{-webkit-text-stroke:0px transparent;}
.sc0_c02354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02354{word-spacing:-18.000000px;}
.ws1_c02354{word-spacing:0.000000px;}
._4_c02354{margin-left:-1.440000px;}
._2_c02354{width:1.008000px;}
._3_c02354{width:2.016000px;}
._c_c02354{width:3.240000px;}
._0_c02354{width:4.248000px;}
._1_c02354{width:5.616000px;}
._7_c02354{width:6.696000px;}
._8_c02354{width:7.848000px;}
._f_c02354{width:9.792000px;}
._10_c02354{width:10.848000px;}
._5_c02354{width:12.600000px;}
._6_c02354{width:13.608000px;}
._d_c02354{width:14.976000px;}
._e_c02354{width:16.272000px;}
._9_c02354{width:32.040000px;}
._b_c02354{width:33.048000px;}
._a_c02354{width:34.128000px;}
.fc1_c02354{color:rgb(192,80,77);}
.fc3_c02354{color:rgb(255,255,255);}
.fc2_c02354{color:rgb(17,17,17);}
.fc0_c02354{color:rgb(0,0,0);}
.fs0_c02354{font-size:66.240000px;}
.fs1_c02354{font-size:72.000000px;}
.y0_c02354{bottom:0.000000px;}
.y1e_c02354{bottom:4.140000px;}
.y1c_c02354{bottom:4.500000px;}
.y1a_c02354{bottom:4.530000px;}
.y3_c02354{bottom:4.680000px;}
.y1b_c02354{bottom:4.860000px;}
.y18_c02354{bottom:5.220000px;}
.y25_c02354{bottom:24.840000px;}
.y24_c02354{bottom:25.200000px;}
.y17_c02354{bottom:25.950000px;}
.y2_c02354{bottom:41.796000px;}
.y1_c02354{bottom:75.456000px;}
.y2d_c02354{bottom:196.590000px;}
.y2c_c02354{bottom:217.290000px;}
.y2b_c02354{bottom:237.990000px;}
.y2a_c02354{bottom:258.690000px;}
.y29_c02354{bottom:275.655000px;}
.y28_c02354{bottom:297.255000px;}
.y27_c02354{bottom:318.675000px;}
.y26_c02354{bottom:340.095000px;}
.y23_c02354{bottom:361.515000px;}
.y22_c02354{bottom:403.635000px;}
.y21_c02354{bottom:425.055000px;}
.y20_c02354{bottom:446.655000px;}
.y1f_c02354{bottom:468.075000px;}
.y1d_c02354{bottom:489.495000px;}
.y16_c02354{bottom:510.915000px;}
.y19_c02354{bottom:532.335000px;}
.y15_c02354{bottom:568.545000px;}
.y14_c02354{bottom:589.425000px;}
.y13_c02354{bottom:610.125000px;}
.y12_c02354{bottom:630.825000px;}
.y11_c02354{bottom:661.605000px;}
.y10_c02354{bottom:692.745000px;}
.yf_c02354{bottom:723.705000px;}
.ye_c02354{bottom:754.845000px;}
.yd_c02354{bottom:785.805000px;}
.yc_c02354{bottom:816.990000px;}
.yb_c02354{bottom:847.950000px;}
.ya_c02354{bottom:879.090000px;}
.y9_c02354{bottom:910.050000px;}
.y8_c02354{bottom:941.190000px;}
.y7_c02354{bottom:972.150000px;}
.y6_c02354{bottom:1003.290000px;}
.y5_c02354{bottom:1034.250000px;}
.y4_c02354{bottom:1065.420000px;}
.h8_c02354{height:20.700000px;}
.h6_c02354{height:20.736000px;}
.h2_c02354{height:22.500000px;}
.h9_c02354{height:41.400000px;}
.h5_c02354{height:42.156000px;}
.h1_c02354{height:48.871406px;}
.h4_c02354{height:64.546875px;}
.h3_c02354{height:70.664062px;}
.h7_c02354{height:72.562500px;}
.h0_c02354{height:1188.000000px;}
.w1_c02354{width:66.636000px;}
.w4_c02354{width:79.020000px;}
.w7_c02354{width:92.016000px;}
.w5_c02354{width:94.356000px;}
.w6_c02354{width:96.120000px;}
.w2_c02354{width:254.550000px;}
.w3_c02354{width:283.935000px;}
.w0_c02354{width:918.000000px;}
.x0_c02354{left:0.000000px;}
.xe_c02354{left:7.920000px;}
.x11_c02354{left:15.480000px;}
.x3_c02354{left:16.560000px;}
.xf_c02354{left:18.180000px;}
.x13_c02354{left:21.420000px;}
.x20_c02354{left:23.580000px;}
.x1c_c02354{left:25.740000px;}
.x23_c02354{left:30.420000px;}
.x17_c02354{left:34.920000px;}
.xd_c02354{left:39.420000px;}
.x16_c02354{left:41.400000px;}
.x15_c02354{left:42.660000px;}
.x1f_c02354{left:45.900000px;}
.x1e_c02354{left:47.160000px;}
.x18_c02354{left:61.560000px;}
.x1d_c02354{left:69.660000px;}
.x1a_c02354{left:72.540000px;}
.x14_c02354{left:74.520000px;}
.x1b_c02354{left:77.040000px;}
.x19_c02354{left:79.560000px;}
.x22_c02354{left:95.760000px;}
.x9_c02354{left:103.140000px;}
.xb_c02354{left:104.430000px;}
.x21_c02354{left:107.280000px;}
.x1_c02354{left:127.656000px;}
.x8_c02354{left:179.310000px;}
.x4_c02354{left:187.050000px;}
.x6_c02354{left:304.815000px;}
.x7_c02354{left:348.735000px;}
.xa_c02354{left:434.595000px;}
.x5_c02354{left:440.175000px;}
.x10_c02354{left:529.665000px;}
.x12_c02354{left:626.505000px;}
.xc_c02354{left:719.250000px;}
.x2_c02354{left:820.950000px;}
@media print{
.v0_c02354{vertical-align:0.000000pt;}
.ls1_c02354{letter-spacing:0.000000pt;}
.ls0_c02354{letter-spacing:28.800000pt;}
.ws0_c02354{word-spacing:-16.000000pt;}
.ws1_c02354{word-spacing:0.000000pt;}
._4_c02354{margin-left:-1.280000pt;}
._2_c02354{width:0.896000pt;}
._3_c02354{width:1.792000pt;}
._c_c02354{width:2.880000pt;}
._0_c02354{width:3.776000pt;}
._1_c02354{width:4.992000pt;}
._7_c02354{width:5.952000pt;}
._8_c02354{width:6.976000pt;}
._f_c02354{width:8.704000pt;}
._10_c02354{width:9.642667pt;}
._5_c02354{width:11.200000pt;}
._6_c02354{width:12.096000pt;}
._d_c02354{width:13.312000pt;}
._e_c02354{width:14.464000pt;}
._9_c02354{width:28.480000pt;}
._b_c02354{width:29.376000pt;}
._a_c02354{width:30.336000pt;}
.fs0_c02354{font-size:58.880000pt;}
.fs1_c02354{font-size:64.000000pt;}
.y0_c02354{bottom:0.000000pt;}
.y1e_c02354{bottom:3.680000pt;}
.y1c_c02354{bottom:4.000000pt;}
.y1a_c02354{bottom:4.026667pt;}
.y3_c02354{bottom:4.160000pt;}
.y1b_c02354{bottom:4.320000pt;}
.y18_c02354{bottom:4.640000pt;}
.y25_c02354{bottom:22.080000pt;}
.y24_c02354{bottom:22.400000pt;}
.y17_c02354{bottom:23.066667pt;}
.y2_c02354{bottom:37.152000pt;}
.y1_c02354{bottom:67.072000pt;}
.y2d_c02354{bottom:174.746667pt;}
.y2c_c02354{bottom:193.146667pt;}
.y2b_c02354{bottom:211.546667pt;}
.y2a_c02354{bottom:229.946667pt;}
.y29_c02354{bottom:245.026667pt;}
.y28_c02354{bottom:264.226667pt;}
.y27_c02354{bottom:283.266667pt;}
.y26_c02354{bottom:302.306667pt;}
.y23_c02354{bottom:321.346667pt;}
.y22_c02354{bottom:358.786667pt;}
.y21_c02354{bottom:377.826667pt;}
.y20_c02354{bottom:397.026667pt;}
.y1f_c02354{bottom:416.066667pt;}
.y1d_c02354{bottom:435.106667pt;}
.y16_c02354{bottom:454.146667pt;}
.y19_c02354{bottom:473.186667pt;}
.y15_c02354{bottom:505.373333pt;}
.y14_c02354{bottom:523.933333pt;}
.y13_c02354{bottom:542.333333pt;}
.y12_c02354{bottom:560.733333pt;}
.y11_c02354{bottom:588.093333pt;}
.y10_c02354{bottom:615.773333pt;}
.yf_c02354{bottom:643.293333pt;}
.ye_c02354{bottom:670.973333pt;}
.yd_c02354{bottom:698.493333pt;}
.yc_c02354{bottom:726.213333pt;}
.yb_c02354{bottom:753.733333pt;}
.ya_c02354{bottom:781.413333pt;}
.y9_c02354{bottom:808.933333pt;}
.y8_c02354{bottom:836.613333pt;}
.y7_c02354{bottom:864.133333pt;}
.y6_c02354{bottom:891.813333pt;}
.y5_c02354{bottom:919.333333pt;}
.y4_c02354{bottom:947.040000pt;}
.h8_c02354{height:18.400000pt;}
.h6_c02354{height:18.432000pt;}
.h2_c02354{height:20.000000pt;}
.h9_c02354{height:36.800000pt;}
.h5_c02354{height:37.472000pt;}
.h1_c02354{height:43.441250pt;}
.h4_c02354{height:57.375000pt;}
.h3_c02354{height:62.812500pt;}
.h7_c02354{height:64.500000pt;}
.h0_c02354{height:1056.000000pt;}
.w1_c02354{width:59.232000pt;}
.w4_c02354{width:70.240000pt;}
.w7_c02354{width:81.792000pt;}
.w5_c02354{width:83.872000pt;}
.w6_c02354{width:85.440000pt;}
.w2_c02354{width:226.266667pt;}
.w3_c02354{width:252.386667pt;}
.w0_c02354{width:816.000000pt;}
.x0_c02354{left:0.000000pt;}
.xe_c02354{left:7.040000pt;}
.x11_c02354{left:13.760000pt;}
.x3_c02354{left:14.720000pt;}
.xf_c02354{left:16.160000pt;}
.x13_c02354{left:19.040000pt;}
.x20_c02354{left:20.960000pt;}
.x1c_c02354{left:22.880000pt;}
.x23_c02354{left:27.040000pt;}
.x17_c02354{left:31.040000pt;}
.xd_c02354{left:35.040000pt;}
.x16_c02354{left:36.800000pt;}
.x15_c02354{left:37.920000pt;}
.x1f_c02354{left:40.800000pt;}
.x1e_c02354{left:41.920000pt;}
.x18_c02354{left:54.720000pt;}
.x1d_c02354{left:61.920000pt;}
.x1a_c02354{left:64.480000pt;}
.x14_c02354{left:66.240000pt;}
.x1b_c02354{left:68.480000pt;}
.x19_c02354{left:70.720000pt;}
.x22_c02354{left:85.120000pt;}
.x9_c02354{left:91.680000pt;}
.xb_c02354{left:92.826667pt;}
.x21_c02354{left:95.360000pt;}
.x1_c02354{left:113.472000pt;}
.x8_c02354{left:159.386667pt;}
.x4_c02354{left:166.266667pt;}
.x6_c02354{left:270.946667pt;}
.x7_c02354{left:309.986667pt;}
.xa_c02354{left:386.306667pt;}
.x5_c02354{left:391.266667pt;}
.x10_c02354{left:470.813333pt;}
.x12_c02354{left:556.893333pt;}
.xc_c02354{left:639.333333pt;}
.x2_c02354{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02355 {
    display:none;
  }
  .loading-indicator_c02355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02355 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02355 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02355" -> "#page-container .classname_c02355")
 */
.pf_c02355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02355 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02355 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02355 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02355 {overflow:visible;}
  }
}
.c_c02355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02355 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02355:after { /* webkit #35443 */
  content: '';
}
.t_c02355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02355 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02355 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02355 { /* info for Javascript */
  display:none;
}
.l_c02355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02355:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02355 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02355.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02355;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02355{font-family:ff1_c02355;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02355;src:url('chunks/assets/font_13f9d109d050d38b75bb695b.woff2')format("woff");}.ff2_c02355{font-family:ff2_c02355;line-height:1.112305;font-style:normal;font-weight: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_c02355;src:url('chunks/assets/font_6c16da36d4a2ae6b4b3ae4a2.woff2')format("woff");}.ff3_c02355{font-family:ff3_c02355;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_c02355;src:url('chunks/assets/font_3c624315ac81998a23bcf1d4.woff2')format("woff");}.ff4_c02355{font-family:ff4_c02355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02355{vertical-align:0.000000px;}
.ls1_c02355{letter-spacing:-0.072000px;}
.ls0_c02355{letter-spacing:0.000000px;}
.sc__c02355{text-shadow:none;}
.sc0_c02355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02355{-webkit-text-stroke:0px transparent;}
.sc0_c02355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02355{word-spacing:-17.928000px;}
.ws1_c02355{word-spacing:0.000000px;}
._5_c02355{margin-left:-1.152000px;}
._2_c02355{width:1.296000px;}
._6_c02355{width:2.880000px;}
._7_c02355{width:4.824000px;}
._c_c02355{width:5.904000px;}
._0_c02355{width:6.984000px;}
._1_c02355{width:8.064000px;}
._3_c02355{width:9.072000px;}
._4_c02355{width:10.524000px;}
._a_c02355{width:11.808000px;}
._b_c02355{width:13.104000px;}
._d_c02355{width:16.920000px;}
._8_c02355{width:19.296000px;}
._9_c02355{width:20.520000px;}
.fc1_c02355{color:rgb(192,80,77);}
.fc3_c02355{color:rgb(255,255,255);}
.fc2_c02355{color:rgb(17,17,17);}
.fc0_c02355{color:rgb(0,0,0);}
.fs0_c02355{font-size:66.240000px;}
.fs1_c02355{font-size:72.000000px;}
.y0_c02355{bottom:0.000000px;}
.y1f_c02355{bottom:4.140000px;}
.y1c_c02355{bottom:4.500000px;}
.y3_c02355{bottom:4.680000px;}
.y1d_c02355{bottom:4.860000px;}
.y1a_c02355{bottom:5.220000px;}
.y26_c02355{bottom:24.840000px;}
.y25_c02355{bottom:25.200000px;}
.y19_c02355{bottom:25.920000px;}
.y2_c02355{bottom:41.796000px;}
.y1_c02355{bottom:75.456000px;}
.y2f_c02355{bottom:113.616000px;}
.y2e_c02355{bottom:134.496000px;}
.y2d_c02355{bottom:155.190000px;}
.y2c_c02355{bottom:175.890000px;}
.y2b_c02355{bottom:196.590000px;}
.y2a_c02355{bottom:213.510000px;}
.y29_c02355{bottom:235.110000px;}
.y28_c02355{bottom:256.530000px;}
.y27_c02355{bottom:277.995000px;}
.y24_c02355{bottom:299.415000px;}
.y23_c02355{bottom:341.535000px;}
.y22_c02355{bottom:362.955000px;}
.y21_c02355{bottom:384.555000px;}
.y20_c02355{bottom:405.975000px;}
.y1e_c02355{bottom:427.395000px;}
.y18_c02355{bottom:448.815000px;}
.y1b_c02355{bottom:470.235000px;}
.y17_c02355{bottom:506.415000px;}
.y16_c02355{bottom:527.295000px;}
.y15_c02355{bottom:548.025000px;}
.y14_c02355{bottom:568.725000px;}
.y13_c02355{bottom:599.505000px;}
.y12_c02355{bottom:630.645000px;}
.y11_c02355{bottom:661.605000px;}
.y10_c02355{bottom:692.745000px;}
.yf_c02355{bottom:723.705000px;}
.ye_c02355{bottom:754.845000px;}
.yd_c02355{bottom:785.805000px;}
.yc_c02355{bottom:816.990000px;}
.yb_c02355{bottom:847.950000px;}
.ya_c02355{bottom:879.090000px;}
.y9_c02355{bottom:910.050000px;}
.y8_c02355{bottom:941.190000px;}
.y7_c02355{bottom:972.150000px;}
.y6_c02355{bottom:1003.290000px;}
.y5_c02355{bottom:1034.250000px;}
.y4_c02355{bottom:1065.420000px;}
.h6_c02355{height:20.700000px;}
.h9_c02355{height:20.736000px;}
.h2_c02355{height:22.500000px;}
.h8_c02355{height:41.400000px;}
.h5_c02355{height:42.120000px;}
.h1_c02355{height:48.871406px;}
.h3_c02355{height:64.546875px;}
.h4_c02355{height:70.664062px;}
.h7_c02355{height:72.562500px;}
.h0_c02355{height:1188.000000px;}
.w1_c02355{width:66.636000px;}
.w4_c02355{width:79.020000px;}
.w7_c02355{width:92.016000px;}
.w5_c02355{width:94.356000px;}
.w6_c02355{width:96.120000px;}
.w2_c02355{width:254.550000px;}
.w3_c02355{width:283.935000px;}
.w0_c02355{width:918.000000px;}
.x0_c02355{left:0.000000px;}
.xf_c02355{left:7.920000px;}
.x12_c02355{left:15.480000px;}
.x3_c02355{left:16.560000px;}
.x10_c02355{left:18.180000px;}
.x14_c02355{left:21.420000px;}
.x21_c02355{left:23.580000px;}
.x1d_c02355{left:25.740000px;}
.x24_c02355{left:30.420000px;}
.x18_c02355{left:34.920000px;}
.xe_c02355{left:39.420000px;}
.x17_c02355{left:41.400000px;}
.x16_c02355{left:42.660000px;}
.x20_c02355{left:45.900000px;}
.x1f_c02355{left:47.160000px;}
.x19_c02355{left:61.560000px;}
.x1e_c02355{left:69.660000px;}
.x1b_c02355{left:72.540000px;}
.x15_c02355{left:74.520000px;}
.x1c_c02355{left:77.040000px;}
.x1a_c02355{left:79.560000px;}
.x23_c02355{left:95.760000px;}
.xa_c02355{left:103.140000px;}
.xc_c02355{left:104.430000px;}
.x22_c02355{left:107.280000px;}
.x1_c02355{left:127.656000px;}
.x9_c02355{left:179.310000px;}
.x4_c02355{left:187.050000px;}
.x7_c02355{left:296.355000px;}
.x8_c02355{left:348.735000px;}
.xb_c02355{left:434.595000px;}
.x6_c02355{left:440.175000px;}
.x5_c02355{left:488.775000px;}
.x11_c02355{left:529.665000px;}
.x13_c02355{left:626.505000px;}
.xd_c02355{left:719.250000px;}
.x2_c02355{left:820.950000px;}
@media print{
.v0_c02355{vertical-align:0.000000pt;}
.ls1_c02355{letter-spacing:-0.064000pt;}
.ls0_c02355{letter-spacing:0.000000pt;}
.ws0_c02355{word-spacing:-15.936000pt;}
.ws1_c02355{word-spacing:0.000000pt;}
._5_c02355{margin-left:-1.024000pt;}
._2_c02355{width:1.152000pt;}
._6_c02355{width:2.560000pt;}
._7_c02355{width:4.288000pt;}
._c_c02355{width:5.248000pt;}
._0_c02355{width:6.208000pt;}
._1_c02355{width:7.168000pt;}
._3_c02355{width:8.064000pt;}
._4_c02355{width:9.354667pt;}
._a_c02355{width:10.496000pt;}
._b_c02355{width:11.648000pt;}
._d_c02355{width:15.040000pt;}
._8_c02355{width:17.152000pt;}
._9_c02355{width:18.240000pt;}
.fs0_c02355{font-size:58.880000pt;}
.fs1_c02355{font-size:64.000000pt;}
.y0_c02355{bottom:0.000000pt;}
.y1f_c02355{bottom:3.680000pt;}
.y1c_c02355{bottom:4.000000pt;}
.y3_c02355{bottom:4.160000pt;}
.y1d_c02355{bottom:4.320000pt;}
.y1a_c02355{bottom:4.640000pt;}
.y26_c02355{bottom:22.080000pt;}
.y25_c02355{bottom:22.400000pt;}
.y19_c02355{bottom:23.040000pt;}
.y2_c02355{bottom:37.152000pt;}
.y1_c02355{bottom:67.072000pt;}
.y2f_c02355{bottom:100.992000pt;}
.y2e_c02355{bottom:119.552000pt;}
.y2d_c02355{bottom:137.946667pt;}
.y2c_c02355{bottom:156.346667pt;}
.y2b_c02355{bottom:174.746667pt;}
.y2a_c02355{bottom:189.786667pt;}
.y29_c02355{bottom:208.986667pt;}
.y28_c02355{bottom:228.026667pt;}
.y27_c02355{bottom:247.106667pt;}
.y24_c02355{bottom:266.146667pt;}
.y23_c02355{bottom:303.586667pt;}
.y22_c02355{bottom:322.626667pt;}
.y21_c02355{bottom:341.826667pt;}
.y20_c02355{bottom:360.866667pt;}
.y1e_c02355{bottom:379.906667pt;}
.y18_c02355{bottom:398.946667pt;}
.y1b_c02355{bottom:417.986667pt;}
.y17_c02355{bottom:450.146667pt;}
.y16_c02355{bottom:468.706667pt;}
.y15_c02355{bottom:487.133333pt;}
.y14_c02355{bottom:505.533333pt;}
.y13_c02355{bottom:532.893333pt;}
.y12_c02355{bottom:560.573333pt;}
.y11_c02355{bottom:588.093333pt;}
.y10_c02355{bottom:615.773333pt;}
.yf_c02355{bottom:643.293333pt;}
.ye_c02355{bottom:670.973333pt;}
.yd_c02355{bottom:698.493333pt;}
.yc_c02355{bottom:726.213333pt;}
.yb_c02355{bottom:753.733333pt;}
.ya_c02355{bottom:781.413333pt;}
.y9_c02355{bottom:808.933333pt;}
.y8_c02355{bottom:836.613333pt;}
.y7_c02355{bottom:864.133333pt;}
.y6_c02355{bottom:891.813333pt;}
.y5_c02355{bottom:919.333333pt;}
.y4_c02355{bottom:947.040000pt;}
.h6_c02355{height:18.400000pt;}
.h9_c02355{height:18.432000pt;}
.h2_c02355{height:20.000000pt;}
.h8_c02355{height:36.800000pt;}
.h5_c02355{height:37.440000pt;}
.h1_c02355{height:43.441250pt;}
.h3_c02355{height:57.375000pt;}
.h4_c02355{height:62.812500pt;}
.h7_c02355{height:64.500000pt;}
.h0_c02355{height:1056.000000pt;}
.w1_c02355{width:59.232000pt;}
.w4_c02355{width:70.240000pt;}
.w7_c02355{width:81.792000pt;}
.w5_c02355{width:83.872000pt;}
.w6_c02355{width:85.440000pt;}
.w2_c02355{width:226.266667pt;}
.w3_c02355{width:252.386667pt;}
.w0_c02355{width:816.000000pt;}
.x0_c02355{left:0.000000pt;}
.xf_c02355{left:7.040000pt;}
.x12_c02355{left:13.760000pt;}
.x3_c02355{left:14.720000pt;}
.x10_c02355{left:16.160000pt;}
.x14_c02355{left:19.040000pt;}
.x21_c02355{left:20.960000pt;}
.x1d_c02355{left:22.880000pt;}
.x24_c02355{left:27.040000pt;}
.x18_c02355{left:31.040000pt;}
.xe_c02355{left:35.040000pt;}
.x17_c02355{left:36.800000pt;}
.x16_c02355{left:37.920000pt;}
.x20_c02355{left:40.800000pt;}
.x1f_c02355{left:41.920000pt;}
.x19_c02355{left:54.720000pt;}
.x1e_c02355{left:61.920000pt;}
.x1b_c02355{left:64.480000pt;}
.x15_c02355{left:66.240000pt;}
.x1c_c02355{left:68.480000pt;}
.x1a_c02355{left:70.720000pt;}
.x23_c02355{left:85.120000pt;}
.xa_c02355{left:91.680000pt;}
.xc_c02355{left:92.826667pt;}
.x22_c02355{left:95.360000pt;}
.x1_c02355{left:113.472000pt;}
.x9_c02355{left:159.386667pt;}
.x4_c02355{left:166.266667pt;}
.x7_c02355{left:263.426667pt;}
.x8_c02355{left:309.986667pt;}
.xb_c02355{left:386.306667pt;}
.x6_c02355{left:391.266667pt;}
.x5_c02355{left:434.466667pt;}
.x11_c02355{left:470.813333pt;}
.x13_c02355{left:556.893333pt;}
.xd_c02355{left:639.333333pt;}
.x2_c02355{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02356 {
    display:none;
  }
  .loading-indicator_c02356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02356" -> "#page-container .classname_c02356")
 */
.pf_c02356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02356 {overflow:visible;}
  }
}
.c_c02356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02356:after { /* webkit #35443 */
  content: '';
}
.t_c02356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02356 { /* info for Javascript */
  display:none;
}
.l_c02356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02356:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02356 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02356.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02356;src:url('chunks/assets/font_40b57cb2d2dd6cb3ac62197f.woff2')format("woff");}.ff1_c02356{font-family:ff1_c02356;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02356;src:url('chunks/assets/font_d1e06a7f708cb15b71e1a894.woff2')format("woff");}.ff2_c02356{font-family:ff2_c02356;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:ff3_c02356;src:url('chunks/assets/font_e09930251c2dbf461178819c.woff2')format("woff");}.ff3_c02356{font-family:ff3_c02356;line-height:1.112305;font-style:normal;font-weight: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_c02356;src:url('chunks/assets/font_3ec305c6526cc343e5ffe18d.woff2')format("woff");}.ff4_c02356{font-family:ff4_c02356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02356{vertical-align:0.000000px;}
.ls0_c02356{letter-spacing:0.000000px;}
.sc__c02356{text-shadow:none;}
.sc0_c02356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02356{-webkit-text-stroke:0px transparent;}
.sc0_c02356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02356{word-spacing:0.000000px;}
._0_c02356{margin-left:-1.080000px;}
._5_c02356{width:1.224000px;}
._a_c02356{width:2.592000px;}
._b_c02356{width:3.600000px;}
._6_c02356{width:4.608000px;}
._7_c02356{width:5.760000px;}
._8_c02356{width:6.840000px;}
._d_c02356{width:7.956000px;}
._c_c02356{width:9.360000px;}
._4_c02356{width:10.584000px;}
._3_c02356{width:11.880000px;}
._2_c02356{width:14.040000px;}
._1_c02356{width:15.048000px;}
._9_c02356{width:19.800000px;}
.fc1_c02356{color:rgb(192,80,77);}
.fc3_c02356{color:rgb(255,255,255);}
.fc2_c02356{color:rgb(17,17,17);}
.fc0_c02356{color:rgb(0,0,0);}
.fs0_c02356{font-size:66.240000px;}
.fs1_c02356{font-size:72.000000px;}
.y0_c02356{bottom:0.000000px;}
.y1e_c02356{bottom:4.140000px;}
.y1b_c02356{bottom:4.500000px;}
.y3_c02356{bottom:4.680000px;}
.y1c_c02356{bottom:4.860000px;}
.y19_c02356{bottom:5.220000px;}
.y25_c02356{bottom:24.840000px;}
.y24_c02356{bottom:25.200000px;}
.y18_c02356{bottom:25.920000px;}
.y2_c02356{bottom:41.796000px;}
.y1_c02356{bottom:75.456000px;}
.y2f_c02356{bottom:113.616000px;}
.y2e_c02356{bottom:144.756000px;}
.y2d_c02356{bottom:165.630000px;}
.y2c_c02356{bottom:186.330000px;}
.y2b_c02356{bottom:207.030000px;}
.y2a_c02356{bottom:227.730000px;}
.y29_c02356{bottom:244.650000px;}
.y28_c02356{bottom:266.070000px;}
.y27_c02356{bottom:287.535000px;}
.y26_c02356{bottom:308.955000px;}
.y23_c02356{bottom:330.555000px;}
.y22_c02356{bottom:372.675000px;}
.y21_c02356{bottom:394.095000px;}
.y20_c02356{bottom:415.515000px;}
.y1f_c02356{bottom:436.935000px;}
.y1d_c02356{bottom:458.355000px;}
.y17_c02356{bottom:479.955000px;}
.y1a_c02356{bottom:501.375000px;}
.y16_c02356{bottom:537.405000px;}
.y15_c02356{bottom:558.285000px;}
.y14_c02356{bottom:578.985000px;}
.y13_c02356{bottom:599.685000px;}
.y12_c02356{bottom:630.645000px;}
.y11_c02356{bottom:661.605000px;}
.y10_c02356{bottom:692.745000px;}
.yf_c02356{bottom:723.705000px;}
.ye_c02356{bottom:754.845000px;}
.yd_c02356{bottom:785.805000px;}
.yc_c02356{bottom:816.990000px;}
.yb_c02356{bottom:847.950000px;}
.ya_c02356{bottom:879.090000px;}
.y9_c02356{bottom:910.050000px;}
.y8_c02356{bottom:941.190000px;}
.y7_c02356{bottom:972.150000px;}
.y6_c02356{bottom:1003.290000px;}
.y5_c02356{bottom:1034.250000px;}
.y4_c02356{bottom:1065.420000px;}
.h6_c02356{height:20.700000px;}
.h9_c02356{height:20.736000px;}
.h2_c02356{height:22.500000px;}
.h8_c02356{height:41.400000px;}
.h5_c02356{height:42.120000px;}
.h1_c02356{height:48.871406px;}
.h4_c02356{height:64.546875px;}
.h3_c02356{height:70.664062px;}
.h7_c02356{height:72.562500px;}
.h0_c02356{height:1188.000000px;}
.w1_c02356{width:66.636000px;}
.w4_c02356{width:79.020000px;}
.w7_c02356{width:92.016000px;}
.w5_c02356{width:94.356000px;}
.w6_c02356{width:96.120000px;}
.w2_c02356{width:254.550000px;}
.w3_c02356{width:283.935000px;}
.w0_c02356{width:918.000000px;}
.x0_c02356{left:0.000000px;}
.xf_c02356{left:7.920000px;}
.x12_c02356{left:15.480000px;}
.x3_c02356{left:16.560000px;}
.x10_c02356{left:18.180000px;}
.x14_c02356{left:21.420000px;}
.x22_c02356{left:23.580000px;}
.x1e_c02356{left:25.740000px;}
.x18_c02356{left:30.420000px;}
.x1a_c02356{left:34.920000px;}
.xe_c02356{left:39.420000px;}
.x17_c02356{left:41.400000px;}
.x16_c02356{left:42.660000px;}
.x21_c02356{left:45.900000px;}
.x20_c02356{left:47.160000px;}
.x19_c02356{left:61.560000px;}
.x1f_c02356{left:69.660000px;}
.x1c_c02356{left:72.540000px;}
.x15_c02356{left:74.520000px;}
.x1d_c02356{left:77.040000px;}
.x1b_c02356{left:79.560000px;}
.x24_c02356{left:95.760000px;}
.xa_c02356{left:103.140000px;}
.xc_c02356{left:104.430000px;}
.x23_c02356{left:107.280000px;}
.x1_c02356{left:127.656000px;}
.x9_c02356{left:179.310000px;}
.x25_c02356{left:180.750000px;}
.x4_c02356{left:187.050000px;}
.x7_c02356{left:303.375000px;}
.x8_c02356{left:348.735000px;}
.xb_c02356{left:434.595000px;}
.x6_c02356{left:440.175000px;}
.x5_c02356{left:488.775000px;}
.x11_c02356{left:529.665000px;}
.x13_c02356{left:626.505000px;}
.xd_c02356{left:719.250000px;}
.x2_c02356{left:820.950000px;}
@media print{
.v0_c02356{vertical-align:0.000000pt;}
.ls0_c02356{letter-spacing:0.000000pt;}
.ws0_c02356{word-spacing:0.000000pt;}
._0_c02356{margin-left:-0.960000pt;}
._5_c02356{width:1.088000pt;}
._a_c02356{width:2.304000pt;}
._b_c02356{width:3.200000pt;}
._6_c02356{width:4.096000pt;}
._7_c02356{width:5.120000pt;}
._8_c02356{width:6.080000pt;}
._d_c02356{width:7.072000pt;}
._c_c02356{width:8.320000pt;}
._4_c02356{width:9.408000pt;}
._3_c02356{width:10.560000pt;}
._2_c02356{width:12.480000pt;}
._1_c02356{width:13.376000pt;}
._9_c02356{width:17.600000pt;}
.fs0_c02356{font-size:58.880000pt;}
.fs1_c02356{font-size:64.000000pt;}
.y0_c02356{bottom:0.000000pt;}
.y1e_c02356{bottom:3.680000pt;}
.y1b_c02356{bottom:4.000000pt;}
.y3_c02356{bottom:4.160000pt;}
.y1c_c02356{bottom:4.320000pt;}
.y19_c02356{bottom:4.640000pt;}
.y25_c02356{bottom:22.080000pt;}
.y24_c02356{bottom:22.400000pt;}
.y18_c02356{bottom:23.040000pt;}
.y2_c02356{bottom:37.152000pt;}
.y1_c02356{bottom:67.072000pt;}
.y2f_c02356{bottom:100.992000pt;}
.y2e_c02356{bottom:128.672000pt;}
.y2d_c02356{bottom:147.226667pt;}
.y2c_c02356{bottom:165.626667pt;}
.y2b_c02356{bottom:184.026667pt;}
.y2a_c02356{bottom:202.426667pt;}
.y29_c02356{bottom:217.466667pt;}
.y28_c02356{bottom:236.506667pt;}
.y27_c02356{bottom:255.586667pt;}
.y26_c02356{bottom:274.626667pt;}
.y23_c02356{bottom:293.826667pt;}
.y22_c02356{bottom:331.266667pt;}
.y21_c02356{bottom:350.306667pt;}
.y20_c02356{bottom:369.346667pt;}
.y1f_c02356{bottom:388.386667pt;}
.y1d_c02356{bottom:407.426667pt;}
.y17_c02356{bottom:426.626667pt;}
.y1a_c02356{bottom:445.666667pt;}
.y16_c02356{bottom:477.693333pt;}
.y15_c02356{bottom:496.253333pt;}
.y14_c02356{bottom:514.653333pt;}
.y13_c02356{bottom:533.053333pt;}
.y12_c02356{bottom:560.573333pt;}
.y11_c02356{bottom:588.093333pt;}
.y10_c02356{bottom:615.773333pt;}
.yf_c02356{bottom:643.293333pt;}
.ye_c02356{bottom:670.973333pt;}
.yd_c02356{bottom:698.493333pt;}
.yc_c02356{bottom:726.213333pt;}
.yb_c02356{bottom:753.733333pt;}
.ya_c02356{bottom:781.413333pt;}
.y9_c02356{bottom:808.933333pt;}
.y8_c02356{bottom:836.613333pt;}
.y7_c02356{bottom:864.133333pt;}
.y6_c02356{bottom:891.813333pt;}
.y5_c02356{bottom:919.333333pt;}
.y4_c02356{bottom:947.040000pt;}
.h6_c02356{height:18.400000pt;}
.h9_c02356{height:18.432000pt;}
.h2_c02356{height:20.000000pt;}
.h8_c02356{height:36.800000pt;}
.h5_c02356{height:37.440000pt;}
.h1_c02356{height:43.441250pt;}
.h4_c02356{height:57.375000pt;}
.h3_c02356{height:62.812500pt;}
.h7_c02356{height:64.500000pt;}
.h0_c02356{height:1056.000000pt;}
.w1_c02356{width:59.232000pt;}
.w4_c02356{width:70.240000pt;}
.w7_c02356{width:81.792000pt;}
.w5_c02356{width:83.872000pt;}
.w6_c02356{width:85.440000pt;}
.w2_c02356{width:226.266667pt;}
.w3_c02356{width:252.386667pt;}
.w0_c02356{width:816.000000pt;}
.x0_c02356{left:0.000000pt;}
.xf_c02356{left:7.040000pt;}
.x12_c02356{left:13.760000pt;}
.x3_c02356{left:14.720000pt;}
.x10_c02356{left:16.160000pt;}
.x14_c02356{left:19.040000pt;}
.x22_c02356{left:20.960000pt;}
.x1e_c02356{left:22.880000pt;}
.x18_c02356{left:27.040000pt;}
.x1a_c02356{left:31.040000pt;}
.xe_c02356{left:35.040000pt;}
.x17_c02356{left:36.800000pt;}
.x16_c02356{left:37.920000pt;}
.x21_c02356{left:40.800000pt;}
.x20_c02356{left:41.920000pt;}
.x19_c02356{left:54.720000pt;}
.x1f_c02356{left:61.920000pt;}
.x1c_c02356{left:64.480000pt;}
.x15_c02356{left:66.240000pt;}
.x1d_c02356{left:68.480000pt;}
.x1b_c02356{left:70.720000pt;}
.x24_c02356{left:85.120000pt;}
.xa_c02356{left:91.680000pt;}
.xc_c02356{left:92.826667pt;}
.x23_c02356{left:95.360000pt;}
.x1_c02356{left:113.472000pt;}
.x9_c02356{left:159.386667pt;}
.x25_c02356{left:160.666667pt;}
.x4_c02356{left:166.266667pt;}
.x7_c02356{left:269.666667pt;}
.x8_c02356{left:309.986667pt;}
.xb_c02356{left:386.306667pt;}
.x6_c02356{left:391.266667pt;}
.x5_c02356{left:434.466667pt;}
.x11_c02356{left:470.813333pt;}
.x13_c02356{left:556.893333pt;}
.xd_c02356{left:639.333333pt;}
.x2_c02356{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02357 {
    display:none;
  }
  .loading-indicator_c02357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02357" -> "#page-container .classname_c02357")
 */
.pf_c02357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02357 {overflow:visible;}
  }
}
.c_c02357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02357:after { /* webkit #35443 */
  content: '';
}
.t_c02357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02357 { /* info for Javascript */
  display:none;
}
.l_c02357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02357:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02357 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02357.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02357;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02357{font-family:ff1_c02357;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02357;src:url('chunks/assets/font_1fa979675986b85a0d73bc67.woff2')format("woff");}.ff2_c02357{font-family:ff2_c02357;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:ff3_c02357;src:url('chunks/assets/font_e71f9edcdd3224b12602ef49.woff2')format("woff");}.ff3_c02357{font-family:ff3_c02357;line-height:1.112305;font-style:normal;font-weight: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_c02357;src:url('chunks/assets/font_43de532033c97a578ad5eb85.woff2')format("woff");}.ff4_c02357{font-family:ff4_c02357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02357{vertical-align:0.000000px;}
.ls1_c02357{letter-spacing:-0.288000px;}
.ls0_c02357{letter-spacing:0.000000px;}
.sc__c02357{text-shadow:none;}
.sc0_c02357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02357{-webkit-text-stroke:0px transparent;}
.sc0_c02357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02357{word-spacing:-18.000000px;}
.ws1_c02357{word-spacing:0.000000px;}
._1_c02357{margin-left:-1.152000px;}
._3_c02357{width:1.080000px;}
._0_c02357{width:2.088000px;}
._2_c02357{width:3.468000px;}
._8_c02357{width:4.896000px;}
._d_c02357{width:6.048000px;}
._c_c02357{width:7.776000px;}
._6_c02357{width:9.144000px;}
._7_c02357{width:10.296000px;}
._a_c02357{width:14.976000px;}
._b_c02357{width:15.984000px;}
._9_c02357{width:28.656000px;}
._4_c02357{width:34.632000px;}
._5_c02357{width:35.784000px;}
.fc1_c02357{color:rgb(192,80,77);}
.fc3_c02357{color:rgb(255,255,255);}
.fc2_c02357{color:rgb(17,17,17);}
.fc0_c02357{color:rgb(0,0,0);}
.fs0_c02357{font-size:66.240000px;}
.fs1_c02357{font-size:72.000000px;}
.y0_c02357{bottom:0.000000px;}
.y1e_c02357{bottom:4.140000px;}
.y1b_c02357{bottom:4.500000px;}
.y3_c02357{bottom:4.680000px;}
.y1c_c02357{bottom:4.860000px;}
.y19_c02357{bottom:5.220000px;}
.y25_c02357{bottom:24.840000px;}
.y24_c02357{bottom:25.200000px;}
.y18_c02357{bottom:25.920000px;}
.y2_c02357{bottom:41.796000px;}
.y1_c02357{bottom:75.456000px;}
.y2d_c02357{bottom:186.330000px;}
.y2c_c02357{bottom:207.030000px;}
.y2b_c02357{bottom:227.730000px;}
.y2a_c02357{bottom:248.430000px;}
.y29_c02357{bottom:265.350000px;}
.y28_c02357{bottom:286.815000px;}
.y27_c02357{bottom:308.235000px;}
.y26_c02357{bottom:329.655000px;}
.y23_c02357{bottom:351.255000px;}
.y22_c02357{bottom:393.375000px;}
.y21_c02357{bottom:414.795000px;}
.y20_c02357{bottom:436.215000px;}
.y1f_c02357{bottom:457.635000px;}
.y1d_c02357{bottom:479.055000px;}
.y17_c02357{bottom:500.655000px;}
.y1a_c02357{bottom:522.075000px;}
.y16_c02357{bottom:548.025000px;}
.y15_c02357{bottom:568.725000px;}
.y14_c02357{bottom:589.425000px;}
.y13_c02357{bottom:610.125000px;}
.y12_c02357{bottom:630.825000px;}
.y11_c02357{bottom:661.605000px;}
.y10_c02357{bottom:692.745000px;}
.yf_c02357{bottom:723.705000px;}
.ye_c02357{bottom:754.845000px;}
.yd_c02357{bottom:785.805000px;}
.yc_c02357{bottom:816.990000px;}
.yb_c02357{bottom:847.950000px;}
.ya_c02357{bottom:879.090000px;}
.y9_c02357{bottom:910.050000px;}
.y8_c02357{bottom:941.190000px;}
.y7_c02357{bottom:972.150000px;}
.y6_c02357{bottom:1003.290000px;}
.y5_c02357{bottom:1034.250000px;}
.y4_c02357{bottom:1065.420000px;}
.h8_c02357{height:20.700000px;}
.h6_c02357{height:20.736000px;}
.h2_c02357{height:22.500000px;}
.h9_c02357{height:41.400000px;}
.h5_c02357{height:42.156000px;}
.h1_c02357{height:48.871406px;}
.h4_c02357{height:64.546875px;}
.h3_c02357{height:70.664062px;}
.h7_c02357{height:72.562500px;}
.h0_c02357{height:1188.000000px;}
.w1_c02357{width:66.636000px;}
.w4_c02357{width:79.020000px;}
.w7_c02357{width:92.016000px;}
.w5_c02357{width:94.356000px;}
.w6_c02357{width:96.120000px;}
.w2_c02357{width:254.550000px;}
.w3_c02357{width:283.935000px;}
.w0_c02357{width:918.000000px;}
.x0_c02357{left:0.000000px;}
.xf_c02357{left:7.920000px;}
.x12_c02357{left:15.480000px;}
.x3_c02357{left:16.560000px;}
.x10_c02357{left:18.180000px;}
.x14_c02357{left:21.420000px;}
.x21_c02357{left:23.580000px;}
.x1d_c02357{left:25.740000px;}
.x24_c02357{left:30.420000px;}
.x18_c02357{left:34.920000px;}
.xe_c02357{left:39.420000px;}
.x17_c02357{left:41.400000px;}
.x16_c02357{left:42.660000px;}
.x20_c02357{left:45.900000px;}
.x1f_c02357{left:47.160000px;}
.x19_c02357{left:61.560000px;}
.x1e_c02357{left:69.660000px;}
.x1b_c02357{left:72.540000px;}
.x15_c02357{left:74.520000px;}
.x1c_c02357{left:77.040000px;}
.x1a_c02357{left:79.560000px;}
.x23_c02357{left:95.760000px;}
.xa_c02357{left:103.140000px;}
.xc_c02357{left:104.430000px;}
.x22_c02357{left:107.280000px;}
.x1_c02357{left:127.656000px;}
.x9_c02357{left:179.310000px;}
.x4_c02357{left:180.750000px;}
.x25_c02357{left:187.050000px;}
.x6_c02357{left:302.835000px;}
.x7_c02357{left:348.735000px;}
.xb_c02357{left:434.595000px;}
.x5_c02357{left:440.175000px;}
.x8_c02357{left:488.775000px;}
.x11_c02357{left:529.665000px;}
.x13_c02357{left:626.505000px;}
.xd_c02357{left:719.250000px;}
.x2_c02357{left:820.950000px;}
@media print{
.v0_c02357{vertical-align:0.000000pt;}
.ls1_c02357{letter-spacing:-0.256000pt;}
.ls0_c02357{letter-spacing:0.000000pt;}
.ws0_c02357{word-spacing:-16.000000pt;}
.ws1_c02357{word-spacing:0.000000pt;}
._1_c02357{margin-left:-1.024000pt;}
._3_c02357{width:0.960000pt;}
._0_c02357{width:1.856000pt;}
._2_c02357{width:3.082667pt;}
._8_c02357{width:4.352000pt;}
._d_c02357{width:5.376000pt;}
._c_c02357{width:6.912000pt;}
._6_c02357{width:8.128000pt;}
._7_c02357{width:9.152000pt;}
._a_c02357{width:13.312000pt;}
._b_c02357{width:14.208000pt;}
._9_c02357{width:25.472000pt;}
._4_c02357{width:30.784000pt;}
._5_c02357{width:31.808000pt;}
.fs0_c02357{font-size:58.880000pt;}
.fs1_c02357{font-size:64.000000pt;}
.y0_c02357{bottom:0.000000pt;}
.y1e_c02357{bottom:3.680000pt;}
.y1b_c02357{bottom:4.000000pt;}
.y3_c02357{bottom:4.160000pt;}
.y1c_c02357{bottom:4.320000pt;}
.y19_c02357{bottom:4.640000pt;}
.y25_c02357{bottom:22.080000pt;}
.y24_c02357{bottom:22.400000pt;}
.y18_c02357{bottom:23.040000pt;}
.y2_c02357{bottom:37.152000pt;}
.y1_c02357{bottom:67.072000pt;}
.y2d_c02357{bottom:165.626667pt;}
.y2c_c02357{bottom:184.026667pt;}
.y2b_c02357{bottom:202.426667pt;}
.y2a_c02357{bottom:220.826667pt;}
.y29_c02357{bottom:235.866667pt;}
.y28_c02357{bottom:254.946667pt;}
.y27_c02357{bottom:273.986667pt;}
.y26_c02357{bottom:293.026667pt;}
.y23_c02357{bottom:312.226667pt;}
.y22_c02357{bottom:349.666667pt;}
.y21_c02357{bottom:368.706667pt;}
.y20_c02357{bottom:387.746667pt;}
.y1f_c02357{bottom:406.786667pt;}
.y1d_c02357{bottom:425.826667pt;}
.y17_c02357{bottom:445.026667pt;}
.y1a_c02357{bottom:464.066667pt;}
.y16_c02357{bottom:487.133333pt;}
.y15_c02357{bottom:505.533333pt;}
.y14_c02357{bottom:523.933333pt;}
.y13_c02357{bottom:542.333333pt;}
.y12_c02357{bottom:560.733333pt;}
.y11_c02357{bottom:588.093333pt;}
.y10_c02357{bottom:615.773333pt;}
.yf_c02357{bottom:643.293333pt;}
.ye_c02357{bottom:670.973333pt;}
.yd_c02357{bottom:698.493333pt;}
.yc_c02357{bottom:726.213333pt;}
.yb_c02357{bottom:753.733333pt;}
.ya_c02357{bottom:781.413333pt;}
.y9_c02357{bottom:808.933333pt;}
.y8_c02357{bottom:836.613333pt;}
.y7_c02357{bottom:864.133333pt;}
.y6_c02357{bottom:891.813333pt;}
.y5_c02357{bottom:919.333333pt;}
.y4_c02357{bottom:947.040000pt;}
.h8_c02357{height:18.400000pt;}
.h6_c02357{height:18.432000pt;}
.h2_c02357{height:20.000000pt;}
.h9_c02357{height:36.800000pt;}
.h5_c02357{height:37.472000pt;}
.h1_c02357{height:43.441250pt;}
.h4_c02357{height:57.375000pt;}
.h3_c02357{height:62.812500pt;}
.h7_c02357{height:64.500000pt;}
.h0_c02357{height:1056.000000pt;}
.w1_c02357{width:59.232000pt;}
.w4_c02357{width:70.240000pt;}
.w7_c02357{width:81.792000pt;}
.w5_c02357{width:83.872000pt;}
.w6_c02357{width:85.440000pt;}
.w2_c02357{width:226.266667pt;}
.w3_c02357{width:252.386667pt;}
.w0_c02357{width:816.000000pt;}
.x0_c02357{left:0.000000pt;}
.xf_c02357{left:7.040000pt;}
.x12_c02357{left:13.760000pt;}
.x3_c02357{left:14.720000pt;}
.x10_c02357{left:16.160000pt;}
.x14_c02357{left:19.040000pt;}
.x21_c02357{left:20.960000pt;}
.x1d_c02357{left:22.880000pt;}
.x24_c02357{left:27.040000pt;}
.x18_c02357{left:31.040000pt;}
.xe_c02357{left:35.040000pt;}
.x17_c02357{left:36.800000pt;}
.x16_c02357{left:37.920000pt;}
.x20_c02357{left:40.800000pt;}
.x1f_c02357{left:41.920000pt;}
.x19_c02357{left:54.720000pt;}
.x1e_c02357{left:61.920000pt;}
.x1b_c02357{left:64.480000pt;}
.x15_c02357{left:66.240000pt;}
.x1c_c02357{left:68.480000pt;}
.x1a_c02357{left:70.720000pt;}
.x23_c02357{left:85.120000pt;}
.xa_c02357{left:91.680000pt;}
.xc_c02357{left:92.826667pt;}
.x22_c02357{left:95.360000pt;}
.x1_c02357{left:113.472000pt;}
.x9_c02357{left:159.386667pt;}
.x4_c02357{left:160.666667pt;}
.x25_c02357{left:166.266667pt;}
.x6_c02357{left:269.186667pt;}
.x7_c02357{left:309.986667pt;}
.xb_c02357{left:386.306667pt;}
.x5_c02357{left:391.266667pt;}
.x8_c02357{left:434.466667pt;}
.x11_c02357{left:470.813333pt;}
.x13_c02357{left:556.893333pt;}
.xd_c02357{left:639.333333pt;}
.x2_c02357{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02358 {
    display:none;
  }
  .loading-indicator_c02358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02358" -> "#page-container .classname_c02358")
 */
.pf_c02358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02358 {overflow:visible;}
  }
}
.c_c02358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02358:after { /* webkit #35443 */
  content: '';
}
.t_c02358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02358 { /* info for Javascript */
  display:none;
}
.l_c02358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02358:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02358 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02358.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02358;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02358{font-family:ff1_c02358;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02358;src:url('chunks/assets/font_992d377f1831be4880463f12.woff2')format("woff");}.ff2_c02358{font-family:ff2_c02358;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:ff3_c02358;src:url('chunks/assets/font_968f596ba35f133c3ebd6437.woff2')format("woff");}.ff3_c02358{font-family:ff3_c02358;line-height:1.112305;font-style:normal;font-weight: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_c02358;src:url('chunks/assets/font_a9fd964b176a20e33dcb4833.woff2')format("woff");}.ff4_c02358{font-family:ff4_c02358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02358{vertical-align:0.000000px;}
.ls1_c02358{letter-spacing:0.000000px;}
.ls0_c02358{letter-spacing:2.880000px;}
.sc__c02358{text-shadow:none;}
.sc0_c02358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02358{-webkit-text-stroke:0px transparent;}
.sc0_c02358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02358{word-spacing:0.000000px;}
._2_c02358{margin-left:-1.008000px;}
._1_c02358{width:1.440000px;}
._5_c02358{width:2.808000px;}
._6_c02358{width:4.032000px;}
._4_c02358{width:5.400000px;}
._0_c02358{width:6.912000px;}
._3_c02358{width:8.712000px;}
._b_c02358{width:10.116000px;}
._7_c02358{width:12.816000px;}
._8_c02358{width:14.256000px;}
._9_c02358{width:21.456000px;}
._a_c02358{width:22.464000px;}
.fc1_c02358{color:rgb(192,80,77);}
.fc3_c02358{color:rgb(255,255,255);}
.fc2_c02358{color:rgb(17,17,17);}
.fc0_c02358{color:rgb(0,0,0);}
.fs0_c02358{font-size:66.240000px;}
.fs1_c02358{font-size:72.000000px;}
.y0_c02358{bottom:0.000000px;}
.y1d_c02358{bottom:4.140000px;}
.y1a_c02358{bottom:4.500000px;}
.y3_c02358{bottom:4.680000px;}
.y1b_c02358{bottom:4.860000px;}
.y18_c02358{bottom:5.220000px;}
.y24_c02358{bottom:24.840000px;}
.y23_c02358{bottom:25.200000px;}
.y17_c02358{bottom:25.950000px;}
.y2_c02358{bottom:41.796000px;}
.y1_c02358{bottom:75.456000px;}
.y2c_c02358{bottom:207.030000px;}
.y2b_c02358{bottom:227.730000px;}
.y2a_c02358{bottom:248.430000px;}
.y29_c02358{bottom:269.130000px;}
.y28_c02358{bottom:286.095000px;}
.y27_c02358{bottom:307.515000px;}
.y26_c02358{bottom:328.935000px;}
.y25_c02358{bottom:350.355000px;}
.y22_c02358{bottom:371.955000px;}
.y21_c02358{bottom:414.075000px;}
.y20_c02358{bottom:435.495000px;}
.y1f_c02358{bottom:456.915000px;}
.y1e_c02358{bottom:478.335000px;}
.y1c_c02358{bottom:499.755000px;}
.y16_c02358{bottom:521.355000px;}
.y19_c02358{bottom:542.805000px;}
.y15_c02358{bottom:568.725000px;}
.y14_c02358{bottom:589.425000px;}
.y13_c02358{bottom:610.125000px;}
.y12_c02358{bottom:630.825000px;}
.y11_c02358{bottom:661.605000px;}
.y10_c02358{bottom:692.745000px;}
.yf_c02358{bottom:723.705000px;}
.ye_c02358{bottom:754.845000px;}
.yd_c02358{bottom:785.805000px;}
.yc_c02358{bottom:816.990000px;}
.yb_c02358{bottom:847.950000px;}
.ya_c02358{bottom:879.090000px;}
.y9_c02358{bottom:910.050000px;}
.y8_c02358{bottom:941.190000px;}
.y7_c02358{bottom:972.150000px;}
.y6_c02358{bottom:1003.290000px;}
.y5_c02358{bottom:1034.250000px;}
.y4_c02358{bottom:1065.420000px;}
.h6_c02358{height:20.700000px;}
.h8_c02358{height:20.736000px;}
.h2_c02358{height:22.500000px;}
.h9_c02358{height:41.400000px;}
.h5_c02358{height:42.156000px;}
.h1_c02358{height:48.871406px;}
.h4_c02358{height:64.546875px;}
.h3_c02358{height:70.664062px;}
.h7_c02358{height:72.562500px;}
.h0_c02358{height:1188.000000px;}
.w1_c02358{width:66.636000px;}
.w4_c02358{width:79.020000px;}
.w7_c02358{width:92.016000px;}
.w5_c02358{width:94.356000px;}
.w6_c02358{width:96.120000px;}
.w2_c02358{width:254.550000px;}
.w3_c02358{width:283.935000px;}
.w0_c02358{width:918.000000px;}
.x0_c02358{left:0.000000px;}
.xf_c02358{left:7.920000px;}
.x12_c02358{left:15.480000px;}
.x3_c02358{left:16.560000px;}
.x10_c02358{left:18.180000px;}
.x14_c02358{left:21.420000px;}
.x21_c02358{left:23.580000px;}
.x1d_c02358{left:25.740000px;}
.x18_c02358{left:34.920000px;}
.xe_c02358{left:39.420000px;}
.x17_c02358{left:41.400000px;}
.x16_c02358{left:42.660000px;}
.x20_c02358{left:45.900000px;}
.x1f_c02358{left:47.160000px;}
.x19_c02358{left:61.560000px;}
.x1e_c02358{left:69.660000px;}
.x1b_c02358{left:72.540000px;}
.x15_c02358{left:74.520000px;}
.x1c_c02358{left:77.040000px;}
.x1a_c02358{left:79.560000px;}
.x23_c02358{left:95.760000px;}
.xa_c02358{left:103.140000px;}
.xc_c02358{left:104.430000px;}
.x22_c02358{left:107.280000px;}
.x1_c02358{left:127.656000px;}
.x9_c02358{left:179.310000px;}
.x4_c02358{left:187.050000px;}
.x6_c02358{left:292.890000px;}
.x7_c02358{left:348.735000px;}
.xb_c02358{left:434.595000px;}
.x5_c02358{left:440.175000px;}
.x8_c02358{left:488.775000px;}
.x11_c02358{left:529.665000px;}
.x13_c02358{left:626.505000px;}
.xd_c02358{left:719.250000px;}
.x2_c02358{left:820.950000px;}
@media print{
.v0_c02358{vertical-align:0.000000pt;}
.ls1_c02358{letter-spacing:0.000000pt;}
.ls0_c02358{letter-spacing:2.560000pt;}
.ws0_c02358{word-spacing:0.000000pt;}
._2_c02358{margin-left:-0.896000pt;}
._1_c02358{width:1.280000pt;}
._5_c02358{width:2.496000pt;}
._6_c02358{width:3.584000pt;}
._4_c02358{width:4.800000pt;}
._0_c02358{width:6.144000pt;}
._3_c02358{width:7.744000pt;}
._b_c02358{width:8.992000pt;}
._7_c02358{width:11.392000pt;}
._8_c02358{width:12.672000pt;}
._9_c02358{width:19.072000pt;}
._a_c02358{width:19.968000pt;}
.fs0_c02358{font-size:58.880000pt;}
.fs1_c02358{font-size:64.000000pt;}
.y0_c02358{bottom:0.000000pt;}
.y1d_c02358{bottom:3.680000pt;}
.y1a_c02358{bottom:4.000000pt;}
.y3_c02358{bottom:4.160000pt;}
.y1b_c02358{bottom:4.320000pt;}
.y18_c02358{bottom:4.640000pt;}
.y24_c02358{bottom:22.080000pt;}
.y23_c02358{bottom:22.400000pt;}
.y17_c02358{bottom:23.066667pt;}
.y2_c02358{bottom:37.152000pt;}
.y1_c02358{bottom:67.072000pt;}
.y2c_c02358{bottom:184.026667pt;}
.y2b_c02358{bottom:202.426667pt;}
.y2a_c02358{bottom:220.826667pt;}
.y29_c02358{bottom:239.226667pt;}
.y28_c02358{bottom:254.306667pt;}
.y27_c02358{bottom:273.346667pt;}
.y26_c02358{bottom:292.386667pt;}
.y25_c02358{bottom:311.426667pt;}
.y22_c02358{bottom:330.626667pt;}
.y21_c02358{bottom:368.066667pt;}
.y20_c02358{bottom:387.106667pt;}
.y1f_c02358{bottom:406.146667pt;}
.y1e_c02358{bottom:425.186667pt;}
.y1c_c02358{bottom:444.226667pt;}
.y16_c02358{bottom:463.426667pt;}
.y19_c02358{bottom:482.493333pt;}
.y15_c02358{bottom:505.533333pt;}
.y14_c02358{bottom:523.933333pt;}
.y13_c02358{bottom:542.333333pt;}
.y12_c02358{bottom:560.733333pt;}
.y11_c02358{bottom:588.093333pt;}
.y10_c02358{bottom:615.773333pt;}
.yf_c02358{bottom:643.293333pt;}
.ye_c02358{bottom:670.973333pt;}
.yd_c02358{bottom:698.493333pt;}
.yc_c02358{bottom:726.213333pt;}
.yb_c02358{bottom:753.733333pt;}
.ya_c02358{bottom:781.413333pt;}
.y9_c02358{bottom:808.933333pt;}
.y8_c02358{bottom:836.613333pt;}
.y7_c02358{bottom:864.133333pt;}
.y6_c02358{bottom:891.813333pt;}
.y5_c02358{bottom:919.333333pt;}
.y4_c02358{bottom:947.040000pt;}
.h6_c02358{height:18.400000pt;}
.h8_c02358{height:18.432000pt;}
.h2_c02358{height:20.000000pt;}
.h9_c02358{height:36.800000pt;}
.h5_c02358{height:37.472000pt;}
.h1_c02358{height:43.441250pt;}
.h4_c02358{height:57.375000pt;}
.h3_c02358{height:62.812500pt;}
.h7_c02358{height:64.500000pt;}
.h0_c02358{height:1056.000000pt;}
.w1_c02358{width:59.232000pt;}
.w4_c02358{width:70.240000pt;}
.w7_c02358{width:81.792000pt;}
.w5_c02358{width:83.872000pt;}
.w6_c02358{width:85.440000pt;}
.w2_c02358{width:226.266667pt;}
.w3_c02358{width:252.386667pt;}
.w0_c02358{width:816.000000pt;}
.x0_c02358{left:0.000000pt;}
.xf_c02358{left:7.040000pt;}
.x12_c02358{left:13.760000pt;}
.x3_c02358{left:14.720000pt;}
.x10_c02358{left:16.160000pt;}
.x14_c02358{left:19.040000pt;}
.x21_c02358{left:20.960000pt;}
.x1d_c02358{left:22.880000pt;}
.x18_c02358{left:31.040000pt;}
.xe_c02358{left:35.040000pt;}
.x17_c02358{left:36.800000pt;}
.x16_c02358{left:37.920000pt;}
.x20_c02358{left:40.800000pt;}
.x1f_c02358{left:41.920000pt;}
.x19_c02358{left:54.720000pt;}
.x1e_c02358{left:61.920000pt;}
.x1b_c02358{left:64.480000pt;}
.x15_c02358{left:66.240000pt;}
.x1c_c02358{left:68.480000pt;}
.x1a_c02358{left:70.720000pt;}
.x23_c02358{left:85.120000pt;}
.xa_c02358{left:91.680000pt;}
.xc_c02358{left:92.826667pt;}
.x22_c02358{left:95.360000pt;}
.x1_c02358{left:113.472000pt;}
.x9_c02358{left:159.386667pt;}
.x4_c02358{left:166.266667pt;}
.x6_c02358{left:260.346667pt;}
.x7_c02358{left:309.986667pt;}
.xb_c02358{left:386.306667pt;}
.x5_c02358{left:391.266667pt;}
.x8_c02358{left:434.466667pt;}
.x11_c02358{left:470.813333pt;}
.x13_c02358{left:556.893333pt;}
.xd_c02358{left:639.333333pt;}
.x2_c02358{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02359 {
    display:none;
  }
  .loading-indicator_c02359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02359 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02359 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02359" -> "#page-container .classname_c02359")
 */
.pf_c02359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02359 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02359 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02359 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02359 {overflow:visible;}
  }
}
.c_c02359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02359 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02359:after { /* webkit #35443 */
  content: '';
}
.t_c02359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02359 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02359 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02359 { /* info for Javascript */
  display:none;
}
.l_c02359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02359:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02359 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02359.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02359;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02359{font-family:ff1_c02359;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02359;src:url('chunks/assets/font_69fc7902ce728135717464eb.woff2')format("woff");}.ff2_c02359{font-family:ff2_c02359;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:ff3_c02359;src:url('chunks/assets/font_7bbd21f4fcd5089e5d5669f3.woff2')format("woff");}.ff3_c02359{font-family:ff3_c02359;line-height:1.112305;font-style:normal;font-weight: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_c02359;src:url('chunks/assets/font_7ccf8cadc880b3fe689fb1b3.woff2')format("woff");}.ff4_c02359{font-family:ff4_c02359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02359{vertical-align:0.000000px;}
.ls0_c02359{letter-spacing:0.000000px;}
.sc__c02359{text-shadow:none;}
.sc0_c02359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02359{-webkit-text-stroke:0px transparent;}
.sc0_c02359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02359{word-spacing:0.000000px;}
._1_c02359{margin-left:-1.080000px;}
._3_c02359{width:1.488000px;}
._0_c02359{width:2.880000px;}
._2_c02359{width:4.032000px;}
._9_c02359{width:5.472000px;}
._6_c02359{width:7.272000px;}
._d_c02359{width:11.880000px;}
._e_c02359{width:13.164000px;}
._7_c02359{width:15.768000px;}
._8_c02359{width:16.824000px;}
._a_c02359{width:19.368000px;}
._b_c02359{width:29.448000px;}
._c_c02359{width:30.696000px;}
._4_c02359{width:38.376000px;}
._5_c02359{width:39.432000px;}
.fc1_c02359{color:rgb(192,80,77);}
.fc3_c02359{color:rgb(255,255,255);}
.fc2_c02359{color:rgb(17,17,17);}
.fc0_c02359{color:rgb(0,0,0);}
.fs0_c02359{font-size:66.240000px;}
.fs1_c02359{font-size:72.000000px;}
.y0_c02359{bottom:0.000000px;}
.y1e_c02359{bottom:4.140000px;}
.y1b_c02359{bottom:4.500000px;}
.y3_c02359{bottom:4.680000px;}
.y1c_c02359{bottom:4.860000px;}
.y19_c02359{bottom:5.220000px;}
.y25_c02359{bottom:24.840000px;}
.y24_c02359{bottom:25.200000px;}
.y18_c02359{bottom:25.920000px;}
.y2_c02359{bottom:41.796000px;}
.y1_c02359{bottom:75.456000px;}
.y2f_c02359{bottom:113.616000px;}
.y2e_c02359{bottom:144.756000px;}
.y2d_c02359{bottom:165.630000px;}
.y2c_c02359{bottom:186.330000px;}
.y2b_c02359{bottom:207.030000px;}
.y2a_c02359{bottom:227.730000px;}
.y29_c02359{bottom:244.650000px;}
.y28_c02359{bottom:266.070000px;}
.y27_c02359{bottom:287.535000px;}
.y26_c02359{bottom:308.955000px;}
.y23_c02359{bottom:330.555000px;}
.y22_c02359{bottom:372.675000px;}
.y21_c02359{bottom:394.095000px;}
.y20_c02359{bottom:415.515000px;}
.y1f_c02359{bottom:436.935000px;}
.y1d_c02359{bottom:458.355000px;}
.y17_c02359{bottom:479.955000px;}
.y1a_c02359{bottom:501.375000px;}
.y16_c02359{bottom:537.405000px;}
.y15_c02359{bottom:558.285000px;}
.y14_c02359{bottom:578.985000px;}
.y13_c02359{bottom:599.685000px;}
.y12_c02359{bottom:630.645000px;}
.y11_c02359{bottom:661.605000px;}
.y10_c02359{bottom:692.745000px;}
.yf_c02359{bottom:723.705000px;}
.ye_c02359{bottom:754.845000px;}
.yd_c02359{bottom:785.805000px;}
.yc_c02359{bottom:816.990000px;}
.yb_c02359{bottom:847.950000px;}
.ya_c02359{bottom:879.090000px;}
.y9_c02359{bottom:910.050000px;}
.y8_c02359{bottom:941.190000px;}
.y7_c02359{bottom:972.150000px;}
.y6_c02359{bottom:1003.290000px;}
.y5_c02359{bottom:1034.250000px;}
.y4_c02359{bottom:1065.420000px;}
.h6_c02359{height:20.700000px;}
.h9_c02359{height:20.736000px;}
.h2_c02359{height:22.500000px;}
.h8_c02359{height:41.400000px;}
.h5_c02359{height:42.120000px;}
.h1_c02359{height:48.871406px;}
.h4_c02359{height:64.546875px;}
.h3_c02359{height:70.664062px;}
.h7_c02359{height:72.562500px;}
.h0_c02359{height:1188.000000px;}
.w1_c02359{width:66.636000px;}
.w4_c02359{width:79.020000px;}
.w7_c02359{width:92.016000px;}
.w5_c02359{width:94.356000px;}
.w6_c02359{width:96.120000px;}
.w2_c02359{width:254.550000px;}
.w3_c02359{width:283.935000px;}
.w0_c02359{width:918.000000px;}
.x0_c02359{left:0.000000px;}
.xf_c02359{left:7.920000px;}
.x12_c02359{left:15.480000px;}
.x3_c02359{left:16.560000px;}
.x10_c02359{left:18.180000px;}
.x14_c02359{left:21.420000px;}
.x21_c02359{left:23.580000px;}
.x1d_c02359{left:25.740000px;}
.x18_c02359{left:34.920000px;}
.xe_c02359{left:39.420000px;}
.x17_c02359{left:41.400000px;}
.x16_c02359{left:42.660000px;}
.x20_c02359{left:45.900000px;}
.x1f_c02359{left:47.160000px;}
.x19_c02359{left:61.560000px;}
.x1e_c02359{left:69.660000px;}
.x1b_c02359{left:72.540000px;}
.x15_c02359{left:74.520000px;}
.x1c_c02359{left:77.040000px;}
.x1a_c02359{left:79.560000px;}
.x23_c02359{left:95.760000px;}
.xa_c02359{left:103.140000px;}
.xc_c02359{left:104.430000px;}
.x22_c02359{left:107.280000px;}
.x1_c02359{left:127.656000px;}
.x9_c02359{left:179.310000px;}
.x4_c02359{left:187.050000px;}
.x7_c02359{left:295.815000px;}
.x8_c02359{left:348.735000px;}
.xb_c02359{left:434.595000px;}
.x6_c02359{left:440.175000px;}
.x5_c02359{left:488.775000px;}
.x11_c02359{left:529.665000px;}
.x13_c02359{left:626.505000px;}
.xd_c02359{left:719.250000px;}
.x2_c02359{left:820.950000px;}
@media print{
.v0_c02359{vertical-align:0.000000pt;}
.ls0_c02359{letter-spacing:0.000000pt;}
.ws0_c02359{word-spacing:0.000000pt;}
._1_c02359{margin-left:-0.960000pt;}
._3_c02359{width:1.322667pt;}
._0_c02359{width:2.560000pt;}
._2_c02359{width:3.584000pt;}
._9_c02359{width:4.864000pt;}
._6_c02359{width:6.464000pt;}
._d_c02359{width:10.560000pt;}
._e_c02359{width:11.701333pt;}
._7_c02359{width:14.016000pt;}
._8_c02359{width:14.954667pt;}
._a_c02359{width:17.216000pt;}
._b_c02359{width:26.176000pt;}
._c_c02359{width:27.285333pt;}
._4_c02359{width:34.112000pt;}
._5_c02359{width:35.050667pt;}
.fs0_c02359{font-size:58.880000pt;}
.fs1_c02359{font-size:64.000000pt;}
.y0_c02359{bottom:0.000000pt;}
.y1e_c02359{bottom:3.680000pt;}
.y1b_c02359{bottom:4.000000pt;}
.y3_c02359{bottom:4.160000pt;}
.y1c_c02359{bottom:4.320000pt;}
.y19_c02359{bottom:4.640000pt;}
.y25_c02359{bottom:22.080000pt;}
.y24_c02359{bottom:22.400000pt;}
.y18_c02359{bottom:23.040000pt;}
.y2_c02359{bottom:37.152000pt;}
.y1_c02359{bottom:67.072000pt;}
.y2f_c02359{bottom:100.992000pt;}
.y2e_c02359{bottom:128.672000pt;}
.y2d_c02359{bottom:147.226667pt;}
.y2c_c02359{bottom:165.626667pt;}
.y2b_c02359{bottom:184.026667pt;}
.y2a_c02359{bottom:202.426667pt;}
.y29_c02359{bottom:217.466667pt;}
.y28_c02359{bottom:236.506667pt;}
.y27_c02359{bottom:255.586667pt;}
.y26_c02359{bottom:274.626667pt;}
.y23_c02359{bottom:293.826667pt;}
.y22_c02359{bottom:331.266667pt;}
.y21_c02359{bottom:350.306667pt;}
.y20_c02359{bottom:369.346667pt;}
.y1f_c02359{bottom:388.386667pt;}
.y1d_c02359{bottom:407.426667pt;}
.y17_c02359{bottom:426.626667pt;}
.y1a_c02359{bottom:445.666667pt;}
.y16_c02359{bottom:477.693333pt;}
.y15_c02359{bottom:496.253333pt;}
.y14_c02359{bottom:514.653333pt;}
.y13_c02359{bottom:533.053333pt;}
.y12_c02359{bottom:560.573333pt;}
.y11_c02359{bottom:588.093333pt;}
.y10_c02359{bottom:615.773333pt;}
.yf_c02359{bottom:643.293333pt;}
.ye_c02359{bottom:670.973333pt;}
.yd_c02359{bottom:698.493333pt;}
.yc_c02359{bottom:726.213333pt;}
.yb_c02359{bottom:753.733333pt;}
.ya_c02359{bottom:781.413333pt;}
.y9_c02359{bottom:808.933333pt;}
.y8_c02359{bottom:836.613333pt;}
.y7_c02359{bottom:864.133333pt;}
.y6_c02359{bottom:891.813333pt;}
.y5_c02359{bottom:919.333333pt;}
.y4_c02359{bottom:947.040000pt;}
.h6_c02359{height:18.400000pt;}
.h9_c02359{height:18.432000pt;}
.h2_c02359{height:20.000000pt;}
.h8_c02359{height:36.800000pt;}
.h5_c02359{height:37.440000pt;}
.h1_c02359{height:43.441250pt;}
.h4_c02359{height:57.375000pt;}
.h3_c02359{height:62.812500pt;}
.h7_c02359{height:64.500000pt;}
.h0_c02359{height:1056.000000pt;}
.w1_c02359{width:59.232000pt;}
.w4_c02359{width:70.240000pt;}
.w7_c02359{width:81.792000pt;}
.w5_c02359{width:83.872000pt;}
.w6_c02359{width:85.440000pt;}
.w2_c02359{width:226.266667pt;}
.w3_c02359{width:252.386667pt;}
.w0_c02359{width:816.000000pt;}
.x0_c02359{left:0.000000pt;}
.xf_c02359{left:7.040000pt;}
.x12_c02359{left:13.760000pt;}
.x3_c02359{left:14.720000pt;}
.x10_c02359{left:16.160000pt;}
.x14_c02359{left:19.040000pt;}
.x21_c02359{left:20.960000pt;}
.x1d_c02359{left:22.880000pt;}
.x18_c02359{left:31.040000pt;}
.xe_c02359{left:35.040000pt;}
.x17_c02359{left:36.800000pt;}
.x16_c02359{left:37.920000pt;}
.x20_c02359{left:40.800000pt;}
.x1f_c02359{left:41.920000pt;}
.x19_c02359{left:54.720000pt;}
.x1e_c02359{left:61.920000pt;}
.x1b_c02359{left:64.480000pt;}
.x15_c02359{left:66.240000pt;}
.x1c_c02359{left:68.480000pt;}
.x1a_c02359{left:70.720000pt;}
.x23_c02359{left:85.120000pt;}
.xa_c02359{left:91.680000pt;}
.xc_c02359{left:92.826667pt;}
.x22_c02359{left:95.360000pt;}
.x1_c02359{left:113.472000pt;}
.x9_c02359{left:159.386667pt;}
.x4_c02359{left:166.266667pt;}
.x7_c02359{left:262.946667pt;}
.x8_c02359{left:309.986667pt;}
.xb_c02359{left:386.306667pt;}
.x6_c02359{left:391.266667pt;}
.x5_c02359{left:434.466667pt;}
.x11_c02359{left:470.813333pt;}
.x13_c02359{left:556.893333pt;}
.xd_c02359{left:639.333333pt;}
.x2_c02359{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02360 {
    display:none;
  }
  .loading-indicator_c02360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02360" -> "#page-container .classname_c02360")
 */
.pf_c02360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02360 {overflow:visible;}
  }
}
.c_c02360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02360:after { /* webkit #35443 */
  content: '';
}
.t_c02360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02360 { /* info for Javascript */
  display:none;
}
.l_c02360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02360:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02360 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02360.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02360;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02360{font-family:ff1_c02360;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02360;src:url('chunks/assets/font_7334d1dfc41bc19ccb4269f7.woff2')format("woff");}.ff2_c02360{font-family:ff2_c02360;line-height:1.112305;font-style:normal;font-weight: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_c02360;src:url('chunks/assets/font_d1d0aefa5fe1c1ebdd43d701.woff2')format("woff");}.ff3_c02360{font-family:ff3_c02360;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_c02360;src:url('chunks/assets/font_1d91c0fbbf663f18ea072eb5.woff2')format("woff");}.ff4_c02360{font-family:ff4_c02360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02360{vertical-align:0.000000px;}
.ls0_c02360{letter-spacing:0.000000px;}
.sc__c02360{text-shadow:none;}
.sc0_c02360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02360{-webkit-text-stroke:0px transparent;}
.sc0_c02360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02360{word-spacing:0.000000px;}
._2_c02360{margin-left:-1.152000px;}
._1_c02360{width:1.080000px;}
._8_c02360{width:2.568000px;}
._9_c02360{width:3.744000px;}
._3_c02360{width:5.544000px;}
._4_c02360{width:6.552000px;}
._5_c02360{width:7.704000px;}
._0_c02360{width:10.512000px;}
._7_c02360{width:12.096000px;}
._6_c02360{width:13.320000px;}
.fc1_c02360{color:rgb(192,80,77);}
.fc3_c02360{color:rgb(255,255,255);}
.fc2_c02360{color:rgb(17,17,17);}
.fc0_c02360{color:rgb(0,0,0);}
.fs0_c02360{font-size:66.240000px;}
.fs1_c02360{font-size:72.000000px;}
.y0_c02360{bottom:0.000000px;}
.y1b_c02360{bottom:4.140000px;}
.y1e_c02360{bottom:4.170000px;}
.y18_c02360{bottom:4.500000px;}
.y1d_c02360{bottom:4.530000px;}
.y3_c02360{bottom:4.680000px;}
.y19_c02360{bottom:4.860000px;}
.y16_c02360{bottom:5.220000px;}
.y24_c02360{bottom:24.840000px;}
.y23_c02360{bottom:25.200000px;}
.y15_c02360{bottom:25.920000px;}
.y2_c02360{bottom:41.796000px;}
.y1_c02360{bottom:75.456000px;}
.y2c_c02360{bottom:258.690000px;}
.y2b_c02360{bottom:279.435000px;}
.y2a_c02360{bottom:300.135000px;}
.y29_c02360{bottom:320.835000px;}
.y28_c02360{bottom:337.755000px;}
.y27_c02360{bottom:359.355000px;}
.y26_c02360{bottom:380.775000px;}
.y25_c02360{bottom:402.195000px;}
.y22_c02360{bottom:423.615000px;}
.y21_c02360{bottom:465.735000px;}
.y20_c02360{bottom:487.155000px;}
.y1f_c02360{bottom:508.755000px;}
.y1c_c02360{bottom:530.175000px;}
.y1a_c02360{bottom:551.625000px;}
.y14_c02360{bottom:573.045000px;}
.y17_c02360{bottom:594.465000px;}
.y13_c02360{bottom:630.645000px;}
.y12_c02360{bottom:651.525000px;}
.y11_c02360{bottom:672.225000px;}
.y10_c02360{bottom:692.925000px;}
.yf_c02360{bottom:723.705000px;}
.ye_c02360{bottom:754.845000px;}
.yd_c02360{bottom:785.805000px;}
.yc_c02360{bottom:816.990000px;}
.yb_c02360{bottom:847.950000px;}
.ya_c02360{bottom:879.090000px;}
.y9_c02360{bottom:910.050000px;}
.y8_c02360{bottom:941.190000px;}
.y7_c02360{bottom:972.150000px;}
.y6_c02360{bottom:1003.290000px;}
.y5_c02360{bottom:1034.250000px;}
.y4_c02360{bottom:1065.420000px;}
.h6_c02360{height:20.700000px;}
.h8_c02360{height:20.736000px;}
.h2_c02360{height:22.500000px;}
.h9_c02360{height:41.400000px;}
.h5_c02360{height:42.120000px;}
.h1_c02360{height:48.871406px;}
.h3_c02360{height:64.546875px;}
.h4_c02360{height:70.664062px;}
.h7_c02360{height:72.562500px;}
.h0_c02360{height:1188.000000px;}
.w1_c02360{width:66.636000px;}
.w4_c02360{width:79.020000px;}
.w7_c02360{width:92.016000px;}
.w5_c02360{width:94.356000px;}
.w6_c02360{width:96.120000px;}
.w2_c02360{width:254.550000px;}
.w3_c02360{width:283.935000px;}
.w0_c02360{width:918.000000px;}
.x0_c02360{left:0.000000px;}
.xe_c02360{left:7.920000px;}
.x11_c02360{left:15.480000px;}
.x3_c02360{left:16.560000px;}
.xf_c02360{left:18.180000px;}
.x13_c02360{left:21.420000px;}
.x20_c02360{left:23.580000px;}
.x1c_c02360{left:25.740000px;}
.x17_c02360{left:34.920000px;}
.xd_c02360{left:39.420000px;}
.x16_c02360{left:41.400000px;}
.x15_c02360{left:42.660000px;}
.x1f_c02360{left:45.900000px;}
.x1e_c02360{left:47.160000px;}
.x18_c02360{left:61.560000px;}
.x1d_c02360{left:69.660000px;}
.x1a_c02360{left:72.540000px;}
.x14_c02360{left:74.520000px;}
.x1b_c02360{left:77.040000px;}
.x19_c02360{left:79.560000px;}
.x22_c02360{left:95.760000px;}
.x9_c02360{left:103.140000px;}
.xb_c02360{left:104.430000px;}
.x21_c02360{left:107.280000px;}
.x1_c02360{left:127.656000px;}
.x8_c02360{left:179.310000px;}
.x4_c02360{left:187.050000px;}
.x6_c02360{left:295.815000px;}
.x7_c02360{left:348.735000px;}
.xa_c02360{left:434.595000px;}
.x5_c02360{left:440.175000px;}
.x10_c02360{left:529.665000px;}
.x12_c02360{left:626.505000px;}
.xc_c02360{left:719.250000px;}
.x2_c02360{left:820.950000px;}
@media print{
.v0_c02360{vertical-align:0.000000pt;}
.ls0_c02360{letter-spacing:0.000000pt;}
.ws0_c02360{word-spacing:0.000000pt;}
._2_c02360{margin-left:-1.024000pt;}
._1_c02360{width:0.960000pt;}
._8_c02360{width:2.282667pt;}
._9_c02360{width:3.328000pt;}
._3_c02360{width:4.928000pt;}
._4_c02360{width:5.824000pt;}
._5_c02360{width:6.848000pt;}
._0_c02360{width:9.344000pt;}
._7_c02360{width:10.752000pt;}
._6_c02360{width:11.840000pt;}
.fs0_c02360{font-size:58.880000pt;}
.fs1_c02360{font-size:64.000000pt;}
.y0_c02360{bottom:0.000000pt;}
.y1b_c02360{bottom:3.680000pt;}
.y1e_c02360{bottom:3.706667pt;}
.y18_c02360{bottom:4.000000pt;}
.y1d_c02360{bottom:4.026667pt;}
.y3_c02360{bottom:4.160000pt;}
.y19_c02360{bottom:4.320000pt;}
.y16_c02360{bottom:4.640000pt;}
.y24_c02360{bottom:22.080000pt;}
.y23_c02360{bottom:22.400000pt;}
.y15_c02360{bottom:23.040000pt;}
.y2_c02360{bottom:37.152000pt;}
.y1_c02360{bottom:67.072000pt;}
.y2c_c02360{bottom:229.946667pt;}
.y2b_c02360{bottom:248.386667pt;}
.y2a_c02360{bottom:266.786667pt;}
.y29_c02360{bottom:285.186667pt;}
.y28_c02360{bottom:300.226667pt;}
.y27_c02360{bottom:319.426667pt;}
.y26_c02360{bottom:338.466667pt;}
.y25_c02360{bottom:357.506667pt;}
.y22_c02360{bottom:376.546667pt;}
.y21_c02360{bottom:413.986667pt;}
.y20_c02360{bottom:433.026667pt;}
.y1f_c02360{bottom:452.226667pt;}
.y1c_c02360{bottom:471.266667pt;}
.y1a_c02360{bottom:490.333333pt;}
.y14_c02360{bottom:509.373333pt;}
.y17_c02360{bottom:528.413333pt;}
.y13_c02360{bottom:560.573333pt;}
.y12_c02360{bottom:579.133333pt;}
.y11_c02360{bottom:597.533333pt;}
.y10_c02360{bottom:615.933333pt;}
.yf_c02360{bottom:643.293333pt;}
.ye_c02360{bottom:670.973333pt;}
.yd_c02360{bottom:698.493333pt;}
.yc_c02360{bottom:726.213333pt;}
.yb_c02360{bottom:753.733333pt;}
.ya_c02360{bottom:781.413333pt;}
.y9_c02360{bottom:808.933333pt;}
.y8_c02360{bottom:836.613333pt;}
.y7_c02360{bottom:864.133333pt;}
.y6_c02360{bottom:891.813333pt;}
.y5_c02360{bottom:919.333333pt;}
.y4_c02360{bottom:947.040000pt;}
.h6_c02360{height:18.400000pt;}
.h8_c02360{height:18.432000pt;}
.h2_c02360{height:20.000000pt;}
.h9_c02360{height:36.800000pt;}
.h5_c02360{height:37.440000pt;}
.h1_c02360{height:43.441250pt;}
.h3_c02360{height:57.375000pt;}
.h4_c02360{height:62.812500pt;}
.h7_c02360{height:64.500000pt;}
.h0_c02360{height:1056.000000pt;}
.w1_c02360{width:59.232000pt;}
.w4_c02360{width:70.240000pt;}
.w7_c02360{width:81.792000pt;}
.w5_c02360{width:83.872000pt;}
.w6_c02360{width:85.440000pt;}
.w2_c02360{width:226.266667pt;}
.w3_c02360{width:252.386667pt;}
.w0_c02360{width:816.000000pt;}
.x0_c02360{left:0.000000pt;}
.xe_c02360{left:7.040000pt;}
.x11_c02360{left:13.760000pt;}
.x3_c02360{left:14.720000pt;}
.xf_c02360{left:16.160000pt;}
.x13_c02360{left:19.040000pt;}
.x20_c02360{left:20.960000pt;}
.x1c_c02360{left:22.880000pt;}
.x17_c02360{left:31.040000pt;}
.xd_c02360{left:35.040000pt;}
.x16_c02360{left:36.800000pt;}
.x15_c02360{left:37.920000pt;}
.x1f_c02360{left:40.800000pt;}
.x1e_c02360{left:41.920000pt;}
.x18_c02360{left:54.720000pt;}
.x1d_c02360{left:61.920000pt;}
.x1a_c02360{left:64.480000pt;}
.x14_c02360{left:66.240000pt;}
.x1b_c02360{left:68.480000pt;}
.x19_c02360{left:70.720000pt;}
.x22_c02360{left:85.120000pt;}
.x9_c02360{left:91.680000pt;}
.xb_c02360{left:92.826667pt;}
.x21_c02360{left:95.360000pt;}
.x1_c02360{left:113.472000pt;}
.x8_c02360{left:159.386667pt;}
.x4_c02360{left:166.266667pt;}
.x6_c02360{left:262.946667pt;}
.x7_c02360{left:309.986667pt;}
.xa_c02360{left:386.306667pt;}
.x5_c02360{left:391.266667pt;}
.x10_c02360{left:470.813333pt;}
.x12_c02360{left:556.893333pt;}
.xc_c02360{left:639.333333pt;}
.x2_c02360{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02361 {
    display:none;
  }
  .loading-indicator_c02361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02361 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02361 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02361" -> "#page-container .classname_c02361")
 */
.pf_c02361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02361 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02361 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02361 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02361 {overflow:visible;}
  }
}
.c_c02361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02361 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02361:after { /* webkit #35443 */
  content: '';
}
.t_c02361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02361 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02361 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02361 { /* info for Javascript */
  display:none;
}
.l_c02361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02361:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02361 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02361.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02361;src:url('chunks/assets/font_812c9547785987b5c4de0bcd.woff2')format("woff");}.ff1_c02361{font-family:ff1_c02361;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02361;src:url('chunks/assets/font_02d6aea7b0297c7283f589eb.woff2')format("woff");}.ff2_c02361{font-family:ff2_c02361;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:ff3_c02361;src:url('chunks/assets/font_b9a04380fb67052012237b54.woff2')format("woff");}.ff3_c02361{font-family:ff3_c02361;line-height:1.112305;font-style:normal;font-weight: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_c02361;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff4_c02361{font-family:ff4_c02361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02361{vertical-align:0.000000px;}
.ls0_c02361{letter-spacing:0.000000px;}
.sc__c02361{text-shadow:none;}
.sc0_c02361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02361{-webkit-text-stroke:0px transparent;}
.sc0_c02361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02361{word-spacing:0.000000px;}
._4_c02361{margin-left:-1.440000px;}
._1_c02361{width:1.584000px;}
._3_c02361{width:3.384000px;}
._5_c02361{width:5.400000px;}
._6_c02361{width:6.552000px;}
._7_c02361{width:7.848000px;}
._8_c02361{width:9.144000px;}
._0_c02361{width:14.616000px;}
._2_c02361{width:15.696000px;}
.fc1_c02361{color:rgb(192,80,77);}
.fc3_c02361{color:rgb(255,255,255);}
.fc2_c02361{color:rgb(17,17,17);}
.fc0_c02361{color:rgb(0,0,0);}
.fs0_c02361{font-size:66.240000px;}
.fs1_c02361{font-size:72.000000px;}
.y0_c02361{bottom:0.000000px;}
.y19_c02361{bottom:4.140000px;}
.y16_c02361{bottom:4.500000px;}
.y3_c02361{bottom:4.680000px;}
.y17_c02361{bottom:4.860000px;}
.y14_c02361{bottom:5.220000px;}
.y20_c02361{bottom:24.840000px;}
.y1f_c02361{bottom:25.200000px;}
.y13_c02361{bottom:25.920000px;}
.y2_c02361{bottom:41.796000px;}
.y1_c02361{bottom:75.456000px;}
.y28_c02361{bottom:320.835000px;}
.y27_c02361{bottom:341.535000px;}
.y26_c02361{bottom:362.235000px;}
.y25_c02361{bottom:382.935000px;}
.y24_c02361{bottom:399.855000px;}
.y23_c02361{bottom:421.455000px;}
.y22_c02361{bottom:442.875000px;}
.y21_c02361{bottom:464.295000px;}
.y1e_c02361{bottom:485.715000px;}
.y1d_c02361{bottom:527.835000px;}
.y1c_c02361{bottom:549.285000px;}
.y1b_c02361{bottom:570.705000px;}
.y1a_c02361{bottom:592.305000px;}
.y18_c02361{bottom:613.725000px;}
.y12_c02361{bottom:635.145000px;}
.y15_c02361{bottom:656.565000px;}
.y11_c02361{bottom:692.745000px;}
.y10_c02361{bottom:713.625000px;}
.yf_c02361{bottom:734.325000px;}
.ye_c02361{bottom:755.025000px;}
.yd_c02361{bottom:785.805000px;}
.yc_c02361{bottom:816.990000px;}
.yb_c02361{bottom:847.950000px;}
.ya_c02361{bottom:879.090000px;}
.y9_c02361{bottom:910.050000px;}
.y8_c02361{bottom:941.190000px;}
.y7_c02361{bottom:972.150000px;}
.y6_c02361{bottom:1003.290000px;}
.y5_c02361{bottom:1034.250000px;}
.y4_c02361{bottom:1065.420000px;}
.h6_c02361{height:20.700000px;}
.h8_c02361{height:20.736000px;}
.h2_c02361{height:22.500000px;}
.h9_c02361{height:41.400000px;}
.h5_c02361{height:42.120000px;}
.h1_c02361{height:48.871406px;}
.h4_c02361{height:64.546875px;}
.h3_c02361{height:70.664062px;}
.h7_c02361{height:72.562500px;}
.h0_c02361{height:1188.000000px;}
.w1_c02361{width:66.636000px;}
.w4_c02361{width:79.020000px;}
.w7_c02361{width:92.016000px;}
.w5_c02361{width:94.356000px;}
.w6_c02361{width:96.120000px;}
.w2_c02361{width:254.550000px;}
.w3_c02361{width:283.935000px;}
.w0_c02361{width:918.000000px;}
.x0_c02361{left:0.000000px;}
.xe_c02361{left:7.920000px;}
.x11_c02361{left:15.480000px;}
.x3_c02361{left:16.560000px;}
.xf_c02361{left:18.180000px;}
.x13_c02361{left:21.420000px;}
.x20_c02361{left:23.580000px;}
.x1c_c02361{left:25.740000px;}
.x17_c02361{left:34.920000px;}
.xd_c02361{left:39.420000px;}
.x16_c02361{left:41.400000px;}
.x15_c02361{left:42.660000px;}
.x1f_c02361{left:45.900000px;}
.x1e_c02361{left:47.160000px;}
.x18_c02361{left:61.560000px;}
.x1d_c02361{left:69.660000px;}
.x1a_c02361{left:72.540000px;}
.x14_c02361{left:74.520000px;}
.x1b_c02361{left:77.040000px;}
.x19_c02361{left:79.560000px;}
.x22_c02361{left:95.760000px;}
.x9_c02361{left:103.140000px;}
.xb_c02361{left:104.430000px;}
.x21_c02361{left:107.280000px;}
.x1_c02361{left:127.656000px;}
.x8_c02361{left:179.310000px;}
.x4_c02361{left:187.050000px;}
.x6_c02361{left:294.690000px;}
.x7_c02361{left:348.735000px;}
.xa_c02361{left:434.595000px;}
.x5_c02361{left:440.175000px;}
.x10_c02361{left:529.665000px;}
.x12_c02361{left:626.505000px;}
.xc_c02361{left:719.250000px;}
.x2_c02361{left:820.950000px;}
@media print{
.v0_c02361{vertical-align:0.000000pt;}
.ls0_c02361{letter-spacing:0.000000pt;}
.ws0_c02361{word-spacing:0.000000pt;}
._4_c02361{margin-left:-1.280000pt;}
._1_c02361{width:1.408000pt;}
._3_c02361{width:3.008000pt;}
._5_c02361{width:4.800000pt;}
._6_c02361{width:5.824000pt;}
._7_c02361{width:6.976000pt;}
._8_c02361{width:8.128000pt;}
._0_c02361{width:12.992000pt;}
._2_c02361{width:13.952000pt;}
.fs0_c02361{font-size:58.880000pt;}
.fs1_c02361{font-size:64.000000pt;}
.y0_c02361{bottom:0.000000pt;}
.y19_c02361{bottom:3.680000pt;}
.y16_c02361{bottom:4.000000pt;}
.y3_c02361{bottom:4.160000pt;}
.y17_c02361{bottom:4.320000pt;}
.y14_c02361{bottom:4.640000pt;}
.y20_c02361{bottom:22.080000pt;}
.y1f_c02361{bottom:22.400000pt;}
.y13_c02361{bottom:23.040000pt;}
.y2_c02361{bottom:37.152000pt;}
.y1_c02361{bottom:67.072000pt;}
.y28_c02361{bottom:285.186667pt;}
.y27_c02361{bottom:303.586667pt;}
.y26_c02361{bottom:321.986667pt;}
.y25_c02361{bottom:340.386667pt;}
.y24_c02361{bottom:355.426667pt;}
.y23_c02361{bottom:374.626667pt;}
.y22_c02361{bottom:393.666667pt;}
.y21_c02361{bottom:412.706667pt;}
.y1e_c02361{bottom:431.746667pt;}
.y1d_c02361{bottom:469.186667pt;}
.y1c_c02361{bottom:488.253333pt;}
.y1b_c02361{bottom:507.293333pt;}
.y1a_c02361{bottom:526.493333pt;}
.y18_c02361{bottom:545.533333pt;}
.y12_c02361{bottom:564.573333pt;}
.y15_c02361{bottom:583.613333pt;}
.y11_c02361{bottom:615.773333pt;}
.y10_c02361{bottom:634.333333pt;}
.yf_c02361{bottom:652.733333pt;}
.ye_c02361{bottom:671.133333pt;}
.yd_c02361{bottom:698.493333pt;}
.yc_c02361{bottom:726.213333pt;}
.yb_c02361{bottom:753.733333pt;}
.ya_c02361{bottom:781.413333pt;}
.y9_c02361{bottom:808.933333pt;}
.y8_c02361{bottom:836.613333pt;}
.y7_c02361{bottom:864.133333pt;}
.y6_c02361{bottom:891.813333pt;}
.y5_c02361{bottom:919.333333pt;}
.y4_c02361{bottom:947.040000pt;}
.h6_c02361{height:18.400000pt;}
.h8_c02361{height:18.432000pt;}
.h2_c02361{height:20.000000pt;}
.h9_c02361{height:36.800000pt;}
.h5_c02361{height:37.440000pt;}
.h1_c02361{height:43.441250pt;}
.h4_c02361{height:57.375000pt;}
.h3_c02361{height:62.812500pt;}
.h7_c02361{height:64.500000pt;}
.h0_c02361{height:1056.000000pt;}
.w1_c02361{width:59.232000pt;}
.w4_c02361{width:70.240000pt;}
.w7_c02361{width:81.792000pt;}
.w5_c02361{width:83.872000pt;}
.w6_c02361{width:85.440000pt;}
.w2_c02361{width:226.266667pt;}
.w3_c02361{width:252.386667pt;}
.w0_c02361{width:816.000000pt;}
.x0_c02361{left:0.000000pt;}
.xe_c02361{left:7.040000pt;}
.x11_c02361{left:13.760000pt;}
.x3_c02361{left:14.720000pt;}
.xf_c02361{left:16.160000pt;}
.x13_c02361{left:19.040000pt;}
.x20_c02361{left:20.960000pt;}
.x1c_c02361{left:22.880000pt;}
.x17_c02361{left:31.040000pt;}
.xd_c02361{left:35.040000pt;}
.x16_c02361{left:36.800000pt;}
.x15_c02361{left:37.920000pt;}
.x1f_c02361{left:40.800000pt;}
.x1e_c02361{left:41.920000pt;}
.x18_c02361{left:54.720000pt;}
.x1d_c02361{left:61.920000pt;}
.x1a_c02361{left:64.480000pt;}
.x14_c02361{left:66.240000pt;}
.x1b_c02361{left:68.480000pt;}
.x19_c02361{left:70.720000pt;}
.x22_c02361{left:85.120000pt;}
.x9_c02361{left:91.680000pt;}
.xb_c02361{left:92.826667pt;}
.x21_c02361{left:95.360000pt;}
.x1_c02361{left:113.472000pt;}
.x8_c02361{left:159.386667pt;}
.x4_c02361{left:166.266667pt;}
.x6_c02361{left:261.946667pt;}
.x7_c02361{left:309.986667pt;}
.xa_c02361{left:386.306667pt;}
.x5_c02361{left:391.266667pt;}
.x10_c02361{left:470.813333pt;}
.x12_c02361{left:556.893333pt;}
.xc_c02361{left:639.333333pt;}
.x2_c02361{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02362 {
    display:none;
  }
  .loading-indicator_c02362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02362 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02362 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02362" -> "#page-container .classname_c02362")
 */
.pf_c02362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02362 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02362 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02362 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02362 {overflow:visible;}
  }
}
.c_c02362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02362 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02362:after { /* webkit #35443 */
  content: '';
}
.t_c02362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02362 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02362 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02362 { /* info for Javascript */
  display:none;
}
.l_c02362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02362:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02362 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02362.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02362;src:url('chunks/assets/font_5d8a0bea940881557ea3191c.woff2')format("woff");}.ff1_c02362{font-family:ff1_c02362;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02362;src:url('chunks/assets/font_6182d4d84bfd863f0f3b8e72.woff2')format("woff");}.ff2_c02362{font-family:ff2_c02362;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:ff3_c02362;src:url('chunks/assets/font_7fc15b1abb11a21ef9dcc352.woff2')format("woff");}.ff3_c02362{font-family:ff3_c02362;line-height:1.112305;font-style:normal;font-weight: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_c02362;src:url('chunks/assets/font_d39b4bbe7ec978f3c36d75f6.woff2')format("woff");}.ff4_c02362{font-family:ff4_c02362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02362{vertical-align:0.000000px;}
.ls0_c02362{letter-spacing:0.000000px;}
.sc__c02362{text-shadow:none;}
.sc0_c02362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02362{-webkit-text-stroke:0px transparent;}
.sc0_c02362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02362{word-spacing:0.000000px;}
._2_c02362{margin-left:-1.296000px;}
._4_c02362{width:1.152000px;}
._0_c02362{width:2.160000px;}
._1_c02362{width:3.528000px;}
._3_c02362{width:4.824000px;}
._5_c02362{width:5.976000px;}
._6_c02362{width:7.128000px;}
.fc1_c02362{color:rgb(192,80,77);}
.fc3_c02362{color:rgb(255,255,255);}
.fc2_c02362{color:rgb(17,17,17);}
.fc0_c02362{color:rgb(0,0,0);}
.fs0_c02362{font-size:66.240000px;}
.fs1_c02362{font-size:72.000000px;}
.y0_c02362{bottom:0.000000px;}
.y17_c02362{bottom:4.140000px;}
.y14_c02362{bottom:4.500000px;}
.y3_c02362{bottom:4.680000px;}
.y15_c02362{bottom:4.860000px;}
.y12_c02362{bottom:5.220000px;}
.y1e_c02362{bottom:24.840000px;}
.y1d_c02362{bottom:25.200000px;}
.y11_c02362{bottom:25.920000px;}
.y2_c02362{bottom:41.796000px;}
.y1_c02362{bottom:75.456000px;}
.y27_c02362{bottom:362.055000px;}
.y26_c02362{bottom:382.935000px;}
.y25_c02362{bottom:403.635000px;}
.y24_c02362{bottom:424.335000px;}
.y23_c02362{bottom:445.035000px;}
.y22_c02362{bottom:461.955000px;}
.y21_c02362{bottom:483.555000px;}
.y20_c02362{bottom:504.975000px;}
.y1f_c02362{bottom:526.395000px;}
.y1c_c02362{bottom:547.845000px;}
.y1b_c02362{bottom:589.965000px;}
.y1a_c02362{bottom:611.385000px;}
.y19_c02362{bottom:632.805000px;}
.y18_c02362{bottom:654.405000px;}
.y16_c02362{bottom:675.825000px;}
.y10_c02362{bottom:697.245000px;}
.y13_c02362{bottom:718.665000px;}
.yf_c02362{bottom:754.845000px;}
.ye_c02362{bottom:775.725000px;}
.yd_c02362{bottom:796.470000px;}
.yc_c02362{bottom:817.170000px;}
.yb_c02362{bottom:847.950000px;}
.ya_c02362{bottom:879.090000px;}
.y9_c02362{bottom:910.050000px;}
.y8_c02362{bottom:941.190000px;}
.y7_c02362{bottom:972.150000px;}
.y6_c02362{bottom:1003.290000px;}
.y5_c02362{bottom:1034.250000px;}
.y4_c02362{bottom:1065.420000px;}
.h6_c02362{height:20.700000px;}
.h9_c02362{height:20.736000px;}
.h2_c02362{height:22.500000px;}
.h8_c02362{height:41.400000px;}
.h5_c02362{height:42.120000px;}
.h1_c02362{height:48.871406px;}
.h4_c02362{height:64.546875px;}
.h3_c02362{height:70.664062px;}
.h7_c02362{height:72.562500px;}
.h0_c02362{height:1188.000000px;}
.w1_c02362{width:66.636000px;}
.w4_c02362{width:79.020000px;}
.w7_c02362{width:92.016000px;}
.w5_c02362{width:94.356000px;}
.w6_c02362{width:96.120000px;}
.w2_c02362{width:254.550000px;}
.w3_c02362{width:283.935000px;}
.w0_c02362{width:918.000000px;}
.x0_c02362{left:0.000000px;}
.xe_c02362{left:7.920000px;}
.x11_c02362{left:15.480000px;}
.x3_c02362{left:16.560000px;}
.xf_c02362{left:18.180000px;}
.x13_c02362{left:21.420000px;}
.x20_c02362{left:23.580000px;}
.x1c_c02362{left:25.740000px;}
.x17_c02362{left:34.920000px;}
.xd_c02362{left:39.420000px;}
.x16_c02362{left:41.400000px;}
.x15_c02362{left:42.660000px;}
.x1f_c02362{left:45.900000px;}
.x1e_c02362{left:47.160000px;}
.x18_c02362{left:61.560000px;}
.x1d_c02362{left:69.660000px;}
.x1a_c02362{left:72.540000px;}
.x14_c02362{left:74.520000px;}
.x1b_c02362{left:77.040000px;}
.x19_c02362{left:79.560000px;}
.x22_c02362{left:95.760000px;}
.x9_c02362{left:103.140000px;}
.xb_c02362{left:104.430000px;}
.x21_c02362{left:107.280000px;}
.x1_c02362{left:127.656000px;}
.x8_c02362{left:179.310000px;}
.x4_c02362{left:187.050000px;}
.x6_c02362{left:297.795000px;}
.x7_c02362{left:348.735000px;}
.xa_c02362{left:434.595000px;}
.x5_c02362{left:440.175000px;}
.x10_c02362{left:529.665000px;}
.x12_c02362{left:626.505000px;}
.xc_c02362{left:719.250000px;}
.x2_c02362{left:820.950000px;}
@media print{
.v0_c02362{vertical-align:0.000000pt;}
.ls0_c02362{letter-spacing:0.000000pt;}
.ws0_c02362{word-spacing:0.000000pt;}
._2_c02362{margin-left:-1.152000pt;}
._4_c02362{width:1.024000pt;}
._0_c02362{width:1.920000pt;}
._1_c02362{width:3.136000pt;}
._3_c02362{width:4.288000pt;}
._5_c02362{width:5.312000pt;}
._6_c02362{width:6.336000pt;}
.fs0_c02362{font-size:58.880000pt;}
.fs1_c02362{font-size:64.000000pt;}
.y0_c02362{bottom:0.000000pt;}
.y17_c02362{bottom:3.680000pt;}
.y14_c02362{bottom:4.000000pt;}
.y3_c02362{bottom:4.160000pt;}
.y15_c02362{bottom:4.320000pt;}
.y12_c02362{bottom:4.640000pt;}
.y1e_c02362{bottom:22.080000pt;}
.y1d_c02362{bottom:22.400000pt;}
.y11_c02362{bottom:23.040000pt;}
.y2_c02362{bottom:37.152000pt;}
.y1_c02362{bottom:67.072000pt;}
.y27_c02362{bottom:321.826667pt;}
.y26_c02362{bottom:340.386667pt;}
.y25_c02362{bottom:358.786667pt;}
.y24_c02362{bottom:377.186667pt;}
.y23_c02362{bottom:395.586667pt;}
.y22_c02362{bottom:410.626667pt;}
.y21_c02362{bottom:429.826667pt;}
.y20_c02362{bottom:448.866667pt;}
.y1f_c02362{bottom:467.906667pt;}
.y1c_c02362{bottom:486.973333pt;}
.y1b_c02362{bottom:524.413333pt;}
.y1a_c02362{bottom:543.453333pt;}
.y19_c02362{bottom:562.493333pt;}
.y18_c02362{bottom:581.693333pt;}
.y16_c02362{bottom:600.733333pt;}
.y10_c02362{bottom:619.773333pt;}
.y13_c02362{bottom:638.813333pt;}
.yf_c02362{bottom:670.973333pt;}
.ye_c02362{bottom:689.533333pt;}
.yd_c02362{bottom:707.973333pt;}
.yc_c02362{bottom:726.373333pt;}
.yb_c02362{bottom:753.733333pt;}
.ya_c02362{bottom:781.413333pt;}
.y9_c02362{bottom:808.933333pt;}
.y8_c02362{bottom:836.613333pt;}
.y7_c02362{bottom:864.133333pt;}
.y6_c02362{bottom:891.813333pt;}
.y5_c02362{bottom:919.333333pt;}
.y4_c02362{bottom:947.040000pt;}
.h6_c02362{height:18.400000pt;}
.h9_c02362{height:18.432000pt;}
.h2_c02362{height:20.000000pt;}
.h8_c02362{height:36.800000pt;}
.h5_c02362{height:37.440000pt;}
.h1_c02362{height:43.441250pt;}
.h4_c02362{height:57.375000pt;}
.h3_c02362{height:62.812500pt;}
.h7_c02362{height:64.500000pt;}
.h0_c02362{height:1056.000000pt;}
.w1_c02362{width:59.232000pt;}
.w4_c02362{width:70.240000pt;}
.w7_c02362{width:81.792000pt;}
.w5_c02362{width:83.872000pt;}
.w6_c02362{width:85.440000pt;}
.w2_c02362{width:226.266667pt;}
.w3_c02362{width:252.386667pt;}
.w0_c02362{width:816.000000pt;}
.x0_c02362{left:0.000000pt;}
.xe_c02362{left:7.040000pt;}
.x11_c02362{left:13.760000pt;}
.x3_c02362{left:14.720000pt;}
.xf_c02362{left:16.160000pt;}
.x13_c02362{left:19.040000pt;}
.x20_c02362{left:20.960000pt;}
.x1c_c02362{left:22.880000pt;}
.x17_c02362{left:31.040000pt;}
.xd_c02362{left:35.040000pt;}
.x16_c02362{left:36.800000pt;}
.x15_c02362{left:37.920000pt;}
.x1f_c02362{left:40.800000pt;}
.x1e_c02362{left:41.920000pt;}
.x18_c02362{left:54.720000pt;}
.x1d_c02362{left:61.920000pt;}
.x1a_c02362{left:64.480000pt;}
.x14_c02362{left:66.240000pt;}
.x1b_c02362{left:68.480000pt;}
.x19_c02362{left:70.720000pt;}
.x22_c02362{left:85.120000pt;}
.x9_c02362{left:91.680000pt;}
.xb_c02362{left:92.826667pt;}
.x21_c02362{left:95.360000pt;}
.x1_c02362{left:113.472000pt;}
.x8_c02362{left:159.386667pt;}
.x4_c02362{left:166.266667pt;}
.x6_c02362{left:264.706667pt;}
.x7_c02362{left:309.986667pt;}
.xa_c02362{left:386.306667pt;}
.x5_c02362{left:391.266667pt;}
.x10_c02362{left:470.813333pt;}
.x12_c02362{left:556.893333pt;}
.xc_c02362{left:639.333333pt;}
.x2_c02362{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02363 {
    display:none;
  }
  .loading-indicator_c02363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02363 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02363 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02363" -> "#page-container .classname_c02363")
 */
.pf_c02363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02363 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02363 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02363 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02363 {overflow:visible;}
  }
}
.c_c02363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02363 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02363:after { /* webkit #35443 */
  content: '';
}
.t_c02363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02363 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02363 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02363 { /* info for Javascript */
  display:none;
}
.l_c02363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02363:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02363 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02363.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02363;src:url('chunks/assets/font_25acfcdebd7d0774d14418a9.woff2')format("woff");}.ff1_c02363{font-family:ff1_c02363;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02363;src:url('chunks/assets/font_b6cd0197a1705ea0a2b27356.woff2')format("woff");}.ff2_c02363{font-family:ff2_c02363;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:ff3_c02363;src:url('chunks/assets/font_c7b0105fa3549a4e8a4e733b.woff2')format("woff");}.ff3_c02363{font-family:ff3_c02363;line-height:1.112305;font-style:normal;font-weight: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_c02363;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff4_c02363{font-family:ff4_c02363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02363{vertical-align:0.000000px;}
.ls0_c02363{letter-spacing:0.000000px;}
.ls1_c02363{letter-spacing:0.144000px;}
.sc__c02363{text-shadow:none;}
.sc0_c02363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02363{-webkit-text-stroke:0px transparent;}
.sc0_c02363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02363{word-spacing:-18.144000px;}
.ws1_c02363{word-spacing:0.000000px;}
._6_c02363{margin-left:-2.520000px;}
._2_c02363{margin-left:-1.008000px;}
._0_c02363{width:1.656000px;}
._1_c02363{width:2.952000px;}
._b_c02363{width:3.960000px;}
._3_c02363{width:5.040000px;}
._4_c02363{width:6.264000px;}
._5_c02363{width:7.344000px;}
._7_c02363{width:10.800000px;}
._8_c02363{width:12.096000px;}
._a_c02363{width:15.336000px;}
._9_c02363{width:16.992000px;}
.fc1_c02363{color:rgb(192,80,77);}
.fc3_c02363{color:rgb(255,255,255);}
.fc2_c02363{color:rgb(17,17,17);}
.fc0_c02363{color:rgb(0,0,0);}
.fs0_c02363{font-size:66.240000px;}
.fs1_c02363{font-size:72.000000px;}
.y0_c02363{bottom:0.000000px;}
.y1b_c02363{bottom:4.140000px;}
.y1e_c02363{bottom:4.170000px;}
.y18_c02363{bottom:4.500000px;}
.y1d_c02363{bottom:4.530000px;}
.y3_c02363{bottom:4.680000px;}
.y19_c02363{bottom:4.860000px;}
.y16_c02363{bottom:5.220000px;}
.y24_c02363{bottom:24.840000px;}
.y23_c02363{bottom:25.200000px;}
.y15_c02363{bottom:25.920000px;}
.y2_c02363{bottom:41.796000px;}
.y1_c02363{bottom:75.456000px;}
.y2c_c02363{bottom:258.690000px;}
.y2b_c02363{bottom:279.435000px;}
.y2a_c02363{bottom:300.135000px;}
.y29_c02363{bottom:320.835000px;}
.y28_c02363{bottom:337.755000px;}
.y27_c02363{bottom:359.355000px;}
.y26_c02363{bottom:380.775000px;}
.y25_c02363{bottom:402.195000px;}
.y22_c02363{bottom:423.615000px;}
.y21_c02363{bottom:465.735000px;}
.y20_c02363{bottom:487.155000px;}
.y1f_c02363{bottom:508.755000px;}
.y1c_c02363{bottom:530.175000px;}
.y1a_c02363{bottom:551.625000px;}
.y14_c02363{bottom:573.045000px;}
.y17_c02363{bottom:594.465000px;}
.y13_c02363{bottom:630.645000px;}
.y12_c02363{bottom:651.525000px;}
.y11_c02363{bottom:672.225000px;}
.y10_c02363{bottom:692.925000px;}
.yf_c02363{bottom:723.705000px;}
.ye_c02363{bottom:754.845000px;}
.yd_c02363{bottom:785.805000px;}
.yc_c02363{bottom:816.990000px;}
.yb_c02363{bottom:847.950000px;}
.ya_c02363{bottom:879.090000px;}
.y9_c02363{bottom:910.050000px;}
.y8_c02363{bottom:941.190000px;}
.y7_c02363{bottom:972.150000px;}
.y6_c02363{bottom:1003.290000px;}
.y5_c02363{bottom:1034.250000px;}
.y4_c02363{bottom:1065.420000px;}
.h6_c02363{height:20.700000px;}
.h8_c02363{height:20.736000px;}
.h2_c02363{height:22.500000px;}
.h9_c02363{height:41.400000px;}
.h5_c02363{height:42.120000px;}
.h1_c02363{height:48.871406px;}
.h4_c02363{height:64.546875px;}
.h3_c02363{height:70.664062px;}
.h7_c02363{height:72.562500px;}
.h0_c02363{height:1188.000000px;}
.w1_c02363{width:66.636000px;}
.w4_c02363{width:79.020000px;}
.w7_c02363{width:92.016000px;}
.w5_c02363{width:94.356000px;}
.w6_c02363{width:96.120000px;}
.w2_c02363{width:254.550000px;}
.w3_c02363{width:283.935000px;}
.w0_c02363{width:918.000000px;}
.x0_c02363{left:0.000000px;}
.xe_c02363{left:7.920000px;}
.x11_c02363{left:15.480000px;}
.x3_c02363{left:16.560000px;}
.xf_c02363{left:18.180000px;}
.x13_c02363{left:21.420000px;}
.x20_c02363{left:23.580000px;}
.x1c_c02363{left:25.740000px;}
.x17_c02363{left:34.920000px;}
.xd_c02363{left:39.420000px;}
.x16_c02363{left:41.400000px;}
.x15_c02363{left:42.660000px;}
.x1f_c02363{left:45.900000px;}
.x1e_c02363{left:47.160000px;}
.x18_c02363{left:61.560000px;}
.x1d_c02363{left:69.660000px;}
.x1a_c02363{left:72.540000px;}
.x14_c02363{left:74.520000px;}
.x1b_c02363{left:77.040000px;}
.x19_c02363{left:79.560000px;}
.x22_c02363{left:95.760000px;}
.x9_c02363{left:103.140000px;}
.xb_c02363{left:104.430000px;}
.x21_c02363{left:107.280000px;}
.x1_c02363{left:127.656000px;}
.x8_c02363{left:179.310000px;}
.x4_c02363{left:187.050000px;}
.x6_c02363{left:295.230000px;}
.x7_c02363{left:348.735000px;}
.xa_c02363{left:434.595000px;}
.x5_c02363{left:440.175000px;}
.x10_c02363{left:529.665000px;}
.x12_c02363{left:626.505000px;}
.xc_c02363{left:719.250000px;}
.x2_c02363{left:820.950000px;}
@media print{
.v0_c02363{vertical-align:0.000000pt;}
.ls0_c02363{letter-spacing:0.000000pt;}
.ls1_c02363{letter-spacing:0.128000pt;}
.ws0_c02363{word-spacing:-16.128000pt;}
.ws1_c02363{word-spacing:0.000000pt;}
._6_c02363{margin-left:-2.240000pt;}
._2_c02363{margin-left:-0.896000pt;}
._0_c02363{width:1.472000pt;}
._1_c02363{width:2.624000pt;}
._b_c02363{width:3.520000pt;}
._3_c02363{width:4.480000pt;}
._4_c02363{width:5.568000pt;}
._5_c02363{width:6.528000pt;}
._7_c02363{width:9.600000pt;}
._8_c02363{width:10.752000pt;}
._a_c02363{width:13.632000pt;}
._9_c02363{width:15.104000pt;}
.fs0_c02363{font-size:58.880000pt;}
.fs1_c02363{font-size:64.000000pt;}
.y0_c02363{bottom:0.000000pt;}
.y1b_c02363{bottom:3.680000pt;}
.y1e_c02363{bottom:3.706667pt;}
.y18_c02363{bottom:4.000000pt;}
.y1d_c02363{bottom:4.026667pt;}
.y3_c02363{bottom:4.160000pt;}
.y19_c02363{bottom:4.320000pt;}
.y16_c02363{bottom:4.640000pt;}
.y24_c02363{bottom:22.080000pt;}
.y23_c02363{bottom:22.400000pt;}
.y15_c02363{bottom:23.040000pt;}
.y2_c02363{bottom:37.152000pt;}
.y1_c02363{bottom:67.072000pt;}
.y2c_c02363{bottom:229.946667pt;}
.y2b_c02363{bottom:248.386667pt;}
.y2a_c02363{bottom:266.786667pt;}
.y29_c02363{bottom:285.186667pt;}
.y28_c02363{bottom:300.226667pt;}
.y27_c02363{bottom:319.426667pt;}
.y26_c02363{bottom:338.466667pt;}
.y25_c02363{bottom:357.506667pt;}
.y22_c02363{bottom:376.546667pt;}
.y21_c02363{bottom:413.986667pt;}
.y20_c02363{bottom:433.026667pt;}
.y1f_c02363{bottom:452.226667pt;}
.y1c_c02363{bottom:471.266667pt;}
.y1a_c02363{bottom:490.333333pt;}
.y14_c02363{bottom:509.373333pt;}
.y17_c02363{bottom:528.413333pt;}
.y13_c02363{bottom:560.573333pt;}
.y12_c02363{bottom:579.133333pt;}
.y11_c02363{bottom:597.533333pt;}
.y10_c02363{bottom:615.933333pt;}
.yf_c02363{bottom:643.293333pt;}
.ye_c02363{bottom:670.973333pt;}
.yd_c02363{bottom:698.493333pt;}
.yc_c02363{bottom:726.213333pt;}
.yb_c02363{bottom:753.733333pt;}
.ya_c02363{bottom:781.413333pt;}
.y9_c02363{bottom:808.933333pt;}
.y8_c02363{bottom:836.613333pt;}
.y7_c02363{bottom:864.133333pt;}
.y6_c02363{bottom:891.813333pt;}
.y5_c02363{bottom:919.333333pt;}
.y4_c02363{bottom:947.040000pt;}
.h6_c02363{height:18.400000pt;}
.h8_c02363{height:18.432000pt;}
.h2_c02363{height:20.000000pt;}
.h9_c02363{height:36.800000pt;}
.h5_c02363{height:37.440000pt;}
.h1_c02363{height:43.441250pt;}
.h4_c02363{height:57.375000pt;}
.h3_c02363{height:62.812500pt;}
.h7_c02363{height:64.500000pt;}
.h0_c02363{height:1056.000000pt;}
.w1_c02363{width:59.232000pt;}
.w4_c02363{width:70.240000pt;}
.w7_c02363{width:81.792000pt;}
.w5_c02363{width:83.872000pt;}
.w6_c02363{width:85.440000pt;}
.w2_c02363{width:226.266667pt;}
.w3_c02363{width:252.386667pt;}
.w0_c02363{width:816.000000pt;}
.x0_c02363{left:0.000000pt;}
.xe_c02363{left:7.040000pt;}
.x11_c02363{left:13.760000pt;}
.x3_c02363{left:14.720000pt;}
.xf_c02363{left:16.160000pt;}
.x13_c02363{left:19.040000pt;}
.x20_c02363{left:20.960000pt;}
.x1c_c02363{left:22.880000pt;}
.x17_c02363{left:31.040000pt;}
.xd_c02363{left:35.040000pt;}
.x16_c02363{left:36.800000pt;}
.x15_c02363{left:37.920000pt;}
.x1f_c02363{left:40.800000pt;}
.x1e_c02363{left:41.920000pt;}
.x18_c02363{left:54.720000pt;}
.x1d_c02363{left:61.920000pt;}
.x1a_c02363{left:64.480000pt;}
.x14_c02363{left:66.240000pt;}
.x1b_c02363{left:68.480000pt;}
.x19_c02363{left:70.720000pt;}
.x22_c02363{left:85.120000pt;}
.x9_c02363{left:91.680000pt;}
.xb_c02363{left:92.826667pt;}
.x21_c02363{left:95.360000pt;}
.x1_c02363{left:113.472000pt;}
.x8_c02363{left:159.386667pt;}
.x4_c02363{left:166.266667pt;}
.x6_c02363{left:262.426667pt;}
.x7_c02363{left:309.986667pt;}
.xa_c02363{left:386.306667pt;}
.x5_c02363{left:391.266667pt;}
.x10_c02363{left:470.813333pt;}
.x12_c02363{left:556.893333pt;}
.xc_c02363{left:639.333333pt;}
.x2_c02363{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02364 {
    display:none;
  }
  .loading-indicator_c02364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02364 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02364 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02364" -> "#page-container .classname_c02364")
 */
.pf_c02364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02364 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02364 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02364 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02364 {overflow:visible;}
  }
}
.c_c02364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02364 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02364:after { /* webkit #35443 */
  content: '';
}
.t_c02364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02364 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02364 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02364 { /* info for Javascript */
  display:none;
}
.l_c02364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02364:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02364 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02364.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02364;src:url('chunks/assets/font_adef02499f7e6e79b96c6dc1.woff2')format("woff");}.ff1_c02364{font-family:ff1_c02364;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02364;src:url('chunks/assets/font_786c04154558bbd333873b4f.woff2')format("woff");}.ff2_c02364{font-family:ff2_c02364;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:ff3_c02364;src:url('chunks/assets/font_d7fa380456f9c0eaa833b71f.woff2')format("woff");}.ff3_c02364{font-family:ff3_c02364;line-height:1.112305;font-style:normal;font-weight: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_c02364;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02364{font-family:ff4_c02364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02364{vertical-align:0.000000px;}
.ls1_c02364{letter-spacing:-0.288000px;}
.ls0_c02364{letter-spacing:0.000000px;}
.sc__c02364{text-shadow:none;}
.sc0_c02364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02364{-webkit-text-stroke:0px transparent;}
.sc0_c02364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02364{word-spacing:-17.712000px;}
.ws1_c02364{word-spacing:0.000000px;}
._5_c02364{margin-left:-1.008000px;}
._0_c02364{width:1.368000px;}
._6_c02364{width:2.520000px;}
._4_c02364{width:3.528000px;}
._3_c02364{width:5.040000px;}
._9_c02364{width:6.408000px;}
._a_c02364{width:7.560000px;}
._1_c02364{width:9.576000px;}
._2_c02364{width:10.800000px;}
._7_c02364{width:14.400000px;}
._8_c02364{width:15.480000px;}
._b_c02364{width:25.560000px;}
.fc1_c02364{color:rgb(192,80,77);}
.fc3_c02364{color:rgb(255,255,255);}
.fc2_c02364{color:rgb(17,17,17);}
.fc0_c02364{color:rgb(0,0,0);}
.fs0_c02364{font-size:66.240000px;}
.fs1_c02364{font-size:72.000000px;}
.y0_c02364{bottom:0.000000px;}
.y19_c02364{bottom:4.140000px;}
.y16_c02364{bottom:4.500000px;}
.y3_c02364{bottom:4.680000px;}
.y17_c02364{bottom:4.860000px;}
.y14_c02364{bottom:5.220000px;}
.y20_c02364{bottom:24.840000px;}
.y1f_c02364{bottom:25.200000px;}
.y13_c02364{bottom:25.920000px;}
.y2_c02364{bottom:41.796000px;}
.y1_c02364{bottom:75.456000px;}
.y28_c02364{bottom:320.835000px;}
.y27_c02364{bottom:341.535000px;}
.y26_c02364{bottom:362.235000px;}
.y25_c02364{bottom:382.935000px;}
.y24_c02364{bottom:399.855000px;}
.y23_c02364{bottom:421.455000px;}
.y22_c02364{bottom:442.875000px;}
.y21_c02364{bottom:464.295000px;}
.y1e_c02364{bottom:485.715000px;}
.y1d_c02364{bottom:527.835000px;}
.y1c_c02364{bottom:549.285000px;}
.y1b_c02364{bottom:570.705000px;}
.y1a_c02364{bottom:592.305000px;}
.y18_c02364{bottom:613.725000px;}
.y12_c02364{bottom:635.145000px;}
.y15_c02364{bottom:656.565000px;}
.y11_c02364{bottom:692.745000px;}
.y10_c02364{bottom:713.625000px;}
.yf_c02364{bottom:734.325000px;}
.ye_c02364{bottom:755.025000px;}
.yd_c02364{bottom:785.805000px;}
.yc_c02364{bottom:816.990000px;}
.yb_c02364{bottom:847.950000px;}
.ya_c02364{bottom:879.090000px;}
.y9_c02364{bottom:910.050000px;}
.y8_c02364{bottom:941.190000px;}
.y7_c02364{bottom:972.150000px;}
.y6_c02364{bottom:1003.290000px;}
.y5_c02364{bottom:1034.250000px;}
.y4_c02364{bottom:1065.420000px;}
.h6_c02364{height:20.700000px;}
.h8_c02364{height:20.736000px;}
.h2_c02364{height:22.500000px;}
.h9_c02364{height:41.400000px;}
.h5_c02364{height:42.120000px;}
.h1_c02364{height:48.871406px;}
.h4_c02364{height:64.546875px;}
.h3_c02364{height:70.664062px;}
.h7_c02364{height:72.562500px;}
.h0_c02364{height:1188.000000px;}
.w1_c02364{width:66.636000px;}
.w4_c02364{width:79.020000px;}
.w7_c02364{width:92.016000px;}
.w5_c02364{width:94.356000px;}
.w6_c02364{width:96.120000px;}
.w2_c02364{width:254.550000px;}
.w3_c02364{width:283.935000px;}
.w0_c02364{width:918.000000px;}
.x0_c02364{left:0.000000px;}
.xe_c02364{left:7.920000px;}
.x11_c02364{left:15.480000px;}
.x3_c02364{left:16.560000px;}
.xf_c02364{left:18.180000px;}
.x13_c02364{left:21.420000px;}
.x20_c02364{left:23.580000px;}
.x1c_c02364{left:25.740000px;}
.x17_c02364{left:34.920000px;}
.xd_c02364{left:39.420000px;}
.x16_c02364{left:41.400000px;}
.x15_c02364{left:42.660000px;}
.x1f_c02364{left:45.900000px;}
.x1e_c02364{left:47.160000px;}
.x18_c02364{left:61.560000px;}
.x1d_c02364{left:69.660000px;}
.x1a_c02364{left:72.540000px;}
.x14_c02364{left:74.520000px;}
.x1b_c02364{left:77.040000px;}
.x19_c02364{left:79.560000px;}
.x22_c02364{left:95.760000px;}
.x9_c02364{left:103.140000px;}
.xb_c02364{left:104.430000px;}
.x21_c02364{left:107.280000px;}
.x1_c02364{left:127.656000px;}
.x8_c02364{left:179.310000px;}
.x4_c02364{left:187.050000px;}
.x6_c02364{left:283.350000px;}
.x7_c02364{left:348.735000px;}
.xa_c02364{left:434.595000px;}
.x5_c02364{left:440.175000px;}
.x10_c02364{left:529.665000px;}
.x12_c02364{left:626.505000px;}
.xc_c02364{left:719.250000px;}
.x2_c02364{left:820.950000px;}
@media print{
.v0_c02364{vertical-align:0.000000pt;}
.ls1_c02364{letter-spacing:-0.256000pt;}
.ls0_c02364{letter-spacing:0.000000pt;}
.ws0_c02364{word-spacing:-15.744000pt;}
.ws1_c02364{word-spacing:0.000000pt;}
._5_c02364{margin-left:-0.896000pt;}
._0_c02364{width:1.216000pt;}
._6_c02364{width:2.240000pt;}
._4_c02364{width:3.136000pt;}
._3_c02364{width:4.480000pt;}
._9_c02364{width:5.696000pt;}
._a_c02364{width:6.720000pt;}
._1_c02364{width:8.512000pt;}
._2_c02364{width:9.600000pt;}
._7_c02364{width:12.800000pt;}
._8_c02364{width:13.760000pt;}
._b_c02364{width:22.720000pt;}
.fs0_c02364{font-size:58.880000pt;}
.fs1_c02364{font-size:64.000000pt;}
.y0_c02364{bottom:0.000000pt;}
.y19_c02364{bottom:3.680000pt;}
.y16_c02364{bottom:4.000000pt;}
.y3_c02364{bottom:4.160000pt;}
.y17_c02364{bottom:4.320000pt;}
.y14_c02364{bottom:4.640000pt;}
.y20_c02364{bottom:22.080000pt;}
.y1f_c02364{bottom:22.400000pt;}
.y13_c02364{bottom:23.040000pt;}
.y2_c02364{bottom:37.152000pt;}
.y1_c02364{bottom:67.072000pt;}
.y28_c02364{bottom:285.186667pt;}
.y27_c02364{bottom:303.586667pt;}
.y26_c02364{bottom:321.986667pt;}
.y25_c02364{bottom:340.386667pt;}
.y24_c02364{bottom:355.426667pt;}
.y23_c02364{bottom:374.626667pt;}
.y22_c02364{bottom:393.666667pt;}
.y21_c02364{bottom:412.706667pt;}
.y1e_c02364{bottom:431.746667pt;}
.y1d_c02364{bottom:469.186667pt;}
.y1c_c02364{bottom:488.253333pt;}
.y1b_c02364{bottom:507.293333pt;}
.y1a_c02364{bottom:526.493333pt;}
.y18_c02364{bottom:545.533333pt;}
.y12_c02364{bottom:564.573333pt;}
.y15_c02364{bottom:583.613333pt;}
.y11_c02364{bottom:615.773333pt;}
.y10_c02364{bottom:634.333333pt;}
.yf_c02364{bottom:652.733333pt;}
.ye_c02364{bottom:671.133333pt;}
.yd_c02364{bottom:698.493333pt;}
.yc_c02364{bottom:726.213333pt;}
.yb_c02364{bottom:753.733333pt;}
.ya_c02364{bottom:781.413333pt;}
.y9_c02364{bottom:808.933333pt;}
.y8_c02364{bottom:836.613333pt;}
.y7_c02364{bottom:864.133333pt;}
.y6_c02364{bottom:891.813333pt;}
.y5_c02364{bottom:919.333333pt;}
.y4_c02364{bottom:947.040000pt;}
.h6_c02364{height:18.400000pt;}
.h8_c02364{height:18.432000pt;}
.h2_c02364{height:20.000000pt;}
.h9_c02364{height:36.800000pt;}
.h5_c02364{height:37.440000pt;}
.h1_c02364{height:43.441250pt;}
.h4_c02364{height:57.375000pt;}
.h3_c02364{height:62.812500pt;}
.h7_c02364{height:64.500000pt;}
.h0_c02364{height:1056.000000pt;}
.w1_c02364{width:59.232000pt;}
.w4_c02364{width:70.240000pt;}
.w7_c02364{width:81.792000pt;}
.w5_c02364{width:83.872000pt;}
.w6_c02364{width:85.440000pt;}
.w2_c02364{width:226.266667pt;}
.w3_c02364{width:252.386667pt;}
.w0_c02364{width:816.000000pt;}
.x0_c02364{left:0.000000pt;}
.xe_c02364{left:7.040000pt;}
.x11_c02364{left:13.760000pt;}
.x3_c02364{left:14.720000pt;}
.xf_c02364{left:16.160000pt;}
.x13_c02364{left:19.040000pt;}
.x20_c02364{left:20.960000pt;}
.x1c_c02364{left:22.880000pt;}
.x17_c02364{left:31.040000pt;}
.xd_c02364{left:35.040000pt;}
.x16_c02364{left:36.800000pt;}
.x15_c02364{left:37.920000pt;}
.x1f_c02364{left:40.800000pt;}
.x1e_c02364{left:41.920000pt;}
.x18_c02364{left:54.720000pt;}
.x1d_c02364{left:61.920000pt;}
.x1a_c02364{left:64.480000pt;}
.x14_c02364{left:66.240000pt;}
.x1b_c02364{left:68.480000pt;}
.x19_c02364{left:70.720000pt;}
.x22_c02364{left:85.120000pt;}
.x9_c02364{left:91.680000pt;}
.xb_c02364{left:92.826667pt;}
.x21_c02364{left:95.360000pt;}
.x1_c02364{left:113.472000pt;}
.x8_c02364{left:159.386667pt;}
.x4_c02364{left:166.266667pt;}
.x6_c02364{left:251.866667pt;}
.x7_c02364{left:309.986667pt;}
.xa_c02364{left:386.306667pt;}
.x5_c02364{left:391.266667pt;}
.x10_c02364{left:470.813333pt;}
.x12_c02364{left:556.893333pt;}
.xc_c02364{left:639.333333pt;}
.x2_c02364{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02365 {
    display:none;
  }
  .loading-indicator_c02365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02365 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02365 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02365" -> "#page-container .classname_c02365")
 */
.pf_c02365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02365 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02365 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02365 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02365 {overflow:visible;}
  }
}
.c_c02365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02365 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02365:after { /* webkit #35443 */
  content: '';
}
.t_c02365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02365 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02365 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02365 { /* info for Javascript */
  display:none;
}
.l_c02365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02365:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02365 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02365.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02365;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02365{font-family:ff1_c02365;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02365;src:url('chunks/assets/font_b1a61ba6dc9b628f9395cff2.woff2')format("woff");}.ff2_c02365{font-family:ff2_c02365;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:ff3_c02365;src:url('chunks/assets/font_97a57205bbff51902684aa90.woff2')format("woff");}.ff3_c02365{font-family:ff3_c02365;line-height:1.112305;font-style:normal;font-weight: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_c02365;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02365{font-family:ff4_c02365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02365{vertical-align:0.000000px;}
.ls0_c02365{letter-spacing:0.000000px;}
.sc__c02365{text-shadow:none;}
.sc0_c02365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02365{-webkit-text-stroke:0px transparent;}
.sc0_c02365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02365{word-spacing:0.000000px;}
._1_c02365{margin-left:-1.224000px;}
._0_c02365{width:1.296000px;}
._2_c02365{width:2.340000px;}
._3_c02365{width:3.420000px;}
._4_c02365{width:4.536000px;}
._5_c02365{width:6.048000px;}
._6_c02365{width:14.904000px;}
._7_c02365{width:25.560000px;}
._8_c02365{width:26.640000px;}
.fc1_c02365{color:rgb(192,80,77);}
.fc3_c02365{color:rgb(255,255,255);}
.fc2_c02365{color:rgb(17,17,17);}
.fc0_c02365{color:rgb(0,0,0);}
.fs0_c02365{font-size:66.240000px;}
.fs1_c02365{font-size:72.000000px;}
.y0_c02365{bottom:0.000000px;}
.y1a_c02365{bottom:4.140000px;}
.y17_c02365{bottom:4.500000px;}
.y3_c02365{bottom:4.680000px;}
.y18_c02365{bottom:5.040000px;}
.y15_c02365{bottom:5.400000px;}
.y21_c02365{bottom:24.840000px;}
.y20_c02365{bottom:25.200000px;}
.y14_c02365{bottom:26.100000px;}
.y2_c02365{bottom:41.796000px;}
.y1_c02365{bottom:75.456000px;}
.y29_c02365{bottom:289.875000px;}
.y28_c02365{bottom:310.575000px;}
.y27_c02365{bottom:331.275000px;}
.y26_c02365{bottom:351.975000px;}
.y25_c02365{bottom:368.895000px;}
.y24_c02365{bottom:390.315000px;}
.y23_c02365{bottom:411.735000px;}
.y22_c02365{bottom:433.155000px;}
.y1f_c02365{bottom:454.755000px;}
.y1e_c02365{bottom:496.875000px;}
.y1d_c02365{bottom:518.295000px;}
.y1c_c02365{bottom:539.745000px;}
.y1b_c02365{bottom:561.165000px;}
.y19_c02365{bottom:582.585000px;}
.y13_c02365{bottom:604.005000px;}
.y16_c02365{bottom:625.605000px;}
.y12_c02365{bottom:661.605000px;}
.y11_c02365{bottom:682.485000px;}
.y10_c02365{bottom:703.185000px;}
.yf_c02365{bottom:723.885000px;}
.ye_c02365{bottom:754.845000px;}
.yd_c02365{bottom:785.805000px;}
.yc_c02365{bottom:816.990000px;}
.yb_c02365{bottom:847.950000px;}
.ya_c02365{bottom:879.090000px;}
.y9_c02365{bottom:910.050000px;}
.y8_c02365{bottom:941.190000px;}
.y7_c02365{bottom:972.150000px;}
.y6_c02365{bottom:1003.290000px;}
.y5_c02365{bottom:1034.250000px;}
.y4_c02365{bottom:1065.420000px;}
.h6_c02365{height:20.700000px;}
.h8_c02365{height:20.736000px;}
.h2_c02365{height:22.500000px;}
.h9_c02365{height:41.400000px;}
.h5_c02365{height:42.300000px;}
.h1_c02365{height:48.871406px;}
.h4_c02365{height:64.546875px;}
.h3_c02365{height:70.664062px;}
.h7_c02365{height:72.562500px;}
.h0_c02365{height:1188.000000px;}
.w1_c02365{width:66.636000px;}
.w4_c02365{width:79.020000px;}
.w7_c02365{width:92.016000px;}
.w5_c02365{width:94.356000px;}
.w6_c02365{width:96.120000px;}
.w2_c02365{width:254.550000px;}
.w3_c02365{width:283.935000px;}
.w0_c02365{width:918.000000px;}
.x0_c02365{left:0.000000px;}
.xe_c02365{left:7.920000px;}
.x11_c02365{left:15.480000px;}
.x3_c02365{left:16.560000px;}
.xf_c02365{left:18.180000px;}
.x13_c02365{left:21.420000px;}
.x20_c02365{left:23.580000px;}
.x1c_c02365{left:25.740000px;}
.x17_c02365{left:34.920000px;}
.xd_c02365{left:39.420000px;}
.x16_c02365{left:41.400000px;}
.x15_c02365{left:42.660000px;}
.x1f_c02365{left:45.900000px;}
.x1e_c02365{left:47.160000px;}
.x18_c02365{left:61.560000px;}
.x1d_c02365{left:69.660000px;}
.x1a_c02365{left:72.540000px;}
.x14_c02365{left:74.520000px;}
.x1b_c02365{left:77.040000px;}
.x19_c02365{left:79.560000px;}
.x22_c02365{left:95.760000px;}
.x9_c02365{left:103.140000px;}
.xb_c02365{left:104.430000px;}
.x21_c02365{left:107.280000px;}
.x1_c02365{left:127.656000px;}
.x8_c02365{left:179.310000px;}
.x4_c02365{left:187.050000px;}
.x6_c02365{left:283.890000px;}
.x7_c02365{left:348.735000px;}
.xa_c02365{left:434.595000px;}
.x5_c02365{left:440.175000px;}
.x10_c02365{left:529.665000px;}
.x12_c02365{left:626.505000px;}
.xc_c02365{left:719.250000px;}
.x2_c02365{left:820.950000px;}
@media print{
.v0_c02365{vertical-align:0.000000pt;}
.ls0_c02365{letter-spacing:0.000000pt;}
.ws0_c02365{word-spacing:0.000000pt;}
._1_c02365{margin-left:-1.088000pt;}
._0_c02365{width:1.152000pt;}
._2_c02365{width:2.080000pt;}
._3_c02365{width:3.040000pt;}
._4_c02365{width:4.032000pt;}
._5_c02365{width:5.376000pt;}
._6_c02365{width:13.248000pt;}
._7_c02365{width:22.720000pt;}
._8_c02365{width:23.680000pt;}
.fs0_c02365{font-size:58.880000pt;}
.fs1_c02365{font-size:64.000000pt;}
.y0_c02365{bottom:0.000000pt;}
.y1a_c02365{bottom:3.680000pt;}
.y17_c02365{bottom:4.000000pt;}
.y3_c02365{bottom:4.160000pt;}
.y18_c02365{bottom:4.480000pt;}
.y15_c02365{bottom:4.800000pt;}
.y21_c02365{bottom:22.080000pt;}
.y20_c02365{bottom:22.400000pt;}
.y14_c02365{bottom:23.200000pt;}
.y2_c02365{bottom:37.152000pt;}
.y1_c02365{bottom:67.072000pt;}
.y29_c02365{bottom:257.666667pt;}
.y28_c02365{bottom:276.066667pt;}
.y27_c02365{bottom:294.466667pt;}
.y26_c02365{bottom:312.866667pt;}
.y25_c02365{bottom:327.906667pt;}
.y24_c02365{bottom:346.946667pt;}
.y23_c02365{bottom:365.986667pt;}
.y22_c02365{bottom:385.026667pt;}
.y1f_c02365{bottom:404.226667pt;}
.y1e_c02365{bottom:441.666667pt;}
.y1d_c02365{bottom:460.706667pt;}
.y1c_c02365{bottom:479.773333pt;}
.y1b_c02365{bottom:498.813333pt;}
.y19_c02365{bottom:517.853333pt;}
.y13_c02365{bottom:536.893333pt;}
.y16_c02365{bottom:556.093333pt;}
.y12_c02365{bottom:588.093333pt;}
.y11_c02365{bottom:606.653333pt;}
.y10_c02365{bottom:625.053333pt;}
.yf_c02365{bottom:643.453333pt;}
.ye_c02365{bottom:670.973333pt;}
.yd_c02365{bottom:698.493333pt;}
.yc_c02365{bottom:726.213333pt;}
.yb_c02365{bottom:753.733333pt;}
.ya_c02365{bottom:781.413333pt;}
.y9_c02365{bottom:808.933333pt;}
.y8_c02365{bottom:836.613333pt;}
.y7_c02365{bottom:864.133333pt;}
.y6_c02365{bottom:891.813333pt;}
.y5_c02365{bottom:919.333333pt;}
.y4_c02365{bottom:947.040000pt;}
.h6_c02365{height:18.400000pt;}
.h8_c02365{height:18.432000pt;}
.h2_c02365{height:20.000000pt;}
.h9_c02365{height:36.800000pt;}
.h5_c02365{height:37.600000pt;}
.h1_c02365{height:43.441250pt;}
.h4_c02365{height:57.375000pt;}
.h3_c02365{height:62.812500pt;}
.h7_c02365{height:64.500000pt;}
.h0_c02365{height:1056.000000pt;}
.w1_c02365{width:59.232000pt;}
.w4_c02365{width:70.240000pt;}
.w7_c02365{width:81.792000pt;}
.w5_c02365{width:83.872000pt;}
.w6_c02365{width:85.440000pt;}
.w2_c02365{width:226.266667pt;}
.w3_c02365{width:252.386667pt;}
.w0_c02365{width:816.000000pt;}
.x0_c02365{left:0.000000pt;}
.xe_c02365{left:7.040000pt;}
.x11_c02365{left:13.760000pt;}
.x3_c02365{left:14.720000pt;}
.xf_c02365{left:16.160000pt;}
.x13_c02365{left:19.040000pt;}
.x20_c02365{left:20.960000pt;}
.x1c_c02365{left:22.880000pt;}
.x17_c02365{left:31.040000pt;}
.xd_c02365{left:35.040000pt;}
.x16_c02365{left:36.800000pt;}
.x15_c02365{left:37.920000pt;}
.x1f_c02365{left:40.800000pt;}
.x1e_c02365{left:41.920000pt;}
.x18_c02365{left:54.720000pt;}
.x1d_c02365{left:61.920000pt;}
.x1a_c02365{left:64.480000pt;}
.x14_c02365{left:66.240000pt;}
.x1b_c02365{left:68.480000pt;}
.x19_c02365{left:70.720000pt;}
.x22_c02365{left:85.120000pt;}
.x9_c02365{left:91.680000pt;}
.xb_c02365{left:92.826667pt;}
.x21_c02365{left:95.360000pt;}
.x1_c02365{left:113.472000pt;}
.x8_c02365{left:159.386667pt;}
.x4_c02365{left:166.266667pt;}
.x6_c02365{left:252.346667pt;}
.x7_c02365{left:309.986667pt;}
.xa_c02365{left:386.306667pt;}
.x5_c02365{left:391.266667pt;}
.x10_c02365{left:470.813333pt;}
.x12_c02365{left:556.893333pt;}
.xc_c02365{left:639.333333pt;}
.x2_c02365{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02366 {
    display:none;
  }
  .loading-indicator_c02366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02366 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02366 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02366" -> "#page-container .classname_c02366")
 */
.pf_c02366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02366 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02366 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02366 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02366 {overflow:visible;}
  }
}
.c_c02366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02366 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02366:after { /* webkit #35443 */
  content: '';
}
.t_c02366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02366 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02366 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02366 { /* info for Javascript */
  display:none;
}
.l_c02366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02366:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02366 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02366.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02366;src:url('chunks/assets/font_0d4738a292e1122084f34b75.woff2')format("woff");}.ff1_c02366{font-family:ff1_c02366;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02366;src:url('chunks/assets/font_7201e783c38f924b797dc548.woff2')format("woff");}.ff2_c02366{font-family:ff2_c02366;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:ff3_c02366;src:url('chunks/assets/font_fa1cb00307cefffd7b4fec90.woff2')format("woff");}.ff3_c02366{font-family:ff3_c02366;line-height:1.112305;font-style:normal;font-weight: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_c02366;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02366{font-family:ff4_c02366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02366{vertical-align:0.000000px;}
.ls0_c02366{letter-spacing:0.000000px;}
.sc__c02366{text-shadow:none;}
.sc0_c02366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02366{-webkit-text-stroke:0px transparent;}
.sc0_c02366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02366{word-spacing:0.000000px;}
._2_c02366{margin-left:-2.088000px;}
._4_c02366{margin-left:-1.008000px;}
._3_c02366{width:1.080000px;}
._5_c02366{width:2.592000px;}
._6_c02366{width:3.744000px;}
._7_c02366{width:5.400000px;}
._8_c02366{width:6.552000px;}
._9_c02366{width:7.704000px;}
._0_c02366{width:9.144000px;}
._1_c02366{width:10.944000px;}
.fc1_c02366{color:rgb(192,80,77);}
.fc3_c02366{color:rgb(255,255,255);}
.fc2_c02366{color:rgb(17,17,17);}
.fc0_c02366{color:rgb(0,0,0);}
.fs0_c02366{font-size:66.240000px;}
.fs1_c02366{font-size:72.000000px;}
.y0_c02366{bottom:0.000000px;}
.y19_c02366{bottom:4.140000px;}
.y16_c02366{bottom:4.500000px;}
.y3_c02366{bottom:4.680000px;}
.y17_c02366{bottom:4.860000px;}
.y14_c02366{bottom:5.220000px;}
.y20_c02366{bottom:24.840000px;}
.y1f_c02366{bottom:25.200000px;}
.y13_c02366{bottom:25.920000px;}
.y2_c02366{bottom:41.796000px;}
.y1_c02366{bottom:75.456000px;}
.y28_c02366{bottom:320.835000px;}
.y27_c02366{bottom:341.535000px;}
.y26_c02366{bottom:362.235000px;}
.y25_c02366{bottom:382.935000px;}
.y24_c02366{bottom:399.855000px;}
.y23_c02366{bottom:421.455000px;}
.y22_c02366{bottom:442.875000px;}
.y21_c02366{bottom:464.295000px;}
.y1e_c02366{bottom:485.715000px;}
.y1d_c02366{bottom:527.835000px;}
.y1c_c02366{bottom:549.285000px;}
.y1b_c02366{bottom:570.705000px;}
.y1a_c02366{bottom:592.305000px;}
.y18_c02366{bottom:613.725000px;}
.y12_c02366{bottom:635.145000px;}
.y15_c02366{bottom:656.565000px;}
.y11_c02366{bottom:692.745000px;}
.y10_c02366{bottom:713.625000px;}
.yf_c02366{bottom:734.325000px;}
.ye_c02366{bottom:755.025000px;}
.yd_c02366{bottom:785.805000px;}
.yc_c02366{bottom:816.990000px;}
.yb_c02366{bottom:847.950000px;}
.ya_c02366{bottom:879.090000px;}
.y9_c02366{bottom:910.050000px;}
.y8_c02366{bottom:941.190000px;}
.y7_c02366{bottom:972.150000px;}
.y6_c02366{bottom:1003.290000px;}
.y5_c02366{bottom:1034.250000px;}
.y4_c02366{bottom:1065.420000px;}
.h6_c02366{height:20.700000px;}
.h8_c02366{height:20.736000px;}
.h2_c02366{height:22.500000px;}
.h9_c02366{height:41.400000px;}
.h5_c02366{height:42.120000px;}
.h1_c02366{height:48.871406px;}
.h4_c02366{height:64.546875px;}
.h3_c02366{height:70.664062px;}
.h7_c02366{height:72.562500px;}
.h0_c02366{height:1188.000000px;}
.w1_c02366{width:66.636000px;}
.w4_c02366{width:79.020000px;}
.w7_c02366{width:92.016000px;}
.w5_c02366{width:94.356000px;}
.w6_c02366{width:96.120000px;}
.w2_c02366{width:254.550000px;}
.w3_c02366{width:283.935000px;}
.w0_c02366{width:918.000000px;}
.x0_c02366{left:0.000000px;}
.xe_c02366{left:7.920000px;}
.x11_c02366{left:15.480000px;}
.x3_c02366{left:16.560000px;}
.xf_c02366{left:18.180000px;}
.x13_c02366{left:21.420000px;}
.x20_c02366{left:23.580000px;}
.x1c_c02366{left:25.740000px;}
.x17_c02366{left:34.920000px;}
.xd_c02366{left:39.420000px;}
.x16_c02366{left:41.400000px;}
.x15_c02366{left:42.660000px;}
.x1f_c02366{left:45.900000px;}
.x1e_c02366{left:47.160000px;}
.x18_c02366{left:61.560000px;}
.x1d_c02366{left:69.660000px;}
.x1a_c02366{left:72.540000px;}
.x14_c02366{left:74.520000px;}
.x1b_c02366{left:77.040000px;}
.x19_c02366{left:79.560000px;}
.x22_c02366{left:95.760000px;}
.x9_c02366{left:103.140000px;}
.xb_c02366{left:104.430000px;}
.x21_c02366{left:107.280000px;}
.x1_c02366{left:127.656000px;}
.x8_c02366{left:179.310000px;}
.x4_c02366{left:187.050000px;}
.x6_c02366{left:262.110000px;}
.x7_c02366{left:348.735000px;}
.xa_c02366{left:434.595000px;}
.x5_c02366{left:440.175000px;}
.x10_c02366{left:529.665000px;}
.x12_c02366{left:626.505000px;}
.xc_c02366{left:719.250000px;}
.x2_c02366{left:820.950000px;}
@media print{
.v0_c02366{vertical-align:0.000000pt;}
.ls0_c02366{letter-spacing:0.000000pt;}
.ws0_c02366{word-spacing:0.000000pt;}
._2_c02366{margin-left:-1.856000pt;}
._4_c02366{margin-left:-0.896000pt;}
._3_c02366{width:0.960000pt;}
._5_c02366{width:2.304000pt;}
._6_c02366{width:3.328000pt;}
._7_c02366{width:4.800000pt;}
._8_c02366{width:5.824000pt;}
._9_c02366{width:6.848000pt;}
._0_c02366{width:8.128000pt;}
._1_c02366{width:9.728000pt;}
.fs0_c02366{font-size:58.880000pt;}
.fs1_c02366{font-size:64.000000pt;}
.y0_c02366{bottom:0.000000pt;}
.y19_c02366{bottom:3.680000pt;}
.y16_c02366{bottom:4.000000pt;}
.y3_c02366{bottom:4.160000pt;}
.y17_c02366{bottom:4.320000pt;}
.y14_c02366{bottom:4.640000pt;}
.y20_c02366{bottom:22.080000pt;}
.y1f_c02366{bottom:22.400000pt;}
.y13_c02366{bottom:23.040000pt;}
.y2_c02366{bottom:37.152000pt;}
.y1_c02366{bottom:67.072000pt;}
.y28_c02366{bottom:285.186667pt;}
.y27_c02366{bottom:303.586667pt;}
.y26_c02366{bottom:321.986667pt;}
.y25_c02366{bottom:340.386667pt;}
.y24_c02366{bottom:355.426667pt;}
.y23_c02366{bottom:374.626667pt;}
.y22_c02366{bottom:393.666667pt;}
.y21_c02366{bottom:412.706667pt;}
.y1e_c02366{bottom:431.746667pt;}
.y1d_c02366{bottom:469.186667pt;}
.y1c_c02366{bottom:488.253333pt;}
.y1b_c02366{bottom:507.293333pt;}
.y1a_c02366{bottom:526.493333pt;}
.y18_c02366{bottom:545.533333pt;}
.y12_c02366{bottom:564.573333pt;}
.y15_c02366{bottom:583.613333pt;}
.y11_c02366{bottom:615.773333pt;}
.y10_c02366{bottom:634.333333pt;}
.yf_c02366{bottom:652.733333pt;}
.ye_c02366{bottom:671.133333pt;}
.yd_c02366{bottom:698.493333pt;}
.yc_c02366{bottom:726.213333pt;}
.yb_c02366{bottom:753.733333pt;}
.ya_c02366{bottom:781.413333pt;}
.y9_c02366{bottom:808.933333pt;}
.y8_c02366{bottom:836.613333pt;}
.y7_c02366{bottom:864.133333pt;}
.y6_c02366{bottom:891.813333pt;}
.y5_c02366{bottom:919.333333pt;}
.y4_c02366{bottom:947.040000pt;}
.h6_c02366{height:18.400000pt;}
.h8_c02366{height:18.432000pt;}
.h2_c02366{height:20.000000pt;}
.h9_c02366{height:36.800000pt;}
.h5_c02366{height:37.440000pt;}
.h1_c02366{height:43.441250pt;}
.h4_c02366{height:57.375000pt;}
.h3_c02366{height:62.812500pt;}
.h7_c02366{height:64.500000pt;}
.h0_c02366{height:1056.000000pt;}
.w1_c02366{width:59.232000pt;}
.w4_c02366{width:70.240000pt;}
.w7_c02366{width:81.792000pt;}
.w5_c02366{width:83.872000pt;}
.w6_c02366{width:85.440000pt;}
.w2_c02366{width:226.266667pt;}
.w3_c02366{width:252.386667pt;}
.w0_c02366{width:816.000000pt;}
.x0_c02366{left:0.000000pt;}
.xe_c02366{left:7.040000pt;}
.x11_c02366{left:13.760000pt;}
.x3_c02366{left:14.720000pt;}
.xf_c02366{left:16.160000pt;}
.x13_c02366{left:19.040000pt;}
.x20_c02366{left:20.960000pt;}
.x1c_c02366{left:22.880000pt;}
.x17_c02366{left:31.040000pt;}
.xd_c02366{left:35.040000pt;}
.x16_c02366{left:36.800000pt;}
.x15_c02366{left:37.920000pt;}
.x1f_c02366{left:40.800000pt;}
.x1e_c02366{left:41.920000pt;}
.x18_c02366{left:54.720000pt;}
.x1d_c02366{left:61.920000pt;}
.x1a_c02366{left:64.480000pt;}
.x14_c02366{left:66.240000pt;}
.x1b_c02366{left:68.480000pt;}
.x19_c02366{left:70.720000pt;}
.x22_c02366{left:85.120000pt;}
.x9_c02366{left:91.680000pt;}
.xb_c02366{left:92.826667pt;}
.x21_c02366{left:95.360000pt;}
.x1_c02366{left:113.472000pt;}
.x8_c02366{left:159.386667pt;}
.x4_c02366{left:166.266667pt;}
.x6_c02366{left:232.986667pt;}
.x7_c02366{left:309.986667pt;}
.xa_c02366{left:386.306667pt;}
.x5_c02366{left:391.266667pt;}
.x10_c02366{left:470.813333pt;}
.x12_c02366{left:556.893333pt;}
.xc_c02366{left:639.333333pt;}
.x2_c02366{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02367 {
    display:none;
  }
  .loading-indicator_c02367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02367 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02367 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02367" -> "#page-container .classname_c02367")
 */
.pf_c02367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02367 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02367 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02367 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02367 {overflow:visible;}
  }
}
.c_c02367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02367 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02367:after { /* webkit #35443 */
  content: '';
}
.t_c02367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02367 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02367 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02367 { /* info for Javascript */
  display:none;
}
.l_c02367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02367:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02367 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02367.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02367;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02367{font-family:ff1_c02367;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02367;src:url('chunks/assets/font_4296a8992f18bd75bcacd10f.woff2')format("woff");}.ff2_c02367{font-family:ff2_c02367;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:ff3_c02367;src:url('chunks/assets/font_2e2b4c2328c2ccf6864f64b4.woff2')format("woff");}.ff3_c02367{font-family:ff3_c02367;line-height:1.112305;font-style:normal;font-weight: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_c02367;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02367{font-family:ff4_c02367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02367{vertical-align:0.000000px;}
.ls0_c02367{letter-spacing:0.000000px;}
.sc__c02367{text-shadow:none;}
.sc0_c02367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02367{-webkit-text-stroke:0px transparent;}
.sc0_c02367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02367{word-spacing:0.000000px;}
._3_c02367{margin-left:-1.008000px;}
._2_c02367{width:1.740000px;}
._7_c02367{width:3.816000px;}
._4_c02367{width:4.968000px;}
._5_c02367{width:6.408000px;}
._6_c02367{width:7.500000px;}
._8_c02367{width:8.748000px;}
._b_c02367{width:12.672000px;}
._0_c02367{width:13.896000px;}
._1_c02367{width:15.120000px;}
._9_c02367{width:22.104000px;}
._a_c02367{width:23.328000px;}
.fc1_c02367{color:rgb(192,80,77);}
.fc3_c02367{color:rgb(255,255,255);}
.fc2_c02367{color:rgb(17,17,17);}
.fc0_c02367{color:rgb(0,0,0);}
.fs0_c02367{font-size:66.240000px;}
.fs1_c02367{font-size:72.000000px;}
.y0_c02367{bottom:0.000000px;}
.y1a_c02367{bottom:4.140000px;}
.y17_c02367{bottom:4.500000px;}
.y3_c02367{bottom:4.680000px;}
.y18_c02367{bottom:5.040000px;}
.y15_c02367{bottom:5.400000px;}
.y21_c02367{bottom:24.840000px;}
.y20_c02367{bottom:25.200000px;}
.y14_c02367{bottom:26.100000px;}
.y2_c02367{bottom:41.796000px;}
.y1_c02367{bottom:75.456000px;}
.y29_c02367{bottom:289.875000px;}
.y28_c02367{bottom:310.575000px;}
.y27_c02367{bottom:331.275000px;}
.y26_c02367{bottom:351.975000px;}
.y25_c02367{bottom:368.895000px;}
.y24_c02367{bottom:390.315000px;}
.y23_c02367{bottom:411.735000px;}
.y22_c02367{bottom:433.155000px;}
.y1f_c02367{bottom:454.755000px;}
.y1e_c02367{bottom:496.875000px;}
.y1d_c02367{bottom:518.295000px;}
.y1c_c02367{bottom:539.745000px;}
.y1b_c02367{bottom:561.165000px;}
.y19_c02367{bottom:582.585000px;}
.y13_c02367{bottom:604.005000px;}
.y16_c02367{bottom:625.605000px;}
.y12_c02367{bottom:661.605000px;}
.y11_c02367{bottom:682.485000px;}
.y10_c02367{bottom:703.185000px;}
.yf_c02367{bottom:723.885000px;}
.ye_c02367{bottom:754.845000px;}
.yd_c02367{bottom:785.805000px;}
.yc_c02367{bottom:816.990000px;}
.yb_c02367{bottom:847.950000px;}
.ya_c02367{bottom:879.090000px;}
.y9_c02367{bottom:910.050000px;}
.y8_c02367{bottom:941.190000px;}
.y7_c02367{bottom:972.150000px;}
.y6_c02367{bottom:1003.290000px;}
.y5_c02367{bottom:1034.250000px;}
.y4_c02367{bottom:1065.420000px;}
.h6_c02367{height:20.700000px;}
.h8_c02367{height:20.736000px;}
.h2_c02367{height:22.500000px;}
.h9_c02367{height:41.400000px;}
.h5_c02367{height:42.300000px;}
.h1_c02367{height:48.871406px;}
.h4_c02367{height:64.546875px;}
.h3_c02367{height:70.664062px;}
.h7_c02367{height:72.562500px;}
.h0_c02367{height:1188.000000px;}
.w1_c02367{width:66.636000px;}
.w4_c02367{width:79.020000px;}
.w7_c02367{width:92.016000px;}
.w5_c02367{width:94.356000px;}
.w6_c02367{width:96.120000px;}
.w2_c02367{width:254.550000px;}
.w3_c02367{width:283.935000px;}
.w0_c02367{width:918.000000px;}
.x0_c02367{left:0.000000px;}
.xe_c02367{left:7.920000px;}
.x11_c02367{left:15.480000px;}
.x3_c02367{left:16.560000px;}
.xf_c02367{left:18.180000px;}
.x13_c02367{left:21.420000px;}
.x20_c02367{left:23.580000px;}
.x1c_c02367{left:25.740000px;}
.x17_c02367{left:34.920000px;}
.xd_c02367{left:39.420000px;}
.x16_c02367{left:41.400000px;}
.x15_c02367{left:42.660000px;}
.x1f_c02367{left:45.900000px;}
.x1e_c02367{left:47.160000px;}
.x18_c02367{left:61.560000px;}
.x1d_c02367{left:69.660000px;}
.x1a_c02367{left:72.540000px;}
.x14_c02367{left:74.520000px;}
.x1b_c02367{left:77.040000px;}
.x19_c02367{left:79.560000px;}
.x22_c02367{left:95.760000px;}
.x9_c02367{left:103.140000px;}
.xb_c02367{left:104.430000px;}
.x21_c02367{left:107.280000px;}
.x1_c02367{left:127.656000px;}
.x8_c02367{left:179.310000px;}
.x4_c02367{left:187.050000px;}
.x6_c02367{left:272.190000px;}
.x7_c02367{left:348.735000px;}
.xa_c02367{left:434.595000px;}
.x5_c02367{left:440.175000px;}
.x10_c02367{left:529.665000px;}
.x12_c02367{left:626.505000px;}
.xc_c02367{left:719.250000px;}
.x2_c02367{left:820.950000px;}
@media print{
.v0_c02367{vertical-align:0.000000pt;}
.ls0_c02367{letter-spacing:0.000000pt;}
.ws0_c02367{word-spacing:0.000000pt;}
._3_c02367{margin-left:-0.896000pt;}
._2_c02367{width:1.546667pt;}
._7_c02367{width:3.392000pt;}
._4_c02367{width:4.416000pt;}
._5_c02367{width:5.696000pt;}
._6_c02367{width:6.666667pt;}
._8_c02367{width:7.776000pt;}
._b_c02367{width:11.264000pt;}
._0_c02367{width:12.352000pt;}
._1_c02367{width:13.440000pt;}
._9_c02367{width:19.648000pt;}
._a_c02367{width:20.736000pt;}
.fs0_c02367{font-size:58.880000pt;}
.fs1_c02367{font-size:64.000000pt;}
.y0_c02367{bottom:0.000000pt;}
.y1a_c02367{bottom:3.680000pt;}
.y17_c02367{bottom:4.000000pt;}
.y3_c02367{bottom:4.160000pt;}
.y18_c02367{bottom:4.480000pt;}
.y15_c02367{bottom:4.800000pt;}
.y21_c02367{bottom:22.080000pt;}
.y20_c02367{bottom:22.400000pt;}
.y14_c02367{bottom:23.200000pt;}
.y2_c02367{bottom:37.152000pt;}
.y1_c02367{bottom:67.072000pt;}
.y29_c02367{bottom:257.666667pt;}
.y28_c02367{bottom:276.066667pt;}
.y27_c02367{bottom:294.466667pt;}
.y26_c02367{bottom:312.866667pt;}
.y25_c02367{bottom:327.906667pt;}
.y24_c02367{bottom:346.946667pt;}
.y23_c02367{bottom:365.986667pt;}
.y22_c02367{bottom:385.026667pt;}
.y1f_c02367{bottom:404.226667pt;}
.y1e_c02367{bottom:441.666667pt;}
.y1d_c02367{bottom:460.706667pt;}
.y1c_c02367{bottom:479.773333pt;}
.y1b_c02367{bottom:498.813333pt;}
.y19_c02367{bottom:517.853333pt;}
.y13_c02367{bottom:536.893333pt;}
.y16_c02367{bottom:556.093333pt;}
.y12_c02367{bottom:588.093333pt;}
.y11_c02367{bottom:606.653333pt;}
.y10_c02367{bottom:625.053333pt;}
.yf_c02367{bottom:643.453333pt;}
.ye_c02367{bottom:670.973333pt;}
.yd_c02367{bottom:698.493333pt;}
.yc_c02367{bottom:726.213333pt;}
.yb_c02367{bottom:753.733333pt;}
.ya_c02367{bottom:781.413333pt;}
.y9_c02367{bottom:808.933333pt;}
.y8_c02367{bottom:836.613333pt;}
.y7_c02367{bottom:864.133333pt;}
.y6_c02367{bottom:891.813333pt;}
.y5_c02367{bottom:919.333333pt;}
.y4_c02367{bottom:947.040000pt;}
.h6_c02367{height:18.400000pt;}
.h8_c02367{height:18.432000pt;}
.h2_c02367{height:20.000000pt;}
.h9_c02367{height:36.800000pt;}
.h5_c02367{height:37.600000pt;}
.h1_c02367{height:43.441250pt;}
.h4_c02367{height:57.375000pt;}
.h3_c02367{height:62.812500pt;}
.h7_c02367{height:64.500000pt;}
.h0_c02367{height:1056.000000pt;}
.w1_c02367{width:59.232000pt;}
.w4_c02367{width:70.240000pt;}
.w7_c02367{width:81.792000pt;}
.w5_c02367{width:83.872000pt;}
.w6_c02367{width:85.440000pt;}
.w2_c02367{width:226.266667pt;}
.w3_c02367{width:252.386667pt;}
.w0_c02367{width:816.000000pt;}
.x0_c02367{left:0.000000pt;}
.xe_c02367{left:7.040000pt;}
.x11_c02367{left:13.760000pt;}
.x3_c02367{left:14.720000pt;}
.xf_c02367{left:16.160000pt;}
.x13_c02367{left:19.040000pt;}
.x20_c02367{left:20.960000pt;}
.x1c_c02367{left:22.880000pt;}
.x17_c02367{left:31.040000pt;}
.xd_c02367{left:35.040000pt;}
.x16_c02367{left:36.800000pt;}
.x15_c02367{left:37.920000pt;}
.x1f_c02367{left:40.800000pt;}
.x1e_c02367{left:41.920000pt;}
.x18_c02367{left:54.720000pt;}
.x1d_c02367{left:61.920000pt;}
.x1a_c02367{left:64.480000pt;}
.x14_c02367{left:66.240000pt;}
.x1b_c02367{left:68.480000pt;}
.x19_c02367{left:70.720000pt;}
.x22_c02367{left:85.120000pt;}
.x9_c02367{left:91.680000pt;}
.xb_c02367{left:92.826667pt;}
.x21_c02367{left:95.360000pt;}
.x1_c02367{left:113.472000pt;}
.x8_c02367{left:159.386667pt;}
.x4_c02367{left:166.266667pt;}
.x6_c02367{left:241.946667pt;}
.x7_c02367{left:309.986667pt;}
.xa_c02367{left:386.306667pt;}
.x5_c02367{left:391.266667pt;}
.x10_c02367{left:470.813333pt;}
.x12_c02367{left:556.893333pt;}
.xc_c02367{left:639.333333pt;}
.x2_c02367{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02368 {
    display:none;
  }
  .loading-indicator_c02368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02368 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02368 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02368" -> "#page-container .classname_c02368")
 */
.pf_c02368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02368 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02368 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02368 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02368 {overflow:visible;}
  }
}
.c_c02368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02368 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02368:after { /* webkit #35443 */
  content: '';
}
.t_c02368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02368 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02368 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02368 { /* info for Javascript */
  display:none;
}
.l_c02368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02368:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02368 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02368.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02368;src:url('chunks/assets/font_d2f60a5a5c40aedb9d7b2974.woff2')format("woff");}.ff1_c02368{font-family:ff1_c02368;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02368;src:url('chunks/assets/font_2b9d83a09f8ca189feceb7b2.woff2')format("woff");}.ff2_c02368{font-family:ff2_c02368;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:ff3_c02368;src:url('chunks/assets/font_a431ee90d7bfc3b8b48383a0.woff2')format("woff");}.ff3_c02368{font-family:ff3_c02368;line-height:1.112305;font-style:normal;font-weight: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_c02368;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02368{font-family:ff4_c02368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02368{vertical-align:0.000000px;}
.ls0_c02368{letter-spacing:0.000000px;}
.ls1_c02368{letter-spacing:0.216000px;}
.sc__c02368{text-shadow:none;}
.sc0_c02368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02368{-webkit-text-stroke:0px transparent;}
.sc0_c02368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02368{word-spacing:-18.216000px;}
.ws0_c02368{word-spacing:-18.000000px;}
.ws2_c02368{word-spacing:0.000000px;}
._9_c02368{margin-left:-1.296000px;}
._2_c02368{width:1.164000px;}
._3_c02368{width:2.208000px;}
._6_c02368{width:3.612000px;}
._a_c02368{width:4.968000px;}
._0_c02368{width:6.408000px;}
._1_c02368{width:7.704000px;}
._7_c02368{width:14.184000px;}
._8_c02368{width:15.336000px;}
._4_c02368{width:19.584000px;}
._5_c02368{width:20.592000px;}
.fc1_c02368{color:rgb(192,80,77);}
.fc3_c02368{color:rgb(255,255,255);}
.fc2_c02368{color:rgb(17,17,17);}
.fc0_c02368{color:rgb(0,0,0);}
.fs0_c02368{font-size:66.240000px;}
.fs1_c02368{font-size:72.000000px;}
.y0_c02368{bottom:0.000000px;}
.y19_c02368{bottom:4.140000px;}
.y16_c02368{bottom:4.500000px;}
.y3_c02368{bottom:4.680000px;}
.y17_c02368{bottom:4.860000px;}
.y14_c02368{bottom:5.220000px;}
.y20_c02368{bottom:24.840000px;}
.y1f_c02368{bottom:25.200000px;}
.y13_c02368{bottom:25.920000px;}
.y2_c02368{bottom:41.796000px;}
.y1_c02368{bottom:75.456000px;}
.y28_c02368{bottom:320.835000px;}
.y27_c02368{bottom:341.535000px;}
.y26_c02368{bottom:362.235000px;}
.y25_c02368{bottom:382.935000px;}
.y24_c02368{bottom:399.855000px;}
.y23_c02368{bottom:421.455000px;}
.y22_c02368{bottom:442.875000px;}
.y21_c02368{bottom:464.295000px;}
.y1e_c02368{bottom:485.715000px;}
.y1d_c02368{bottom:527.835000px;}
.y1c_c02368{bottom:549.285000px;}
.y1b_c02368{bottom:570.705000px;}
.y1a_c02368{bottom:592.305000px;}
.y18_c02368{bottom:613.725000px;}
.y12_c02368{bottom:635.145000px;}
.y15_c02368{bottom:656.565000px;}
.y11_c02368{bottom:692.745000px;}
.y10_c02368{bottom:713.625000px;}
.yf_c02368{bottom:734.325000px;}
.ye_c02368{bottom:755.025000px;}
.yd_c02368{bottom:785.805000px;}
.yc_c02368{bottom:816.990000px;}
.yb_c02368{bottom:847.950000px;}
.ya_c02368{bottom:879.090000px;}
.y9_c02368{bottom:910.050000px;}
.y8_c02368{bottom:941.190000px;}
.y7_c02368{bottom:972.150000px;}
.y6_c02368{bottom:1003.290000px;}
.y5_c02368{bottom:1034.250000px;}
.y4_c02368{bottom:1065.420000px;}
.h6_c02368{height:20.700000px;}
.h8_c02368{height:20.736000px;}
.h2_c02368{height:22.500000px;}
.h9_c02368{height:41.400000px;}
.h5_c02368{height:42.120000px;}
.h1_c02368{height:48.871406px;}
.h4_c02368{height:64.546875px;}
.h3_c02368{height:70.664062px;}
.h7_c02368{height:72.562500px;}
.h0_c02368{height:1188.000000px;}
.w1_c02368{width:66.636000px;}
.w4_c02368{width:79.020000px;}
.w7_c02368{width:92.016000px;}
.w5_c02368{width:94.356000px;}
.w6_c02368{width:96.120000px;}
.w2_c02368{width:254.550000px;}
.w3_c02368{width:283.935000px;}
.w0_c02368{width:918.000000px;}
.x0_c02368{left:0.000000px;}
.xe_c02368{left:7.920000px;}
.x11_c02368{left:15.480000px;}
.x3_c02368{left:16.560000px;}
.xf_c02368{left:18.180000px;}
.x13_c02368{left:21.420000px;}
.x20_c02368{left:23.580000px;}
.x1c_c02368{left:25.740000px;}
.x17_c02368{left:34.920000px;}
.xd_c02368{left:39.420000px;}
.x16_c02368{left:41.400000px;}
.x15_c02368{left:42.660000px;}
.x1f_c02368{left:45.900000px;}
.x1e_c02368{left:47.160000px;}
.x18_c02368{left:61.560000px;}
.x1d_c02368{left:69.660000px;}
.x1a_c02368{left:72.540000px;}
.x14_c02368{left:74.520000px;}
.x1b_c02368{left:77.040000px;}
.x19_c02368{left:79.560000px;}
.x22_c02368{left:95.760000px;}
.x9_c02368{left:103.140000px;}
.xb_c02368{left:104.430000px;}
.x21_c02368{left:107.280000px;}
.x1_c02368{left:127.656000px;}
.x8_c02368{left:179.310000px;}
.x4_c02368{left:187.050000px;}
.x6_c02368{left:291.810000px;}
.x7_c02368{left:348.735000px;}
.xa_c02368{left:434.595000px;}
.x5_c02368{left:440.175000px;}
.x10_c02368{left:529.665000px;}
.x12_c02368{left:626.505000px;}
.xc_c02368{left:719.250000px;}
.x2_c02368{left:820.950000px;}
@media print{
.v0_c02368{vertical-align:0.000000pt;}
.ls0_c02368{letter-spacing:0.000000pt;}
.ls1_c02368{letter-spacing:0.192000pt;}
.ws1_c02368{word-spacing:-16.192000pt;}
.ws0_c02368{word-spacing:-16.000000pt;}
.ws2_c02368{word-spacing:0.000000pt;}
._9_c02368{margin-left:-1.152000pt;}
._2_c02368{width:1.034667pt;}
._3_c02368{width:1.962667pt;}
._6_c02368{width:3.210667pt;}
._a_c02368{width:4.416000pt;}
._0_c02368{width:5.696000pt;}
._1_c02368{width:6.848000pt;}
._7_c02368{width:12.608000pt;}
._8_c02368{width:13.632000pt;}
._4_c02368{width:17.408000pt;}
._5_c02368{width:18.304000pt;}
.fs0_c02368{font-size:58.880000pt;}
.fs1_c02368{font-size:64.000000pt;}
.y0_c02368{bottom:0.000000pt;}
.y19_c02368{bottom:3.680000pt;}
.y16_c02368{bottom:4.000000pt;}
.y3_c02368{bottom:4.160000pt;}
.y17_c02368{bottom:4.320000pt;}
.y14_c02368{bottom:4.640000pt;}
.y20_c02368{bottom:22.080000pt;}
.y1f_c02368{bottom:22.400000pt;}
.y13_c02368{bottom:23.040000pt;}
.y2_c02368{bottom:37.152000pt;}
.y1_c02368{bottom:67.072000pt;}
.y28_c02368{bottom:285.186667pt;}
.y27_c02368{bottom:303.586667pt;}
.y26_c02368{bottom:321.986667pt;}
.y25_c02368{bottom:340.386667pt;}
.y24_c02368{bottom:355.426667pt;}
.y23_c02368{bottom:374.626667pt;}
.y22_c02368{bottom:393.666667pt;}
.y21_c02368{bottom:412.706667pt;}
.y1e_c02368{bottom:431.746667pt;}
.y1d_c02368{bottom:469.186667pt;}
.y1c_c02368{bottom:488.253333pt;}
.y1b_c02368{bottom:507.293333pt;}
.y1a_c02368{bottom:526.493333pt;}
.y18_c02368{bottom:545.533333pt;}
.y12_c02368{bottom:564.573333pt;}
.y15_c02368{bottom:583.613333pt;}
.y11_c02368{bottom:615.773333pt;}
.y10_c02368{bottom:634.333333pt;}
.yf_c02368{bottom:652.733333pt;}
.ye_c02368{bottom:671.133333pt;}
.yd_c02368{bottom:698.493333pt;}
.yc_c02368{bottom:726.213333pt;}
.yb_c02368{bottom:753.733333pt;}
.ya_c02368{bottom:781.413333pt;}
.y9_c02368{bottom:808.933333pt;}
.y8_c02368{bottom:836.613333pt;}
.y7_c02368{bottom:864.133333pt;}
.y6_c02368{bottom:891.813333pt;}
.y5_c02368{bottom:919.333333pt;}
.y4_c02368{bottom:947.040000pt;}
.h6_c02368{height:18.400000pt;}
.h8_c02368{height:18.432000pt;}
.h2_c02368{height:20.000000pt;}
.h9_c02368{height:36.800000pt;}
.h5_c02368{height:37.440000pt;}
.h1_c02368{height:43.441250pt;}
.h4_c02368{height:57.375000pt;}
.h3_c02368{height:62.812500pt;}
.h7_c02368{height:64.500000pt;}
.h0_c02368{height:1056.000000pt;}
.w1_c02368{width:59.232000pt;}
.w4_c02368{width:70.240000pt;}
.w7_c02368{width:81.792000pt;}
.w5_c02368{width:83.872000pt;}
.w6_c02368{width:85.440000pt;}
.w2_c02368{width:226.266667pt;}
.w3_c02368{width:252.386667pt;}
.w0_c02368{width:816.000000pt;}
.x0_c02368{left:0.000000pt;}
.xe_c02368{left:7.040000pt;}
.x11_c02368{left:13.760000pt;}
.x3_c02368{left:14.720000pt;}
.xf_c02368{left:16.160000pt;}
.x13_c02368{left:19.040000pt;}
.x20_c02368{left:20.960000pt;}
.x1c_c02368{left:22.880000pt;}
.x17_c02368{left:31.040000pt;}
.xd_c02368{left:35.040000pt;}
.x16_c02368{left:36.800000pt;}
.x15_c02368{left:37.920000pt;}
.x1f_c02368{left:40.800000pt;}
.x1e_c02368{left:41.920000pt;}
.x18_c02368{left:54.720000pt;}
.x1d_c02368{left:61.920000pt;}
.x1a_c02368{left:64.480000pt;}
.x14_c02368{left:66.240000pt;}
.x1b_c02368{left:68.480000pt;}
.x19_c02368{left:70.720000pt;}
.x22_c02368{left:85.120000pt;}
.x9_c02368{left:91.680000pt;}
.xb_c02368{left:92.826667pt;}
.x21_c02368{left:95.360000pt;}
.x1_c02368{left:113.472000pt;}
.x8_c02368{left:159.386667pt;}
.x4_c02368{left:166.266667pt;}
.x6_c02368{left:259.386667pt;}
.x7_c02368{left:309.986667pt;}
.xa_c02368{left:386.306667pt;}
.x5_c02368{left:391.266667pt;}
.x10_c02368{left:470.813333pt;}
.x12_c02368{left:556.893333pt;}
.xc_c02368{left:639.333333pt;}
.x2_c02368{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02369 {
    display:none;
  }
  .loading-indicator_c02369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02369 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02369 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02369" -> "#page-container .classname_c02369")
 */
.pf_c02369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02369 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02369 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02369 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02369 {overflow:visible;}
  }
}
.c_c02369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02369 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02369:after { /* webkit #35443 */
  content: '';
}
.t_c02369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02369 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02369 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02369 { /* info for Javascript */
  display:none;
}
.l_c02369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02369:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02369 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02369.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02369;src:url('chunks/assets/font_5f1708c0d402c66ca3e8af05.woff2')format("woff");}.ff1_c02369{font-family:ff1_c02369;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02369;src:url('chunks/assets/font_435cc276564f59b2f78bac80.woff2')format("woff");}.ff2_c02369{font-family:ff2_c02369;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:ff3_c02369;src:url('chunks/assets/font_ad162d8477d565c3f9b0b61f.woff2')format("woff");}.ff3_c02369{font-family:ff3_c02369;line-height:1.112305;font-style:normal;font-weight: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_c02369;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02369{font-family:ff4_c02369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02369{vertical-align:0.000000px;}
.ls0_c02369{letter-spacing:0.000000px;}
.sc__c02369{text-shadow:none;}
.sc0_c02369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02369{-webkit-text-stroke:0px transparent;}
.sc0_c02369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02369{word-spacing:0.000000px;}
._9_c02369{margin-left:-1.008000px;}
._1_c02369{width:1.296000px;}
._3_c02369{width:2.448000px;}
._b_c02369{width:4.176000px;}
._4_c02369{width:7.848000px;}
._5_c02369{width:8.928000px;}
._6_c02369{width:10.008000px;}
._a_c02369{width:13.752000px;}
._0_c02369{width:15.336000px;}
._2_c02369{width:16.488000px;}
._7_c02369{width:20.664000px;}
._8_c02369{width:22.032000px;}
.fc1_c02369{color:rgb(192,80,77);}
.fc3_c02369{color:rgb(255,255,255);}
.fc2_c02369{color:rgb(17,17,17);}
.fc0_c02369{color:rgb(0,0,0);}
.fs0_c02369{font-size:66.240000px;}
.fs1_c02369{font-size:72.000000px;}
.y0_c02369{bottom:0.000000px;}
.y18_c02369{bottom:4.140000px;}
.y15_c02369{bottom:4.500000px;}
.y3_c02369{bottom:4.680000px;}
.y16_c02369{bottom:5.040000px;}
.y13_c02369{bottom:5.400000px;}
.y1f_c02369{bottom:24.690000px;}
.y1e_c02369{bottom:25.050000px;}
.y12_c02369{bottom:26.100000px;}
.y2_c02369{bottom:41.796000px;}
.y1_c02369{bottom:75.456000px;}
.y27_c02369{bottom:351.975000px;}
.y26_c02369{bottom:372.675000px;}
.y25_c02369{bottom:393.375000px;}
.y24_c02369{bottom:414.075000px;}
.y23_c02369{bottom:430.995000px;}
.y22_c02369{bottom:452.415000px;}
.y21_c02369{bottom:473.835000px;}
.y20_c02369{bottom:495.255000px;}
.y1d_c02369{bottom:516.855000px;}
.y1c_c02369{bottom:559.005000px;}
.y1b_c02369{bottom:580.425000px;}
.y1a_c02369{bottom:601.845000px;}
.y19_c02369{bottom:623.265000px;}
.y17_c02369{bottom:644.685000px;}
.y11_c02369{bottom:666.105000px;}
.y14_c02369{bottom:687.705000px;}
.y10_c02369{bottom:723.705000px;}
.yf_c02369{bottom:744.585000px;}
.ye_c02369{bottom:765.285000px;}
.yd_c02369{bottom:785.985000px;}
.yc_c02369{bottom:816.990000px;}
.yb_c02369{bottom:847.950000px;}
.ya_c02369{bottom:879.090000px;}
.y9_c02369{bottom:910.050000px;}
.y8_c02369{bottom:941.190000px;}
.y7_c02369{bottom:972.150000px;}
.y6_c02369{bottom:1003.290000px;}
.y5_c02369{bottom:1034.250000px;}
.y4_c02369{bottom:1065.420000px;}
.h6_c02369{height:20.700000px;}
.h2_c02369{height:22.500000px;}
.h8_c02369{height:41.256000px;}
.h5_c02369{height:42.300000px;}
.h1_c02369{height:48.871406px;}
.h4_c02369{height:64.546875px;}
.h3_c02369{height:70.664062px;}
.h7_c02369{height:72.562500px;}
.h0_c02369{height:1188.000000px;}
.w1_c02369{width:66.636000px;}
.w4_c02369{width:79.020000px;}
.w7_c02369{width:92.016000px;}
.w5_c02369{width:94.356000px;}
.w6_c02369{width:96.120000px;}
.w2_c02369{width:254.550000px;}
.w3_c02369{width:283.935000px;}
.w0_c02369{width:918.000000px;}
.x0_c02369{left:0.000000px;}
.xe_c02369{left:7.920000px;}
.x11_c02369{left:15.480000px;}
.x3_c02369{left:16.560000px;}
.xf_c02369{left:18.180000px;}
.x13_c02369{left:21.420000px;}
.x20_c02369{left:23.580000px;}
.x1c_c02369{left:25.740000px;}
.x17_c02369{left:34.920000px;}
.xd_c02369{left:39.420000px;}
.x16_c02369{left:41.400000px;}
.x15_c02369{left:42.660000px;}
.x1f_c02369{left:45.900000px;}
.x1e_c02369{left:47.160000px;}
.x18_c02369{left:61.560000px;}
.x1d_c02369{left:69.660000px;}
.x1a_c02369{left:72.540000px;}
.x14_c02369{left:74.520000px;}
.x1b_c02369{left:77.040000px;}
.x19_c02369{left:79.560000px;}
.x22_c02369{left:95.760000px;}
.x9_c02369{left:103.140000px;}
.xb_c02369{left:104.430000px;}
.x21_c02369{left:107.280000px;}
.x1_c02369{left:127.656000px;}
.x8_c02369{left:179.310000px;}
.x4_c02369{left:187.050000px;}
.x6_c02369{left:249.330000px;}
.x7_c02369{left:348.735000px;}
.xa_c02369{left:434.595000px;}
.x5_c02369{left:440.175000px;}
.x10_c02369{left:529.665000px;}
.x12_c02369{left:626.505000px;}
.xc_c02369{left:719.250000px;}
.x2_c02369{left:820.950000px;}
@media print{
.v0_c02369{vertical-align:0.000000pt;}
.ls0_c02369{letter-spacing:0.000000pt;}
.ws0_c02369{word-spacing:0.000000pt;}
._9_c02369{margin-left:-0.896000pt;}
._1_c02369{width:1.152000pt;}
._3_c02369{width:2.176000pt;}
._b_c02369{width:3.712000pt;}
._4_c02369{width:6.976000pt;}
._5_c02369{width:7.936000pt;}
._6_c02369{width:8.896000pt;}
._a_c02369{width:12.224000pt;}
._0_c02369{width:13.632000pt;}
._2_c02369{width:14.656000pt;}
._7_c02369{width:18.368000pt;}
._8_c02369{width:19.584000pt;}
.fs0_c02369{font-size:58.880000pt;}
.fs1_c02369{font-size:64.000000pt;}
.y0_c02369{bottom:0.000000pt;}
.y18_c02369{bottom:3.680000pt;}
.y15_c02369{bottom:4.000000pt;}
.y3_c02369{bottom:4.160000pt;}
.y16_c02369{bottom:4.480000pt;}
.y13_c02369{bottom:4.800000pt;}
.y1f_c02369{bottom:21.946667pt;}
.y1e_c02369{bottom:22.266667pt;}
.y12_c02369{bottom:23.200000pt;}
.y2_c02369{bottom:37.152000pt;}
.y1_c02369{bottom:67.072000pt;}
.y27_c02369{bottom:312.866667pt;}
.y26_c02369{bottom:331.266667pt;}
.y25_c02369{bottom:349.666667pt;}
.y24_c02369{bottom:368.066667pt;}
.y23_c02369{bottom:383.106667pt;}
.y22_c02369{bottom:402.146667pt;}
.y21_c02369{bottom:421.186667pt;}
.y20_c02369{bottom:440.226667pt;}
.y1d_c02369{bottom:459.426667pt;}
.y1c_c02369{bottom:496.893333pt;}
.y1b_c02369{bottom:515.933333pt;}
.y1a_c02369{bottom:534.973333pt;}
.y19_c02369{bottom:554.013333pt;}
.y17_c02369{bottom:573.053333pt;}
.y11_c02369{bottom:592.093333pt;}
.y14_c02369{bottom:611.293333pt;}
.y10_c02369{bottom:643.293333pt;}
.yf_c02369{bottom:661.853333pt;}
.ye_c02369{bottom:680.253333pt;}
.yd_c02369{bottom:698.653333pt;}
.yc_c02369{bottom:726.213333pt;}
.yb_c02369{bottom:753.733333pt;}
.ya_c02369{bottom:781.413333pt;}
.y9_c02369{bottom:808.933333pt;}
.y8_c02369{bottom:836.613333pt;}
.y7_c02369{bottom:864.133333pt;}
.y6_c02369{bottom:891.813333pt;}
.y5_c02369{bottom:919.333333pt;}
.y4_c02369{bottom:947.040000pt;}
.h6_c02369{height:18.400000pt;}
.h2_c02369{height:20.000000pt;}
.h8_c02369{height:36.672000pt;}
.h5_c02369{height:37.600000pt;}
.h1_c02369{height:43.441250pt;}
.h4_c02369{height:57.375000pt;}
.h3_c02369{height:62.812500pt;}
.h7_c02369{height:64.500000pt;}
.h0_c02369{height:1056.000000pt;}
.w1_c02369{width:59.232000pt;}
.w4_c02369{width:70.240000pt;}
.w7_c02369{width:81.792000pt;}
.w5_c02369{width:83.872000pt;}
.w6_c02369{width:85.440000pt;}
.w2_c02369{width:226.266667pt;}
.w3_c02369{width:252.386667pt;}
.w0_c02369{width:816.000000pt;}
.x0_c02369{left:0.000000pt;}
.xe_c02369{left:7.040000pt;}
.x11_c02369{left:13.760000pt;}
.x3_c02369{left:14.720000pt;}
.xf_c02369{left:16.160000pt;}
.x13_c02369{left:19.040000pt;}
.x20_c02369{left:20.960000pt;}
.x1c_c02369{left:22.880000pt;}
.x17_c02369{left:31.040000pt;}
.xd_c02369{left:35.040000pt;}
.x16_c02369{left:36.800000pt;}
.x15_c02369{left:37.920000pt;}
.x1f_c02369{left:40.800000pt;}
.x1e_c02369{left:41.920000pt;}
.x18_c02369{left:54.720000pt;}
.x1d_c02369{left:61.920000pt;}
.x1a_c02369{left:64.480000pt;}
.x14_c02369{left:66.240000pt;}
.x1b_c02369{left:68.480000pt;}
.x19_c02369{left:70.720000pt;}
.x22_c02369{left:85.120000pt;}
.x9_c02369{left:91.680000pt;}
.xb_c02369{left:92.826667pt;}
.x21_c02369{left:95.360000pt;}
.x1_c02369{left:113.472000pt;}
.x8_c02369{left:159.386667pt;}
.x4_c02369{left:166.266667pt;}
.x6_c02369{left:221.626667pt;}
.x7_c02369{left:309.986667pt;}
.xa_c02369{left:386.306667pt;}
.x5_c02369{left:391.266667pt;}
.x10_c02369{left:470.813333pt;}
.x12_c02369{left:556.893333pt;}
.xc_c02369{left:639.333333pt;}
.x2_c02369{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02370 {
    display:none;
  }
  .loading-indicator_c02370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02370 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02370 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02370" -> "#page-container .classname_c02370")
 */
.pf_c02370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02370 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02370 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02370 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02370 {overflow:visible;}
  }
}
.c_c02370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02370 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02370:after { /* webkit #35443 */
  content: '';
}
.t_c02370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02370 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02370 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02370 { /* info for Javascript */
  display:none;
}
.l_c02370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02370:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02370 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02370.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02370;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02370{font-family:ff1_c02370;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02370;src:url('chunks/assets/font_0c7bee54c532684f91960f1a.woff2')format("woff");}.ff2_c02370{font-family:ff2_c02370;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:ff3_c02370;src:url('chunks/assets/font_fbf3afe351fe05b8449dcfe0.woff2')format("woff");}.ff3_c02370{font-family:ff3_c02370;line-height:1.112305;font-style:normal;font-weight: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_c02370;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02370{font-family:ff4_c02370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02370{vertical-align:0.000000px;}
.ls0_c02370{letter-spacing:0.000000px;}
.sc__c02370{text-shadow:none;}
.sc0_c02370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02370{-webkit-text-stroke:0px transparent;}
.sc0_c02370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02370{word-spacing:-18.000000px;}
.ws1_c02370{word-spacing:0.000000px;}
._3_c02370{margin-left:-2.088000px;}
._1_c02370{margin-left:-1.080000px;}
._2_c02370{width:1.152000px;}
._6_c02370{width:2.376000px;}
._4_c02370{width:3.528000px;}
._0_c02370{width:4.968000px;}
._5_c02370{width:19.080000px;}
._7_c02370{width:20.736000px;}
._8_c02370{width:223.200000px;}
.fc1_c02370{color:rgb(192,80,77);}
.fc3_c02370{color:rgb(255,255,255);}
.fc2_c02370{color:rgb(17,17,17);}
.fc0_c02370{color:rgb(0,0,0);}
.fs0_c02370{font-size:66.240000px;}
.fs1_c02370{font-size:72.000000px;}
.y0_c02370{bottom:0.000000px;}
.y18_c02370{bottom:4.140000px;}
.y15_c02370{bottom:4.500000px;}
.y3_c02370{bottom:4.680000px;}
.y16_c02370{bottom:5.040000px;}
.y13_c02370{bottom:5.400000px;}
.y1f_c02370{bottom:24.690000px;}
.y1e_c02370{bottom:25.050000px;}
.y12_c02370{bottom:26.100000px;}
.y2_c02370{bottom:41.796000px;}
.y1_c02370{bottom:75.456000px;}
.y27_c02370{bottom:351.975000px;}
.y26_c02370{bottom:372.675000px;}
.y25_c02370{bottom:393.375000px;}
.y24_c02370{bottom:414.075000px;}
.y23_c02370{bottom:430.995000px;}
.y22_c02370{bottom:452.415000px;}
.y21_c02370{bottom:473.835000px;}
.y20_c02370{bottom:495.255000px;}
.y1d_c02370{bottom:516.855000px;}
.y1c_c02370{bottom:559.005000px;}
.y1b_c02370{bottom:580.425000px;}
.y1a_c02370{bottom:601.845000px;}
.y19_c02370{bottom:623.265000px;}
.y17_c02370{bottom:644.685000px;}
.y11_c02370{bottom:666.105000px;}
.y14_c02370{bottom:687.705000px;}
.y10_c02370{bottom:723.705000px;}
.yf_c02370{bottom:744.585000px;}
.ye_c02370{bottom:765.285000px;}
.yd_c02370{bottom:785.985000px;}
.yc_c02370{bottom:816.990000px;}
.yb_c02370{bottom:847.950000px;}
.ya_c02370{bottom:879.090000px;}
.y9_c02370{bottom:910.050000px;}
.y8_c02370{bottom:941.190000px;}
.y7_c02370{bottom:972.150000px;}
.y6_c02370{bottom:1003.290000px;}
.y5_c02370{bottom:1034.250000px;}
.y4_c02370{bottom:1065.420000px;}
.h6_c02370{height:20.700000px;}
.h2_c02370{height:22.500000px;}
.h8_c02370{height:41.256000px;}
.h5_c02370{height:42.300000px;}
.h1_c02370{height:48.871406px;}
.h4_c02370{height:64.546875px;}
.h3_c02370{height:70.664062px;}
.h7_c02370{height:72.562500px;}
.h0_c02370{height:1188.000000px;}
.w1_c02370{width:66.636000px;}
.w4_c02370{width:79.020000px;}
.w7_c02370{width:92.016000px;}
.w5_c02370{width:94.356000px;}
.w6_c02370{width:96.120000px;}
.w2_c02370{width:254.550000px;}
.w3_c02370{width:283.935000px;}
.w0_c02370{width:918.000000px;}
.x0_c02370{left:0.000000px;}
.xe_c02370{left:7.920000px;}
.x11_c02370{left:15.480000px;}
.x3_c02370{left:16.560000px;}
.xf_c02370{left:18.180000px;}
.x13_c02370{left:21.420000px;}
.x1f_c02370{left:23.580000px;}
.x1b_c02370{left:25.740000px;}
.x17_c02370{left:34.920000px;}
.xd_c02370{left:39.420000px;}
.x16_c02370{left:41.400000px;}
.x15_c02370{left:42.660000px;}
.x1e_c02370{left:45.900000px;}
.x1d_c02370{left:47.160000px;}
.x1c_c02370{left:69.660000px;}
.x19_c02370{left:72.540000px;}
.x14_c02370{left:74.520000px;}
.x1a_c02370{left:77.040000px;}
.x18_c02370{left:79.560000px;}
.x21_c02370{left:95.760000px;}
.x9_c02370{left:103.140000px;}
.xb_c02370{left:104.430000px;}
.x20_c02370{left:107.280000px;}
.x1_c02370{left:127.656000px;}
.x8_c02370{left:179.310000px;}
.x4_c02370{left:187.050000px;}
.x6_c02370{left:292.350000px;}
.x7_c02370{left:348.735000px;}
.xa_c02370{left:434.595000px;}
.x5_c02370{left:440.175000px;}
.x10_c02370{left:529.665000px;}
.x12_c02370{left:626.505000px;}
.xc_c02370{left:719.250000px;}
.x2_c02370{left:820.950000px;}
@media print{
.v0_c02370{vertical-align:0.000000pt;}
.ls0_c02370{letter-spacing:0.000000pt;}
.ws0_c02370{word-spacing:-16.000000pt;}
.ws1_c02370{word-spacing:0.000000pt;}
._3_c02370{margin-left:-1.856000pt;}
._1_c02370{margin-left:-0.960000pt;}
._2_c02370{width:1.024000pt;}
._6_c02370{width:2.112000pt;}
._4_c02370{width:3.136000pt;}
._0_c02370{width:4.416000pt;}
._5_c02370{width:16.960000pt;}
._7_c02370{width:18.432000pt;}
._8_c02370{width:198.400000pt;}
.fs0_c02370{font-size:58.880000pt;}
.fs1_c02370{font-size:64.000000pt;}
.y0_c02370{bottom:0.000000pt;}
.y18_c02370{bottom:3.680000pt;}
.y15_c02370{bottom:4.000000pt;}
.y3_c02370{bottom:4.160000pt;}
.y16_c02370{bottom:4.480000pt;}
.y13_c02370{bottom:4.800000pt;}
.y1f_c02370{bottom:21.946667pt;}
.y1e_c02370{bottom:22.266667pt;}
.y12_c02370{bottom:23.200000pt;}
.y2_c02370{bottom:37.152000pt;}
.y1_c02370{bottom:67.072000pt;}
.y27_c02370{bottom:312.866667pt;}
.y26_c02370{bottom:331.266667pt;}
.y25_c02370{bottom:349.666667pt;}
.y24_c02370{bottom:368.066667pt;}
.y23_c02370{bottom:383.106667pt;}
.y22_c02370{bottom:402.146667pt;}
.y21_c02370{bottom:421.186667pt;}
.y20_c02370{bottom:440.226667pt;}
.y1d_c02370{bottom:459.426667pt;}
.y1c_c02370{bottom:496.893333pt;}
.y1b_c02370{bottom:515.933333pt;}
.y1a_c02370{bottom:534.973333pt;}
.y19_c02370{bottom:554.013333pt;}
.y17_c02370{bottom:573.053333pt;}
.y11_c02370{bottom:592.093333pt;}
.y14_c02370{bottom:611.293333pt;}
.y10_c02370{bottom:643.293333pt;}
.yf_c02370{bottom:661.853333pt;}
.ye_c02370{bottom:680.253333pt;}
.yd_c02370{bottom:698.653333pt;}
.yc_c02370{bottom:726.213333pt;}
.yb_c02370{bottom:753.733333pt;}
.ya_c02370{bottom:781.413333pt;}
.y9_c02370{bottom:808.933333pt;}
.y8_c02370{bottom:836.613333pt;}
.y7_c02370{bottom:864.133333pt;}
.y6_c02370{bottom:891.813333pt;}
.y5_c02370{bottom:919.333333pt;}
.y4_c02370{bottom:947.040000pt;}
.h6_c02370{height:18.400000pt;}
.h2_c02370{height:20.000000pt;}
.h8_c02370{height:36.672000pt;}
.h5_c02370{height:37.600000pt;}
.h1_c02370{height:43.441250pt;}
.h4_c02370{height:57.375000pt;}
.h3_c02370{height:62.812500pt;}
.h7_c02370{height:64.500000pt;}
.h0_c02370{height:1056.000000pt;}
.w1_c02370{width:59.232000pt;}
.w4_c02370{width:70.240000pt;}
.w7_c02370{width:81.792000pt;}
.w5_c02370{width:83.872000pt;}
.w6_c02370{width:85.440000pt;}
.w2_c02370{width:226.266667pt;}
.w3_c02370{width:252.386667pt;}
.w0_c02370{width:816.000000pt;}
.x0_c02370{left:0.000000pt;}
.xe_c02370{left:7.040000pt;}
.x11_c02370{left:13.760000pt;}
.x3_c02370{left:14.720000pt;}
.xf_c02370{left:16.160000pt;}
.x13_c02370{left:19.040000pt;}
.x1f_c02370{left:20.960000pt;}
.x1b_c02370{left:22.880000pt;}
.x17_c02370{left:31.040000pt;}
.xd_c02370{left:35.040000pt;}
.x16_c02370{left:36.800000pt;}
.x15_c02370{left:37.920000pt;}
.x1e_c02370{left:40.800000pt;}
.x1d_c02370{left:41.920000pt;}
.x1c_c02370{left:61.920000pt;}
.x19_c02370{left:64.480000pt;}
.x14_c02370{left:66.240000pt;}
.x1a_c02370{left:68.480000pt;}
.x18_c02370{left:70.720000pt;}
.x21_c02370{left:85.120000pt;}
.x9_c02370{left:91.680000pt;}
.xb_c02370{left:92.826667pt;}
.x20_c02370{left:95.360000pt;}
.x1_c02370{left:113.472000pt;}
.x8_c02370{left:159.386667pt;}
.x4_c02370{left:166.266667pt;}
.x6_c02370{left:259.866667pt;}
.x7_c02370{left:309.986667pt;}
.xa_c02370{left:386.306667pt;}
.x5_c02370{left:391.266667pt;}
.x10_c02370{left:470.813333pt;}
.x12_c02370{left:556.893333pt;}
.xc_c02370{left:639.333333pt;}
.x2_c02370{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02371 {
    display:none;
  }
  .loading-indicator_c02371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02371 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02371 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02371" -> "#page-container .classname_c02371")
 */
.pf_c02371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02371 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02371 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02371 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02371 {overflow:visible;}
  }
}
.c_c02371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02371 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02371:after { /* webkit #35443 */
  content: '';
}
.t_c02371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02371 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02371 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02371 { /* info for Javascript */
  display:none;
}
.l_c02371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02371:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02371 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02371.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02371;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02371{font-family:ff1_c02371;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02371;src:url('chunks/assets/font_b5d503738add8df268bc9cdd.woff2')format("woff");}.ff2_c02371{font-family:ff2_c02371;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:ff3_c02371;src:url('chunks/assets/font_8cdc80f9ec5ca525b4a72197.woff2')format("woff");}.ff3_c02371{font-family:ff3_c02371;line-height:1.112305;font-style:normal;font-weight: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_c02371;src:url('chunks/assets/font_cb7d636020d99e87ce7a1fbf.woff2')format("woff");}.ff4_c02371{font-family:ff4_c02371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02371{vertical-align:0.000000px;}
.ls1_c02371{letter-spacing:-0.288000px;}
.ls2_c02371{letter-spacing:-0.144000px;}
.ls0_c02371{letter-spacing:0.000000px;}
.sc__c02371{text-shadow:none;}
.sc0_c02371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02371{-webkit-text-stroke:0px transparent;}
.sc0_c02371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02371{word-spacing:-18.000000px;}
.ws2_c02371{word-spacing:-17.856000px;}
.ws0_c02371{word-spacing:-17.712000px;}
.ws3_c02371{word-spacing:0.000000px;}
._4_c02371{margin-left:-2.160000px;}
._5_c02371{margin-left:-1.008000px;}
._0_c02371{width:1.008000px;}
._c_c02371{width:2.280000px;}
._2_c02371{width:3.384000px;}
._3_c02371{width:4.752000px;}
._a_c02371{width:5.760000px;}
._b_c02371{width:6.768000px;}
._8_c02371{width:8.496000px;}
._9_c02371{width:9.504000px;}
._6_c02371{width:12.888000px;}
._7_c02371{width:13.896000px;}
._1_c02371{width:19.224000px;}
.fc1_c02371{color:rgb(192,80,77);}
.fc3_c02371{color:rgb(255,255,255);}
.fc2_c02371{color:rgb(17,17,17);}
.fc0_c02371{color:rgb(0,0,0);}
.fs0_c02371{font-size:66.240000px;}
.fs1_c02371{font-size:72.000000px;}
.y0_c02371{bottom:0.000000px;}
.y17_c02371{bottom:4.140000px;}
.y14_c02371{bottom:4.500000px;}
.y3_c02371{bottom:4.680000px;}
.y15_c02371{bottom:4.860000px;}
.y12_c02371{bottom:5.220000px;}
.y1e_c02371{bottom:24.840000px;}
.y1d_c02371{bottom:25.200000px;}
.y11_c02371{bottom:25.920000px;}
.y2_c02371{bottom:41.796000px;}
.y1_c02371{bottom:75.456000px;}
.y26_c02371{bottom:382.935000px;}
.y25_c02371{bottom:403.635000px;}
.y24_c02371{bottom:424.335000px;}
.y23_c02371{bottom:445.035000px;}
.y22_c02371{bottom:461.955000px;}
.y21_c02371{bottom:483.555000px;}
.y20_c02371{bottom:504.975000px;}
.y1f_c02371{bottom:526.395000px;}
.y1c_c02371{bottom:547.845000px;}
.y1b_c02371{bottom:589.965000px;}
.y1a_c02371{bottom:611.385000px;}
.y19_c02371{bottom:632.805000px;}
.y18_c02371{bottom:654.405000px;}
.y16_c02371{bottom:675.825000px;}
.y10_c02371{bottom:697.245000px;}
.y13_c02371{bottom:718.665000px;}
.yf_c02371{bottom:754.845000px;}
.ye_c02371{bottom:775.725000px;}
.yd_c02371{bottom:796.470000px;}
.yc_c02371{bottom:817.170000px;}
.yb_c02371{bottom:847.950000px;}
.ya_c02371{bottom:879.090000px;}
.y9_c02371{bottom:910.050000px;}
.y8_c02371{bottom:941.190000px;}
.y7_c02371{bottom:972.150000px;}
.y6_c02371{bottom:1003.290000px;}
.y5_c02371{bottom:1034.250000px;}
.y4_c02371{bottom:1065.420000px;}
.h6_c02371{height:20.700000px;}
.h9_c02371{height:20.736000px;}
.h2_c02371{height:22.500000px;}
.h8_c02371{height:41.400000px;}
.h5_c02371{height:42.120000px;}
.h1_c02371{height:48.871406px;}
.h4_c02371{height:64.546875px;}
.h3_c02371{height:70.664062px;}
.h7_c02371{height:72.562500px;}
.h0_c02371{height:1188.000000px;}
.w1_c02371{width:66.636000px;}
.w4_c02371{width:79.020000px;}
.w7_c02371{width:92.016000px;}
.w5_c02371{width:94.356000px;}
.w6_c02371{width:96.120000px;}
.w2_c02371{width:254.550000px;}
.w3_c02371{width:283.935000px;}
.w0_c02371{width:918.000000px;}
.x0_c02371{left:0.000000px;}
.xe_c02371{left:7.920000px;}
.x11_c02371{left:15.480000px;}
.x3_c02371{left:16.560000px;}
.xf_c02371{left:18.180000px;}
.x13_c02371{left:21.420000px;}
.x20_c02371{left:23.580000px;}
.x1c_c02371{left:25.740000px;}
.x17_c02371{left:34.920000px;}
.xd_c02371{left:39.420000px;}
.x16_c02371{left:41.400000px;}
.x15_c02371{left:42.660000px;}
.x1f_c02371{left:45.900000px;}
.x1e_c02371{left:47.160000px;}
.x18_c02371{left:61.560000px;}
.x1d_c02371{left:69.660000px;}
.x1a_c02371{left:72.540000px;}
.x14_c02371{left:74.520000px;}
.x1b_c02371{left:77.040000px;}
.x19_c02371{left:79.560000px;}
.x22_c02371{left:95.760000px;}
.x9_c02371{left:103.140000px;}
.xb_c02371{left:104.430000px;}
.x21_c02371{left:107.280000px;}
.x1_c02371{left:127.656000px;}
.x8_c02371{left:179.310000px;}
.x4_c02371{left:187.050000px;}
.x6_c02371{left:215.850000px;}
.x7_c02371{left:348.735000px;}
.xa_c02371{left:434.595000px;}
.x5_c02371{left:440.175000px;}
.x10_c02371{left:529.665000px;}
.x12_c02371{left:626.505000px;}
.xc_c02371{left:719.250000px;}
.x2_c02371{left:820.950000px;}
@media print{
.v0_c02371{vertical-align:0.000000pt;}
.ls1_c02371{letter-spacing:-0.256000pt;}
.ls2_c02371{letter-spacing:-0.128000pt;}
.ls0_c02371{letter-spacing:0.000000pt;}
.ws1_c02371{word-spacing:-16.000000pt;}
.ws2_c02371{word-spacing:-15.872000pt;}
.ws0_c02371{word-spacing:-15.744000pt;}
.ws3_c02371{word-spacing:0.000000pt;}
._4_c02371{margin-left:-1.920000pt;}
._5_c02371{margin-left:-0.896000pt;}
._0_c02371{width:0.896000pt;}
._c_c02371{width:2.026667pt;}
._2_c02371{width:3.008000pt;}
._3_c02371{width:4.224000pt;}
._a_c02371{width:5.120000pt;}
._b_c02371{width:6.016000pt;}
._8_c02371{width:7.552000pt;}
._9_c02371{width:8.448000pt;}
._6_c02371{width:11.456000pt;}
._7_c02371{width:12.352000pt;}
._1_c02371{width:17.088000pt;}
.fs0_c02371{font-size:58.880000pt;}
.fs1_c02371{font-size:64.000000pt;}
.y0_c02371{bottom:0.000000pt;}
.y17_c02371{bottom:3.680000pt;}
.y14_c02371{bottom:4.000000pt;}
.y3_c02371{bottom:4.160000pt;}
.y15_c02371{bottom:4.320000pt;}
.y12_c02371{bottom:4.640000pt;}
.y1e_c02371{bottom:22.080000pt;}
.y1d_c02371{bottom:22.400000pt;}
.y11_c02371{bottom:23.040000pt;}
.y2_c02371{bottom:37.152000pt;}
.y1_c02371{bottom:67.072000pt;}
.y26_c02371{bottom:340.386667pt;}
.y25_c02371{bottom:358.786667pt;}
.y24_c02371{bottom:377.186667pt;}
.y23_c02371{bottom:395.586667pt;}
.y22_c02371{bottom:410.626667pt;}
.y21_c02371{bottom:429.826667pt;}
.y20_c02371{bottom:448.866667pt;}
.y1f_c02371{bottom:467.906667pt;}
.y1c_c02371{bottom:486.973333pt;}
.y1b_c02371{bottom:524.413333pt;}
.y1a_c02371{bottom:543.453333pt;}
.y19_c02371{bottom:562.493333pt;}
.y18_c02371{bottom:581.693333pt;}
.y16_c02371{bottom:600.733333pt;}
.y10_c02371{bottom:619.773333pt;}
.y13_c02371{bottom:638.813333pt;}
.yf_c02371{bottom:670.973333pt;}
.ye_c02371{bottom:689.533333pt;}
.yd_c02371{bottom:707.973333pt;}
.yc_c02371{bottom:726.373333pt;}
.yb_c02371{bottom:753.733333pt;}
.ya_c02371{bottom:781.413333pt;}
.y9_c02371{bottom:808.933333pt;}
.y8_c02371{bottom:836.613333pt;}
.y7_c02371{bottom:864.133333pt;}
.y6_c02371{bottom:891.813333pt;}
.y5_c02371{bottom:919.333333pt;}
.y4_c02371{bottom:947.040000pt;}
.h6_c02371{height:18.400000pt;}
.h9_c02371{height:18.432000pt;}
.h2_c02371{height:20.000000pt;}
.h8_c02371{height:36.800000pt;}
.h5_c02371{height:37.440000pt;}
.h1_c02371{height:43.441250pt;}
.h4_c02371{height:57.375000pt;}
.h3_c02371{height:62.812500pt;}
.h7_c02371{height:64.500000pt;}
.h0_c02371{height:1056.000000pt;}
.w1_c02371{width:59.232000pt;}
.w4_c02371{width:70.240000pt;}
.w7_c02371{width:81.792000pt;}
.w5_c02371{width:83.872000pt;}
.w6_c02371{width:85.440000pt;}
.w2_c02371{width:226.266667pt;}
.w3_c02371{width:252.386667pt;}
.w0_c02371{width:816.000000pt;}
.x0_c02371{left:0.000000pt;}
.xe_c02371{left:7.040000pt;}
.x11_c02371{left:13.760000pt;}
.x3_c02371{left:14.720000pt;}
.xf_c02371{left:16.160000pt;}
.x13_c02371{left:19.040000pt;}
.x20_c02371{left:20.960000pt;}
.x1c_c02371{left:22.880000pt;}
.x17_c02371{left:31.040000pt;}
.xd_c02371{left:35.040000pt;}
.x16_c02371{left:36.800000pt;}
.x15_c02371{left:37.920000pt;}
.x1f_c02371{left:40.800000pt;}
.x1e_c02371{left:41.920000pt;}
.x18_c02371{left:54.720000pt;}
.x1d_c02371{left:61.920000pt;}
.x1a_c02371{left:64.480000pt;}
.x14_c02371{left:66.240000pt;}
.x1b_c02371{left:68.480000pt;}
.x19_c02371{left:70.720000pt;}
.x22_c02371{left:85.120000pt;}
.x9_c02371{left:91.680000pt;}
.xb_c02371{left:92.826667pt;}
.x21_c02371{left:95.360000pt;}
.x1_c02371{left:113.472000pt;}
.x8_c02371{left:159.386667pt;}
.x4_c02371{left:166.266667pt;}
.x6_c02371{left:191.866667pt;}
.x7_c02371{left:309.986667pt;}
.xa_c02371{left:386.306667pt;}
.x5_c02371{left:391.266667pt;}
.x10_c02371{left:470.813333pt;}
.x12_c02371{left:556.893333pt;}
.xc_c02371{left:639.333333pt;}
.x2_c02371{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02372 {
    display:none;
  }
  .loading-indicator_c02372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02372 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02372 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02372" -> "#page-container .classname_c02372")
 */
.pf_c02372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02372 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02372 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02372 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02372 {overflow:visible;}
  }
}
.c_c02372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02372 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02372:after { /* webkit #35443 */
  content: '';
}
.t_c02372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02372 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02372 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02372 { /* info for Javascript */
  display:none;
}
.l_c02372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02372:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02372 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02372.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02372;src:url('chunks/assets/font_c2e53ab4a46b8e38c2cddab2.woff2')format("woff");}.ff1_c02372{font-family:ff1_c02372;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02372;src:url('chunks/assets/font_f70b44f476449672a7b8ae30.woff2')format("woff");}.ff2_c02372{font-family:ff2_c02372;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;}
.m0_c02372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02372{vertical-align:0.000000px;}
.ls0_c02372{letter-spacing:0.000000px;}
.sc__c02372{text-shadow:none;}
.sc0_c02372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02372{-webkit-text-stroke:0px transparent;}
.sc0_c02372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02372{word-spacing:0.000000px;}
._2_c02372{margin-left:-1.008000px;}
._1_c02372{width:1.080000px;}
._0_c02372{width:2.088000px;}
._7_c02372{width:3.456000px;}
._a_c02372{width:4.464000px;}
._b_c02372{width:5.544000px;}
._c_c02372{width:6.696000px;}
._8_c02372{width:9.792000px;}
._9_c02372{width:11.088000px;}
._4_c02372{width:12.384000px;}
._3_c02372{width:13.392000px;}
._6_c02372{width:15.516000px;}
._5_c02372{width:16.920000px;}
._d_c02372{width:21.456000px;}
._e_c02372{width:22.896000px;}
.fc1_c02372{color:rgb(192,80,77);}
.fc2_c02372{color:rgb(17,17,17);}
.fc0_c02372{color:rgb(0,0,0);}
.fs0_c02372{font-size:66.240000px;}
.fs1_c02372{font-size:72.000000px;}
.y0_c02372{bottom:0.000000px;}
.y3_c02372{bottom:4.680000px;}
.y2_c02372{bottom:41.796000px;}
.y1_c02372{bottom:75.456000px;}
.y29_c02372{bottom:123.696000px;}
.y28_c02372{bottom:144.396000px;}
.y27_c02372{bottom:165.090000px;}
.y26_c02372{bottom:185.610000px;}
.y25_c02372{bottom:206.310000px;}
.y24_c02372{bottom:227.010000px;}
.y23_c02372{bottom:247.710000px;}
.y22_c02372{bottom:268.410000px;}
.y21_c02372{bottom:289.155000px;}
.y20_c02372{bottom:309.855000px;}
.y1f_c02372{bottom:330.555000px;}
.y1e_c02372{bottom:351.255000px;}
.y1d_c02372{bottom:371.955000px;}
.y1c_c02372{bottom:392.655000px;}
.y1b_c02372{bottom:413.355000px;}
.y1a_c02372{bottom:434.055000px;}
.y19_c02372{bottom:454.755000px;}
.y18_c02372{bottom:475.455000px;}
.y17_c02372{bottom:496.155000px;}
.y16_c02372{bottom:516.855000px;}
.y15_c02372{bottom:547.845000px;}
.y14_c02372{bottom:578.805000px;}
.y13_c02372{bottom:609.945000px;}
.y12_c02372{bottom:640.905000px;}
.y11_c02372{bottom:672.045000px;}
.y10_c02372{bottom:703.005000px;}
.yf_c02372{bottom:734.145000px;}
.ye_c02372{bottom:765.105000px;}
.yd_c02372{bottom:796.290000px;}
.yc_c02372{bottom:827.250000px;}
.yb_c02372{bottom:858.390000px;}
.ya_c02372{bottom:889.350000px;}
.y9_c02372{bottom:920.490000px;}
.y8_c02372{bottom:941.370000px;}
.y7_c02372{bottom:972.150000px;}
.y6_c02372{bottom:1003.290000px;}
.y5_c02372{bottom:1034.250000px;}
.y4_c02372{bottom:1065.420000px;}
.h2_c02372{height:22.500000px;}
.h1_c02372{height:48.871406px;}
.h3_c02372{height:70.664062px;}
.h0_c02372{height:1188.000000px;}
.w1_c02372{width:66.636000px;}
.w0_c02372{width:918.000000px;}
.x0_c02372{left:0.000000px;}
.x3_c02372{left:16.560000px;}
.x1_c02372{left:127.656000px;}
.x5_c02372{left:154.650000px;}
.x4_c02372{left:163.650000px;}
.x6_c02372{left:187.050000px;}
.x7_c02372{left:488.775000px;}
.x2_c02372{left:820.950000px;}
@media print{
.v0_c02372{vertical-align:0.000000pt;}
.ls0_c02372{letter-spacing:0.000000pt;}
.ws0_c02372{word-spacing:0.000000pt;}
._2_c02372{margin-left:-0.896000pt;}
._1_c02372{width:0.960000pt;}
._0_c02372{width:1.856000pt;}
._7_c02372{width:3.072000pt;}
._a_c02372{width:3.968000pt;}
._b_c02372{width:4.928000pt;}
._c_c02372{width:5.952000pt;}
._8_c02372{width:8.704000pt;}
._9_c02372{width:9.856000pt;}
._4_c02372{width:11.008000pt;}
._3_c02372{width:11.904000pt;}
._6_c02372{width:13.792000pt;}
._5_c02372{width:15.040000pt;}
._d_c02372{width:19.072000pt;}
._e_c02372{width:20.352000pt;}
.fs0_c02372{font-size:58.880000pt;}
.fs1_c02372{font-size:64.000000pt;}
.y0_c02372{bottom:0.000000pt;}
.y3_c02372{bottom:4.160000pt;}
.y2_c02372{bottom:37.152000pt;}
.y1_c02372{bottom:67.072000pt;}
.y29_c02372{bottom:109.952000pt;}
.y28_c02372{bottom:128.352000pt;}
.y27_c02372{bottom:146.746667pt;}
.y26_c02372{bottom:164.986667pt;}
.y25_c02372{bottom:183.386667pt;}
.y24_c02372{bottom:201.786667pt;}
.y23_c02372{bottom:220.186667pt;}
.y22_c02372{bottom:238.586667pt;}
.y21_c02372{bottom:257.026667pt;}
.y20_c02372{bottom:275.426667pt;}
.y1f_c02372{bottom:293.826667pt;}
.y1e_c02372{bottom:312.226667pt;}
.y1d_c02372{bottom:330.626667pt;}
.y1c_c02372{bottom:349.026667pt;}
.y1b_c02372{bottom:367.426667pt;}
.y1a_c02372{bottom:385.826667pt;}
.y19_c02372{bottom:404.226667pt;}
.y18_c02372{bottom:422.626667pt;}
.y17_c02372{bottom:441.026667pt;}
.y16_c02372{bottom:459.426667pt;}
.y15_c02372{bottom:486.973333pt;}
.y14_c02372{bottom:514.493333pt;}
.y13_c02372{bottom:542.173333pt;}
.y12_c02372{bottom:569.693333pt;}
.y11_c02372{bottom:597.373333pt;}
.y10_c02372{bottom:624.893333pt;}
.yf_c02372{bottom:652.573333pt;}
.ye_c02372{bottom:680.093333pt;}
.yd_c02372{bottom:707.813333pt;}
.yc_c02372{bottom:735.333333pt;}
.yb_c02372{bottom:763.013333pt;}
.ya_c02372{bottom:790.533333pt;}
.y9_c02372{bottom:818.213333pt;}
.y8_c02372{bottom:836.773333pt;}
.y7_c02372{bottom:864.133333pt;}
.y6_c02372{bottom:891.813333pt;}
.y5_c02372{bottom:919.333333pt;}
.y4_c02372{bottom:947.040000pt;}
.h2_c02372{height:20.000000pt;}
.h1_c02372{height:43.441250pt;}
.h3_c02372{height:62.812500pt;}
.h0_c02372{height:1056.000000pt;}
.w1_c02372{width:59.232000pt;}
.w0_c02372{width:816.000000pt;}
.x0_c02372{left:0.000000pt;}
.x3_c02372{left:14.720000pt;}
.x1_c02372{left:113.472000pt;}
.x5_c02372{left:137.466667pt;}
.x4_c02372{left:145.466667pt;}
.x6_c02372{left:166.266667pt;}
.x7_c02372{left:434.466667pt;}
.x2_c02372{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02373 {
    display:none;
  }
  .loading-indicator_c02373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02373 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02373 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02373" -> "#page-container .classname_c02373")
 */
.pf_c02373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02373 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02373 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02373 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02373 {overflow:visible;}
  }
}
.c_c02373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02373 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02373:after { /* webkit #35443 */
  content: '';
}
.t_c02373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02373 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02373 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02373 { /* info for Javascript */
  display:none;
}
.l_c02373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02373:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02373 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02373.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02373;src:url('chunks/assets/font_4030e8d431173b0d98918d54.woff2')format("woff");}.ff1_c02373{font-family:ff1_c02373;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02373;src:url('chunks/assets/font_e04dd64297477877cbfb6913.woff2')format("woff");}.ff2_c02373{font-family:ff2_c02373;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:ff3_c02373;src:url('chunks/assets/font_775369455222f505b5f2fc9d.woff2')format("woff");}.ff3_c02373{font-family:ff3_c02373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02373{vertical-align:0.000000px;}
.ls1_c02373{letter-spacing:-0.144000px;}
.ls0_c02373{letter-spacing:0.000000px;}
.sc__c02373{text-shadow:none;}
.sc0_c02373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02373{-webkit-text-stroke:0px transparent;}
.sc0_c02373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02373{word-spacing:-17.856000px;}
.ws1_c02373{word-spacing:0.000000px;}
._5_c02373{margin-left:-2.796000px;}
._0_c02373{margin-left:-1.152000px;}
._1_c02373{width:1.416000px;}
._b_c02373{width:2.664000px;}
._4_c02373{width:3.960000px;}
._2_c02373{width:5.688000px;}
._3_c02373{width:6.984000px;}
._a_c02373{width:8.496000px;}
._8_c02373{width:9.864000px;}
._9_c02373{width:11.520000px;}
._6_c02373{width:14.040000px;}
._c_c02373{width:19.800000px;}
._7_c02373{width:21.384000px;}
.fc1_c02373{color:rgb(192,80,77);}
.fc3_c02373{color:rgb(255,255,255);}
.fc2_c02373{color:rgb(17,17,17);}
.fc0_c02373{color:rgb(0,0,0);}
.fs0_c02373{font-size:66.240000px;}
.fs1_c02373{font-size:72.000000px;}
.y0_c02373{bottom:0.000000px;}
.y16_c02373{bottom:3.960000px;}
.y11_c02373{bottom:4.140000px;}
.y15_c02373{bottom:4.320000px;}
.yf_c02373{bottom:4.500000px;}
.y3_c02373{bottom:4.680000px;}
.yd_c02373{bottom:5.220000px;}
.yc_c02373{bottom:25.920000px;}
.ye_c02373{bottom:26.280000px;}
.ya_c02373{bottom:26.640000px;}
.y2_c02373{bottom:41.796000px;}
.y9_c02373{bottom:47.340000px;}
.y1_c02373{bottom:75.456000px;}
.y32_c02373{bottom:151.230000px;}
.y31_c02373{bottom:182.370000px;}
.y30_c02373{bottom:213.330000px;}
.y2f_c02373{bottom:244.470000px;}
.y2e_c02373{bottom:275.475000px;}
.y2d_c02373{bottom:306.615000px;}
.y2c_c02373{bottom:337.575000px;}
.y2b_c02373{bottom:368.715000px;}
.y2a_c02373{bottom:399.675000px;}
.y29_c02373{bottom:430.815000px;}
.y28_c02373{bottom:461.775000px;}
.y27_c02373{bottom:492.915000px;}
.y26_c02373{bottom:513.795000px;}
.y25_c02373{bottom:534.525000px;}
.y24_c02373{bottom:555.225000px;}
.y23_c02373{bottom:575.925000px;}
.y22_c02373{bottom:596.625000px;}
.y21_c02373{bottom:617.325000px;}
.y20_c02373{bottom:634.245000px;}
.y1f_c02373{bottom:655.665000px;}
.y1e_c02373{bottom:677.085000px;}
.y1d_c02373{bottom:698.505000px;}
.y1c_c02373{bottom:720.105000px;}
.y1b_c02373{bottom:741.525000px;}
.y1a_c02373{bottom:762.945000px;}
.y19_c02373{bottom:784.365000px;}
.y18_c02373{bottom:805.830000px;}
.y17_c02373{bottom:827.250000px;}
.y14_c02373{bottom:848.850000px;}
.y13_c02373{bottom:870.270000px;}
.y12_c02373{bottom:891.690000px;}
.y10_c02373{bottom:913.110000px;}
.y8_c02373{bottom:934.530000px;}
.yb_c02373{bottom:955.950000px;}
.y7_c02373{bottom:1003.470000px;}
.y6_c02373{bottom:1024.170000px;}
.y5_c02373{bottom:1044.870000px;}
.y4_c02373{bottom:1065.600000px;}
.h8_c02373{height:20.520000px;}
.h7_c02373{height:20.700000px;}
.h9_c02373{height:20.736000px;}
.h2_c02373{height:22.500000px;}
.h5_c02373{height:42.120000px;}
.h1_c02373{height:48.871406px;}
.h4_c02373{height:63.540000px;}
.h3_c02373{height:70.664062px;}
.h6_c02373{height:72.562500px;}
.h0_c02373{height:1188.000000px;}
.w1_c02373{width:66.636000px;}
.w4_c02373{width:78.480000px;}
.w5_c02373{width:83.520000px;}
.w6_c02373{width:83.700000px;}
.w7_c02373{width:83.736000px;}
.w2_c02373{width:117.396000px;}
.w3_c02373{width:421.455000px;}
.w0_c02373{width:918.000000px;}
.x0_c02373{left:0.000000px;}
.xf_c02373{left:7.740000px;}
.x3_c02373{left:16.560000px;}
.x1b_c02373{left:17.820000px;}
.x15_c02373{left:20.880000px;}
.x10_c02373{left:24.120000px;}
.x1d_c02373{left:25.740000px;}
.x1c_c02373{left:27.180000px;}
.x12_c02373{left:28.800000px;}
.x18_c02373{left:30.780000px;}
.x19_c02373{left:32.760000px;}
.x9_c02373{left:35.640000px;}
.x17_c02373{left:37.080000px;}
.xe_c02373{left:39.240000px;}
.x1a_c02373{left:41.220000px;}
.x8_c02373{left:58.680000px;}
.x1_c02373{left:127.656000px;}
.xc_c02373{left:130.320000px;}
.xb_c02373{left:140.040000px;}
.x7_c02373{left:179.310000px;}
.x1e_c02373{left:187.050000px;}
.xa_c02373{left:297.615000px;}
.x6_c02373{left:311.475000px;}
.x11_c02373{left:381.855000px;}
.x5_c02373{left:440.175000px;}
.x13_c02373{left:466.275000px;}
.x4_c02373{left:488.775000px;}
.x14_c02373{left:550.905000px;}
.x16_c02373{left:635.325000px;}
.xd_c02373{left:719.790000px;}
.x2_c02373{left:820.950000px;}
@media print{
.v0_c02373{vertical-align:0.000000pt;}
.ls1_c02373{letter-spacing:-0.128000pt;}
.ls0_c02373{letter-spacing:0.000000pt;}
.ws0_c02373{word-spacing:-15.872000pt;}
.ws1_c02373{word-spacing:0.000000pt;}
._5_c02373{margin-left:-2.485333pt;}
._0_c02373{margin-left:-1.024000pt;}
._1_c02373{width:1.258667pt;}
._b_c02373{width:2.368000pt;}
._4_c02373{width:3.520000pt;}
._2_c02373{width:5.056000pt;}
._3_c02373{width:6.208000pt;}
._a_c02373{width:7.552000pt;}
._8_c02373{width:8.768000pt;}
._9_c02373{width:10.240000pt;}
._6_c02373{width:12.480000pt;}
._c_c02373{width:17.600000pt;}
._7_c02373{width:19.008000pt;}
.fs0_c02373{font-size:58.880000pt;}
.fs1_c02373{font-size:64.000000pt;}
.y0_c02373{bottom:0.000000pt;}
.y16_c02373{bottom:3.520000pt;}
.y11_c02373{bottom:3.680000pt;}
.y15_c02373{bottom:3.840000pt;}
.yf_c02373{bottom:4.000000pt;}
.y3_c02373{bottom:4.160000pt;}
.yd_c02373{bottom:4.640000pt;}
.yc_c02373{bottom:23.040000pt;}
.ye_c02373{bottom:23.360000pt;}
.ya_c02373{bottom:23.680000pt;}
.y2_c02373{bottom:37.152000pt;}
.y9_c02373{bottom:42.080000pt;}
.y1_c02373{bottom:67.072000pt;}
.y32_c02373{bottom:134.426667pt;}
.y31_c02373{bottom:162.106667pt;}
.y30_c02373{bottom:189.626667pt;}
.y2f_c02373{bottom:217.306667pt;}
.y2e_c02373{bottom:244.866667pt;}
.y2d_c02373{bottom:272.546667pt;}
.y2c_c02373{bottom:300.066667pt;}
.y2b_c02373{bottom:327.746667pt;}
.y2a_c02373{bottom:355.266667pt;}
.y29_c02373{bottom:382.946667pt;}
.y28_c02373{bottom:410.466667pt;}
.y27_c02373{bottom:438.146667pt;}
.y26_c02373{bottom:456.706667pt;}
.y25_c02373{bottom:475.133333pt;}
.y24_c02373{bottom:493.533333pt;}
.y23_c02373{bottom:511.933333pt;}
.y22_c02373{bottom:530.333333pt;}
.y21_c02373{bottom:548.733333pt;}
.y20_c02373{bottom:563.773333pt;}
.y1f_c02373{bottom:582.813333pt;}
.y1e_c02373{bottom:601.853333pt;}
.y1d_c02373{bottom:620.893333pt;}
.y1c_c02373{bottom:640.093333pt;}
.y1b_c02373{bottom:659.133333pt;}
.y1a_c02373{bottom:678.173333pt;}
.y19_c02373{bottom:697.213333pt;}
.y18_c02373{bottom:716.293333pt;}
.y17_c02373{bottom:735.333333pt;}
.y14_c02373{bottom:754.533333pt;}
.y13_c02373{bottom:773.573333pt;}
.y12_c02373{bottom:792.613333pt;}
.y10_c02373{bottom:811.653333pt;}
.y8_c02373{bottom:830.693333pt;}
.yb_c02373{bottom:849.733333pt;}
.y7_c02373{bottom:891.973333pt;}
.y6_c02373{bottom:910.373333pt;}
.y5_c02373{bottom:928.773333pt;}
.y4_c02373{bottom:947.200000pt;}
.h8_c02373{height:18.240000pt;}
.h7_c02373{height:18.400000pt;}
.h9_c02373{height:18.432000pt;}
.h2_c02373{height:20.000000pt;}
.h5_c02373{height:37.440000pt;}
.h1_c02373{height:43.441250pt;}
.h4_c02373{height:56.480000pt;}
.h3_c02373{height:62.812500pt;}
.h6_c02373{height:64.500000pt;}
.h0_c02373{height:1056.000000pt;}
.w1_c02373{width:59.232000pt;}
.w4_c02373{width:69.760000pt;}
.w5_c02373{width:74.240000pt;}
.w6_c02373{width:74.400000pt;}
.w7_c02373{width:74.432000pt;}
.w2_c02373{width:104.352000pt;}
.w3_c02373{width:374.626667pt;}
.w0_c02373{width:816.000000pt;}
.x0_c02373{left:0.000000pt;}
.xf_c02373{left:6.880000pt;}
.x3_c02373{left:14.720000pt;}
.x1b_c02373{left:15.840000pt;}
.x15_c02373{left:18.560000pt;}
.x10_c02373{left:21.440000pt;}
.x1d_c02373{left:22.880000pt;}
.x1c_c02373{left:24.160000pt;}
.x12_c02373{left:25.600000pt;}
.x18_c02373{left:27.360000pt;}
.x19_c02373{left:29.120000pt;}
.x9_c02373{left:31.680000pt;}
.x17_c02373{left:32.960000pt;}
.xe_c02373{left:34.880000pt;}
.x1a_c02373{left:36.640000pt;}
.x8_c02373{left:52.160000pt;}
.x1_c02373{left:113.472000pt;}
.xc_c02373{left:115.840000pt;}
.xb_c02373{left:124.480000pt;}
.x7_c02373{left:159.386667pt;}
.x1e_c02373{left:166.266667pt;}
.xa_c02373{left:264.546667pt;}
.x6_c02373{left:276.866667pt;}
.x11_c02373{left:339.426667pt;}
.x5_c02373{left:391.266667pt;}
.x13_c02373{left:414.466667pt;}
.x4_c02373{left:434.466667pt;}
.x14_c02373{left:489.693333pt;}
.x16_c02373{left:564.733333pt;}
.xd_c02373{left:639.813333pt;}
.x2_c02373{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02374 {
    display:none;
  }
  .loading-indicator_c02374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02374 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02374 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02374" -> "#page-container .classname_c02374")
 */
.pf_c02374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02374 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02374 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02374 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02374 {overflow:visible;}
  }
}
.c_c02374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02374 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02374:after { /* webkit #35443 */
  content: '';
}
.t_c02374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02374 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02374 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02374 { /* info for Javascript */
  display:none;
}
.l_c02374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02374:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02374 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02374.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02374;src:url('chunks/assets/font_44af4564633968b4ac3e67a3.woff2')format("woff");}.ff1_c02374{font-family:ff1_c02374;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02374;src:url('chunks/assets/font_ee48d25bcc0e084de4db13ae.woff2')format("woff");}.ff2_c02374{font-family:ff2_c02374;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;}
.m0_c02374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02374{vertical-align:0.000000px;}
.ls0_c02374{letter-spacing:0.000000px;}
.sc__c02374{text-shadow:none;}
.sc0_c02374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02374{-webkit-text-stroke:0px transparent;}
.sc0_c02374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02374{word-spacing:0.000000px;}
._2_c02374{margin-left:-1.008000px;}
._3_c02374{width:1.044000px;}
._b_c02374{width:2.592000px;}
._9_c02374{width:3.960000px;}
._a_c02374{width:5.040000px;}
._4_c02374{width:6.552000px;}
._5_c02374{width:7.632000px;}
._10_c02374{width:8.640000px;}
._11_c02374{width:9.792000px;}
._8_c02374{width:10.872000px;}
._14_c02374{width:11.952000px;}
._0_c02374{width:13.032000px;}
._1_c02374{width:14.328000px;}
._13_c02374{width:16.560000px;}
._12_c02374{width:19.152000px;}
._c_c02374{width:22.320000px;}
._d_c02374{width:24.264000px;}
._15_c02374{width:29.448000px;}
._7_c02374{width:36.936000px;}
._6_c02374{width:37.944000px;}
._f_c02374{width:44.784000px;}
._e_c02374{width:45.792000px;}
.fc1_c02374{color:rgb(192,80,77);}
.fc2_c02374{color:rgb(17,17,17);}
.fc0_c02374{color:rgb(0,0,0);}
.fs0_c02374{font-size:66.240000px;}
.fs1_c02374{font-size:72.000000px;}
.y0_c02374{bottom:0.000000px;}
.y3_c02374{bottom:4.680000px;}
.y2_c02374{bottom:41.796000px;}
.y1_c02374{bottom:75.456000px;}
.y23_c02374{bottom:123.516000px;}
.y22_c02374{bottom:154.470000px;}
.y21_c02374{bottom:185.430000px;}
.y20_c02374{bottom:216.570000px;}
.y1f_c02374{bottom:247.530000px;}
.y1e_c02374{bottom:278.715000px;}
.y1d_c02374{bottom:309.675000px;}
.y1c_c02374{bottom:340.815000px;}
.y1b_c02374{bottom:371.775000px;}
.y1a_c02374{bottom:402.915000px;}
.y19_c02374{bottom:433.875000px;}
.y18_c02374{bottom:465.015000px;}
.y17_c02374{bottom:495.975000px;}
.y16_c02374{bottom:527.115000px;}
.y15_c02374{bottom:558.105000px;}
.y14_c02374{bottom:589.245000px;}
.y13_c02374{bottom:620.205000px;}
.y12_c02374{bottom:651.345000px;}
.y11_c02374{bottom:682.305000px;}
.y10_c02374{bottom:713.445000px;}
.yf_c02374{bottom:744.405000px;}
.ye_c02374{bottom:775.545000px;}
.yd_c02374{bottom:806.550000px;}
.yc_c02374{bottom:837.690000px;}
.yb_c02374{bottom:868.650000px;}
.ya_c02374{bottom:899.790000px;}
.y9_c02374{bottom:930.750000px;}
.y8_c02374{bottom:961.890000px;}
.y7_c02374{bottom:982.770000px;}
.y6_c02374{bottom:1003.470000px;}
.y5_c02374{bottom:1034.250000px;}
.y4_c02374{bottom:1065.420000px;}
.h2_c02374{height:22.500000px;}
.h1_c02374{height:48.871406px;}
.h3_c02374{height:70.664062px;}
.h0_c02374{height:1188.000000px;}
.w1_c02374{width:66.636000px;}
.w0_c02374{width:918.000000px;}
.x0_c02374{left:0.000000px;}
.x3_c02374{left:16.560000px;}
.x1_c02374{left:127.656000px;}
.x5_c02374{left:154.650000px;}
.x4_c02374{left:187.050000px;}
.x2_c02374{left:820.950000px;}
@media print{
.v0_c02374{vertical-align:0.000000pt;}
.ls0_c02374{letter-spacing:0.000000pt;}
.ws0_c02374{word-spacing:0.000000pt;}
._2_c02374{margin-left:-0.896000pt;}
._3_c02374{width:0.928000pt;}
._b_c02374{width:2.304000pt;}
._9_c02374{width:3.520000pt;}
._a_c02374{width:4.480000pt;}
._4_c02374{width:5.824000pt;}
._5_c02374{width:6.784000pt;}
._10_c02374{width:7.680000pt;}
._11_c02374{width:8.704000pt;}
._8_c02374{width:9.664000pt;}
._14_c02374{width:10.624000pt;}
._0_c02374{width:11.584000pt;}
._1_c02374{width:12.736000pt;}
._13_c02374{width:14.720000pt;}
._12_c02374{width:17.024000pt;}
._c_c02374{width:19.840000pt;}
._d_c02374{width:21.568000pt;}
._15_c02374{width:26.176000pt;}
._7_c02374{width:32.832000pt;}
._6_c02374{width:33.728000pt;}
._f_c02374{width:39.808000pt;}
._e_c02374{width:40.704000pt;}
.fs0_c02374{font-size:58.880000pt;}
.fs1_c02374{font-size:64.000000pt;}
.y0_c02374{bottom:0.000000pt;}
.y3_c02374{bottom:4.160000pt;}
.y2_c02374{bottom:37.152000pt;}
.y1_c02374{bottom:67.072000pt;}
.y23_c02374{bottom:109.792000pt;}
.y22_c02374{bottom:137.306667pt;}
.y21_c02374{bottom:164.826667pt;}
.y20_c02374{bottom:192.506667pt;}
.y1f_c02374{bottom:220.026667pt;}
.y1e_c02374{bottom:247.746667pt;}
.y1d_c02374{bottom:275.266667pt;}
.y1c_c02374{bottom:302.946667pt;}
.y1b_c02374{bottom:330.466667pt;}
.y1a_c02374{bottom:358.146667pt;}
.y19_c02374{bottom:385.666667pt;}
.y18_c02374{bottom:413.346667pt;}
.y17_c02374{bottom:440.866667pt;}
.y16_c02374{bottom:468.546667pt;}
.y15_c02374{bottom:496.093333pt;}
.y14_c02374{bottom:523.773333pt;}
.y13_c02374{bottom:551.293333pt;}
.y12_c02374{bottom:578.973333pt;}
.y11_c02374{bottom:606.493333pt;}
.y10_c02374{bottom:634.173333pt;}
.yf_c02374{bottom:661.693333pt;}
.ye_c02374{bottom:689.373333pt;}
.yd_c02374{bottom:716.933333pt;}
.yc_c02374{bottom:744.613333pt;}
.yb_c02374{bottom:772.133333pt;}
.ya_c02374{bottom:799.813333pt;}
.y9_c02374{bottom:827.333333pt;}
.y8_c02374{bottom:855.013333pt;}
.y7_c02374{bottom:873.573333pt;}
.y6_c02374{bottom:891.973333pt;}
.y5_c02374{bottom:919.333333pt;}
.y4_c02374{bottom:947.040000pt;}
.h2_c02374{height:20.000000pt;}
.h1_c02374{height:43.441250pt;}
.h3_c02374{height:62.812500pt;}
.h0_c02374{height:1056.000000pt;}
.w1_c02374{width:59.232000pt;}
.w0_c02374{width:816.000000pt;}
.x0_c02374{left:0.000000pt;}
.x3_c02374{left:14.720000pt;}
.x1_c02374{left:113.472000pt;}
.x5_c02374{left:137.466667pt;}
.x4_c02374{left:166.266667pt;}
.x2_c02374{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02375 {
    display:none;
  }
  .loading-indicator_c02375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02375 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02375 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02375" -> "#page-container .classname_c02375")
 */
.pf_c02375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02375 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02375 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02375 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02375 {overflow:visible;}
  }
}
.c_c02375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02375 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02375:after { /* webkit #35443 */
  content: '';
}
.t_c02375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02375 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02375 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02375 { /* info for Javascript */
  display:none;
}
.l_c02375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02375:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02375 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02375.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02375;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02375{font-family:ff1_c02375;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02375;src:url('chunks/assets/font_119b7d31acd8e24dc4fe99d9.woff2')format("woff");}.ff2_c02375{font-family:ff2_c02375;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;}
.m0_c02375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02375{vertical-align:0.000000px;}
.ls0_c02375{letter-spacing:0.000000px;}
.sc__c02375{text-shadow:none;}
.sc0_c02375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02375{-webkit-text-stroke:0px transparent;}
.sc0_c02375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02375{word-spacing:0.000000px;}
._e_c02375{margin-left:-2.700000px;}
._3_c02375{margin-left:-1.068000px;}
._1_c02375{width:1.224000px;}
._c_c02375{width:2.304000px;}
._d_c02375{width:3.492000px;}
._f_c02375{width:4.524000px;}
._9_c02375{width:5.532000px;}
._6_c02375{width:7.056000px;}
._5_c02375{width:8.568000px;}
._0_c02375{width:10.368000px;}
._2_c02375{width:11.520000px;}
._b_c02375{width:13.728000px;}
._a_c02375{width:14.976000px;}
._4_c02375{width:16.404000px;}
._7_c02375{width:22.896000px;}
._8_c02375{width:24.480000px;}
.fc1_c02375{color:rgb(192,80,77);}
.fc2_c02375{color:rgb(17,17,17);}
.fc0_c02375{color:rgb(0,0,0);}
.fs0_c02375{font-size:66.240000px;}
.fs1_c02375{font-size:72.000000px;}
.y0_c02375{bottom:0.000000px;}
.y3_c02375{bottom:4.680000px;}
.y2_c02375{bottom:41.796000px;}
.y1_c02375{bottom:75.456000px;}
.y1d_c02375{bottom:288.975000px;}
.y1c_c02375{bottom:320.115000px;}
.y1b_c02375{bottom:351.075000px;}
.y1a_c02375{bottom:382.215000px;}
.y19_c02375{bottom:413.175000px;}
.y18_c02375{bottom:444.315000px;}
.y17_c02375{bottom:475.275000px;}
.y16_c02375{bottom:506.415000px;}
.y15_c02375{bottom:537.405000px;}
.y14_c02375{bottom:568.545000px;}
.y13_c02375{bottom:599.505000px;}
.y12_c02375{bottom:630.645000px;}
.y11_c02375{bottom:661.605000px;}
.y10_c02375{bottom:692.745000px;}
.yf_c02375{bottom:723.705000px;}
.ye_c02375{bottom:754.845000px;}
.yd_c02375{bottom:785.805000px;}
.yc_c02375{bottom:816.990000px;}
.yb_c02375{bottom:847.950000px;}
.ya_c02375{bottom:879.090000px;}
.y9_c02375{bottom:910.050000px;}
.y8_c02375{bottom:941.190000px;}
.y7_c02375{bottom:972.150000px;}
.y6_c02375{bottom:1003.290000px;}
.y5_c02375{bottom:1034.250000px;}
.y4_c02375{bottom:1065.420000px;}
.h2_c02375{height:22.500000px;}
.h1_c02375{height:48.871406px;}
.h3_c02375{height:70.664062px;}
.h0_c02375{height:1188.000000px;}
.w1_c02375{width:66.636000px;}
.w0_c02375{width:918.000000px;}
.x0_c02375{left:0.000000px;}
.x3_c02375{left:16.560000px;}
.x1_c02375{left:127.656000px;}
.x4_c02375{left:187.050000px;}
.x2_c02375{left:820.950000px;}
@media print{
.v0_c02375{vertical-align:0.000000pt;}
.ls0_c02375{letter-spacing:0.000000pt;}
.ws0_c02375{word-spacing:0.000000pt;}
._e_c02375{margin-left:-2.400000pt;}
._3_c02375{margin-left:-0.949333pt;}
._1_c02375{width:1.088000pt;}
._c_c02375{width:2.048000pt;}
._d_c02375{width:3.104000pt;}
._f_c02375{width:4.021333pt;}
._9_c02375{width:4.917333pt;}
._6_c02375{width:6.272000pt;}
._5_c02375{width:7.616000pt;}
._0_c02375{width:9.216000pt;}
._2_c02375{width:10.240000pt;}
._b_c02375{width:12.202667pt;}
._a_c02375{width:13.312000pt;}
._4_c02375{width:14.581333pt;}
._7_c02375{width:20.352000pt;}
._8_c02375{width:21.760000pt;}
.fs0_c02375{font-size:58.880000pt;}
.fs1_c02375{font-size:64.000000pt;}
.y0_c02375{bottom:0.000000pt;}
.y3_c02375{bottom:4.160000pt;}
.y2_c02375{bottom:37.152000pt;}
.y1_c02375{bottom:67.072000pt;}
.y1d_c02375{bottom:256.866667pt;}
.y1c_c02375{bottom:284.546667pt;}
.y1b_c02375{bottom:312.066667pt;}
.y1a_c02375{bottom:339.746667pt;}
.y19_c02375{bottom:367.266667pt;}
.y18_c02375{bottom:394.946667pt;}
.y17_c02375{bottom:422.466667pt;}
.y16_c02375{bottom:450.146667pt;}
.y15_c02375{bottom:477.693333pt;}
.y14_c02375{bottom:505.373333pt;}
.y13_c02375{bottom:532.893333pt;}
.y12_c02375{bottom:560.573333pt;}
.y11_c02375{bottom:588.093333pt;}
.y10_c02375{bottom:615.773333pt;}
.yf_c02375{bottom:643.293333pt;}
.ye_c02375{bottom:670.973333pt;}
.yd_c02375{bottom:698.493333pt;}
.yc_c02375{bottom:726.213333pt;}
.yb_c02375{bottom:753.733333pt;}
.ya_c02375{bottom:781.413333pt;}
.y9_c02375{bottom:808.933333pt;}
.y8_c02375{bottom:836.613333pt;}
.y7_c02375{bottom:864.133333pt;}
.y6_c02375{bottom:891.813333pt;}
.y5_c02375{bottom:919.333333pt;}
.y4_c02375{bottom:947.040000pt;}
.h2_c02375{height:20.000000pt;}
.h1_c02375{height:43.441250pt;}
.h3_c02375{height:62.812500pt;}
.h0_c02375{height:1056.000000pt;}
.w1_c02375{width:59.232000pt;}
.w0_c02375{width:816.000000pt;}
.x0_c02375{left:0.000000pt;}
.x3_c02375{left:14.720000pt;}
.x1_c02375{left:113.472000pt;}
.x4_c02375{left:166.266667pt;}
.x2_c02375{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02376 {
    display:none;
  }
  .loading-indicator_c02376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02376 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02376 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02376" -> "#page-container .classname_c02376")
 */
.pf_c02376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02376 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02376 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02376 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02376 {overflow:visible;}
  }
}
.c_c02376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02376 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02376:after { /* webkit #35443 */
  content: '';
}
.t_c02376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02376 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02376 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02376 { /* info for Javascript */
  display:none;
}
.l_c02376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02376:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02376 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02376.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02376;src:url('chunks/assets/font_044dbdafc4387d37cb3ad241.woff2')format("woff");}.ff1_c02376{font-family:ff1_c02376;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02376;src:url('chunks/assets/font_5ee7e9ef62ca88d447ef3e0a.woff2')format("woff");}.ff2_c02376{font-family:ff2_c02376;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:ff3_c02376;src:url('chunks/assets/font_fa1c5f249cb3323e2b922c92.woff2')format("woff");}.ff3_c02376{font-family:ff3_c02376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02376{vertical-align:0.000000px;}
.ls0_c02376{letter-spacing:0.000000px;}
.ls1_c02376{letter-spacing:0.360000px;}
.sc__c02376{text-shadow:none;}
.sc0_c02376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02376{-webkit-text-stroke:0px transparent;}
.sc0_c02376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02376{word-spacing:-15.300000px;}
.ws1_c02376{word-spacing:0.000000px;}
._0_c02376{margin-left:-1.224000px;}
._1_c02376{width:1.344000px;}
.fc1_c02376{color:rgb(192,80,77);}
.fc3_c02376{color:rgb(255,255,255);}
.fc2_c02376{color:rgb(17,17,17);}
.fc0_c02376{color:rgb(0,0,0);}
.fs2_c02376{font-size:59.760000px;}
.fs0_c02376{font-size:66.240000px;}
.fs1_c02376{font-size:72.000000px;}
.y0_c02376{bottom:0.000000px;}
.y2e_c02376{bottom:3.240000px;}
.y9_c02376{bottom:3.420000px;}
.y29_c02376{bottom:3.600000px;}
.y8_c02376{bottom:3.780000px;}
.y1d_c02376{bottom:3.810000px;}
.y11_c02376{bottom:3.825000px;}
.y3_c02376{bottom:4.860000px;}
.y2_c02376{bottom:52.416000px;}
.y1_c02376{bottom:75.456000px;}
.y2d_c02376{bottom:134.316000px;}
.ya_c02376{bottom:152.310000px;}
.y2c_c02376{bottom:170.310000px;}
.y2b_c02376{bottom:188.310000px;}
.y2a_c02376{bottom:206.310000px;}
.y28_c02376{bottom:224.310000px;}
.y27_c02376{bottom:242.175000px;}
.y26_c02376{bottom:260.175000px;}
.y25_c02376{bottom:278.175000px;}
.y24_c02376{bottom:296.175000px;}
.y23_c02376{bottom:314.175000px;}
.y22_c02376{bottom:332.175000px;}
.y21_c02376{bottom:350.175000px;}
.y20_c02376{bottom:368.175000px;}
.y1f_c02376{bottom:386.175000px;}
.y1e_c02376{bottom:404.175000px;}
.y1c_c02376{bottom:422.175000px;}
.y1b_c02376{bottom:440.205000px;}
.y1a_c02376{bottom:458.205000px;}
.y19_c02376{bottom:476.205000px;}
.y18_c02376{bottom:494.205000px;}
.y17_c02376{bottom:512.205000px;}
.y16_c02376{bottom:530.205000px;}
.yb_c02376{bottom:543.720000px;}
.y15_c02376{bottom:548.205000px;}
.y14_c02376{bottom:566.205000px;}
.y13_c02376{bottom:584.205000px;}
.y12_c02376{bottom:602.205000px;}
.y10_c02376{bottom:620.205000px;}
.yf_c02376{bottom:638.250000px;}
.ye_c02376{bottom:656.250000px;}
.yd_c02376{bottom:674.250000px;}
.yc_c02376{bottom:692.250000px;}
.y7_c02376{bottom:710.250000px;}
.y6_c02376{bottom:732.750000px;}
.y5_c02376{bottom:753.450000px;}
.y4_c02376{bottom:774.150000px;}
.ha_c02376{height:17.100000px;}
.h9_c02376{height:17.136000px;}
.h4_c02376{height:17.280000px;}
.h8_c02376{height:17.316000px;}
.h2_c02376{height:22.680000px;}
.h1_c02376{height:48.871406px;}
.h5_c02376{height:58.651172px;}
.h6_c02376{height:60.226875px;}
.h3_c02376{height:70.664062px;}
.h7_c02376{height:557.205000px;}
.h0_c02376{height:918.000000px;}
.w1_c02376{width:66.780000px;}
.w5_c02376{width:95.040000px;}
.w4_c02376{width:178.410000px;}
.w2_c02376{width:201.270000px;}
.w3_c02376{width:479.055000px;}
.w6_c02376{width:860.190000px;}
.w0_c02376{width:1188.000000px;}
.x0_c02376{left:0.000000px;}
.xc_c02376{left:7.740000px;}
.x3_c02376{left:16.560000px;}
.xe_c02376{left:21.240000px;}
.x8_c02376{left:33.690000px;}
.x20_c02376{left:40.140000px;}
.x12_c02376{left:47.520000px;}
.xf_c02376{left:81.390000px;}
.x11_c02376{left:85.320000px;}
.x1_c02376{left:106.200000px;}
.x7_c02376{left:117.360000px;}
.x1b_c02376{left:162.585000px;}
.x6_c02376{left:165.630000px;}
.x1a_c02376{left:172.665000px;}
.x15_c02376{left:199.845000px;}
.x1d_c02376{left:203.445000px;}
.x19_c02376{left:206.505000px;}
.x10_c02376{left:207.765000px;}
.x1f_c02376{left:210.825000px;}
.x17_c02376{left:213.165000px;}
.x16_c02376{left:215.685000px;}
.x14_c02376{left:216.945000px;}
.x13_c02376{left:219.465000px;}
.xa_c02376{left:220.725000px;}
.x1c_c02376{left:222.345000px;}
.x1e_c02376{left:223.605000px;}
.x18_c02376{left:225.405000px;}
.x9_c02376{left:319.350000px;}
.x5_c02376{left:431.895000px;}
.x4_c02376{left:574.995000px;}
.xb_c02376{left:799.125000px;}
.xd_c02376{left:978.450000px;}
.x2_c02376{left:1101.570000px;}
@media print{
.v0_c02376{vertical-align:0.000000pt;}
.ls0_c02376{letter-spacing:0.000000pt;}
.ls1_c02376{letter-spacing:0.320000pt;}
.ws0_c02376{word-spacing:-13.600000pt;}
.ws1_c02376{word-spacing:0.000000pt;}
._0_c02376{margin-left:-1.088000pt;}
._1_c02376{width:1.194667pt;}
.fs2_c02376{font-size:53.120000pt;}
.fs0_c02376{font-size:58.880000pt;}
.fs1_c02376{font-size:64.000000pt;}
.y0_c02376{bottom:0.000000pt;}
.y2e_c02376{bottom:2.880000pt;}
.y9_c02376{bottom:3.040000pt;}
.y29_c02376{bottom:3.200000pt;}
.y8_c02376{bottom:3.360000pt;}
.y1d_c02376{bottom:3.386667pt;}
.y11_c02376{bottom:3.400000pt;}
.y3_c02376{bottom:4.320000pt;}
.y2_c02376{bottom:46.592000pt;}
.y1_c02376{bottom:67.072000pt;}
.y2d_c02376{bottom:119.392000pt;}
.ya_c02376{bottom:135.386667pt;}
.y2c_c02376{bottom:151.386667pt;}
.y2b_c02376{bottom:167.386667pt;}
.y2a_c02376{bottom:183.386667pt;}
.y28_c02376{bottom:199.386667pt;}
.y27_c02376{bottom:215.266667pt;}
.y26_c02376{bottom:231.266667pt;}
.y25_c02376{bottom:247.266667pt;}
.y24_c02376{bottom:263.266667pt;}
.y23_c02376{bottom:279.266667pt;}
.y22_c02376{bottom:295.266667pt;}
.y21_c02376{bottom:311.266667pt;}
.y20_c02376{bottom:327.266667pt;}
.y1f_c02376{bottom:343.266667pt;}
.y1e_c02376{bottom:359.266667pt;}
.y1c_c02376{bottom:375.266667pt;}
.y1b_c02376{bottom:391.293333pt;}
.y1a_c02376{bottom:407.293333pt;}
.y19_c02376{bottom:423.293333pt;}
.y18_c02376{bottom:439.293333pt;}
.y17_c02376{bottom:455.293333pt;}
.y16_c02376{bottom:471.293333pt;}
.yb_c02376{bottom:483.306667pt;}
.y15_c02376{bottom:487.293333pt;}
.y14_c02376{bottom:503.293333pt;}
.y13_c02376{bottom:519.293333pt;}
.y12_c02376{bottom:535.293333pt;}
.y10_c02376{bottom:551.293333pt;}
.yf_c02376{bottom:567.333333pt;}
.ye_c02376{bottom:583.333333pt;}
.yd_c02376{bottom:599.333333pt;}
.yc_c02376{bottom:615.333333pt;}
.y7_c02376{bottom:631.333333pt;}
.y6_c02376{bottom:651.333333pt;}
.y5_c02376{bottom:669.733333pt;}
.y4_c02376{bottom:688.133333pt;}
.ha_c02376{height:15.200000pt;}
.h9_c02376{height:15.232000pt;}
.h4_c02376{height:15.360000pt;}
.h8_c02376{height:15.392000pt;}
.h2_c02376{height:20.160000pt;}
.h1_c02376{height:43.441250pt;}
.h5_c02376{height:52.134375pt;}
.h6_c02376{height:53.535000pt;}
.h3_c02376{height:62.812500pt;}
.h7_c02376{height:495.293333pt;}
.h0_c02376{height:816.000000pt;}
.w1_c02376{width:59.360000pt;}
.w5_c02376{width:84.480000pt;}
.w4_c02376{width:158.586667pt;}
.w2_c02376{width:178.906667pt;}
.w3_c02376{width:425.826667pt;}
.w6_c02376{width:764.613333pt;}
.w0_c02376{width:1056.000000pt;}
.x0_c02376{left:0.000000pt;}
.xc_c02376{left:6.880000pt;}
.x3_c02376{left:14.720000pt;}
.xe_c02376{left:18.880000pt;}
.x8_c02376{left:29.946667pt;}
.x20_c02376{left:35.680000pt;}
.x12_c02376{left:42.240000pt;}
.xf_c02376{left:72.346667pt;}
.x11_c02376{left:75.840000pt;}
.x1_c02376{left:94.400000pt;}
.x7_c02376{left:104.320000pt;}
.x1b_c02376{left:144.520000pt;}
.x6_c02376{left:147.226667pt;}
.x1a_c02376{left:153.480000pt;}
.x15_c02376{left:177.640000pt;}
.x1d_c02376{left:180.840000pt;}
.x19_c02376{left:183.560000pt;}
.x10_c02376{left:184.680000pt;}
.x1f_c02376{left:187.400000pt;}
.x17_c02376{left:189.480000pt;}
.x16_c02376{left:191.720000pt;}
.x14_c02376{left:192.840000pt;}
.x13_c02376{left:195.080000pt;}
.xa_c02376{left:196.200000pt;}
.x1c_c02376{left:197.640000pt;}
.x1e_c02376{left:198.760000pt;}
.x18_c02376{left:200.360000pt;}
.x9_c02376{left:283.866667pt;}
.x5_c02376{left:383.906667pt;}
.x4_c02376{left:511.106667pt;}
.xb_c02376{left:710.333333pt;}
.xd_c02376{left:869.733333pt;}
.x2_c02376{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02377 {
    display:none;
  }
  .loading-indicator_c02377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02377 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02377 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02377" -> "#page-container .classname_c02377")
 */
.pf_c02377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02377 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02377 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02377 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02377 {overflow:visible;}
  }
}
.c_c02377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02377 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02377:after { /* webkit #35443 */
  content: '';
}
.t_c02377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02377 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02377 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02377 { /* info for Javascript */
  display:none;
}
.l_c02377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02377:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02377 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02377.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02377;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02377{font-family:ff1_c02377;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02377;src:url('chunks/assets/font_c51b77ff2c661da96daca8c1.woff2')format("woff");}.ff2_c02377{font-family:ff2_c02377;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:ff3_c02377;src:url('chunks/assets/font_190b428412eb168bd938bdb3.woff2')format("woff");}.ff3_c02377{font-family:ff3_c02377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02377{vertical-align:0.000000px;}
.ls1_c02377{letter-spacing:0.000000px;}
.ls0_c02377{letter-spacing:0.360000px;}
.sc__c02377{text-shadow:none;}
.sc0_c02377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02377{-webkit-text-stroke:0px transparent;}
.sc0_c02377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02377{word-spacing:-15.300000px;}
.ws1_c02377{word-spacing:0.000000px;}
._1_c02377{margin-left:-1.135799px;}
._0_c02377{width:1.075800px;}
.fc1_c02377{color:rgb(192,80,77);}
.fc2_c02377{color:rgb(17,17,17);}
.fc0_c02377{color:rgb(0,0,0);}
.fs1_c02377{font-size:59.760000px;}
.fs0_c02377{font-size:66.240000px;}
.y0_c02377{bottom:0.000000px;}
.yc_c02377{bottom:3.420000px;}
.y2c_c02377{bottom:3.600000px;}
.y7_c02377{bottom:3.780000px;}
.y3_c02377{bottom:4.860000px;}
.y2_c02377{bottom:52.416000px;}
.y8_c02377{bottom:57.420000px;}
.y5_c02377{bottom:57.780000px;}
.y1_c02377{bottom:75.456000px;}
.y2a_c02377{bottom:76.494000px;}
.y29_c02377{bottom:93.639000px;}
.y28_c02377{bottom:142.416000px;}
.y30_c02377{bottom:160.410000px;}
.y2f_c02377{bottom:178.410000px;}
.y2e_c02377{bottom:196.410000px;}
.y2d_c02377{bottom:214.410000px;}
.y2b_c02377{bottom:232.455000px;}
.y27_c02377{bottom:250.275000px;}
.yd_c02377{bottom:268.275000px;}
.y26_c02377{bottom:286.275000px;}
.y25_c02377{bottom:304.275000px;}
.y24_c02377{bottom:322.275000px;}
.y23_c02377{bottom:340.275000px;}
.y22_c02377{bottom:358.275000px;}
.y21_c02377{bottom:376.275000px;}
.y20_c02377{bottom:394.275000px;}
.y1f_c02377{bottom:412.275000px;}
.y10_c02377{bottom:417.495000px;}
.ye_c02377{bottom:417.855000px;}
.y1e_c02377{bottom:430.305000px;}
.y1d_c02377{bottom:448.305000px;}
.y1c_c02377{bottom:466.305000px;}
.y1b_c02377{bottom:484.305000px;}
.y1a_c02377{bottom:502.305000px;}
.y19_c02377{bottom:520.305000px;}
.y18_c02377{bottom:538.305000px;}
.y17_c02377{bottom:556.305000px;}
.y16_c02377{bottom:574.305000px;}
.y15_c02377{bottom:592.305000px;}
.y14_c02377{bottom:610.305000px;}
.y13_c02377{bottom:628.350000px;}
.y12_c02377{bottom:646.350000px;}
.y11_c02377{bottom:664.350000px;}
.yf_c02377{bottom:682.350000px;}
.yb_c02377{bottom:700.350000px;}
.y4_c02377{bottom:718.350000px;}
.ya_c02377{bottom:736.350000px;}
.y9_c02377{bottom:754.350000px;}
.y6_c02377{bottom:772.350000px;}
.ha_c02377{height:17.100000px;}
.hb_c02377{height:17.136000px;}
.h5_c02377{height:17.280000px;}
.h8_c02377{height:17.316000px;}
.h2_c02377{height:22.680000px;}
.h1_c02377{height:48.871406px;}
.h4_c02377{height:58.651172px;}
.h6_c02377{height:60.226875px;}
.h3_c02377{height:71.280000px;}
.h9_c02377{height:107.136000px;}
.h7_c02377{height:431.355000px;}
.h0_c02377{height:918.000000px;}
.w1_c02377{width:66.780000px;}
.w5_c02377{width:95.040000px;}
.w8_c02377{width:178.410000px;}
.w4_c02377{width:179.850000px;}
.w2_c02377{width:201.270000px;}
.w3_c02377{width:477.615000px;}
.w7_c02377{width:479.055000px;}
.w6_c02377{width:860.190000px;}
.w0_c02377{width:1188.000000px;}
.x0_c02377{left:0.000000px;}
.xb_c02377{left:7.740000px;}
.x3_c02377{left:16.560000px;}
.x10_c02377{left:18.936000px;}
.x1e_c02377{left:36.360000px;}
.xf_c02377{left:40.140000px;}
.x5_c02377{left:44.850000px;}
.x12_c02377{left:47.520000px;}
.x1f_c02377{left:70.410000px;}
.x9_c02377{left:82.440000px;}
.xd_c02377{left:86.040000px;}
.x1_c02377{left:106.200000px;}
.x4_c02377{left:117.360000px;}
.x1d_c02377{left:169.965000px;}
.x1c_c02377{left:182.565000px;}
.x7_c02377{left:191.925000px;}
.x1a_c02377{left:203.265000px;}
.x11_c02377{left:206.145000px;}
.xe_c02377{left:207.225000px;}
.x18_c02377{left:208.845000px;}
.x17_c02377{left:210.465000px;}
.x1b_c02377{left:212.805000px;}
.x19_c02377{left:213.885000px;}
.xc_c02377{left:215.865000px;}
.x22_c02377{left:218.205000px;}
.x16_c02377{left:219.645000px;}
.x14_c02377{left:220.905000px;}
.x15_c02377{left:222.525000px;}
.x13_c02377{left:225.045000px;}
.x21_c02377{left:227.385000px;}
.x6_c02377{left:319.350000px;}
.x8_c02377{left:797.685000px;}
.x20_c02377{left:799.125000px;}
.xa_c02377{left:978.450000px;}
.x2_c02377{left:1101.570000px;}
@media print{
.v0_c02377{vertical-align:0.000000pt;}
.ls1_c02377{letter-spacing:0.000000pt;}
.ls0_c02377{letter-spacing:0.320000pt;}
.ws0_c02377{word-spacing:-13.600000pt;}
.ws1_c02377{word-spacing:0.000000pt;}
._1_c02377{margin-left:-1.009599pt;}
._0_c02377{width:0.956266pt;}
.fs1_c02377{font-size:53.120000pt;}
.fs0_c02377{font-size:58.880000pt;}
.y0_c02377{bottom:0.000000pt;}
.yc_c02377{bottom:3.040000pt;}
.y2c_c02377{bottom:3.200000pt;}
.y7_c02377{bottom:3.360000pt;}
.y3_c02377{bottom:4.320000pt;}
.y2_c02377{bottom:46.592000pt;}
.y8_c02377{bottom:51.040000pt;}
.y5_c02377{bottom:51.360000pt;}
.y1_c02377{bottom:67.072000pt;}
.y2a_c02377{bottom:67.994667pt;}
.y29_c02377{bottom:83.234667pt;}
.y28_c02377{bottom:126.592000pt;}
.y30_c02377{bottom:142.586667pt;}
.y2f_c02377{bottom:158.586667pt;}
.y2e_c02377{bottom:174.586667pt;}
.y2d_c02377{bottom:190.586667pt;}
.y2b_c02377{bottom:206.626667pt;}
.y27_c02377{bottom:222.466667pt;}
.yd_c02377{bottom:238.466667pt;}
.y26_c02377{bottom:254.466667pt;}
.y25_c02377{bottom:270.466667pt;}
.y24_c02377{bottom:286.466667pt;}
.y23_c02377{bottom:302.466667pt;}
.y22_c02377{bottom:318.466667pt;}
.y21_c02377{bottom:334.466667pt;}
.y20_c02377{bottom:350.466667pt;}
.y1f_c02377{bottom:366.466667pt;}
.y10_c02377{bottom:371.106667pt;}
.ye_c02377{bottom:371.426667pt;}
.y1e_c02377{bottom:382.493333pt;}
.y1d_c02377{bottom:398.493333pt;}
.y1c_c02377{bottom:414.493333pt;}
.y1b_c02377{bottom:430.493333pt;}
.y1a_c02377{bottom:446.493333pt;}
.y19_c02377{bottom:462.493333pt;}
.y18_c02377{bottom:478.493333pt;}
.y17_c02377{bottom:494.493333pt;}
.y16_c02377{bottom:510.493333pt;}
.y15_c02377{bottom:526.493333pt;}
.y14_c02377{bottom:542.493333pt;}
.y13_c02377{bottom:558.533333pt;}
.y12_c02377{bottom:574.533333pt;}
.y11_c02377{bottom:590.533333pt;}
.yf_c02377{bottom:606.533333pt;}
.yb_c02377{bottom:622.533333pt;}
.y4_c02377{bottom:638.533333pt;}
.ya_c02377{bottom:654.533333pt;}
.y9_c02377{bottom:670.533333pt;}
.y6_c02377{bottom:686.533333pt;}
.ha_c02377{height:15.200000pt;}
.hb_c02377{height:15.232000pt;}
.h5_c02377{height:15.360000pt;}
.h8_c02377{height:15.392000pt;}
.h2_c02377{height:20.160000pt;}
.h1_c02377{height:43.441250pt;}
.h4_c02377{height:52.134375pt;}
.h6_c02377{height:53.535000pt;}
.h3_c02377{height:63.360000pt;}
.h9_c02377{height:95.232000pt;}
.h7_c02377{height:383.426667pt;}
.h0_c02377{height:816.000000pt;}
.w1_c02377{width:59.360000pt;}
.w5_c02377{width:84.480000pt;}
.w8_c02377{width:158.586667pt;}
.w4_c02377{width:159.866667pt;}
.w2_c02377{width:178.906667pt;}
.w3_c02377{width:424.546667pt;}
.w7_c02377{width:425.826667pt;}
.w6_c02377{width:764.613333pt;}
.w0_c02377{width:1056.000000pt;}
.x0_c02377{left:0.000000pt;}
.xb_c02377{left:6.880000pt;}
.x3_c02377{left:14.720000pt;}
.x10_c02377{left:16.832000pt;}
.x1e_c02377{left:32.320000pt;}
.xf_c02377{left:35.680000pt;}
.x5_c02377{left:39.866667pt;}
.x12_c02377{left:42.240000pt;}
.x1f_c02377{left:62.586667pt;}
.x9_c02377{left:73.280000pt;}
.xd_c02377{left:76.480000pt;}
.x1_c02377{left:94.400000pt;}
.x4_c02377{left:104.320000pt;}
.x1d_c02377{left:151.080000pt;}
.x1c_c02377{left:162.280000pt;}
.x7_c02377{left:170.600000pt;}
.x1a_c02377{left:180.680000pt;}
.x11_c02377{left:183.240000pt;}
.xe_c02377{left:184.200000pt;}
.x18_c02377{left:185.640000pt;}
.x17_c02377{left:187.080000pt;}
.x1b_c02377{left:189.160000pt;}
.x19_c02377{left:190.120000pt;}
.xc_c02377{left:191.880000pt;}
.x22_c02377{left:193.960000pt;}
.x16_c02377{left:195.240000pt;}
.x14_c02377{left:196.360000pt;}
.x15_c02377{left:197.800000pt;}
.x13_c02377{left:200.040000pt;}
.x21_c02377{left:202.120000pt;}
.x6_c02377{left:283.866667pt;}
.x8_c02377{left:709.053333pt;}
.x20_c02377{left:710.333333pt;}
.xa_c02377{left:869.733333pt;}
.x2_c02377{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02378 {
    display:none;
  }
  .loading-indicator_c02378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02378 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02378 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02378" -> "#page-container .classname_c02378")
 */
.pf_c02378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02378 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02378 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02378 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02378 {overflow:visible;}
  }
}
.c_c02378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02378 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02378:after { /* webkit #35443 */
  content: '';
}
.t_c02378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02378 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02378 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02378 { /* info for Javascript */
  display:none;
}
.l_c02378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02378:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02378 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02378.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02378;src:url('chunks/assets/font_fbe5004b0fc4e978bb983be9.woff2')format("woff");}.ff1_c02378{font-family:ff1_c02378;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02378;src:url('chunks/assets/font_c4227691d4719ebe591d8377.woff2')format("woff");}.ff2_c02378{font-family:ff2_c02378;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:ff3_c02378;src:url('chunks/assets/font_8adff8a9d54875aeef2a413b.woff2')format("woff");}.ff3_c02378{font-family:ff3_c02378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02378{vertical-align:0.000000px;}
.ls1_c02378{letter-spacing:0.000000px;}
.ls0_c02378{letter-spacing:0.360000px;}
.sc__c02378{text-shadow:none;}
.sc0_c02378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02378{-webkit-text-stroke:0px transparent;}
.sc0_c02378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02378{word-spacing:-15.300000px;}
.ws1_c02378{word-spacing:-14.940000px;}
.ws2_c02378{word-spacing:0.000000px;}
._3_c02378{margin-left:-1.349280px;}
._0_c02378{width:1.133280px;}
._4_c02378{width:2.258880px;}
._1_c02378{width:10.008000px;}
._2_c02378{width:11.304000px;}
.fc1_c02378{color:rgb(192,80,77);}
.fc2_c02378{color:rgb(17,17,17);}
.fc0_c02378{color:rgb(0,0,0);}
.fs1_c02378{font-size:59.760000px;}
.fs0_c02378{font-size:66.240000px;}
.fs2_c02378{font-size:72.000000px;}
.y0_c02378{bottom:0.000000px;}
.y9_c02378{bottom:3.420000px;}
.y5_c02378{bottom:3.780000px;}
.y3_c02378{bottom:4.860000px;}
.y2_c02378{bottom:52.416000px;}
.y1_c02378{bottom:75.456000px;}
.y26_c02378{bottom:207.210000px;}
.y25_c02378{bottom:227.910000px;}
.y24_c02378{bottom:248.655000px;}
.y23_c02378{bottom:269.355000px;}
.y22_c02378{bottom:286.275000px;}
.y21_c02378{bottom:304.275000px;}
.ya_c02378{bottom:322.275000px;}
.y20_c02378{bottom:340.275000px;}
.y1f_c02378{bottom:358.275000px;}
.y1e_c02378{bottom:376.275000px;}
.yb_c02378{bottom:381.855000px;}
.y1d_c02378{bottom:394.275000px;}
.y1c_c02378{bottom:412.275000px;}
.y1b_c02378{bottom:430.305000px;}
.y1a_c02378{bottom:448.305000px;}
.y19_c02378{bottom:466.305000px;}
.y18_c02378{bottom:484.305000px;}
.y17_c02378{bottom:502.305000px;}
.y16_c02378{bottom:520.305000px;}
.y15_c02378{bottom:538.305000px;}
.y14_c02378{bottom:556.305000px;}
.y13_c02378{bottom:574.305000px;}
.y12_c02378{bottom:592.305000px;}
.y11_c02378{bottom:610.305000px;}
.y10_c02378{bottom:628.350000px;}
.yf_c02378{bottom:646.350000px;}
.ye_c02378{bottom:664.350000px;}
.yd_c02378{bottom:682.350000px;}
.yc_c02378{bottom:700.350000px;}
.y8_c02378{bottom:718.350000px;}
.y7_c02378{bottom:736.350000px;}
.y6_c02378{bottom:754.350000px;}
.y4_c02378{bottom:772.350000px;}
.h3_c02378{height:17.280000px;}
.h7_c02378{height:17.316000px;}
.h2_c02378{height:22.680000px;}
.h1_c02378{height:48.871406px;}
.h4_c02378{height:58.651172px;}
.h5_c02378{height:60.226875px;}
.h8_c02378{height:70.664062px;}
.h6_c02378{height:395.355000px;}
.h0_c02378{height:918.000000px;}
.w1_c02378{width:66.780000px;}
.w5_c02378{width:95.040000px;}
.w3_c02378{width:178.410000px;}
.w6_c02378{width:201.270000px;}
.w2_c02378{width:479.055000px;}
.w4_c02378{width:860.190000px;}
.w0_c02378{width:1188.000000px;}
.x0_c02378{left:0.000000px;}
.x3_c02378{left:16.560000px;}
.x1b_c02378{left:36.360000px;}
.xc_c02378{left:40.140000px;}
.xf_c02378{left:47.520000px;}
.xd_c02378{left:78.870000px;}
.xe_c02378{left:81.720000px;}
.x7_c02378{left:85.320000px;}
.x1_c02378{left:106.200000px;}
.x1c_c02378{left:115.200000px;}
.xa_c02378{left:117.360000px;}
.x1a_c02378{left:149.985000px;}
.x18_c02378{left:155.745000px;}
.x1d_c02378{left:165.630000px;}
.x19_c02378{left:177.885000px;}
.x17_c02378{left:188.505000px;}
.x10_c02378{left:200.925000px;}
.x16_c02378{left:206.145000px;}
.x9_c02378{left:207.765000px;}
.x11_c02378{left:210.285000px;}
.x14_c02378{left:214.065000px;}
.x15_c02378{left:215.685000px;}
.x8_c02378{left:217.485000px;}
.x5_c02378{left:219.105000px;}
.x13_c02378{left:222.885000px;}
.x12_c02378{left:224.145000px;}
.x4_c02378{left:319.350000px;}
.x6_c02378{left:799.125000px;}
.xb_c02378{left:978.450000px;}
.x2_c02378{left:1101.570000px;}
@media print{
.v0_c02378{vertical-align:0.000000pt;}
.ls1_c02378{letter-spacing:0.000000pt;}
.ls0_c02378{letter-spacing:0.320000pt;}
.ws0_c02378{word-spacing:-13.600000pt;}
.ws1_c02378{word-spacing:-13.280000pt;}
.ws2_c02378{word-spacing:0.000000pt;}
._3_c02378{margin-left:-1.199360pt;}
._0_c02378{width:1.007360pt;}
._4_c02378{width:2.007893pt;}
._1_c02378{width:8.896000pt;}
._2_c02378{width:10.048000pt;}
.fs1_c02378{font-size:53.120000pt;}
.fs0_c02378{font-size:58.880000pt;}
.fs2_c02378{font-size:64.000000pt;}
.y0_c02378{bottom:0.000000pt;}
.y9_c02378{bottom:3.040000pt;}
.y5_c02378{bottom:3.360000pt;}
.y3_c02378{bottom:4.320000pt;}
.y2_c02378{bottom:46.592000pt;}
.y1_c02378{bottom:67.072000pt;}
.y26_c02378{bottom:184.186667pt;}
.y25_c02378{bottom:202.586667pt;}
.y24_c02378{bottom:221.026667pt;}
.y23_c02378{bottom:239.426667pt;}
.y22_c02378{bottom:254.466667pt;}
.y21_c02378{bottom:270.466667pt;}
.ya_c02378{bottom:286.466667pt;}
.y20_c02378{bottom:302.466667pt;}
.y1f_c02378{bottom:318.466667pt;}
.y1e_c02378{bottom:334.466667pt;}
.yb_c02378{bottom:339.426667pt;}
.y1d_c02378{bottom:350.466667pt;}
.y1c_c02378{bottom:366.466667pt;}
.y1b_c02378{bottom:382.493333pt;}
.y1a_c02378{bottom:398.493333pt;}
.y19_c02378{bottom:414.493333pt;}
.y18_c02378{bottom:430.493333pt;}
.y17_c02378{bottom:446.493333pt;}
.y16_c02378{bottom:462.493333pt;}
.y15_c02378{bottom:478.493333pt;}
.y14_c02378{bottom:494.493333pt;}
.y13_c02378{bottom:510.493333pt;}
.y12_c02378{bottom:526.493333pt;}
.y11_c02378{bottom:542.493333pt;}
.y10_c02378{bottom:558.533333pt;}
.yf_c02378{bottom:574.533333pt;}
.ye_c02378{bottom:590.533333pt;}
.yd_c02378{bottom:606.533333pt;}
.yc_c02378{bottom:622.533333pt;}
.y8_c02378{bottom:638.533333pt;}
.y7_c02378{bottom:654.533333pt;}
.y6_c02378{bottom:670.533333pt;}
.y4_c02378{bottom:686.533333pt;}
.h3_c02378{height:15.360000pt;}
.h7_c02378{height:15.392000pt;}
.h2_c02378{height:20.160000pt;}
.h1_c02378{height:43.441250pt;}
.h4_c02378{height:52.134375pt;}
.h5_c02378{height:53.535000pt;}
.h8_c02378{height:62.812500pt;}
.h6_c02378{height:351.426667pt;}
.h0_c02378{height:816.000000pt;}
.w1_c02378{width:59.360000pt;}
.w5_c02378{width:84.480000pt;}
.w3_c02378{width:158.586667pt;}
.w6_c02378{width:178.906667pt;}
.w2_c02378{width:425.826667pt;}
.w4_c02378{width:764.613333pt;}
.w0_c02378{width:1056.000000pt;}
.x0_c02378{left:0.000000pt;}
.x3_c02378{left:14.720000pt;}
.x1b_c02378{left:32.320000pt;}
.xc_c02378{left:35.680000pt;}
.xf_c02378{left:42.240000pt;}
.xd_c02378{left:70.106667pt;}
.xe_c02378{left:72.640000pt;}
.x7_c02378{left:75.840000pt;}
.x1_c02378{left:94.400000pt;}
.x1c_c02378{left:102.400000pt;}
.xa_c02378{left:104.320000pt;}
.x1a_c02378{left:133.320000pt;}
.x18_c02378{left:138.440000pt;}
.x1d_c02378{left:147.226667pt;}
.x19_c02378{left:158.120000pt;}
.x17_c02378{left:167.560000pt;}
.x10_c02378{left:178.600000pt;}
.x16_c02378{left:183.240000pt;}
.x9_c02378{left:184.680000pt;}
.x11_c02378{left:186.920000pt;}
.x14_c02378{left:190.280000pt;}
.x15_c02378{left:191.720000pt;}
.x8_c02378{left:193.320000pt;}
.x5_c02378{left:194.760000pt;}
.x13_c02378{left:198.120000pt;}
.x12_c02378{left:199.240000pt;}
.x4_c02378{left:283.866667pt;}
.x6_c02378{left:710.333333pt;}
.xb_c02378{left:869.733333pt;}
.x2_c02378{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02379 {
    display:none;
  }
  .loading-indicator_c02379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02379 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02379 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02379" -> "#page-container .classname_c02379")
 */
.pf_c02379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02379 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02379 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02379 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02379 {overflow:visible;}
  }
}
.c_c02379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02379 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02379:after { /* webkit #35443 */
  content: '';
}
.t_c02379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02379 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02379 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02379 { /* info for Javascript */
  display:none;
}
.l_c02379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02379:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02379 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02379.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02379;src:url('chunks/assets/font_812c9547785987b5c4de0bcd.woff2')format("woff");}.ff1_c02379{font-family:ff1_c02379;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02379;src:url('chunks/assets/font_3cbead12f6c13100bad474ae.woff2')format("woff");}.ff2_c02379{font-family:ff2_c02379;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:ff3_c02379;src:url('chunks/assets/font_eed9df230a6f6baf37c40e49.woff2')format("woff");}.ff3_c02379{font-family:ff3_c02379;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02379{vertical-align:0.000000px;}
.ls0_c02379{letter-spacing:0.000000px;}
.sc__c02379{text-shadow:none;}
.sc0_c02379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02379{-webkit-text-stroke:0px transparent;}
.sc0_c02379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02379{word-spacing:0.000000px;}
._4_c02379{margin-left:-1.440000px;}
._1_c02379{width:1.224000px;}
._5_c02379{width:2.520000px;}
._6_c02379{width:3.816000px;}
._9_c02379{width:5.688000px;}
._8_c02379{width:6.912000px;}
._0_c02379{width:8.352000px;}
._2_c02379{width:9.360000px;}
._3_c02379{width:10.656000px;}
._c_c02379{width:12.024000px;}
._d_c02379{width:13.104000px;}
._e_c02379{width:14.112000px;}
._10_c02379{width:15.192000px;}
._f_c02379{width:16.272000px;}
._a_c02379{width:19.512000px;}
._7_c02379{width:22.104000px;}
._b_c02379{width:23.760000px;}
.fc1_c02379{color:rgb(192,80,77);}
.fc2_c02379{color:rgb(17,17,17);}
.fc0_c02379{color:rgb(0,0,0);}
.fs0_c02379{font-size:66.240000px;}
.fs1_c02379{font-size:72.000000px;}
.y0_c02379{bottom:0.000000px;}
.y3_c02379{bottom:4.680000px;}
.y2_c02379{bottom:41.796000px;}
.y1_c02379{bottom:75.456000px;}
.y21_c02379{bottom:164.910000px;}
.y20_c02379{bottom:195.870000px;}
.y1f_c02379{bottom:226.830000px;}
.y1e_c02379{bottom:257.970000px;}
.y1d_c02379{bottom:288.975000px;}
.y1c_c02379{bottom:320.115000px;}
.y1b_c02379{bottom:351.075000px;}
.y1a_c02379{bottom:382.215000px;}
.y19_c02379{bottom:413.175000px;}
.y18_c02379{bottom:444.315000px;}
.y17_c02379{bottom:475.275000px;}
.y16_c02379{bottom:506.415000px;}
.y15_c02379{bottom:537.405000px;}
.y14_c02379{bottom:568.545000px;}
.y13_c02379{bottom:599.505000px;}
.y12_c02379{bottom:630.645000px;}
.y11_c02379{bottom:661.605000px;}
.y10_c02379{bottom:692.745000px;}
.yf_c02379{bottom:723.705000px;}
.ye_c02379{bottom:754.845000px;}
.yd_c02379{bottom:785.805000px;}
.yc_c02379{bottom:816.990000px;}
.yb_c02379{bottom:847.950000px;}
.ya_c02379{bottom:879.090000px;}
.y9_c02379{bottom:910.050000px;}
.y8_c02379{bottom:941.190000px;}
.y7_c02379{bottom:972.150000px;}
.y6_c02379{bottom:1003.290000px;}
.y5_c02379{bottom:1034.250000px;}
.y4_c02379{bottom:1065.420000px;}
.h2_c02379{height:22.500000px;}
.h1_c02379{height:48.871406px;}
.h4_c02379{height:64.546875px;}
.h3_c02379{height:70.664062px;}
.h0_c02379{height:1188.000000px;}
.w1_c02379{width:66.636000px;}
.w0_c02379{width:918.000000px;}
.x0_c02379{left:0.000000px;}
.x3_c02379{left:16.560000px;}
.x1_c02379{left:127.656000px;}
.x4_c02379{left:154.650000px;}
.x5_c02379{left:187.230000px;}
.x2_c02379{left:820.950000px;}
@media print{
.v0_c02379{vertical-align:0.000000pt;}
.ls0_c02379{letter-spacing:0.000000pt;}
.ws0_c02379{word-spacing:0.000000pt;}
._4_c02379{margin-left:-1.280000pt;}
._1_c02379{width:1.088000pt;}
._5_c02379{width:2.240000pt;}
._6_c02379{width:3.392000pt;}
._9_c02379{width:5.056000pt;}
._8_c02379{width:6.144000pt;}
._0_c02379{width:7.424000pt;}
._2_c02379{width:8.320000pt;}
._3_c02379{width:9.472000pt;}
._c_c02379{width:10.688000pt;}
._d_c02379{width:11.648000pt;}
._e_c02379{width:12.544000pt;}
._10_c02379{width:13.504000pt;}
._f_c02379{width:14.464000pt;}
._a_c02379{width:17.344000pt;}
._7_c02379{width:19.648000pt;}
._b_c02379{width:21.120000pt;}
.fs0_c02379{font-size:58.880000pt;}
.fs1_c02379{font-size:64.000000pt;}
.y0_c02379{bottom:0.000000pt;}
.y3_c02379{bottom:4.160000pt;}
.y2_c02379{bottom:37.152000pt;}
.y1_c02379{bottom:67.072000pt;}
.y21_c02379{bottom:146.586667pt;}
.y20_c02379{bottom:174.106667pt;}
.y1f_c02379{bottom:201.626667pt;}
.y1e_c02379{bottom:229.306667pt;}
.y1d_c02379{bottom:256.866667pt;}
.y1c_c02379{bottom:284.546667pt;}
.y1b_c02379{bottom:312.066667pt;}
.y1a_c02379{bottom:339.746667pt;}
.y19_c02379{bottom:367.266667pt;}
.y18_c02379{bottom:394.946667pt;}
.y17_c02379{bottom:422.466667pt;}
.y16_c02379{bottom:450.146667pt;}
.y15_c02379{bottom:477.693333pt;}
.y14_c02379{bottom:505.373333pt;}
.y13_c02379{bottom:532.893333pt;}
.y12_c02379{bottom:560.573333pt;}
.y11_c02379{bottom:588.093333pt;}
.y10_c02379{bottom:615.773333pt;}
.yf_c02379{bottom:643.293333pt;}
.ye_c02379{bottom:670.973333pt;}
.yd_c02379{bottom:698.493333pt;}
.yc_c02379{bottom:726.213333pt;}
.yb_c02379{bottom:753.733333pt;}
.ya_c02379{bottom:781.413333pt;}
.y9_c02379{bottom:808.933333pt;}
.y8_c02379{bottom:836.613333pt;}
.y7_c02379{bottom:864.133333pt;}
.y6_c02379{bottom:891.813333pt;}
.y5_c02379{bottom:919.333333pt;}
.y4_c02379{bottom:947.040000pt;}
.h2_c02379{height:20.000000pt;}
.h1_c02379{height:43.441250pt;}
.h4_c02379{height:57.375000pt;}
.h3_c02379{height:62.812500pt;}
.h0_c02379{height:1056.000000pt;}
.w1_c02379{width:59.232000pt;}
.w0_c02379{width:816.000000pt;}
.x0_c02379{left:0.000000pt;}
.x3_c02379{left:14.720000pt;}
.x1_c02379{left:113.472000pt;}
.x4_c02379{left:137.466667pt;}
.x5_c02379{left:166.426667pt;}
.x2_c02379{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02380 {
    display:none;
  }
  .loading-indicator_c02380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02380 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02380 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02380" -> "#page-container .classname_c02380")
 */
.pf_c02380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02380 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02380 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02380 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02380 {overflow:visible;}
  }
}
.c_c02380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02380 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02380:after { /* webkit #35443 */
  content: '';
}
.t_c02380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02380 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02380 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02380 { /* info for Javascript */
  display:none;
}
.l_c02380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02380:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02380 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02380.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02380;src:url('chunks/assets/font_02b7c2196b69e07f43cec6af.woff2')format("woff");}.ff1_c02380{font-family:ff1_c02380;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02380;src:url('chunks/assets/font_89403d4fe3cce224493c5366.woff2')format("woff");}.ff2_c02380{font-family:ff2_c02380;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:ff3_c02380;src:url('chunks/assets/font_65a7bb505d37fea9566dae79.woff2')format("woff");}.ff3_c02380{font-family:ff3_c02380;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02380{vertical-align:0.000000px;}
.ls0_c02380{letter-spacing:0.000000px;}
.sc__c02380{text-shadow:none;}
.sc0_c02380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02380{-webkit-text-stroke:0px transparent;}
.sc0_c02380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02380{word-spacing:0.000000px;}
._f_c02380{margin-left:-2.160000px;}
._1_c02380{margin-left:-1.152000px;}
._0_c02380{width:1.512000px;}
._2_c02380{width:2.664000px;}
._7_c02380{width:3.744000px;}
._4_c02380{width:4.824000px;}
._3_c02380{width:5.976000px;}
._b_c02380{width:7.344000px;}
._5_c02380{width:8.352000px;}
._6_c02380{width:10.008000px;}
._d_c02380{width:11.160000px;}
._a_c02380{width:20.664000px;}
._c_c02380{width:28.728000px;}
._9_c02380{width:29.880000px;}
._8_c02380{width:30.888000px;}
._10_c02380{width:33.984000px;}
._e_c02380{width:35.136000px;}
.fc1_c02380{color:rgb(192,80,77);}
.fc2_c02380{color:rgb(17,17,17);}
.fc0_c02380{color:rgb(0,0,0);}
.fs0_c02380{font-size:66.240000px;}
.fs1_c02380{font-size:72.000000px;}
.y0_c02380{bottom:0.000000px;}
.y3_c02380{bottom:4.680000px;}
.y2_c02380{bottom:41.796000px;}
.y1_c02380{bottom:75.456000px;}
.y22_c02380{bottom:133.776000px;}
.y21_c02380{bottom:164.910000px;}
.y20_c02380{bottom:195.870000px;}
.y1f_c02380{bottom:226.830000px;}
.y1e_c02380{bottom:257.970000px;}
.y1d_c02380{bottom:288.975000px;}
.y1c_c02380{bottom:320.115000px;}
.y1b_c02380{bottom:351.075000px;}
.y1a_c02380{bottom:382.215000px;}
.y19_c02380{bottom:413.175000px;}
.y18_c02380{bottom:444.315000px;}
.y17_c02380{bottom:475.275000px;}
.y16_c02380{bottom:506.415000px;}
.y15_c02380{bottom:537.405000px;}
.y14_c02380{bottom:568.545000px;}
.y13_c02380{bottom:599.505000px;}
.y12_c02380{bottom:630.645000px;}
.y11_c02380{bottom:661.605000px;}
.y10_c02380{bottom:692.745000px;}
.yf_c02380{bottom:723.705000px;}
.ye_c02380{bottom:754.845000px;}
.yd_c02380{bottom:785.805000px;}
.yc_c02380{bottom:816.990000px;}
.yb_c02380{bottom:847.950000px;}
.ya_c02380{bottom:879.090000px;}
.y9_c02380{bottom:910.050000px;}
.y8_c02380{bottom:941.190000px;}
.y7_c02380{bottom:972.150000px;}
.y6_c02380{bottom:1003.290000px;}
.y5_c02380{bottom:1034.250000px;}
.y4_c02380{bottom:1065.420000px;}
.h2_c02380{height:22.500000px;}
.h1_c02380{height:48.871406px;}
.h4_c02380{height:64.546875px;}
.h3_c02380{height:70.664062px;}
.h0_c02380{height:1188.000000px;}
.w1_c02380{width:66.636000px;}
.w0_c02380{width:918.000000px;}
.x0_c02380{left:0.000000px;}
.x3_c02380{left:16.560000px;}
.x1_c02380{left:127.656000px;}
.x4_c02380{left:187.050000px;}
.x2_c02380{left:820.950000px;}
@media print{
.v0_c02380{vertical-align:0.000000pt;}
.ls0_c02380{letter-spacing:0.000000pt;}
.ws0_c02380{word-spacing:0.000000pt;}
._f_c02380{margin-left:-1.920000pt;}
._1_c02380{margin-left:-1.024000pt;}
._0_c02380{width:1.344000pt;}
._2_c02380{width:2.368000pt;}
._7_c02380{width:3.328000pt;}
._4_c02380{width:4.288000pt;}
._3_c02380{width:5.312000pt;}
._b_c02380{width:6.528000pt;}
._5_c02380{width:7.424000pt;}
._6_c02380{width:8.896000pt;}
._d_c02380{width:9.920000pt;}
._a_c02380{width:18.368000pt;}
._c_c02380{width:25.536000pt;}
._9_c02380{width:26.560000pt;}
._8_c02380{width:27.456000pt;}
._10_c02380{width:30.208000pt;}
._e_c02380{width:31.232000pt;}
.fs0_c02380{font-size:58.880000pt;}
.fs1_c02380{font-size:64.000000pt;}
.y0_c02380{bottom:0.000000pt;}
.y3_c02380{bottom:4.160000pt;}
.y2_c02380{bottom:37.152000pt;}
.y1_c02380{bottom:67.072000pt;}
.y22_c02380{bottom:118.912000pt;}
.y21_c02380{bottom:146.586667pt;}
.y20_c02380{bottom:174.106667pt;}
.y1f_c02380{bottom:201.626667pt;}
.y1e_c02380{bottom:229.306667pt;}
.y1d_c02380{bottom:256.866667pt;}
.y1c_c02380{bottom:284.546667pt;}
.y1b_c02380{bottom:312.066667pt;}
.y1a_c02380{bottom:339.746667pt;}
.y19_c02380{bottom:367.266667pt;}
.y18_c02380{bottom:394.946667pt;}
.y17_c02380{bottom:422.466667pt;}
.y16_c02380{bottom:450.146667pt;}
.y15_c02380{bottom:477.693333pt;}
.y14_c02380{bottom:505.373333pt;}
.y13_c02380{bottom:532.893333pt;}
.y12_c02380{bottom:560.573333pt;}
.y11_c02380{bottom:588.093333pt;}
.y10_c02380{bottom:615.773333pt;}
.yf_c02380{bottom:643.293333pt;}
.ye_c02380{bottom:670.973333pt;}
.yd_c02380{bottom:698.493333pt;}
.yc_c02380{bottom:726.213333pt;}
.yb_c02380{bottom:753.733333pt;}
.ya_c02380{bottom:781.413333pt;}
.y9_c02380{bottom:808.933333pt;}
.y8_c02380{bottom:836.613333pt;}
.y7_c02380{bottom:864.133333pt;}
.y6_c02380{bottom:891.813333pt;}
.y5_c02380{bottom:919.333333pt;}
.y4_c02380{bottom:947.040000pt;}
.h2_c02380{height:20.000000pt;}
.h1_c02380{height:43.441250pt;}
.h4_c02380{height:57.375000pt;}
.h3_c02380{height:62.812500pt;}
.h0_c02380{height:1056.000000pt;}
.w1_c02380{width:59.232000pt;}
.w0_c02380{width:816.000000pt;}
.x0_c02380{left:0.000000pt;}
.x3_c02380{left:14.720000pt;}
.x1_c02380{left:113.472000pt;}
.x4_c02380{left:166.266667pt;}
.x2_c02380{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02381 {
    display:none;
  }
  .loading-indicator_c02381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02381 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02381 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02381" -> "#page-container .classname_c02381")
 */
.pf_c02381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02381 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02381 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02381 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02381 {overflow:visible;}
  }
}
.c_c02381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02381 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02381:after { /* webkit #35443 */
  content: '';
}
.t_c02381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02381 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02381 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02381 { /* info for Javascript */
  display:none;
}
.l_c02381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02381:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02381 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02381.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02381;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02381{font-family:ff1_c02381;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02381;src:url('chunks/assets/font_e9b0320b10c98ac96c1c3fec.woff2')format("woff");}.ff2_c02381{font-family:ff2_c02381;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:ff3_c02381;src:url('chunks/assets/font_698bb3d08f9f06da133ec6e7.woff2')format("woff");}.ff3_c02381{font-family:ff3_c02381;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02381{vertical-align:0.000000px;}
.ls0_c02381{letter-spacing:0.000000px;}
.sc__c02381{text-shadow:none;}
.sc0_c02381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02381{-webkit-text-stroke:0px transparent;}
.sc0_c02381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02381{word-spacing:0.000000px;}
._5_c02381{margin-left:-2.160000px;}
._2_c02381{margin-left:-1.008000px;}
._6_c02381{width:1.008000px;}
._b_c02381{width:2.448000px;}
._0_c02381{width:5.688000px;}
._1_c02381{width:6.984000px;}
._a_c02381{width:11.160000px;}
._c_c02381{width:12.324000px;}
._3_c02381{width:13.536000px;}
._4_c02381{width:14.544000px;}
._7_c02381{width:20.160000px;}
._8_c02381{width:22.248000px;}
._9_c02381{width:23.832000px;}
.fc1_c02381{color:rgb(192,80,77);}
.fc2_c02381{color:rgb(17,17,17);}
.fc0_c02381{color:rgb(0,0,0);}
.fs0_c02381{font-size:66.240000px;}
.fs1_c02381{font-size:72.000000px;}
.y0_c02381{bottom:0.000000px;}
.y3_c02381{bottom:4.680000px;}
.y2_c02381{bottom:41.796000px;}
.y1_c02381{bottom:75.456000px;}
.y12_c02381{bottom:640.905000px;}
.y11_c02381{bottom:661.785000px;}
.y10_c02381{bottom:692.745000px;}
.yf_c02381{bottom:723.705000px;}
.ye_c02381{bottom:754.845000px;}
.yd_c02381{bottom:785.805000px;}
.yc_c02381{bottom:816.990000px;}
.yb_c02381{bottom:847.950000px;}
.ya_c02381{bottom:879.090000px;}
.y9_c02381{bottom:910.050000px;}
.y8_c02381{bottom:941.190000px;}
.y7_c02381{bottom:972.150000px;}
.y6_c02381{bottom:1003.290000px;}
.y5_c02381{bottom:1034.250000px;}
.y4_c02381{bottom:1065.420000px;}
.h2_c02381{height:22.500000px;}
.h1_c02381{height:48.871406px;}
.h4_c02381{height:64.546875px;}
.h3_c02381{height:70.664062px;}
.h0_c02381{height:1188.000000px;}
.w1_c02381{width:66.636000px;}
.w0_c02381{width:918.000000px;}
.x0_c02381{left:0.000000px;}
.x3_c02381{left:16.560000px;}
.x1_c02381{left:127.656000px;}
.x4_c02381{left:187.050000px;}
.x5_c02381{left:472.575000px;}
.x2_c02381{left:820.950000px;}
@media print{
.v0_c02381{vertical-align:0.000000pt;}
.ls0_c02381{letter-spacing:0.000000pt;}
.ws0_c02381{word-spacing:0.000000pt;}
._5_c02381{margin-left:-1.920000pt;}
._2_c02381{margin-left:-0.896000pt;}
._6_c02381{width:0.896000pt;}
._b_c02381{width:2.176000pt;}
._0_c02381{width:5.056000pt;}
._1_c02381{width:6.208000pt;}
._a_c02381{width:9.920000pt;}
._c_c02381{width:10.954667pt;}
._3_c02381{width:12.032000pt;}
._4_c02381{width:12.928000pt;}
._7_c02381{width:17.920000pt;}
._8_c02381{width:19.776000pt;}
._9_c02381{width:21.184000pt;}
.fs0_c02381{font-size:58.880000pt;}
.fs1_c02381{font-size:64.000000pt;}
.y0_c02381{bottom:0.000000pt;}
.y3_c02381{bottom:4.160000pt;}
.y2_c02381{bottom:37.152000pt;}
.y1_c02381{bottom:67.072000pt;}
.y12_c02381{bottom:569.693333pt;}
.y11_c02381{bottom:588.253333pt;}
.y10_c02381{bottom:615.773333pt;}
.yf_c02381{bottom:643.293333pt;}
.ye_c02381{bottom:670.973333pt;}
.yd_c02381{bottom:698.493333pt;}
.yc_c02381{bottom:726.213333pt;}
.yb_c02381{bottom:753.733333pt;}
.ya_c02381{bottom:781.413333pt;}
.y9_c02381{bottom:808.933333pt;}
.y8_c02381{bottom:836.613333pt;}
.y7_c02381{bottom:864.133333pt;}
.y6_c02381{bottom:891.813333pt;}
.y5_c02381{bottom:919.333333pt;}
.y4_c02381{bottom:947.040000pt;}
.h2_c02381{height:20.000000pt;}
.h1_c02381{height:43.441250pt;}
.h4_c02381{height:57.375000pt;}
.h3_c02381{height:62.812500pt;}
.h0_c02381{height:1056.000000pt;}
.w1_c02381{width:59.232000pt;}
.w0_c02381{width:816.000000pt;}
.x0_c02381{left:0.000000pt;}
.x3_c02381{left:14.720000pt;}
.x1_c02381{left:113.472000pt;}
.x4_c02381{left:166.266667pt;}
.x5_c02381{left:420.066667pt;}
.x2_c02381{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02382 {
    display:none;
  }
  .loading-indicator_c02382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02382 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02382 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02382" -> "#page-container .classname_c02382")
 */
.pf_c02382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02382 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02382 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02382 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02382 {overflow:visible;}
  }
}
.c_c02382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02382 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02382:after { /* webkit #35443 */
  content: '';
}
.t_c02382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02382 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02382 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02382 { /* info for Javascript */
  display:none;
}
.l_c02382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02382:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02382 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02382.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02382;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02382{font-family:ff1_c02382;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02382;src:url('chunks/assets/font_8a82edc3870d9ffeeba41086.woff2')format("woff");}.ff2_c02382{font-family:ff2_c02382;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:ff3_c02382;src:url('chunks/assets/font_3ffa5aa05d629673067b3103.woff2')format("woff");}.ff3_c02382{font-family:ff3_c02382;line-height:1.311035;font-style:normal;font-weight: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_c02382;src:url('chunks/assets/font_e6de904357a0f6d4b8d162c1.woff2')format("woff");}.ff4_c02382{font-family:ff4_c02382;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02382{vertical-align:0.000000px;}
.ls1_c02382{letter-spacing:-0.144000px;}
.ls0_c02382{letter-spacing:0.000000px;}
.sc__c02382{text-shadow:none;}
.sc0_c02382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02382{-webkit-text-stroke:0px transparent;}
.sc0_c02382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02382{word-spacing:-18.000000px;}
.ws0_c02382{word-spacing:-17.856000px;}
.ws2_c02382{word-spacing:0.000000px;}
._6_c02382{margin-left:-2.088000px;}
._0_c02382{margin-left:-1.008000px;}
._1_c02382{width:1.008000px;}
._9_c02382{width:2.160000px;}
._5_c02382{width:3.312000px;}
._4_c02382{width:4.968000px;}
._2_c02382{width:6.408000px;}
._3_c02382{width:7.704000px;}
._10_c02382{width:9.504000px;}
._a_c02382{width:19.296000px;}
._e_c02382{width:24.912000px;}
._f_c02382{width:26.064000px;}
._7_c02382{width:31.104000px;}
._8_c02382{width:32.472000px;}
._11_c02382{width:36.576000px;}
._b_c02382{width:38.952000px;}
._c_c02382{width:40.104000px;}
._d_c02382{width:41.184000px;}
.fc1_c02382{color:rgb(192,80,77);}
.fc3_c02382{color:rgb(255,255,255);}
.fc2_c02382{color:rgb(17,17,17);}
.fc0_c02382{color:rgb(0,0,0);}
.fs0_c02382{font-size:66.240000px;}
.fs1_c02382{font-size:72.000000px;}
.y0_c02382{bottom:0.000000px;}
.y10_c02382{bottom:4.140000px;}
.ye_c02382{bottom:4.500000px;}
.y3_c02382{bottom:4.680000px;}
.yc_c02382{bottom:5.220000px;}
.y17_c02382{bottom:24.840000px;}
.y16_c02382{bottom:25.200000px;}
.yb_c02382{bottom:25.920000px;}
.yd_c02382{bottom:26.280000px;}
.y9_c02382{bottom:26.640000px;}
.y2_c02382{bottom:41.796000px;}
.y8_c02382{bottom:47.340000px;}
.y1_c02382{bottom:75.456000px;}
.y32_c02382{bottom:110.736000px;}
.y31_c02382{bottom:141.696000px;}
.y30_c02382{bottom:172.830000px;}
.y2f_c02382{bottom:203.790000px;}
.y2e_c02382{bottom:234.930000px;}
.y2d_c02382{bottom:265.890000px;}
.y2c_c02382{bottom:297.075000px;}
.y2b_c02382{bottom:328.035000px;}
.y2a_c02382{bottom:359.175000px;}
.y29_c02382{bottom:390.135000px;}
.y28_c02382{bottom:421.275000px;}
.y27_c02382{bottom:442.155000px;}
.y26_c02382{bottom:462.855000px;}
.y25_c02382{bottom:483.375000px;}
.y24_c02382{bottom:504.075000px;}
.y23_c02382{bottom:524.775000px;}
.y22_c02382{bottom:545.505000px;}
.y21_c02382{bottom:566.205000px;}
.y20_c02382{bottom:586.905000px;}
.y1f_c02382{bottom:607.605000px;}
.y1e_c02382{bottom:624.705000px;}
.y1d_c02382{bottom:646.125000px;}
.y1c_c02382{bottom:667.545000px;}
.y1b_c02382{bottom:688.965000px;}
.y1a_c02382{bottom:710.385000px;}
.y19_c02382{bottom:731.805000px;}
.y18_c02382{bottom:753.405000px;}
.y15_c02382{bottom:795.570000px;}
.y14_c02382{bottom:837.690000px;}
.y13_c02382{bottom:859.110000px;}
.y12_c02382{bottom:880.530000px;}
.y11_c02382{bottom:901.950000px;}
.yf_c02382{bottom:923.370000px;}
.y7_c02382{bottom:944.970000px;}
.ya_c02382{bottom:966.390000px;}
.y6_c02382{bottom:1023.990000px;}
.y5_c02382{bottom:1044.870000px;}
.y4_c02382{bottom:1065.600000px;}
.h7_c02382{height:20.700000px;}
.h2_c02382{height:22.500000px;}
.h8_c02382{height:41.400000px;}
.h5_c02382{height:42.120000px;}
.h1_c02382{height:48.871406px;}
.h4_c02382{height:63.540000px;}
.h9_c02382{height:64.546875px;}
.h3_c02382{height:70.664062px;}
.h6_c02382{height:72.562500px;}
.h0_c02382{height:1188.000000px;}
.w7_c02382{width:59.436000px;}
.w5_c02382{width:63.000000px;}
.w6_c02382{width:63.036000px;}
.w1_c02382{width:66.636000px;}
.w4_c02382{width:78.480000px;}
.w2_c02382{width:224.490000px;}
.w3_c02382{width:314.535000px;}
.w0_c02382{width:918.000000px;}
.x0_c02382{left:0.000000px;}
.xf_c02382{left:7.740000px;}
.x15_c02382{left:10.620000px;}
.x17_c02382{left:11.700000px;}
.x10_c02382{left:13.860000px;}
.x3_c02382{left:16.560000px;}
.x12_c02382{left:18.540000px;}
.x1a_c02382{left:20.700000px;}
.x19_c02382{left:22.500000px;}
.x1b_c02382{left:25.740000px;}
.x1d_c02382{left:27.030000px;}
.x1e_c02382{left:30.240000px;}
.x23_c02382{left:31.500000px;}
.x21_c02382{left:34.740000px;}
.xe_c02382{left:39.240000px;}
.x24_c02382{left:43.200000px;}
.x1c_c02382{left:46.440000px;}
.x22_c02382{left:54.720000px;}
.x18_c02382{left:57.240000px;}
.x20_c02382{left:62.100000px;}
.x1f_c02382{left:64.440000px;}
.xc_c02382{left:77.040000px;}
.x26_c02382{left:80.640000px;}
.xb_c02382{left:86.760000px;}
.x9_c02382{left:88.200000px;}
.x25_c02382{left:92.160000px;}
.x8_c02382{left:112.140000px;}
.x1_c02382{left:127.656000px;}
.x28_c02382{left:154.650000px;}
.x7_c02382{left:179.310000px;}
.x27_c02382{left:187.050000px;}
.x5_c02382{left:274.350000px;}
.xa_c02382{left:404.535000px;}
.x4_c02382{left:424.695000px;}
.x11_c02382{left:468.255000px;}
.x6_c02382{left:488.775000px;}
.x13_c02382{left:532.005000px;}
.x14_c02382{left:595.905000px;}
.x16_c02382{left:659.625000px;}
.xd_c02382{left:719.790000px;}
.x2_c02382{left:820.950000px;}
@media print{
.v0_c02382{vertical-align:0.000000pt;}
.ls1_c02382{letter-spacing:-0.128000pt;}
.ls0_c02382{letter-spacing:0.000000pt;}
.ws1_c02382{word-spacing:-16.000000pt;}
.ws0_c02382{word-spacing:-15.872000pt;}
.ws2_c02382{word-spacing:0.000000pt;}
._6_c02382{margin-left:-1.856000pt;}
._0_c02382{margin-left:-0.896000pt;}
._1_c02382{width:0.896000pt;}
._9_c02382{width:1.920000pt;}
._5_c02382{width:2.944000pt;}
._4_c02382{width:4.416000pt;}
._2_c02382{width:5.696000pt;}
._3_c02382{width:6.848000pt;}
._10_c02382{width:8.448000pt;}
._a_c02382{width:17.152000pt;}
._e_c02382{width:22.144000pt;}
._f_c02382{width:23.168000pt;}
._7_c02382{width:27.648000pt;}
._8_c02382{width:28.864000pt;}
._11_c02382{width:32.512000pt;}
._b_c02382{width:34.624000pt;}
._c_c02382{width:35.648000pt;}
._d_c02382{width:36.608000pt;}
.fs0_c02382{font-size:58.880000pt;}
.fs1_c02382{font-size:64.000000pt;}
.y0_c02382{bottom:0.000000pt;}
.y10_c02382{bottom:3.680000pt;}
.ye_c02382{bottom:4.000000pt;}
.y3_c02382{bottom:4.160000pt;}
.yc_c02382{bottom:4.640000pt;}
.y17_c02382{bottom:22.080000pt;}
.y16_c02382{bottom:22.400000pt;}
.yb_c02382{bottom:23.040000pt;}
.yd_c02382{bottom:23.360000pt;}
.y9_c02382{bottom:23.680000pt;}
.y2_c02382{bottom:37.152000pt;}
.y8_c02382{bottom:42.080000pt;}
.y1_c02382{bottom:67.072000pt;}
.y32_c02382{bottom:98.432000pt;}
.y31_c02382{bottom:125.952000pt;}
.y30_c02382{bottom:153.626667pt;}
.y2f_c02382{bottom:181.146667pt;}
.y2e_c02382{bottom:208.826667pt;}
.y2d_c02382{bottom:236.346667pt;}
.y2c_c02382{bottom:264.066667pt;}
.y2b_c02382{bottom:291.586667pt;}
.y2a_c02382{bottom:319.266667pt;}
.y29_c02382{bottom:346.786667pt;}
.y28_c02382{bottom:374.466667pt;}
.y27_c02382{bottom:393.026667pt;}
.y26_c02382{bottom:411.426667pt;}
.y25_c02382{bottom:429.666667pt;}
.y24_c02382{bottom:448.066667pt;}
.y23_c02382{bottom:466.466667pt;}
.y22_c02382{bottom:484.893333pt;}
.y21_c02382{bottom:503.293333pt;}
.y20_c02382{bottom:521.693333pt;}
.y1f_c02382{bottom:540.093333pt;}
.y1e_c02382{bottom:555.293333pt;}
.y1d_c02382{bottom:574.333333pt;}
.y1c_c02382{bottom:593.373333pt;}
.y1b_c02382{bottom:612.413333pt;}
.y1a_c02382{bottom:631.453333pt;}
.y19_c02382{bottom:650.493333pt;}
.y18_c02382{bottom:669.693333pt;}
.y15_c02382{bottom:707.173333pt;}
.y14_c02382{bottom:744.613333pt;}
.y13_c02382{bottom:763.653333pt;}
.y12_c02382{bottom:782.693333pt;}
.y11_c02382{bottom:801.733333pt;}
.yf_c02382{bottom:820.773333pt;}
.y7_c02382{bottom:839.973333pt;}
.ya_c02382{bottom:859.013333pt;}
.y6_c02382{bottom:910.213333pt;}
.y5_c02382{bottom:928.773333pt;}
.y4_c02382{bottom:947.200000pt;}
.h7_c02382{height:18.400000pt;}
.h2_c02382{height:20.000000pt;}
.h8_c02382{height:36.800000pt;}
.h5_c02382{height:37.440000pt;}
.h1_c02382{height:43.441250pt;}
.h4_c02382{height:56.480000pt;}
.h9_c02382{height:57.375000pt;}
.h3_c02382{height:62.812500pt;}
.h6_c02382{height:64.500000pt;}
.h0_c02382{height:1056.000000pt;}
.w7_c02382{width:52.832000pt;}
.w5_c02382{width:56.000000pt;}
.w6_c02382{width:56.032000pt;}
.w1_c02382{width:59.232000pt;}
.w4_c02382{width:69.760000pt;}
.w2_c02382{width:199.546667pt;}
.w3_c02382{width:279.586667pt;}
.w0_c02382{width:816.000000pt;}
.x0_c02382{left:0.000000pt;}
.xf_c02382{left:6.880000pt;}
.x15_c02382{left:9.440000pt;}
.x17_c02382{left:10.400000pt;}
.x10_c02382{left:12.320000pt;}
.x3_c02382{left:14.720000pt;}
.x12_c02382{left:16.480000pt;}
.x1a_c02382{left:18.400000pt;}
.x19_c02382{left:20.000000pt;}
.x1b_c02382{left:22.880000pt;}
.x1d_c02382{left:24.026667pt;}
.x1e_c02382{left:26.880000pt;}
.x23_c02382{left:28.000000pt;}
.x21_c02382{left:30.880000pt;}
.xe_c02382{left:34.880000pt;}
.x24_c02382{left:38.400000pt;}
.x1c_c02382{left:41.280000pt;}
.x22_c02382{left:48.640000pt;}
.x18_c02382{left:50.880000pt;}
.x20_c02382{left:55.200000pt;}
.x1f_c02382{left:57.280000pt;}
.xc_c02382{left:68.480000pt;}
.x26_c02382{left:71.680000pt;}
.xb_c02382{left:77.120000pt;}
.x9_c02382{left:78.400000pt;}
.x25_c02382{left:81.920000pt;}
.x8_c02382{left:99.680000pt;}
.x1_c02382{left:113.472000pt;}
.x28_c02382{left:137.466667pt;}
.x7_c02382{left:159.386667pt;}
.x27_c02382{left:166.266667pt;}
.x5_c02382{left:243.866667pt;}
.xa_c02382{left:359.586667pt;}
.x4_c02382{left:377.506667pt;}
.x11_c02382{left:416.226667pt;}
.x6_c02382{left:434.466667pt;}
.x13_c02382{left:472.893333pt;}
.x14_c02382{left:529.693333pt;}
.x16_c02382{left:586.333333pt;}
.xd_c02382{left:639.813333pt;}
.x2_c02382{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02383 {
    display:none;
  }
  .loading-indicator_c02383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02383 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02383 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02383" -> "#page-container .classname_c02383")
 */
.pf_c02383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02383 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02383 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02383 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02383 {overflow:visible;}
  }
}
.c_c02383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02383 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02383:after { /* webkit #35443 */
  content: '';
}
.t_c02383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02383 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02383 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02383 { /* info for Javascript */
  display:none;
}
.l_c02383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02383:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02383 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02383.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02383;src:url('chunks/assets/font_62cd6e52c3ab7d2e0bb2b9db.woff2')format("woff");}.ff1_c02383{font-family:ff1_c02383;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02383;src:url('chunks/assets/font_31b088f03d6b9ff3e3a68ca8.woff2')format("woff");}.ff2_c02383{font-family:ff2_c02383;line-height:1.112305;font-style:normal;font-weight: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_c02383;src:url('chunks/assets/font_75a04d794e9cf22d4e25dbbc.woff2')format("woff");}.ff3_c02383{font-family:ff3_c02383;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;}
.m0_c02383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02383{vertical-align:0.000000px;}
.ls0_c02383{letter-spacing:0.000000px;}
.sc__c02383{text-shadow:none;}
.sc0_c02383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02383{-webkit-text-stroke:0px transparent;}
.sc0_c02383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02383{word-spacing:-18.000000px;}
.ws1_c02383{word-spacing:0.000000px;}
._c_c02383{margin-left:-2.520000px;}
._0_c02383{margin-left:-1.152000px;}
._3_c02383{width:1.152000px;}
._a_c02383{width:3.024000px;}
._12_c02383{width:4.116000px;}
._b_c02383{width:5.184000px;}
._9_c02383{width:6.552000px;}
._8_c02383{width:7.704000px;}
._4_c02383{width:9.432000px;}
._5_c02383{width:10.584000px;}
._d_c02383{width:11.664000px;}
._e_c02383{width:13.392000px;}
._f_c02383{width:14.472000px;}
._10_c02383{width:15.552000px;}
._2_c02383{width:20.592000px;}
._1_c02383{width:22.104000px;}
._7_c02383{width:23.328000px;}
._6_c02383{width:25.056000px;}
._11_c02383{width:28.656000px;}
._13_c02383{width:30.888000px;}
._14_c02383{width:32.256000px;}
.fc1_c02383{color:rgb(192,80,77);}
.fc2_c02383{color:rgb(17,17,17);}
.fc0_c02383{color:rgb(0,0,0);}
.fs0_c02383{font-size:66.240000px;}
.fs1_c02383{font-size:72.000000px;}
.y0_c02383{bottom:0.000000px;}
.y3_c02383{bottom:4.680000px;}
.y2_c02383{bottom:41.796000px;}
.y1_c02383{bottom:75.456000px;}
.y1b_c02383{bottom:351.075000px;}
.y1a_c02383{bottom:382.215000px;}
.y19_c02383{bottom:413.175000px;}
.y18_c02383{bottom:444.315000px;}
.y17_c02383{bottom:475.275000px;}
.y16_c02383{bottom:506.415000px;}
.y15_c02383{bottom:537.405000px;}
.y14_c02383{bottom:568.545000px;}
.y13_c02383{bottom:599.505000px;}
.y12_c02383{bottom:630.645000px;}
.y11_c02383{bottom:661.605000px;}
.y10_c02383{bottom:692.745000px;}
.yf_c02383{bottom:723.705000px;}
.ye_c02383{bottom:754.845000px;}
.yd_c02383{bottom:785.805000px;}
.yc_c02383{bottom:816.990000px;}
.yb_c02383{bottom:847.950000px;}
.ya_c02383{bottom:879.090000px;}
.y9_c02383{bottom:910.050000px;}
.y8_c02383{bottom:941.190000px;}
.y7_c02383{bottom:972.150000px;}
.y6_c02383{bottom:1003.290000px;}
.y5_c02383{bottom:1034.250000px;}
.y4_c02383{bottom:1065.420000px;}
.h2_c02383{height:22.500000px;}
.h1_c02383{height:48.871406px;}
.h3_c02383{height:64.546875px;}
.h4_c02383{height:70.664062px;}
.h0_c02383{height:1188.000000px;}
.w1_c02383{width:66.636000px;}
.w0_c02383{width:918.000000px;}
.x0_c02383{left:0.000000px;}
.x3_c02383{left:16.560000px;}
.x1_c02383{left:127.656000px;}
.x4_c02383{left:187.050000px;}
.x2_c02383{left:820.950000px;}
@media print{
.v0_c02383{vertical-align:0.000000pt;}
.ls0_c02383{letter-spacing:0.000000pt;}
.ws0_c02383{word-spacing:-16.000000pt;}
.ws1_c02383{word-spacing:0.000000pt;}
._c_c02383{margin-left:-2.240000pt;}
._0_c02383{margin-left:-1.024000pt;}
._3_c02383{width:1.024000pt;}
._a_c02383{width:2.688000pt;}
._12_c02383{width:3.658667pt;}
._b_c02383{width:4.608000pt;}
._9_c02383{width:5.824000pt;}
._8_c02383{width:6.848000pt;}
._4_c02383{width:8.384000pt;}
._5_c02383{width:9.408000pt;}
._d_c02383{width:10.368000pt;}
._e_c02383{width:11.904000pt;}
._f_c02383{width:12.864000pt;}
._10_c02383{width:13.824000pt;}
._2_c02383{width:18.304000pt;}
._1_c02383{width:19.648000pt;}
._7_c02383{width:20.736000pt;}
._6_c02383{width:22.272000pt;}
._11_c02383{width:25.472000pt;}
._13_c02383{width:27.456000pt;}
._14_c02383{width:28.672000pt;}
.fs0_c02383{font-size:58.880000pt;}
.fs1_c02383{font-size:64.000000pt;}
.y0_c02383{bottom:0.000000pt;}
.y3_c02383{bottom:4.160000pt;}
.y2_c02383{bottom:37.152000pt;}
.y1_c02383{bottom:67.072000pt;}
.y1b_c02383{bottom:312.066667pt;}
.y1a_c02383{bottom:339.746667pt;}
.y19_c02383{bottom:367.266667pt;}
.y18_c02383{bottom:394.946667pt;}
.y17_c02383{bottom:422.466667pt;}
.y16_c02383{bottom:450.146667pt;}
.y15_c02383{bottom:477.693333pt;}
.y14_c02383{bottom:505.373333pt;}
.y13_c02383{bottom:532.893333pt;}
.y12_c02383{bottom:560.573333pt;}
.y11_c02383{bottom:588.093333pt;}
.y10_c02383{bottom:615.773333pt;}
.yf_c02383{bottom:643.293333pt;}
.ye_c02383{bottom:670.973333pt;}
.yd_c02383{bottom:698.493333pt;}
.yc_c02383{bottom:726.213333pt;}
.yb_c02383{bottom:753.733333pt;}
.ya_c02383{bottom:781.413333pt;}
.y9_c02383{bottom:808.933333pt;}
.y8_c02383{bottom:836.613333pt;}
.y7_c02383{bottom:864.133333pt;}
.y6_c02383{bottom:891.813333pt;}
.y5_c02383{bottom:919.333333pt;}
.y4_c02383{bottom:947.040000pt;}
.h2_c02383{height:20.000000pt;}
.h1_c02383{height:43.441250pt;}
.h3_c02383{height:57.375000pt;}
.h4_c02383{height:62.812500pt;}
.h0_c02383{height:1056.000000pt;}
.w1_c02383{width:59.232000pt;}
.w0_c02383{width:816.000000pt;}
.x0_c02383{left:0.000000pt;}
.x3_c02383{left:14.720000pt;}
.x1_c02383{left:113.472000pt;}
.x4_c02383{left:166.266667pt;}
.x2_c02383{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02384 {
    display:none;
  }
  .loading-indicator_c02384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02384 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02384 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02384" -> "#page-container .classname_c02384")
 */
.pf_c02384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02384 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02384 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02384 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02384 {overflow:visible;}
  }
}
.c_c02384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02384 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02384:after { /* webkit #35443 */
  content: '';
}
.t_c02384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02384 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02384 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02384 { /* info for Javascript */
  display:none;
}
.l_c02384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02384:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02384 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02384.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02384;src:url('chunks/assets/font_b6959c56e21bce763fd1084e.woff2')format("woff");}.ff1_c02384{font-family:ff1_c02384;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02384;src:url('chunks/assets/font_fc4f76a80b0361ca644f8038.woff2')format("woff");}.ff2_c02384{font-family:ff2_c02384;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:ff3_c02384;src:url('chunks/assets/font_23bce795e666f78afc5bd2c2.woff2')format("woff");}.ff3_c02384{font-family:ff3_c02384;line-height:1.311035;font-style:normal;font-weight: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_c02384;src:url('chunks/assets/font_0bd110d6cc0da425f031d755.woff2')format("woff");}.ff4_c02384{font-family:ff4_c02384;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02384{vertical-align:0.000000px;}
.ls1_c02384{letter-spacing:-0.144000px;}
.ls0_c02384{letter-spacing:0.000000px;}
.sc__c02384{text-shadow:none;}
.sc0_c02384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02384{-webkit-text-stroke:0px transparent;}
.sc0_c02384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02384{word-spacing:-17.856000px;}
.ws1_c02384{word-spacing:0.000000px;}
._a_c02384{margin-left:-2.064000px;}
._0_c02384{margin-left:-1.008000px;}
._1_c02384{width:1.236000px;}
._2_c02384{width:3.324000px;}
._5_c02384{width:4.956000px;}
._6_c02384{width:6.912000px;}
._d_c02384{width:8.064000px;}
._e_c02384{width:9.180000px;}
._11_c02384{width:12.264000px;}
._10_c02384{width:13.512000px;}
._f_c02384{width:14.580000px;}
._7_c02384{width:16.704000px;}
._c_c02384{width:19.656000px;}
._3_c02384{width:22.104000px;}
._4_c02384{width:23.472000px;}
._b_c02384{width:33.192000px;}
._12_c02384{width:37.488000px;}
._8_c02384{width:39.816000px;}
._9_c02384{width:41.904000px;}
.fc1_c02384{color:rgb(192,80,77);}
.fc3_c02384{color:rgb(255,255,255);}
.fc2_c02384{color:rgb(17,17,17);}
.fc0_c02384{color:rgb(0,0,0);}
.fs0_c02384{font-size:66.240000px;}
.fs1_c02384{font-size:72.000000px;}
.y0_c02384{bottom:0.000000px;}
.y10_c02384{bottom:4.140000px;}
.ye_c02384{bottom:4.500000px;}
.y3_c02384{bottom:4.680000px;}
.yc_c02384{bottom:5.220000px;}
.y16_c02384{bottom:24.840000px;}
.y15_c02384{bottom:25.200000px;}
.yb_c02384{bottom:25.920000px;}
.yd_c02384{bottom:26.280000px;}
.y9_c02384{bottom:26.640000px;}
.y2_c02384{bottom:41.796000px;}
.y8_c02384{bottom:47.340000px;}
.y1_c02384{bottom:75.456000px;}
.y30_c02384{bottom:114.516000px;}
.y2f_c02384{bottom:145.476000px;}
.y2e_c02384{bottom:176.430000px;}
.y2d_c02384{bottom:207.570000px;}
.y2c_c02384{bottom:238.530000px;}
.y2b_c02384{bottom:269.670000px;}
.y2a_c02384{bottom:300.675000px;}
.y29_c02384{bottom:331.815000px;}
.y28_c02384{bottom:362.775000px;}
.y27_c02384{bottom:393.915000px;}
.y26_c02384{bottom:424.875000px;}
.y25_c02384{bottom:456.015000px;}
.y24_c02384{bottom:486.975000px;}
.y23_c02384{bottom:518.115000px;}
.y22_c02384{bottom:549.105000px;}
.y21_c02384{bottom:580.245000px;}
.y20_c02384{bottom:611.205000px;}
.y1f_c02384{bottom:632.085000px;}
.y1e_c02384{bottom:652.785000px;}
.y1d_c02384{bottom:673.485000px;}
.y1c_c02384{bottom:694.185000px;}
.y1b_c02384{bottom:714.885000px;}
.y1a_c02384{bottom:735.585000px;}
.y19_c02384{bottom:752.505000px;}
.y18_c02384{bottom:774.105000px;}
.y17_c02384{bottom:795.570000px;}
.y14_c02384{bottom:816.990000px;}
.y13_c02384{bottom:859.110000px;}
.y12_c02384{bottom:880.530000px;}
.y11_c02384{bottom:901.950000px;}
.yf_c02384{bottom:923.370000px;}
.y7_c02384{bottom:944.970000px;}
.ya_c02384{bottom:966.390000px;}
.y6_c02384{bottom:1023.990000px;}
.y5_c02384{bottom:1044.870000px;}
.y4_c02384{bottom:1065.600000px;}
.h7_c02384{height:20.700000px;}
.h2_c02384{height:22.500000px;}
.h8_c02384{height:41.400000px;}
.h5_c02384{height:42.120000px;}
.h1_c02384{height:48.871406px;}
.h4_c02384{height:63.540000px;}
.h9_c02384{height:64.546875px;}
.h3_c02384{height:70.664062px;}
.h6_c02384{height:72.562500px;}
.h0_c02384{height:1188.000000px;}
.w7_c02384{width:59.436000px;}
.w5_c02384{width:63.000000px;}
.w6_c02384{width:63.036000px;}
.w1_c02384{width:66.636000px;}
.w4_c02384{width:78.480000px;}
.w2_c02384{width:224.490000px;}
.w3_c02384{width:314.535000px;}
.w0_c02384{width:918.000000px;}
.x0_c02384{left:0.000000px;}
.xf_c02384{left:7.740000px;}
.x15_c02384{left:10.620000px;}
.x17_c02384{left:11.700000px;}
.x10_c02384{left:13.860000px;}
.x3_c02384{left:16.560000px;}
.x12_c02384{left:18.540000px;}
.x19_c02384{left:22.500000px;}
.x1a_c02384{left:25.740000px;}
.x1c_c02384{left:27.000000px;}
.x1d_c02384{left:30.240000px;}
.x23_c02384{left:31.500000px;}
.x1f_c02384{left:34.740000px;}
.xe_c02384{left:39.240000px;}
.x1b_c02384{left:48.420000px;}
.x21_c02384{left:49.500000px;}
.x18_c02384{left:52.200000px;}
.x1e_c02384{left:61.020000px;}
.x20_c02384{left:66.960000px;}
.x22_c02384{left:72.360000px;}
.xc_c02384{left:77.040000px;}
.xb_c02384{left:86.760000px;}
.x9_c02384{left:88.200000px;}
.x24_c02384{left:92.160000px;}
.x8_c02384{left:112.140000px;}
.x1_c02384{left:127.656000px;}
.x7_c02384{left:179.310000px;}
.x25_c02384{left:187.050000px;}
.x5_c02384{left:269.850000px;}
.xa_c02384{left:404.535000px;}
.x4_c02384{left:423.975000px;}
.x11_c02384{left:468.255000px;}
.x6_c02384{left:488.775000px;}
.x13_c02384{left:532.005000px;}
.x14_c02384{left:595.905000px;}
.x16_c02384{left:659.625000px;}
.xd_c02384{left:719.790000px;}
.x2_c02384{left:820.950000px;}
@media print{
.v0_c02384{vertical-align:0.000000pt;}
.ls1_c02384{letter-spacing:-0.128000pt;}
.ls0_c02384{letter-spacing:0.000000pt;}
.ws0_c02384{word-spacing:-15.872000pt;}
.ws1_c02384{word-spacing:0.000000pt;}
._a_c02384{margin-left:-1.834667pt;}
._0_c02384{margin-left:-0.896000pt;}
._1_c02384{width:1.098667pt;}
._2_c02384{width:2.954667pt;}
._5_c02384{width:4.405333pt;}
._6_c02384{width:6.144000pt;}
._d_c02384{width:7.168000pt;}
._e_c02384{width:8.160000pt;}
._11_c02384{width:10.901333pt;}
._10_c02384{width:12.010667pt;}
._f_c02384{width:12.960000pt;}
._7_c02384{width:14.848000pt;}
._c_c02384{width:17.472000pt;}
._3_c02384{width:19.648000pt;}
._4_c02384{width:20.864000pt;}
._b_c02384{width:29.504000pt;}
._12_c02384{width:33.322667pt;}
._8_c02384{width:35.392000pt;}
._9_c02384{width:37.248000pt;}
.fs0_c02384{font-size:58.880000pt;}
.fs1_c02384{font-size:64.000000pt;}
.y0_c02384{bottom:0.000000pt;}
.y10_c02384{bottom:3.680000pt;}
.ye_c02384{bottom:4.000000pt;}
.y3_c02384{bottom:4.160000pt;}
.yc_c02384{bottom:4.640000pt;}
.y16_c02384{bottom:22.080000pt;}
.y15_c02384{bottom:22.400000pt;}
.yb_c02384{bottom:23.040000pt;}
.yd_c02384{bottom:23.360000pt;}
.y9_c02384{bottom:23.680000pt;}
.y2_c02384{bottom:37.152000pt;}
.y8_c02384{bottom:42.080000pt;}
.y1_c02384{bottom:67.072000pt;}
.y30_c02384{bottom:101.792000pt;}
.y2f_c02384{bottom:129.312000pt;}
.y2e_c02384{bottom:156.826667pt;}
.y2d_c02384{bottom:184.506667pt;}
.y2c_c02384{bottom:212.026667pt;}
.y2b_c02384{bottom:239.706667pt;}
.y2a_c02384{bottom:267.266667pt;}
.y29_c02384{bottom:294.946667pt;}
.y28_c02384{bottom:322.466667pt;}
.y27_c02384{bottom:350.146667pt;}
.y26_c02384{bottom:377.666667pt;}
.y25_c02384{bottom:405.346667pt;}
.y24_c02384{bottom:432.866667pt;}
.y23_c02384{bottom:460.546667pt;}
.y22_c02384{bottom:488.093333pt;}
.y21_c02384{bottom:515.773333pt;}
.y20_c02384{bottom:543.293333pt;}
.y1f_c02384{bottom:561.853333pt;}
.y1e_c02384{bottom:580.253333pt;}
.y1d_c02384{bottom:598.653333pt;}
.y1c_c02384{bottom:617.053333pt;}
.y1b_c02384{bottom:635.453333pt;}
.y1a_c02384{bottom:653.853333pt;}
.y19_c02384{bottom:668.893333pt;}
.y18_c02384{bottom:688.093333pt;}
.y17_c02384{bottom:707.173333pt;}
.y14_c02384{bottom:726.213333pt;}
.y13_c02384{bottom:763.653333pt;}
.y12_c02384{bottom:782.693333pt;}
.y11_c02384{bottom:801.733333pt;}
.yf_c02384{bottom:820.773333pt;}
.y7_c02384{bottom:839.973333pt;}
.ya_c02384{bottom:859.013333pt;}
.y6_c02384{bottom:910.213333pt;}
.y5_c02384{bottom:928.773333pt;}
.y4_c02384{bottom:947.200000pt;}
.h7_c02384{height:18.400000pt;}
.h2_c02384{height:20.000000pt;}
.h8_c02384{height:36.800000pt;}
.h5_c02384{height:37.440000pt;}
.h1_c02384{height:43.441250pt;}
.h4_c02384{height:56.480000pt;}
.h9_c02384{height:57.375000pt;}
.h3_c02384{height:62.812500pt;}
.h6_c02384{height:64.500000pt;}
.h0_c02384{height:1056.000000pt;}
.w7_c02384{width:52.832000pt;}
.w5_c02384{width:56.000000pt;}
.w6_c02384{width:56.032000pt;}
.w1_c02384{width:59.232000pt;}
.w4_c02384{width:69.760000pt;}
.w2_c02384{width:199.546667pt;}
.w3_c02384{width:279.586667pt;}
.w0_c02384{width:816.000000pt;}
.x0_c02384{left:0.000000pt;}
.xf_c02384{left:6.880000pt;}
.x15_c02384{left:9.440000pt;}
.x17_c02384{left:10.400000pt;}
.x10_c02384{left:12.320000pt;}
.x3_c02384{left:14.720000pt;}
.x12_c02384{left:16.480000pt;}
.x19_c02384{left:20.000000pt;}
.x1a_c02384{left:22.880000pt;}
.x1c_c02384{left:24.000000pt;}
.x1d_c02384{left:26.880000pt;}
.x23_c02384{left:28.000000pt;}
.x1f_c02384{left:30.880000pt;}
.xe_c02384{left:34.880000pt;}
.x1b_c02384{left:43.040000pt;}
.x21_c02384{left:44.000000pt;}
.x18_c02384{left:46.400000pt;}
.x1e_c02384{left:54.240000pt;}
.x20_c02384{left:59.520000pt;}
.x22_c02384{left:64.320000pt;}
.xc_c02384{left:68.480000pt;}
.xb_c02384{left:77.120000pt;}
.x9_c02384{left:78.400000pt;}
.x24_c02384{left:81.920000pt;}
.x8_c02384{left:99.680000pt;}
.x1_c02384{left:113.472000pt;}
.x7_c02384{left:159.386667pt;}
.x25_c02384{left:166.266667pt;}
.x5_c02384{left:239.866667pt;}
.xa_c02384{left:359.586667pt;}
.x4_c02384{left:376.866667pt;}
.x11_c02384{left:416.226667pt;}
.x6_c02384{left:434.466667pt;}
.x13_c02384{left:472.893333pt;}
.x14_c02384{left:529.693333pt;}
.x16_c02384{left:586.333333pt;}
.xd_c02384{left:639.813333pt;}
.x2_c02384{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02385 {
    display:none;
  }
  .loading-indicator_c02385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02385 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02385 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02385" -> "#page-container .classname_c02385")
 */
.pf_c02385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02385 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02385 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02385 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02385 {overflow:visible;}
  }
}
.c_c02385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02385 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02385:after { /* webkit #35443 */
  content: '';
}
.t_c02385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02385 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02385 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02385 { /* info for Javascript */
  display:none;
}
.l_c02385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02385:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02385 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02385.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02385;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02385{font-family:ff1_c02385;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02385;src:url('chunks/assets/font_f5d452f83c76ae1747fa911c.woff2')format("woff");}.ff2_c02385{font-family:ff2_c02385;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:ff3_c02385;src:url('chunks/assets/font_7ed14c682e9d04535b43ca5b.woff2')format("woff");}.ff3_c02385{font-family:ff3_c02385;line-height:1.112305;font-style:normal;font-weight: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_c02385;src:url('chunks/assets/font_c8f6b9960fa60f2abdf1e132.woff2')format("woff");}.ff4_c02385{font-family:ff4_c02385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02385{vertical-align:0.000000px;}
.ls1_c02385{letter-spacing:-0.144000px;}
.ls0_c02385{letter-spacing:0.000000px;}
.sc__c02385{text-shadow:none;}
.sc0_c02385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02385{-webkit-text-stroke:0px transparent;}
.sc0_c02385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02385{word-spacing:-17.856000px;}
.ws1_c02385{word-spacing:0.000000px;}
._3_c02385{margin-left:-1.044000px;}
._2_c02385{width:1.080000px;}
._6_c02385{width:2.340000px;}
._c_c02385{width:3.348000px;}
._d_c02385{width:4.572000px;}
._b_c02385{width:6.264000px;}
._e_c02385{width:8.460000px;}
._5_c02385{width:9.504000px;}
._4_c02385{width:11.232000px;}
._0_c02385{width:12.600000px;}
._1_c02385{width:13.860000px;}
._11_c02385{width:14.904000px;}
._7_c02385{width:16.992000px;}
._14_c02385{width:19.152000px;}
._9_c02385{width:20.412000px;}
._a_c02385{width:21.612000px;}
._8_c02385{width:22.716000px;}
._f_c02385{width:28.296000px;}
._10_c02385{width:29.640000px;}
._12_c02385{width:31.032000px;}
._13_c02385{width:32.256000px;}
.fc1_c02385{color:rgb(192,80,77);}
.fc3_c02385{color:rgb(255,255,255);}
.fc2_c02385{color:rgb(17,17,17);}
.fc0_c02385{color:rgb(0,0,0);}
.fs0_c02385{font-size:66.240000px;}
.fs1_c02385{font-size:72.000000px;}
.y0_c02385{bottom:0.000000px;}
.y22_c02385{bottom:3.960000px;}
.y1f_c02385{bottom:4.140000px;}
.y21_c02385{bottom:4.320000px;}
.y1b_c02385{bottom:4.500000px;}
.y3_c02385{bottom:4.680000px;}
.y19_c02385{bottom:5.220000px;}
.y1e_c02385{bottom:24.870000px;}
.y1d_c02385{bottom:25.230000px;}
.y18_c02385{bottom:25.920000px;}
.y1a_c02385{bottom:26.280000px;}
.y16_c02385{bottom:26.640000px;}
.y2_c02385{bottom:41.796000px;}
.y15_c02385{bottom:47.340000px;}
.y1_c02385{bottom:75.456000px;}
.y31_c02385{bottom:127.836000px;}
.y30_c02385{bottom:158.790000px;}
.y2f_c02385{bottom:189.930000px;}
.y2e_c02385{bottom:220.890000px;}
.y2d_c02385{bottom:252.030000px;}
.y2c_c02385{bottom:283.035000px;}
.y2b_c02385{bottom:303.915000px;}
.y2a_c02385{bottom:324.615000px;}
.y29_c02385{bottom:345.315000px;}
.y28_c02385{bottom:366.015000px;}
.y27_c02385{bottom:386.715000px;}
.y26_c02385{bottom:407.415000px;}
.y25_c02385{bottom:428.115000px;}
.y24_c02385{bottom:445.035000px;}
.y23_c02385{bottom:466.455000px;}
.y20_c02385{bottom:488.055000px;}
.y1c_c02385{bottom:509.475000px;}
.y14_c02385{bottom:551.625000px;}
.y17_c02385{bottom:573.045000px;}
.y13_c02385{bottom:630.645000px;}
.y12_c02385{bottom:651.525000px;}
.y11_c02385{bottom:672.225000px;}
.y10_c02385{bottom:692.925000px;}
.yf_c02385{bottom:723.705000px;}
.ye_c02385{bottom:754.845000px;}
.yd_c02385{bottom:785.805000px;}
.yc_c02385{bottom:816.990000px;}
.yb_c02385{bottom:847.950000px;}
.ya_c02385{bottom:879.090000px;}
.y9_c02385{bottom:910.050000px;}
.y8_c02385{bottom:941.190000px;}
.y7_c02385{bottom:972.150000px;}
.y6_c02385{bottom:1003.290000px;}
.y5_c02385{bottom:1034.250000px;}
.y4_c02385{bottom:1065.420000px;}
.ha_c02385{height:20.520000px;}
.h8_c02385{height:20.700000px;}
.h2_c02385{height:22.500000px;}
.h9_c02385{height:41.436000px;}
.h6_c02385{height:42.120000px;}
.h1_c02385{height:48.871406px;}
.h5_c02385{height:63.540000px;}
.h4_c02385{height:64.546875px;}
.h3_c02385{height:70.664062px;}
.h7_c02385{height:72.562500px;}
.h0_c02385{height:1188.000000px;}
.w7_c02385{width:59.436000px;}
.w5_c02385{width:63.000000px;}
.w6_c02385{width:63.036000px;}
.w1_c02385{width:66.636000px;}
.w4_c02385{width:78.480000px;}
.w2_c02385{width:224.490000px;}
.w3_c02385{width:314.535000px;}
.w0_c02385{width:918.000000px;}
.x0_c02385{left:0.000000px;}
.x11_c02385{left:7.740000px;}
.x17_c02385{left:10.620000px;}
.x19_c02385{left:11.700000px;}
.x12_c02385{left:13.860000px;}
.x3_c02385{left:16.560000px;}
.x14_c02385{left:18.540000px;}
.x1d_c02385{left:22.500000px;}
.x1f_c02385{left:25.740000px;}
.x21_c02385{left:27.030000px;}
.x1e_c02385{left:29.700000px;}
.x1c_c02385{left:31.500000px;}
.x22_c02385{left:33.480000px;}
.x23_c02385{left:34.740000px;}
.x10_c02385{left:39.240000px;}
.x1a_c02385{left:46.980000px;}
.xb_c02385{left:54.360000px;}
.xe_c02385{left:62.640000px;}
.x1b_c02385{left:66.240000px;}
.x20_c02385{left:71.100000px;}
.xd_c02385{left:76.320000px;}
.xa_c02385{left:112.140000px;}
.x1_c02385{left:127.656000px;}
.x9_c02385{left:179.310000px;}
.x4_c02385{left:187.050000px;}
.x7_c02385{left:292.350000px;}
.x6_c02385{left:347.655000px;}
.xc_c02385{left:404.535000px;}
.x5_c02385{left:440.175000px;}
.x13_c02385{left:468.255000px;}
.x8_c02385{left:488.775000px;}
.x15_c02385{left:532.005000px;}
.x16_c02385{left:595.905000px;}
.x18_c02385{left:659.625000px;}
.xf_c02385{left:719.790000px;}
.x2_c02385{left:820.950000px;}
@media print{
.v0_c02385{vertical-align:0.000000pt;}
.ls1_c02385{letter-spacing:-0.128000pt;}
.ls0_c02385{letter-spacing:0.000000pt;}
.ws0_c02385{word-spacing:-15.872000pt;}
.ws1_c02385{word-spacing:0.000000pt;}
._3_c02385{margin-left:-0.928000pt;}
._2_c02385{width:0.960000pt;}
._6_c02385{width:2.080000pt;}
._c_c02385{width:2.976000pt;}
._d_c02385{width:4.064000pt;}
._b_c02385{width:5.568000pt;}
._e_c02385{width:7.520000pt;}
._5_c02385{width:8.448000pt;}
._4_c02385{width:9.984000pt;}
._0_c02385{width:11.200000pt;}
._1_c02385{width:12.320000pt;}
._11_c02385{width:13.248000pt;}
._7_c02385{width:15.104000pt;}
._14_c02385{width:17.024000pt;}
._9_c02385{width:18.144000pt;}
._a_c02385{width:19.210667pt;}
._8_c02385{width:20.192000pt;}
._f_c02385{width:25.152000pt;}
._10_c02385{width:26.346667pt;}
._12_c02385{width:27.584000pt;}
._13_c02385{width:28.672000pt;}
.fs0_c02385{font-size:58.880000pt;}
.fs1_c02385{font-size:64.000000pt;}
.y0_c02385{bottom:0.000000pt;}
.y22_c02385{bottom:3.520000pt;}
.y1f_c02385{bottom:3.680000pt;}
.y21_c02385{bottom:3.840000pt;}
.y1b_c02385{bottom:4.000000pt;}
.y3_c02385{bottom:4.160000pt;}
.y19_c02385{bottom:4.640000pt;}
.y1e_c02385{bottom:22.106667pt;}
.y1d_c02385{bottom:22.426667pt;}
.y18_c02385{bottom:23.040000pt;}
.y1a_c02385{bottom:23.360000pt;}
.y16_c02385{bottom:23.680000pt;}
.y2_c02385{bottom:37.152000pt;}
.y15_c02385{bottom:42.080000pt;}
.y1_c02385{bottom:67.072000pt;}
.y31_c02385{bottom:113.632000pt;}
.y30_c02385{bottom:141.146667pt;}
.y2f_c02385{bottom:168.826667pt;}
.y2e_c02385{bottom:196.346667pt;}
.y2d_c02385{bottom:224.026667pt;}
.y2c_c02385{bottom:251.586667pt;}
.y2b_c02385{bottom:270.146667pt;}
.y2a_c02385{bottom:288.546667pt;}
.y29_c02385{bottom:306.946667pt;}
.y28_c02385{bottom:325.346667pt;}
.y27_c02385{bottom:343.746667pt;}
.y26_c02385{bottom:362.146667pt;}
.y25_c02385{bottom:380.546667pt;}
.y24_c02385{bottom:395.586667pt;}
.y23_c02385{bottom:414.626667pt;}
.y20_c02385{bottom:433.826667pt;}
.y1c_c02385{bottom:452.866667pt;}
.y14_c02385{bottom:490.333333pt;}
.y17_c02385{bottom:509.373333pt;}
.y13_c02385{bottom:560.573333pt;}
.y12_c02385{bottom:579.133333pt;}
.y11_c02385{bottom:597.533333pt;}
.y10_c02385{bottom:615.933333pt;}
.yf_c02385{bottom:643.293333pt;}
.ye_c02385{bottom:670.973333pt;}
.yd_c02385{bottom:698.493333pt;}
.yc_c02385{bottom:726.213333pt;}
.yb_c02385{bottom:753.733333pt;}
.ya_c02385{bottom:781.413333pt;}
.y9_c02385{bottom:808.933333pt;}
.y8_c02385{bottom:836.613333pt;}
.y7_c02385{bottom:864.133333pt;}
.y6_c02385{bottom:891.813333pt;}
.y5_c02385{bottom:919.333333pt;}
.y4_c02385{bottom:947.040000pt;}
.ha_c02385{height:18.240000pt;}
.h8_c02385{height:18.400000pt;}
.h2_c02385{height:20.000000pt;}
.h9_c02385{height:36.832000pt;}
.h6_c02385{height:37.440000pt;}
.h1_c02385{height:43.441250pt;}
.h5_c02385{height:56.480000pt;}
.h4_c02385{height:57.375000pt;}
.h3_c02385{height:62.812500pt;}
.h7_c02385{height:64.500000pt;}
.h0_c02385{height:1056.000000pt;}
.w7_c02385{width:52.832000pt;}
.w5_c02385{width:56.000000pt;}
.w6_c02385{width:56.032000pt;}
.w1_c02385{width:59.232000pt;}
.w4_c02385{width:69.760000pt;}
.w2_c02385{width:199.546667pt;}
.w3_c02385{width:279.586667pt;}
.w0_c02385{width:816.000000pt;}
.x0_c02385{left:0.000000pt;}
.x11_c02385{left:6.880000pt;}
.x17_c02385{left:9.440000pt;}
.x19_c02385{left:10.400000pt;}
.x12_c02385{left:12.320000pt;}
.x3_c02385{left:14.720000pt;}
.x14_c02385{left:16.480000pt;}
.x1d_c02385{left:20.000000pt;}
.x1f_c02385{left:22.880000pt;}
.x21_c02385{left:24.026667pt;}
.x1e_c02385{left:26.400000pt;}
.x1c_c02385{left:28.000000pt;}
.x22_c02385{left:29.760000pt;}
.x23_c02385{left:30.880000pt;}
.x10_c02385{left:34.880000pt;}
.x1a_c02385{left:41.760000pt;}
.xb_c02385{left:48.320000pt;}
.xe_c02385{left:55.680000pt;}
.x1b_c02385{left:58.880000pt;}
.x20_c02385{left:63.200000pt;}
.xd_c02385{left:67.840000pt;}
.xa_c02385{left:99.680000pt;}
.x1_c02385{left:113.472000pt;}
.x9_c02385{left:159.386667pt;}
.x4_c02385{left:166.266667pt;}
.x7_c02385{left:259.866667pt;}
.x6_c02385{left:309.026667pt;}
.xc_c02385{left:359.586667pt;}
.x5_c02385{left:391.266667pt;}
.x13_c02385{left:416.226667pt;}
.x8_c02385{left:434.466667pt;}
.x15_c02385{left:472.893333pt;}
.x16_c02385{left:529.693333pt;}
.x18_c02385{left:586.333333pt;}
.xf_c02385{left:639.813333pt;}
.x2_c02385{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02386 {
    display:none;
  }
  .loading-indicator_c02386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02386 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02386 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02386" -> "#page-container .classname_c02386")
 */
.pf_c02386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02386 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02386 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02386 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02386 {overflow:visible;}
  }
}
.c_c02386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02386 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02386:after { /* webkit #35443 */
  content: '';
}
.t_c02386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02386 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02386 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02386 { /* info for Javascript */
  display:none;
}
.l_c02386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02386:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02386 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02386.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02386;src:url('chunks/assets/font_6a92061f9d52f8bf65f090a8.woff2')format("woff");}.ff1_c02386{font-family:ff1_c02386;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02386;src:url('chunks/assets/font_9046e6250c7fb21c17b34b82.woff2')format("woff");}.ff2_c02386{font-family:ff2_c02386;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;}
.m0_c02386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02386{vertical-align:0.000000px;}
.ls0_c02386{letter-spacing:0.000000px;}
.sc__c02386{text-shadow:none;}
.sc0_c02386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02386{-webkit-text-stroke:0px transparent;}
.sc0_c02386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02386{word-spacing:0.000000px;}
._b_c02386{margin-left:-2.052000px;}
._0_c02386{margin-left:-1.008000px;}
._3_c02386{width:1.332000px;}
._1_c02386{width:2.592000px;}
._2_c02386{width:4.032000px;}
._11_c02386{width:5.112000px;}
._12_c02386{width:6.192000px;}
._4_c02386{width:7.200000px;}
._5_c02386{width:8.208000px;}
._c_c02386{width:9.360000px;}
._13_c02386{width:10.656000px;}
._7_c02386{width:12.240000px;}
._8_c02386{width:13.356000px;}
._f_c02386{width:14.580000px;}
._10_c02386{width:16.020000px;}
._14_c02386{width:19.152000px;}
._6_c02386{width:20.232000px;}
._d_c02386{width:22.032000px;}
._e_c02386{width:23.256000px;}
._9_c02386{width:24.624000px;}
._a_c02386{width:25.740000px;}
._15_c02386{width:30.816000px;}
._16_c02386{width:32.112000px;}
.fc1_c02386{color:rgb(192,80,77);}
.fc2_c02386{color:rgb(17,17,17);}
.fc0_c02386{color:rgb(0,0,0);}
.fs0_c02386{font-size:66.240000px;}
.fs1_c02386{font-size:72.000000px;}
.y0_c02386{bottom:0.000000px;}
.y3_c02386{bottom:4.680000px;}
.y2_c02386{bottom:41.796000px;}
.y1_c02386{bottom:75.456000px;}
.y22_c02386{bottom:133.776000px;}
.y21_c02386{bottom:164.910000px;}
.y20_c02386{bottom:195.870000px;}
.y1f_c02386{bottom:226.830000px;}
.y1e_c02386{bottom:257.970000px;}
.y1d_c02386{bottom:288.975000px;}
.y1c_c02386{bottom:320.115000px;}
.y1b_c02386{bottom:351.075000px;}
.y1a_c02386{bottom:382.215000px;}
.y19_c02386{bottom:413.175000px;}
.y18_c02386{bottom:444.315000px;}
.y17_c02386{bottom:475.275000px;}
.y16_c02386{bottom:506.415000px;}
.y15_c02386{bottom:537.405000px;}
.y14_c02386{bottom:568.545000px;}
.y13_c02386{bottom:599.505000px;}
.y12_c02386{bottom:630.645000px;}
.y11_c02386{bottom:661.605000px;}
.y10_c02386{bottom:692.745000px;}
.yf_c02386{bottom:723.705000px;}
.ye_c02386{bottom:754.845000px;}
.yd_c02386{bottom:785.805000px;}
.yc_c02386{bottom:816.990000px;}
.yb_c02386{bottom:847.950000px;}
.ya_c02386{bottom:879.090000px;}
.y9_c02386{bottom:910.050000px;}
.y8_c02386{bottom:941.190000px;}
.y7_c02386{bottom:972.150000px;}
.y6_c02386{bottom:1003.290000px;}
.y5_c02386{bottom:1034.250000px;}
.y4_c02386{bottom:1065.420000px;}
.h2_c02386{height:22.500000px;}
.h1_c02386{height:48.871406px;}
.h3_c02386{height:70.664062px;}
.h0_c02386{height:1188.000000px;}
.w1_c02386{width:66.636000px;}
.w0_c02386{width:918.000000px;}
.x0_c02386{left:0.000000px;}
.x3_c02386{left:16.560000px;}
.x1_c02386{left:127.656000px;}
.x4_c02386{left:187.050000px;}
.x2_c02386{left:820.950000px;}
@media print{
.v0_c02386{vertical-align:0.000000pt;}
.ls0_c02386{letter-spacing:0.000000pt;}
.ws0_c02386{word-spacing:0.000000pt;}
._b_c02386{margin-left:-1.824000pt;}
._0_c02386{margin-left:-0.896000pt;}
._3_c02386{width:1.184000pt;}
._1_c02386{width:2.304000pt;}
._2_c02386{width:3.584000pt;}
._11_c02386{width:4.544000pt;}
._12_c02386{width:5.504000pt;}
._4_c02386{width:6.400000pt;}
._5_c02386{width:7.296000pt;}
._c_c02386{width:8.320000pt;}
._13_c02386{width:9.472000pt;}
._7_c02386{width:10.880000pt;}
._8_c02386{width:11.872000pt;}
._f_c02386{width:12.960000pt;}
._10_c02386{width:14.240000pt;}
._14_c02386{width:17.024000pt;}
._6_c02386{width:17.984000pt;}
._d_c02386{width:19.584000pt;}
._e_c02386{width:20.672000pt;}
._9_c02386{width:21.888000pt;}
._a_c02386{width:22.880000pt;}
._15_c02386{width:27.392000pt;}
._16_c02386{width:28.544000pt;}
.fs0_c02386{font-size:58.880000pt;}
.fs1_c02386{font-size:64.000000pt;}
.y0_c02386{bottom:0.000000pt;}
.y3_c02386{bottom:4.160000pt;}
.y2_c02386{bottom:37.152000pt;}
.y1_c02386{bottom:67.072000pt;}
.y22_c02386{bottom:118.912000pt;}
.y21_c02386{bottom:146.586667pt;}
.y20_c02386{bottom:174.106667pt;}
.y1f_c02386{bottom:201.626667pt;}
.y1e_c02386{bottom:229.306667pt;}
.y1d_c02386{bottom:256.866667pt;}
.y1c_c02386{bottom:284.546667pt;}
.y1b_c02386{bottom:312.066667pt;}
.y1a_c02386{bottom:339.746667pt;}
.y19_c02386{bottom:367.266667pt;}
.y18_c02386{bottom:394.946667pt;}
.y17_c02386{bottom:422.466667pt;}
.y16_c02386{bottom:450.146667pt;}
.y15_c02386{bottom:477.693333pt;}
.y14_c02386{bottom:505.373333pt;}
.y13_c02386{bottom:532.893333pt;}
.y12_c02386{bottom:560.573333pt;}
.y11_c02386{bottom:588.093333pt;}
.y10_c02386{bottom:615.773333pt;}
.yf_c02386{bottom:643.293333pt;}
.ye_c02386{bottom:670.973333pt;}
.yd_c02386{bottom:698.493333pt;}
.yc_c02386{bottom:726.213333pt;}
.yb_c02386{bottom:753.733333pt;}
.ya_c02386{bottom:781.413333pt;}
.y9_c02386{bottom:808.933333pt;}
.y8_c02386{bottom:836.613333pt;}
.y7_c02386{bottom:864.133333pt;}
.y6_c02386{bottom:891.813333pt;}
.y5_c02386{bottom:919.333333pt;}
.y4_c02386{bottom:947.040000pt;}
.h2_c02386{height:20.000000pt;}
.h1_c02386{height:43.441250pt;}
.h3_c02386{height:62.812500pt;}
.h0_c02386{height:1056.000000pt;}
.w1_c02386{width:59.232000pt;}
.w0_c02386{width:816.000000pt;}
.x0_c02386{left:0.000000pt;}
.x3_c02386{left:14.720000pt;}
.x1_c02386{left:113.472000pt;}
.x4_c02386{left:166.266667pt;}
.x2_c02386{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02387 {
    display:none;
  }
  .loading-indicator_c02387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02387 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02387 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02387" -> "#page-container .classname_c02387")
 */
.pf_c02387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02387 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02387 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02387 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02387 {overflow:visible;}
  }
}
.c_c02387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02387 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02387:after { /* webkit #35443 */
  content: '';
}
.t_c02387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02387 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02387 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02387 { /* info for Javascript */
  display:none;
}
.l_c02387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02387:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02387 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02387.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02387;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02387{font-family:ff1_c02387;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02387;src:url('chunks/assets/font_57213af7f26f3beea05ff126.woff2')format("woff");}.ff2_c02387{font-family:ff2_c02387;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;}
.m0_c02387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02387{vertical-align:0.000000px;}
.ls0_c02387{letter-spacing:0.000000px;}
.sc__c02387{text-shadow:none;}
.sc0_c02387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02387{-webkit-text-stroke:0px transparent;}
.sc0_c02387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02387{word-spacing:0.000000px;}
._3_c02387{margin-left:-1.440000px;}
._1_c02387{width:1.368000px;}
._a_c02387{width:2.808000px;}
._4_c02387{width:4.248000px;}
._5_c02387{width:5.400000px;}
._7_c02387{width:6.660000px;}
._6_c02387{width:8.064000px;}
._c_c02387{width:9.144000px;}
._9_c02387{width:10.656000px;}
._8_c02387{width:11.808000px;}
._0_c02387{width:12.816000px;}
._2_c02387{width:14.400000px;}
._12_c02387{width:19.584000px;}
._b_c02387{width:20.808000px;}
._d_c02387{width:22.320000px;}
._e_c02387{width:23.580000px;}
._f_c02387{width:25.452000px;}
._10_c02387{width:28.008000px;}
._11_c02387{width:29.232000px;}
.fc1_c02387{color:rgb(192,80,77);}
.fc2_c02387{color:rgb(17,17,17);}
.fc0_c02387{color:rgb(0,0,0);}
.fs0_c02387{font-size:66.240000px;}
.fs1_c02387{font-size:72.000000px;}
.y0_c02387{bottom:0.000000px;}
.y3_c02387{bottom:4.680000px;}
.y2_c02387{bottom:41.796000px;}
.y1_c02387{bottom:75.456000px;}
.y22_c02387{bottom:133.776000px;}
.y21_c02387{bottom:164.910000px;}
.y20_c02387{bottom:195.870000px;}
.y1f_c02387{bottom:226.830000px;}
.y1e_c02387{bottom:257.970000px;}
.y1d_c02387{bottom:288.975000px;}
.y1c_c02387{bottom:320.115000px;}
.y1b_c02387{bottom:351.075000px;}
.y1a_c02387{bottom:382.215000px;}
.y19_c02387{bottom:413.175000px;}
.y18_c02387{bottom:444.315000px;}
.y17_c02387{bottom:475.275000px;}
.y16_c02387{bottom:506.415000px;}
.y15_c02387{bottom:537.405000px;}
.y14_c02387{bottom:568.545000px;}
.y13_c02387{bottom:599.505000px;}
.y12_c02387{bottom:630.645000px;}
.y11_c02387{bottom:661.605000px;}
.y10_c02387{bottom:692.745000px;}
.yf_c02387{bottom:723.705000px;}
.ye_c02387{bottom:754.845000px;}
.yd_c02387{bottom:785.805000px;}
.yc_c02387{bottom:816.990000px;}
.yb_c02387{bottom:847.950000px;}
.ya_c02387{bottom:879.090000px;}
.y9_c02387{bottom:910.050000px;}
.y8_c02387{bottom:941.190000px;}
.y7_c02387{bottom:972.150000px;}
.y6_c02387{bottom:1003.290000px;}
.y5_c02387{bottom:1034.250000px;}
.y4_c02387{bottom:1065.420000px;}
.h2_c02387{height:22.500000px;}
.h1_c02387{height:48.871406px;}
.h3_c02387{height:70.664062px;}
.h0_c02387{height:1188.000000px;}
.w1_c02387{width:66.636000px;}
.w0_c02387{width:918.000000px;}
.x0_c02387{left:0.000000px;}
.x3_c02387{left:16.560000px;}
.x1_c02387{left:127.656000px;}
.x4_c02387{left:187.050000px;}
.x2_c02387{left:820.950000px;}
@media print{
.v0_c02387{vertical-align:0.000000pt;}
.ls0_c02387{letter-spacing:0.000000pt;}
.ws0_c02387{word-spacing:0.000000pt;}
._3_c02387{margin-left:-1.280000pt;}
._1_c02387{width:1.216000pt;}
._a_c02387{width:2.496000pt;}
._4_c02387{width:3.776000pt;}
._5_c02387{width:4.800000pt;}
._7_c02387{width:5.920000pt;}
._6_c02387{width:7.168000pt;}
._c_c02387{width:8.128000pt;}
._9_c02387{width:9.472000pt;}
._8_c02387{width:10.496000pt;}
._0_c02387{width:11.392000pt;}
._2_c02387{width:12.800000pt;}
._12_c02387{width:17.408000pt;}
._b_c02387{width:18.496000pt;}
._d_c02387{width:19.840000pt;}
._e_c02387{width:20.960000pt;}
._f_c02387{width:22.624000pt;}
._10_c02387{width:24.896000pt;}
._11_c02387{width:25.984000pt;}
.fs0_c02387{font-size:58.880000pt;}
.fs1_c02387{font-size:64.000000pt;}
.y0_c02387{bottom:0.000000pt;}
.y3_c02387{bottom:4.160000pt;}
.y2_c02387{bottom:37.152000pt;}
.y1_c02387{bottom:67.072000pt;}
.y22_c02387{bottom:118.912000pt;}
.y21_c02387{bottom:146.586667pt;}
.y20_c02387{bottom:174.106667pt;}
.y1f_c02387{bottom:201.626667pt;}
.y1e_c02387{bottom:229.306667pt;}
.y1d_c02387{bottom:256.866667pt;}
.y1c_c02387{bottom:284.546667pt;}
.y1b_c02387{bottom:312.066667pt;}
.y1a_c02387{bottom:339.746667pt;}
.y19_c02387{bottom:367.266667pt;}
.y18_c02387{bottom:394.946667pt;}
.y17_c02387{bottom:422.466667pt;}
.y16_c02387{bottom:450.146667pt;}
.y15_c02387{bottom:477.693333pt;}
.y14_c02387{bottom:505.373333pt;}
.y13_c02387{bottom:532.893333pt;}
.y12_c02387{bottom:560.573333pt;}
.y11_c02387{bottom:588.093333pt;}
.y10_c02387{bottom:615.773333pt;}
.yf_c02387{bottom:643.293333pt;}
.ye_c02387{bottom:670.973333pt;}
.yd_c02387{bottom:698.493333pt;}
.yc_c02387{bottom:726.213333pt;}
.yb_c02387{bottom:753.733333pt;}
.ya_c02387{bottom:781.413333pt;}
.y9_c02387{bottom:808.933333pt;}
.y8_c02387{bottom:836.613333pt;}
.y7_c02387{bottom:864.133333pt;}
.y6_c02387{bottom:891.813333pt;}
.y5_c02387{bottom:919.333333pt;}
.y4_c02387{bottom:947.040000pt;}
.h2_c02387{height:20.000000pt;}
.h1_c02387{height:43.441250pt;}
.h3_c02387{height:62.812500pt;}
.h0_c02387{height:1056.000000pt;}
.w1_c02387{width:59.232000pt;}
.w0_c02387{width:816.000000pt;}
.x0_c02387{left:0.000000pt;}
.x3_c02387{left:14.720000pt;}
.x1_c02387{left:113.472000pt;}
.x4_c02387{left:166.266667pt;}
.x2_c02387{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02388 {
    display:none;
  }
  .loading-indicator_c02388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02388 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02388 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02388" -> "#page-container .classname_c02388")
 */
.pf_c02388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02388 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02388 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02388 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02388 {overflow:visible;}
  }
}
.c_c02388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02388 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02388:after { /* webkit #35443 */
  content: '';
}
.t_c02388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02388 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02388 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02388 { /* info for Javascript */
  display:none;
}
.l_c02388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02388:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02388 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02388.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02388;src:url('chunks/assets/font_2f02494bf375dcaea84cd5ea.woff2')format("woff");}.ff1_c02388{font-family:ff1_c02388;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02388;src:url('chunks/assets/font_a01b9be45987142ef5097407.woff2')format("woff");}.ff2_c02388{font-family:ff2_c02388;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;}
.m0_c02388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02388{vertical-align:0.000000px;}
.ls1_c02388{letter-spacing:0.000000px;}
.ls0_c02388{letter-spacing:0.216000px;}
.sc__c02388{text-shadow:none;}
.sc0_c02388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02388{-webkit-text-stroke:0px transparent;}
.sc0_c02388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02388{word-spacing:0.000000px;}
._8_c02388{margin-left:-1.080000px;}
._2_c02388{width:1.008000px;}
._0_c02388{width:2.016000px;}
._1_c02388{width:3.024000px;}
._3_c02388{width:4.032000px;}
._5_c02388{width:5.472000px;}
._d_c02388{width:6.804000px;}
._16_c02388{width:7.848000px;}
._e_c02388{width:8.856000px;}
._f_c02388{width:9.936000px;}
._b_c02388{width:11.592000px;}
._c_c02388{width:12.888000px;}
._13_c02388{width:14.832000px;}
._6_c02388{width:15.840000px;}
._7_c02388{width:16.920000px;}
._4_c02388{width:19.800000px;}
._9_c02388{width:21.600000px;}
._a_c02388{width:22.824000px;}
._12_c02388{width:23.904000px;}
._10_c02388{width:25.056000px;}
._11_c02388{width:26.424000px;}
._14_c02388{width:31.608000px;}
._15_c02388{width:32.616000px;}
.fc1_c02388{color:rgb(192,80,77);}
.fc2_c02388{color:rgb(17,17,17);}
.fc0_c02388{color:rgb(0,0,0);}
.fs0_c02388{font-size:66.240000px;}
.fs1_c02388{font-size:72.000000px;}
.y0_c02388{bottom:0.000000px;}
.y3_c02388{bottom:4.680000px;}
.y2_c02388{bottom:41.796000px;}
.y1_c02388{bottom:75.456000px;}
.y22_c02388{bottom:133.776000px;}
.y21_c02388{bottom:164.910000px;}
.y20_c02388{bottom:195.870000px;}
.y1f_c02388{bottom:226.830000px;}
.y1e_c02388{bottom:257.970000px;}
.y1d_c02388{bottom:288.975000px;}
.y1c_c02388{bottom:320.115000px;}
.y1b_c02388{bottom:351.075000px;}
.y1a_c02388{bottom:382.215000px;}
.y19_c02388{bottom:413.175000px;}
.y18_c02388{bottom:444.315000px;}
.y17_c02388{bottom:475.275000px;}
.y16_c02388{bottom:506.415000px;}
.y15_c02388{bottom:537.405000px;}
.y14_c02388{bottom:568.545000px;}
.y13_c02388{bottom:599.505000px;}
.y12_c02388{bottom:630.645000px;}
.y11_c02388{bottom:661.605000px;}
.y10_c02388{bottom:692.745000px;}
.yf_c02388{bottom:723.705000px;}
.ye_c02388{bottom:754.845000px;}
.yd_c02388{bottom:785.805000px;}
.yc_c02388{bottom:816.990000px;}
.yb_c02388{bottom:847.950000px;}
.ya_c02388{bottom:879.090000px;}
.y9_c02388{bottom:910.050000px;}
.y8_c02388{bottom:941.190000px;}
.y7_c02388{bottom:972.150000px;}
.y6_c02388{bottom:1003.290000px;}
.y5_c02388{bottom:1034.250000px;}
.y4_c02388{bottom:1065.420000px;}
.h2_c02388{height:22.500000px;}
.h1_c02388{height:48.871406px;}
.h3_c02388{height:70.664062px;}
.h0_c02388{height:1188.000000px;}
.w1_c02388{width:66.636000px;}
.w0_c02388{width:918.000000px;}
.x0_c02388{left:0.000000px;}
.x3_c02388{left:16.560000px;}
.x1_c02388{left:127.656000px;}
.x4_c02388{left:187.050000px;}
.x2_c02388{left:820.950000px;}
@media print{
.v0_c02388{vertical-align:0.000000pt;}
.ls1_c02388{letter-spacing:0.000000pt;}
.ls0_c02388{letter-spacing:0.192000pt;}
.ws0_c02388{word-spacing:0.000000pt;}
._8_c02388{margin-left:-0.960000pt;}
._2_c02388{width:0.896000pt;}
._0_c02388{width:1.792000pt;}
._1_c02388{width:2.688000pt;}
._3_c02388{width:3.584000pt;}
._5_c02388{width:4.864000pt;}
._d_c02388{width:6.048000pt;}
._16_c02388{width:6.976000pt;}
._e_c02388{width:7.872000pt;}
._f_c02388{width:8.832000pt;}
._b_c02388{width:10.304000pt;}
._c_c02388{width:11.456000pt;}
._13_c02388{width:13.184000pt;}
._6_c02388{width:14.080000pt;}
._7_c02388{width:15.040000pt;}
._4_c02388{width:17.600000pt;}
._9_c02388{width:19.200000pt;}
._a_c02388{width:20.288000pt;}
._12_c02388{width:21.248000pt;}
._10_c02388{width:22.272000pt;}
._11_c02388{width:23.488000pt;}
._14_c02388{width:28.096000pt;}
._15_c02388{width:28.992000pt;}
.fs0_c02388{font-size:58.880000pt;}
.fs1_c02388{font-size:64.000000pt;}
.y0_c02388{bottom:0.000000pt;}
.y3_c02388{bottom:4.160000pt;}
.y2_c02388{bottom:37.152000pt;}
.y1_c02388{bottom:67.072000pt;}
.y22_c02388{bottom:118.912000pt;}
.y21_c02388{bottom:146.586667pt;}
.y20_c02388{bottom:174.106667pt;}
.y1f_c02388{bottom:201.626667pt;}
.y1e_c02388{bottom:229.306667pt;}
.y1d_c02388{bottom:256.866667pt;}
.y1c_c02388{bottom:284.546667pt;}
.y1b_c02388{bottom:312.066667pt;}
.y1a_c02388{bottom:339.746667pt;}
.y19_c02388{bottom:367.266667pt;}
.y18_c02388{bottom:394.946667pt;}
.y17_c02388{bottom:422.466667pt;}
.y16_c02388{bottom:450.146667pt;}
.y15_c02388{bottom:477.693333pt;}
.y14_c02388{bottom:505.373333pt;}
.y13_c02388{bottom:532.893333pt;}
.y12_c02388{bottom:560.573333pt;}
.y11_c02388{bottom:588.093333pt;}
.y10_c02388{bottom:615.773333pt;}
.yf_c02388{bottom:643.293333pt;}
.ye_c02388{bottom:670.973333pt;}
.yd_c02388{bottom:698.493333pt;}
.yc_c02388{bottom:726.213333pt;}
.yb_c02388{bottom:753.733333pt;}
.ya_c02388{bottom:781.413333pt;}
.y9_c02388{bottom:808.933333pt;}
.y8_c02388{bottom:836.613333pt;}
.y7_c02388{bottom:864.133333pt;}
.y6_c02388{bottom:891.813333pt;}
.y5_c02388{bottom:919.333333pt;}
.y4_c02388{bottom:947.040000pt;}
.h2_c02388{height:20.000000pt;}
.h1_c02388{height:43.441250pt;}
.h3_c02388{height:62.812500pt;}
.h0_c02388{height:1056.000000pt;}
.w1_c02388{width:59.232000pt;}
.w0_c02388{width:816.000000pt;}
.x0_c02388{left:0.000000pt;}
.x3_c02388{left:14.720000pt;}
.x1_c02388{left:113.472000pt;}
.x4_c02388{left:166.266667pt;}
.x2_c02388{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02389 {
    display:none;
  }
  .loading-indicator_c02389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02389 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02389 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02389" -> "#page-container .classname_c02389")
 */
.pf_c02389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02389 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02389 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02389 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02389 {overflow:visible;}
  }
}
.c_c02389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02389 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02389:after { /* webkit #35443 */
  content: '';
}
.t_c02389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02389 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02389 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02389 { /* info for Javascript */
  display:none;
}
.l_c02389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02389:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02389 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02389.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02389;src:url('chunks/assets/font_5d8a0bea940881557ea3191c.woff2')format("woff");}.ff1_c02389{font-family:ff1_c02389;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02389;src:url('chunks/assets/font_74835c0ca7c9bf6be650793d.woff2')format("woff");}.ff2_c02389{font-family:ff2_c02389;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;}
.m0_c02389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02389{vertical-align:0.000000px;}
.ls0_c02389{letter-spacing:0.000000px;}
.sc__c02389{text-shadow:none;}
.sc0_c02389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02389{-webkit-text-stroke:0px transparent;}
.sc0_c02389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02389{word-spacing:0.000000px;}
._3_c02389{margin-left:-1.224000px;}
._2_c02389{width:1.224000px;}
._0_c02389{width:5.184000px;}
._1_c02389{width:6.408000px;}
.fc1_c02389{color:rgb(192,80,77);}
.fc0_c02389{color:rgb(0,0,0);}
.fs0_c02389{font-size:66.240000px;}
.fs1_c02389{font-size:72.000000px;}
.y0_c02389{bottom:0.000000px;}
.y3_c02389{bottom:4.680000px;}
.y2_c02389{bottom:41.796000px;}
.y1_c02389{bottom:75.456000px;}
.y6_c02389{bottom:1003.290000px;}
.y5_c02389{bottom:1034.250000px;}
.y4_c02389{bottom:1065.420000px;}
.h2_c02389{height:22.500000px;}
.h1_c02389{height:48.871406px;}
.h3_c02389{height:70.664062px;}
.h0_c02389{height:1188.000000px;}
.w1_c02389{width:66.636000px;}
.w0_c02389{width:918.000000px;}
.x0_c02389{left:0.000000px;}
.x3_c02389{left:16.560000px;}
.x1_c02389{left:127.656000px;}
.x4_c02389{left:187.050000px;}
.x2_c02389{left:820.950000px;}
@media print{
.v0_c02389{vertical-align:0.000000pt;}
.ls0_c02389{letter-spacing:0.000000pt;}
.ws0_c02389{word-spacing:0.000000pt;}
._3_c02389{margin-left:-1.088000pt;}
._2_c02389{width:1.088000pt;}
._0_c02389{width:4.608000pt;}
._1_c02389{width:5.696000pt;}
.fs0_c02389{font-size:58.880000pt;}
.fs1_c02389{font-size:64.000000pt;}
.y0_c02389{bottom:0.000000pt;}
.y3_c02389{bottom:4.160000pt;}
.y2_c02389{bottom:37.152000pt;}
.y1_c02389{bottom:67.072000pt;}
.y6_c02389{bottom:891.813333pt;}
.y5_c02389{bottom:919.333333pt;}
.y4_c02389{bottom:947.040000pt;}
.h2_c02389{height:20.000000pt;}
.h1_c02389{height:43.441250pt;}
.h3_c02389{height:62.812500pt;}
.h0_c02389{height:1056.000000pt;}
.w1_c02389{width:59.232000pt;}
.w0_c02389{width:816.000000pt;}
.x0_c02389{left:0.000000pt;}
.x3_c02389{left:14.720000pt;}
.x1_c02389{left:113.472000pt;}
.x4_c02389{left:166.266667pt;}
.x2_c02389{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02390 {
    display:none;
  }
  .loading-indicator_c02390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02390 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02390 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02390" -> "#page-container .classname_c02390")
 */
.pf_c02390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02390 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02390 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02390 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02390 {overflow:visible;}
  }
}
.c_c02390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02390 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02390:after { /* webkit #35443 */
  content: '';
}
.t_c02390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02390 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02390 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02390 { /* info for Javascript */
  display:none;
}
.l_c02390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02390:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02390 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02390.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02390;src:url('chunks/assets/font_c2e53ab4a46b8e38c2cddab2.woff2')format("woff");}.ff1_c02390{font-family:ff1_c02390;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02390;src:url('chunks/assets/font_1960126a1cd3f4743d48a071.woff2')format("woff");}.ff2_c02390{font-family:ff2_c02390;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:ff3_c02390;src:url('chunks/assets/font_8e5f1bf5d484a266d46e823b.woff2')format("woff");}.ff3_c02390{font-family:ff3_c02390;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02390{vertical-align:0.000000px;}
.ls0_c02390{letter-spacing:0.000000px;}
.sc__c02390{text-shadow:none;}
.sc0_c02390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02390{-webkit-text-stroke:0px transparent;}
.sc0_c02390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02390{word-spacing:-15.840000px;}
.ws1_c02390{word-spacing:0.000000px;}
._0_c02390{margin-left:-1.080000px;}
._1_c02390{width:1.776000px;}
.fc1_c02390{color:rgb(192,80,77);}
.fc3_c02390{color:rgb(255,255,255);}
.fc2_c02390{color:rgb(17,17,17);}
.fc0_c02390{color:rgb(0,0,0);}
.fs2_c02390{font-size:63.360000px;}
.fs0_c02390{font-size:66.240000px;}
.fs1_c02390{font-size:72.000000px;}
.y0_c02390{bottom:0.000000px;}
.y9_c02390{bottom:3.780000px;}
.yd_c02390{bottom:3.960000px;}
.y3_c02390{bottom:4.860000px;}
.y25_c02390{bottom:6.840000px;}
.y1e_c02390{bottom:9.360000px;}
.y2a_c02390{bottom:9.540000px;}
.y1c_c02390{bottom:10.650000px;}
.ye_c02390{bottom:21.240000px;}
.y31_c02390{bottom:21.954000px;}
.y13_c02390{bottom:21.960000px;}
.y10_c02390{bottom:22.005000px;}
.yc_c02390{bottom:22.140000px;}
.y2f_c02390{bottom:22.860000px;}
.y24_c02390{bottom:25.020000px;}
.y1d_c02390{bottom:27.360000px;}
.y29_c02390{bottom:27.720000px;}
.y1b_c02390{bottom:28.830000px;}
.y19_c02390{bottom:35.100000px;}
.yb_c02390{bottom:40.140000px;}
.y2d_c02390{bottom:40.860000px;}
.y27_c02390{bottom:50.220000px;}
.y2_c02390{bottom:52.416000px;}
.y18_c02390{bottom:53.130000px;}
.y2c_c02390{bottom:59.085000px;}
.y26_c02390{bottom:68.400000px;}
.y17_c02390{bottom:71.310000px;}
.y1_c02390{bottom:75.456000px;}
.y22_c02390{bottom:86.580000px;}
.y21_c02390{bottom:104.580000px;}
.y20_c02390{bottom:122.760000px;}
.y30_c02390{bottom:132.696000px;}
.y2b_c02390{bottom:169.590000px;}
.y2e_c02390{bottom:206.670000px;}
.y1f_c02390{bottom:243.615000px;}
.y28_c02390{bottom:298.695000px;}
.y23_c02390{bottom:341.355000px;}
.y16_c02390{bottom:381.315000px;}
.y1a_c02390{bottom:423.795000px;}
.y15_c02390{bottom:467.565000px;}
.y14_c02390{bottom:504.645000px;}
.y12_c02390{bottom:541.545000px;}
.y11_c02390{bottom:578.445000px;}
.yf_c02390{bottom:615.525000px;}
.ya_c02390{bottom:652.470000px;}
.y8_c02390{bottom:688.830000px;}
.y7_c02390{bottom:712.050000px;}
.y6_c02390{bottom:732.750000px;}
.y5_c02390{bottom:753.450000px;}
.y4_c02390{bottom:774.150000px;}
.h4_c02390{height:18.000000px;}
.h2_c02390{height:22.680000px;}
.h7_c02390{height:35.460000px;}
.ha_c02390{height:36.180000px;}
.h8_c02390{height:36.216000px;}
.h9_c02390{height:36.360000px;}
.hf_c02390{height:39.240000px;}
.hd_c02390{height:41.580000px;}
.h10_c02390{height:41.940000px;}
.hc_c02390{height:43.056000px;}
.h1_c02390{height:48.871406px;}
.h6_c02390{height:54.360000px;}
.h5_c02390{height:62.184375px;}
.h3_c02390{height:70.664062px;}
.h11_c02390{height:73.296000px;}
.hb_c02390{height:85.536000px;}
.he_c02390{height:136.980000px;}
.h0_c02390{height:918.000000px;}
.w7_c02390{width:41.760000px;}
.w8_c02390{width:52.380000px;}
.w1_c02390{width:66.780000px;}
.w3_c02390{width:94.860000px;}
.w6_c02390{width:147.996000px;}
.w4_c02390{width:159.300000px;}
.w5_c02390{width:500.295000px;}
.w2_c02390{width:809.025000px;}
.w0_c02390{width:1188.000000px;}
.x0_c02390{left:0.000000px;}
.x12_c02390{left:9.900000px;}
.xc_c02390{left:12.240000px;}
.x20_c02390{left:15.480000px;}
.x3_c02390{left:16.560000px;}
.x25_c02390{left:18.180000px;}
.x1e_c02390{left:19.260000px;}
.x23_c02390{left:20.880000px;}
.xd_c02390{left:23.040000px;}
.x14_c02390{left:25.380000px;}
.x26_c02390{left:32.040000px;}
.x1c_c02390{left:35.460000px;}
.x2b_c02390{left:37.260000px;}
.x17_c02390{left:39.600000px;}
.x18_c02390{left:40.680000px;}
.x28_c02390{left:42.300000px;}
.x2c_c02390{left:43.560000px;}
.xb_c02390{left:47.520000px;}
.x1b_c02390{left:51.300000px;}
.xe_c02390{left:53.640000px;}
.x29_c02390{left:62.460000px;}
.x16_c02390{left:73.980000px;}
.x13_c02390{left:79.380000px;}
.x1f_c02390{left:83.025000px;}
.x27_c02390{left:85.005000px;}
.x1_c02390{left:106.200000px;}
.x2a_c02390{left:108.945000px;}
.x22_c02390{left:119.385000px;}
.x1a_c02390{left:120.645000px;}
.x1d_c02390{left:124.785000px;}
.x19_c02390{left:125.865000px;}
.x15_c02390{left:128.745000px;}
.x8_c02390{left:158.070000px;}
.x10_c02390{left:230.805000px;}
.x21_c02390{left:250.065000px;}
.x9_c02390{left:260.505000px;}
.x5_c02390{left:307.830000px;}
.xf_c02390{left:318.090000px;}
.x6_c02390{left:427.215000px;}
.x4_c02390{left:574.995000px;}
.x7_c02390{left:623.595000px;}
.x11_c02390{left:819.105000px;}
.xa_c02390{left:968.010000px;}
.x24_c02390{left:1010.490000px;}
.x2_c02390{left:1101.570000px;}
@media print{
.v0_c02390{vertical-align:0.000000pt;}
.ls0_c02390{letter-spacing:0.000000pt;}
.ws0_c02390{word-spacing:-14.080000pt;}
.ws1_c02390{word-spacing:0.000000pt;}
._0_c02390{margin-left:-0.960000pt;}
._1_c02390{width:1.578667pt;}
.fs2_c02390{font-size:56.320000pt;}
.fs0_c02390{font-size:58.880000pt;}
.fs1_c02390{font-size:64.000000pt;}
.y0_c02390{bottom:0.000000pt;}
.y9_c02390{bottom:3.360000pt;}
.yd_c02390{bottom:3.520000pt;}
.y3_c02390{bottom:4.320000pt;}
.y25_c02390{bottom:6.080000pt;}
.y1e_c02390{bottom:8.320000pt;}
.y2a_c02390{bottom:8.480000pt;}
.y1c_c02390{bottom:9.466667pt;}
.ye_c02390{bottom:18.880000pt;}
.y31_c02390{bottom:19.514667pt;}
.y13_c02390{bottom:19.520000pt;}
.y10_c02390{bottom:19.560000pt;}
.yc_c02390{bottom:19.680000pt;}
.y2f_c02390{bottom:20.320000pt;}
.y24_c02390{bottom:22.240000pt;}
.y1d_c02390{bottom:24.320000pt;}
.y29_c02390{bottom:24.640000pt;}
.y1b_c02390{bottom:25.626667pt;}
.y19_c02390{bottom:31.200000pt;}
.yb_c02390{bottom:35.680000pt;}
.y2d_c02390{bottom:36.320000pt;}
.y27_c02390{bottom:44.640000pt;}
.y2_c02390{bottom:46.592000pt;}
.y18_c02390{bottom:47.226667pt;}
.y2c_c02390{bottom:52.520000pt;}
.y26_c02390{bottom:60.800000pt;}
.y17_c02390{bottom:63.386667pt;}
.y1_c02390{bottom:67.072000pt;}
.y22_c02390{bottom:76.960000pt;}
.y21_c02390{bottom:92.960000pt;}
.y20_c02390{bottom:109.120000pt;}
.y30_c02390{bottom:117.952000pt;}
.y2b_c02390{bottom:150.746667pt;}
.y2e_c02390{bottom:183.706667pt;}
.y1f_c02390{bottom:216.546667pt;}
.y28_c02390{bottom:265.506667pt;}
.y23_c02390{bottom:303.426667pt;}
.y16_c02390{bottom:338.946667pt;}
.y1a_c02390{bottom:376.706667pt;}
.y15_c02390{bottom:415.613333pt;}
.y14_c02390{bottom:448.573333pt;}
.y12_c02390{bottom:481.373333pt;}
.y11_c02390{bottom:514.173333pt;}
.yf_c02390{bottom:547.133333pt;}
.ya_c02390{bottom:579.973333pt;}
.y8_c02390{bottom:612.293333pt;}
.y7_c02390{bottom:632.933333pt;}
.y6_c02390{bottom:651.333333pt;}
.y5_c02390{bottom:669.733333pt;}
.y4_c02390{bottom:688.133333pt;}
.h4_c02390{height:16.000000pt;}
.h2_c02390{height:20.160000pt;}
.h7_c02390{height:31.520000pt;}
.ha_c02390{height:32.160000pt;}
.h8_c02390{height:32.192000pt;}
.h9_c02390{height:32.320000pt;}
.hf_c02390{height:34.880000pt;}
.hd_c02390{height:36.960000pt;}
.h10_c02390{height:37.280000pt;}
.hc_c02390{height:38.272000pt;}
.h1_c02390{height:43.441250pt;}
.h6_c02390{height:48.320000pt;}
.h5_c02390{height:55.275000pt;}
.h3_c02390{height:62.812500pt;}
.h11_c02390{height:65.152000pt;}
.hb_c02390{height:76.032000pt;}
.he_c02390{height:121.760000pt;}
.h0_c02390{height:816.000000pt;}
.w7_c02390{width:37.120000pt;}
.w8_c02390{width:46.560000pt;}
.w1_c02390{width:59.360000pt;}
.w3_c02390{width:84.320000pt;}
.w6_c02390{width:131.552000pt;}
.w4_c02390{width:141.600000pt;}
.w5_c02390{width:444.706667pt;}
.w2_c02390{width:719.133333pt;}
.w0_c02390{width:1056.000000pt;}
.x0_c02390{left:0.000000pt;}
.x12_c02390{left:8.800000pt;}
.xc_c02390{left:10.880000pt;}
.x20_c02390{left:13.760000pt;}
.x3_c02390{left:14.720000pt;}
.x25_c02390{left:16.160000pt;}
.x1e_c02390{left:17.120000pt;}
.x23_c02390{left:18.560000pt;}
.xd_c02390{left:20.480000pt;}
.x14_c02390{left:22.560000pt;}
.x26_c02390{left:28.480000pt;}
.x1c_c02390{left:31.520000pt;}
.x2b_c02390{left:33.120000pt;}
.x17_c02390{left:35.200000pt;}
.x18_c02390{left:36.160000pt;}
.x28_c02390{left:37.600000pt;}
.x2c_c02390{left:38.720000pt;}
.xb_c02390{left:42.240000pt;}
.x1b_c02390{left:45.600000pt;}
.xe_c02390{left:47.680000pt;}
.x29_c02390{left:55.520000pt;}
.x16_c02390{left:65.760000pt;}
.x13_c02390{left:70.560000pt;}
.x1f_c02390{left:73.800000pt;}
.x27_c02390{left:75.560000pt;}
.x1_c02390{left:94.400000pt;}
.x2a_c02390{left:96.840000pt;}
.x22_c02390{left:106.120000pt;}
.x1a_c02390{left:107.240000pt;}
.x1d_c02390{left:110.920000pt;}
.x19_c02390{left:111.880000pt;}
.x15_c02390{left:114.440000pt;}
.x8_c02390{left:140.506667pt;}
.x10_c02390{left:205.160000pt;}
.x21_c02390{left:222.280000pt;}
.x9_c02390{left:231.560000pt;}
.x5_c02390{left:273.626667pt;}
.xf_c02390{left:282.746667pt;}
.x6_c02390{left:379.746667pt;}
.x4_c02390{left:511.106667pt;}
.x7_c02390{left:554.306667pt;}
.x11_c02390{left:728.093333pt;}
.xa_c02390{left:860.453333pt;}
.x24_c02390{left:898.213333pt;}
.x2_c02390{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02391 {
    display:none;
  }
  .loading-indicator_c02391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02391 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02391 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02391" -> "#page-container .classname_c02391")
 */
.pf_c02391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02391 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02391 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02391 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02391 {overflow:visible;}
  }
}
.c_c02391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02391 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02391:after { /* webkit #35443 */
  content: '';
}
.t_c02391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02391 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02391 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02391 { /* info for Javascript */
  display:none;
}
.l_c02391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02391:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02391 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02391.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02391;src:url('chunks/assets/font_58a6827de55c9a431447ea87.woff2')format("woff");}.ff1_c02391{font-family:ff1_c02391;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02391;src:url('chunks/assets/font_8d6ba5c6c2725e8c074e4c68.woff2')format("woff");}.ff2_c02391{font-family:ff2_c02391;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:ff3_c02391;src:url('chunks/assets/font_7227d48c3414b44370cd48a4.woff2')format("woff");}.ff3_c02391{font-family:ff3_c02391;line-height:1.311035;font-style:normal;font-weight: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_c02391;src:url('chunks/assets/font_a348388fd01035af2e0d09c8.woff2')format("woff");}.ff4_c02391{font-family:ff4_c02391;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02391{vertical-align:0.000000px;}
.ls0_c02391{letter-spacing:0.000000px;}
.sc__c02391{text-shadow:none;}
.sc0_c02391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02391{-webkit-text-stroke:0px transparent;}
.sc0_c02391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02391{word-spacing:-15.840000px;}
.ws1_c02391{word-spacing:0.000000px;}
._0_c02391{margin-left:-1.076993px;}
._2_c02391{width:1.080000px;}
._7_c02391{width:2.160000px;}
._4_c02391{width:5.112000px;}
._5_c02391{width:6.120000px;}
._6_c02391{width:7.496993px;}
._1_c02391{width:12.168000px;}
._3_c02391{width:13.464000px;}
.fc1_c02391{color:rgb(192,80,77);}
.fc2_c02391{color:rgb(17,17,17);}
.fc0_c02391{color:rgb(0,0,0);}
.fs1_c02391{font-size:63.360000px;}
.fs0_c02391{font-size:66.240000px;}
.fs2_c02391{font-size:72.000000px;}
.y0_c02391{bottom:0.000000px;}
.y20_c02391{bottom:3.600000px;}
.y6_c02391{bottom:3.780000px;}
.y9_c02391{bottom:3.960000px;}
.y18_c02391{bottom:3.990000px;}
.y3_c02391{bottom:4.860000px;}
.y1b_c02391{bottom:5.580000px;}
.y5_c02391{bottom:21.960000px;}
.y8_c02391{bottom:22.140000px;}
.y17_c02391{bottom:22.170000px;}
.y1a_c02391{bottom:23.580000px;}
.y19_c02391{bottom:24.300000px;}
.yb_c02391{bottom:40.140000px;}
.y16_c02391{bottom:40.170000px;}
.y14_c02391{bottom:42.510000px;}
.y2_c02391{bottom:52.416000px;}
.y13_c02391{bottom:60.690000px;}
.y1_c02391{bottom:75.456000px;}
.y12_c02391{bottom:78.690000px;}
.y25_c02391{bottom:171.210000px;}
.y24_c02391{bottom:191.910000px;}
.y23_c02391{bottom:212.610000px;}
.y22_c02391{bottom:233.355000px;}
.y21_c02391{bottom:254.055000px;}
.y1f_c02391{bottom:270.975000px;}
.y1e_c02391{bottom:289.875000px;}
.y1d_c02391{bottom:326.955000px;}
.y1c_c02391{bottom:345.675000px;}
.y11_c02391{bottom:382.755000px;}
.y15_c02391{bottom:421.275000px;}
.y10_c02391{bottom:476.385000px;}
.yf_c02391{bottom:513.465000px;}
.ye_c02391{bottom:550.365000px;}
.yd_c02391{bottom:587.445000px;}
.yc_c02391{bottom:624.390000px;}
.ya_c02391{bottom:661.290000px;}
.y7_c02391{bottom:716.370000px;}
.y4_c02391{bottom:753.450000px;}
.hb_c02391{height:18.000000px;}
.hc_c02391{height:18.180000px;}
.h2_c02391{height:22.680000px;}
.h3_c02391{height:36.180000px;}
.h7_c02391{height:36.216000px;}
.h5_c02391{height:36.360000px;}
.ha_c02391{height:37.800000px;}
.h1_c02391{height:48.871406px;}
.h6_c02391{height:54.360000px;}
.h9_c02391{height:54.396000px;}
.h4_c02391{height:62.184375px;}
.hd_c02391{height:63.855000px;}
.he_c02391{height:64.546875px;}
.hf_c02391{height:70.664062px;}
.h8_c02391{height:92.916000px;}
.h0_c02391{height:918.000000px;}
.w6_c02391{width:41.760000px;}
.w7_c02391{width:52.380000px;}
.w1_c02391{width:66.780000px;}
.w5_c02391{width:94.860000px;}
.w4_c02391{width:147.996000px;}
.w2_c02391{width:159.300000px;}
.w3_c02391{width:500.295000px;}
.w8_c02391{width:809.025000px;}
.w0_c02391{width:1188.000000px;}
.x0_c02391{left:0.000000px;}
.x7_c02391{left:9.360000px;}
.x27_c02391{left:12.600000px;}
.x15_c02391{left:14.220000px;}
.x3_c02391{left:16.560000px;}
.x23_c02391{left:20.880000px;}
.x26_c02391{left:22.140000px;}
.x17_c02391{left:23.400000px;}
.xf_c02391{left:24.480000px;}
.x25_c02391{left:26.100000px;}
.x28_c02391{left:29.340000px;}
.x1b_c02391{left:32.400000px;}
.x19_c02391{left:35.820000px;}
.x1d_c02391{left:39.420000px;}
.xe_c02391{left:43.560000px;}
.x18_c02391{left:45.360000px;}
.x1e_c02391{left:46.440000px;}
.xd_c02391{left:47.520000px;}
.x20_c02391{left:50.040000px;}
.xb_c02391{left:51.300000px;}
.x1c_c02391{left:53.820000px;}
.x14_c02391{left:72.720000px;}
.xa_c02391{left:73.980000px;}
.x5_c02391{left:79.380000px;}
.x12_c02391{left:81.225000px;}
.x13_c02391{left:85.365000px;}
.x8_c02391{left:95.265000px;}
.x11_c02391{left:102.825000px;}
.x22_c02391{left:104.265000px;}
.x1_c02391{left:106.200000px;}
.x1a_c02391{left:116.685000px;}
.x1f_c02391{left:118.485000px;}
.x29_c02391{left:119.745000px;}
.x10_c02391{left:125.865000px;}
.x16_c02391{left:127.125000px;}
.x4_c02391{left:158.070000px;}
.x21_c02391{left:250.065000px;}
.x6_c02391{left:318.090000px;}
.x2a_c02391{left:746.175000px;}
.x9_c02391{left:819.105000px;}
.xc_c02391{left:968.010000px;}
.x24_c02391{left:1010.490000px;}
.x2_c02391{left:1101.570000px;}
@media print{
.v0_c02391{vertical-align:0.000000pt;}
.ls0_c02391{letter-spacing:0.000000pt;}
.ws0_c02391{word-spacing:-14.080000pt;}
.ws1_c02391{word-spacing:0.000000pt;}
._0_c02391{margin-left:-0.957327pt;}
._2_c02391{width:0.960000pt;}
._7_c02391{width:1.920000pt;}
._4_c02391{width:4.544000pt;}
._5_c02391{width:5.440000pt;}
._6_c02391{width:6.663994pt;}
._1_c02391{width:10.816000pt;}
._3_c02391{width:11.968000pt;}
.fs1_c02391{font-size:56.320000pt;}
.fs0_c02391{font-size:58.880000pt;}
.fs2_c02391{font-size:64.000000pt;}
.y0_c02391{bottom:0.000000pt;}
.y20_c02391{bottom:3.200000pt;}
.y6_c02391{bottom:3.360000pt;}
.y9_c02391{bottom:3.520000pt;}
.y18_c02391{bottom:3.546667pt;}
.y3_c02391{bottom:4.320000pt;}
.y1b_c02391{bottom:4.960000pt;}
.y5_c02391{bottom:19.520000pt;}
.y8_c02391{bottom:19.680000pt;}
.y17_c02391{bottom:19.706667pt;}
.y1a_c02391{bottom:20.960000pt;}
.y19_c02391{bottom:21.600000pt;}
.yb_c02391{bottom:35.680000pt;}
.y16_c02391{bottom:35.706667pt;}
.y14_c02391{bottom:37.786667pt;}
.y2_c02391{bottom:46.592000pt;}
.y13_c02391{bottom:53.946667pt;}
.y1_c02391{bottom:67.072000pt;}
.y12_c02391{bottom:69.946667pt;}
.y25_c02391{bottom:152.186667pt;}
.y24_c02391{bottom:170.586667pt;}
.y23_c02391{bottom:188.986667pt;}
.y22_c02391{bottom:207.426667pt;}
.y21_c02391{bottom:225.826667pt;}
.y1f_c02391{bottom:240.866667pt;}
.y1e_c02391{bottom:257.666667pt;}
.y1d_c02391{bottom:290.626667pt;}
.y1c_c02391{bottom:307.266667pt;}
.y11_c02391{bottom:340.226667pt;}
.y15_c02391{bottom:374.466667pt;}
.y10_c02391{bottom:423.453333pt;}
.yf_c02391{bottom:456.413333pt;}
.ye_c02391{bottom:489.213333pt;}
.yd_c02391{bottom:522.173333pt;}
.yc_c02391{bottom:555.013333pt;}
.ya_c02391{bottom:587.813333pt;}
.y7_c02391{bottom:636.773333pt;}
.y4_c02391{bottom:669.733333pt;}
.hb_c02391{height:16.000000pt;}
.hc_c02391{height:16.160000pt;}
.h2_c02391{height:20.160000pt;}
.h3_c02391{height:32.160000pt;}
.h7_c02391{height:32.192000pt;}
.h5_c02391{height:32.320000pt;}
.ha_c02391{height:33.600000pt;}
.h1_c02391{height:43.441250pt;}
.h6_c02391{height:48.320000pt;}
.h9_c02391{height:48.352000pt;}
.h4_c02391{height:55.275000pt;}
.hd_c02391{height:56.760000pt;}
.he_c02391{height:57.375000pt;}
.hf_c02391{height:62.812500pt;}
.h8_c02391{height:82.592000pt;}
.h0_c02391{height:816.000000pt;}
.w6_c02391{width:37.120000pt;}
.w7_c02391{width:46.560000pt;}
.w1_c02391{width:59.360000pt;}
.w5_c02391{width:84.320000pt;}
.w4_c02391{width:131.552000pt;}
.w2_c02391{width:141.600000pt;}
.w3_c02391{width:444.706667pt;}
.w8_c02391{width:719.133333pt;}
.w0_c02391{width:1056.000000pt;}
.x0_c02391{left:0.000000pt;}
.x7_c02391{left:8.320000pt;}
.x27_c02391{left:11.200000pt;}
.x15_c02391{left:12.640000pt;}
.x3_c02391{left:14.720000pt;}
.x23_c02391{left:18.560000pt;}
.x26_c02391{left:19.680000pt;}
.x17_c02391{left:20.800000pt;}
.xf_c02391{left:21.760000pt;}
.x25_c02391{left:23.200000pt;}
.x28_c02391{left:26.080000pt;}
.x1b_c02391{left:28.800000pt;}
.x19_c02391{left:31.840000pt;}
.x1d_c02391{left:35.040000pt;}
.xe_c02391{left:38.720000pt;}
.x18_c02391{left:40.320000pt;}
.x1e_c02391{left:41.280000pt;}
.xd_c02391{left:42.240000pt;}
.x20_c02391{left:44.480000pt;}
.xb_c02391{left:45.600000pt;}
.x1c_c02391{left:47.840000pt;}
.x14_c02391{left:64.640000pt;}
.xa_c02391{left:65.760000pt;}
.x5_c02391{left:70.560000pt;}
.x12_c02391{left:72.200000pt;}
.x13_c02391{left:75.880000pt;}
.x8_c02391{left:84.680000pt;}
.x11_c02391{left:91.400000pt;}
.x22_c02391{left:92.680000pt;}
.x1_c02391{left:94.400000pt;}
.x1a_c02391{left:103.720000pt;}
.x1f_c02391{left:105.320000pt;}
.x29_c02391{left:106.440000pt;}
.x10_c02391{left:111.880000pt;}
.x16_c02391{left:113.000000pt;}
.x4_c02391{left:140.506667pt;}
.x21_c02391{left:222.280000pt;}
.x6_c02391{left:282.746667pt;}
.x2a_c02391{left:663.266667pt;}
.x9_c02391{left:728.093333pt;}
.xc_c02391{left:860.453333pt;}
.x24_c02391{left:898.213333pt;}
.x2_c02391{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02392 {
    display:none;
  }
  .loading-indicator_c02392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02392 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02392 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02392" -> "#page-container .classname_c02392")
 */
.pf_c02392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02392 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02392 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02392 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02392 {overflow:visible;}
  }
}
.c_c02392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02392 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02392:after { /* webkit #35443 */
  content: '';
}
.t_c02392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02392 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02392 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02392 { /* info for Javascript */
  display:none;
}
.l_c02392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02392:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02392 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02392.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02392;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02392{font-family:ff1_c02392;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02392;src:url('chunks/assets/font_c6a4ece036a5466d25523cf8.woff2')format("woff");}.ff2_c02392{font-family:ff2_c02392;line-height:1.112305;font-style:normal;font-weight: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_c02392;src:url('chunks/assets/font_2ebedc6c7ea00e97ce289272.woff2')format("woff");}.ff3_c02392{font-family:ff3_c02392;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;}
.m0_c02392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02392{vertical-align:0.000000px;}
.ls0_c02392{letter-spacing:0.000000px;}
.ls1_c02392{letter-spacing:0.144000px;}
.sc__c02392{text-shadow:none;}
.sc0_c02392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02392{-webkit-text-stroke:0px transparent;}
.sc0_c02392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02392{word-spacing:0.000000px;}
._3_c02392{margin-left:-1.080000px;}
._2_c02392{width:1.296000px;}
._5_c02392{width:2.376000px;}
._4_c02392{width:3.528000px;}
._a_c02392{width:4.536000px;}
._f_c02392{width:5.688000px;}
._11_c02392{width:8.568000px;}
._d_c02392{width:9.792000px;}
._e_c02392{width:11.088000px;}
._b_c02392{width:13.320000px;}
._8_c02392{width:15.120000px;}
._9_c02392{width:16.488000px;}
._13_c02392{width:19.008000px;}
._14_c02392{width:20.016000px;}
._12_c02392{width:21.096000px;}
._c_c02392{width:23.076000px;}
._0_c02392{width:24.192000px;}
._1_c02392{width:25.632000px;}
._10_c02392{width:28.728000px;}
._6_c02392{width:30.240000px;}
._7_c02392{width:31.464000px;}
.fc1_c02392{color:rgb(192,80,77);}
.fc2_c02392{color:rgb(17,17,17);}
.fc0_c02392{color:rgb(0,0,0);}
.fs0_c02392{font-size:66.240000px;}
.fs1_c02392{font-size:72.000000px;}
.y0_c02392{bottom:0.000000px;}
.y3_c02392{bottom:4.680000px;}
.y2_c02392{bottom:41.796000px;}
.y1_c02392{bottom:75.456000px;}
.y22_c02392{bottom:133.776000px;}
.y21_c02392{bottom:164.910000px;}
.y20_c02392{bottom:195.870000px;}
.y1f_c02392{bottom:226.830000px;}
.y1e_c02392{bottom:257.970000px;}
.y1d_c02392{bottom:288.975000px;}
.y1c_c02392{bottom:320.115000px;}
.y1b_c02392{bottom:351.075000px;}
.y1a_c02392{bottom:382.215000px;}
.y19_c02392{bottom:413.175000px;}
.y18_c02392{bottom:444.315000px;}
.y17_c02392{bottom:475.275000px;}
.y16_c02392{bottom:506.415000px;}
.y15_c02392{bottom:537.405000px;}
.y14_c02392{bottom:568.545000px;}
.y13_c02392{bottom:599.505000px;}
.y12_c02392{bottom:630.645000px;}
.y11_c02392{bottom:661.605000px;}
.y10_c02392{bottom:692.745000px;}
.yf_c02392{bottom:723.705000px;}
.ye_c02392{bottom:754.845000px;}
.yd_c02392{bottom:785.805000px;}
.yc_c02392{bottom:816.990000px;}
.yb_c02392{bottom:847.950000px;}
.ya_c02392{bottom:879.090000px;}
.y9_c02392{bottom:910.050000px;}
.y8_c02392{bottom:941.190000px;}
.y7_c02392{bottom:972.150000px;}
.y6_c02392{bottom:1003.290000px;}
.y5_c02392{bottom:1034.250000px;}
.y4_c02392{bottom:1065.420000px;}
.h2_c02392{height:22.500000px;}
.h1_c02392{height:48.871406px;}
.h3_c02392{height:64.546875px;}
.h4_c02392{height:70.664062px;}
.h0_c02392{height:1188.000000px;}
.w1_c02392{width:66.636000px;}
.w0_c02392{width:918.000000px;}
.x0_c02392{left:0.000000px;}
.x3_c02392{left:16.560000px;}
.x1_c02392{left:127.656000px;}
.x4_c02392{left:187.050000px;}
.x2_c02392{left:820.950000px;}
@media print{
.v0_c02392{vertical-align:0.000000pt;}
.ls0_c02392{letter-spacing:0.000000pt;}
.ls1_c02392{letter-spacing:0.128000pt;}
.ws0_c02392{word-spacing:0.000000pt;}
._3_c02392{margin-left:-0.960000pt;}
._2_c02392{width:1.152000pt;}
._5_c02392{width:2.112000pt;}
._4_c02392{width:3.136000pt;}
._a_c02392{width:4.032000pt;}
._f_c02392{width:5.056000pt;}
._11_c02392{width:7.616000pt;}
._d_c02392{width:8.704000pt;}
._e_c02392{width:9.856000pt;}
._b_c02392{width:11.840000pt;}
._8_c02392{width:13.440000pt;}
._9_c02392{width:14.656000pt;}
._13_c02392{width:16.896000pt;}
._14_c02392{width:17.792000pt;}
._12_c02392{width:18.752000pt;}
._c_c02392{width:20.512000pt;}
._0_c02392{width:21.504000pt;}
._1_c02392{width:22.784000pt;}
._10_c02392{width:25.536000pt;}
._6_c02392{width:26.880000pt;}
._7_c02392{width:27.968000pt;}
.fs0_c02392{font-size:58.880000pt;}
.fs1_c02392{font-size:64.000000pt;}
.y0_c02392{bottom:0.000000pt;}
.y3_c02392{bottom:4.160000pt;}
.y2_c02392{bottom:37.152000pt;}
.y1_c02392{bottom:67.072000pt;}
.y22_c02392{bottom:118.912000pt;}
.y21_c02392{bottom:146.586667pt;}
.y20_c02392{bottom:174.106667pt;}
.y1f_c02392{bottom:201.626667pt;}
.y1e_c02392{bottom:229.306667pt;}
.y1d_c02392{bottom:256.866667pt;}
.y1c_c02392{bottom:284.546667pt;}
.y1b_c02392{bottom:312.066667pt;}
.y1a_c02392{bottom:339.746667pt;}
.y19_c02392{bottom:367.266667pt;}
.y18_c02392{bottom:394.946667pt;}
.y17_c02392{bottom:422.466667pt;}
.y16_c02392{bottom:450.146667pt;}
.y15_c02392{bottom:477.693333pt;}
.y14_c02392{bottom:505.373333pt;}
.y13_c02392{bottom:532.893333pt;}
.y12_c02392{bottom:560.573333pt;}
.y11_c02392{bottom:588.093333pt;}
.y10_c02392{bottom:615.773333pt;}
.yf_c02392{bottom:643.293333pt;}
.ye_c02392{bottom:670.973333pt;}
.yd_c02392{bottom:698.493333pt;}
.yc_c02392{bottom:726.213333pt;}
.yb_c02392{bottom:753.733333pt;}
.ya_c02392{bottom:781.413333pt;}
.y9_c02392{bottom:808.933333pt;}
.y8_c02392{bottom:836.613333pt;}
.y7_c02392{bottom:864.133333pt;}
.y6_c02392{bottom:891.813333pt;}
.y5_c02392{bottom:919.333333pt;}
.y4_c02392{bottom:947.040000pt;}
.h2_c02392{height:20.000000pt;}
.h1_c02392{height:43.441250pt;}
.h3_c02392{height:57.375000pt;}
.h4_c02392{height:62.812500pt;}
.h0_c02392{height:1056.000000pt;}
.w1_c02392{width:59.232000pt;}
.w0_c02392{width:816.000000pt;}
.x0_c02392{left:0.000000pt;}
.x3_c02392{left:14.720000pt;}
.x1_c02392{left:113.472000pt;}
.x4_c02392{left:166.266667pt;}
.x2_c02392{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02393 {
    display:none;
  }
  .loading-indicator_c02393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02393 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02393 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02393" -> "#page-container .classname_c02393")
 */
.pf_c02393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02393 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02393 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02393 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02393 {overflow:visible;}
  }
}
.c_c02393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02393 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02393:after { /* webkit #35443 */
  content: '';
}
.t_c02393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02393 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02393 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02393 { /* info for Javascript */
  display:none;
}
.l_c02393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02393:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02393 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02393.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02393;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02393{font-family:ff1_c02393;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02393;src:url('chunks/assets/font_875476ae64d4fe1fb61a7454.woff2')format("woff");}.ff2_c02393{font-family:ff2_c02393;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;}
.m0_c02393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02393{vertical-align:0.000000px;}
.ls0_c02393{letter-spacing:0.000000px;}
.sc__c02393{text-shadow:none;}
.sc0_c02393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02393{-webkit-text-stroke:0px transparent;}
.sc0_c02393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02393{word-spacing:0.000000px;}
._2_c02393{margin-left:-1.440000px;}
._1_c02393{width:1.584000px;}
._0_c02393{width:2.880000px;}
._3_c02393{width:4.968000px;}
._8_c02393{width:6.120000px;}
._9_c02393{width:7.128000px;}
._7_c02393{width:8.352000px;}
._6_c02393{width:9.432000px;}
._5_c02393{width:10.728000px;}
._4_c02393{width:11.736000px;}
._a_c02393{width:16.704000px;}
._d_c02393{width:25.344000px;}
._c_c02393{width:26.568000px;}
._b_c02393{width:27.576000px;}
.fc1_c02393{color:rgb(192,80,77);}
.fc2_c02393{color:rgb(17,17,17);}
.fc0_c02393{color:rgb(0,0,0);}
.fs0_c02393{font-size:66.240000px;}
.fs1_c02393{font-size:72.000000px;}
.y0_c02393{bottom:0.000000px;}
.y3_c02393{bottom:4.680000px;}
.y2_c02393{bottom:41.796000px;}
.y1_c02393{bottom:75.456000px;}
.y14_c02393{bottom:568.545000px;}
.y13_c02393{bottom:599.505000px;}
.y12_c02393{bottom:630.645000px;}
.y11_c02393{bottom:661.605000px;}
.y10_c02393{bottom:692.745000px;}
.yf_c02393{bottom:723.705000px;}
.ye_c02393{bottom:754.845000px;}
.yd_c02393{bottom:785.805000px;}
.yc_c02393{bottom:816.990000px;}
.yb_c02393{bottom:847.950000px;}
.ya_c02393{bottom:879.090000px;}
.y9_c02393{bottom:910.050000px;}
.y8_c02393{bottom:941.190000px;}
.y7_c02393{bottom:972.150000px;}
.y6_c02393{bottom:1003.290000px;}
.y5_c02393{bottom:1034.250000px;}
.y4_c02393{bottom:1065.420000px;}
.h2_c02393{height:22.500000px;}
.h1_c02393{height:48.871406px;}
.h3_c02393{height:70.664062px;}
.h0_c02393{height:1188.000000px;}
.w1_c02393{width:66.636000px;}
.w0_c02393{width:918.000000px;}
.x0_c02393{left:0.000000px;}
.x3_c02393{left:16.560000px;}
.x1_c02393{left:127.656000px;}
.x4_c02393{left:187.050000px;}
.x2_c02393{left:820.950000px;}
@media print{
.v0_c02393{vertical-align:0.000000pt;}
.ls0_c02393{letter-spacing:0.000000pt;}
.ws0_c02393{word-spacing:0.000000pt;}
._2_c02393{margin-left:-1.280000pt;}
._1_c02393{width:1.408000pt;}
._0_c02393{width:2.560000pt;}
._3_c02393{width:4.416000pt;}
._8_c02393{width:5.440000pt;}
._9_c02393{width:6.336000pt;}
._7_c02393{width:7.424000pt;}
._6_c02393{width:8.384000pt;}
._5_c02393{width:9.536000pt;}
._4_c02393{width:10.432000pt;}
._a_c02393{width:14.848000pt;}
._d_c02393{width:22.528000pt;}
._c_c02393{width:23.616000pt;}
._b_c02393{width:24.512000pt;}
.fs0_c02393{font-size:58.880000pt;}
.fs1_c02393{font-size:64.000000pt;}
.y0_c02393{bottom:0.000000pt;}
.y3_c02393{bottom:4.160000pt;}
.y2_c02393{bottom:37.152000pt;}
.y1_c02393{bottom:67.072000pt;}
.y14_c02393{bottom:505.373333pt;}
.y13_c02393{bottom:532.893333pt;}
.y12_c02393{bottom:560.573333pt;}
.y11_c02393{bottom:588.093333pt;}
.y10_c02393{bottom:615.773333pt;}
.yf_c02393{bottom:643.293333pt;}
.ye_c02393{bottom:670.973333pt;}
.yd_c02393{bottom:698.493333pt;}
.yc_c02393{bottom:726.213333pt;}
.yb_c02393{bottom:753.733333pt;}
.ya_c02393{bottom:781.413333pt;}
.y9_c02393{bottom:808.933333pt;}
.y8_c02393{bottom:836.613333pt;}
.y7_c02393{bottom:864.133333pt;}
.y6_c02393{bottom:891.813333pt;}
.y5_c02393{bottom:919.333333pt;}
.y4_c02393{bottom:947.040000pt;}
.h2_c02393{height:20.000000pt;}
.h1_c02393{height:43.441250pt;}
.h3_c02393{height:62.812500pt;}
.h0_c02393{height:1056.000000pt;}
.w1_c02393{width:59.232000pt;}
.w0_c02393{width:816.000000pt;}
.x0_c02393{left:0.000000pt;}
.x3_c02393{left:14.720000pt;}
.x1_c02393{left:113.472000pt;}
.x4_c02393{left:166.266667pt;}
.x2_c02393{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02394 {
    display:none;
  }
  .loading-indicator_c02394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02394 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02394 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02394" -> "#page-container .classname_c02394")
 */
.pf_c02394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02394 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02394 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02394 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02394 {overflow:visible;}
  }
}
.c_c02394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02394 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02394:after { /* webkit #35443 */
  content: '';
}
.t_c02394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02394 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02394 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02394 { /* info for Javascript */
  display:none;
}
.l_c02394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02394:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02394 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02394.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02394;src:url('chunks/assets/font_d4ded2c29fdc2bdf6f365143.woff2')format("woff");}.ff1_c02394{font-family:ff1_c02394;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02394;src:url('chunks/assets/font_bbc939c8785926dc35b18c34.woff2')format("woff");}.ff2_c02394{font-family:ff2_c02394;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:ff3_c02394;src:url('chunks/assets/font_85751a7fe27d9be739cf0273.woff2')format("woff");}.ff3_c02394{font-family:ff3_c02394;line-height:1.112305;font-style:normal;font-weight: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_c02394;src:url('chunks/assets/font_ea366c8459988746fff5dc21.woff2')format("woff");}.ff4_c02394{font-family:ff4_c02394;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02394{vertical-align:0.000000px;}
.ls2_c02394{letter-spacing:-1.056000px;}
.ls1_c02394{letter-spacing:-0.385800px;}
.ls0_c02394{letter-spacing:0.000000px;}
.sc__c02394{text-shadow:none;}
.sc0_c02394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02394{-webkit-text-stroke:0px transparent;}
.sc0_c02394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02394{word-spacing:-15.454200px;}
.ws1_c02394{word-spacing:-14.784000px;}
.ws2_c02394{word-spacing:0.000000px;}
._2_c02394{margin-left:-2.459393px;}
._0_c02394{margin-left:-1.080000px;}
._1_c02394{width:1.152000px;}
.fc1_c02394{color:rgb(192,80,77);}
.fc3_c02394{color:rgb(255,255,255);}
.fc2_c02394{color:rgb(17,17,17);}
.fc0_c02394{color:rgb(0,0,0);}
.fs2_c02394{font-size:63.360000px;}
.fs0_c02394{font-size:66.240000px;}
.fs1_c02394{font-size:72.000000px;}
.y0_c02394{bottom:0.000000px;}
.y16_c02394{bottom:3.420000px;}
.y12_c02394{bottom:3.600000px;}
.y2e_c02394{bottom:3.774000px;}
.yf_c02394{bottom:3.780000px;}
.y11_c02394{bottom:3.960000px;}
.y3_c02394{bottom:4.860000px;}
.yd_c02394{bottom:9.900000px;}
.y2f_c02394{bottom:21.594000px;}
.y2a_c02394{bottom:21.600000px;}
.y2d_c02394{bottom:21.954000px;}
.y29_c02394{bottom:21.960000px;}
.yc_c02394{bottom:28.080000px;}
.ye_c02394{bottom:28.260000px;}
.ya_c02394{bottom:28.620000px;}
.y9_c02394{bottom:46.800000px;}
.y2_c02394{bottom:52.416000px;}
.y1_c02394{bottom:75.456000px;}
.y2c_c02394{bottom:146.556000px;}
.y2b_c02394{bottom:183.450000px;}
.y28_c02394{bottom:202.350000px;}
.y27_c02394{bottom:239.295000px;}
.y26_c02394{bottom:258.195000px;}
.y25_c02394{bottom:277.095000px;}
.y24_c02394{bottom:295.995000px;}
.y23_c02394{bottom:314.715000px;}
.y22_c02394{bottom:333.615000px;}
.y21_c02394{bottom:352.515000px;}
.y20_c02394{bottom:371.415000px;}
.y1f_c02394{bottom:390.135000px;}
.y1e_c02394{bottom:409.035000px;}
.y1d_c02394{bottom:427.965000px;}
.y1c_c02394{bottom:446.865000px;}
.y1b_c02394{bottom:465.765000px;}
.y1a_c02394{bottom:484.485000px;}
.y19_c02394{bottom:503.385000px;}
.y18_c02394{bottom:522.285000px;}
.y17_c02394{bottom:541.185000px;}
.y15_c02394{bottom:560.085000px;}
.y14_c02394{bottom:578.805000px;}
.y13_c02394{bottom:597.705000px;}
.y10_c02394{bottom:616.605000px;}
.y8_c02394{bottom:635.550000px;}
.yb_c02394{bottom:654.270000px;}
.y7_c02394{bottom:711.870000px;}
.y6_c02394{bottom:732.750000px;}
.y5_c02394{bottom:753.450000px;}
.y4_c02394{bottom:774.150000px;}
.h8_c02394{height:18.000000px;}
.ha_c02394{height:18.180000px;}
.h9_c02394{height:18.216000px;}
.h2_c02394{height:22.680000px;}
.hc_c02394{height:36.180000px;}
.hb_c02394{height:36.216000px;}
.h6_c02394{height:42.300000px;}
.h1_c02394{height:48.871406px;}
.h4_c02394{height:61.020000px;}
.h5_c02394{height:62.184375px;}
.h7_c02394{height:63.855000px;}
.h3_c02394{height:70.664062px;}
.h0_c02394{height:918.000000px;}
.w6_c02394{width:52.380000px;}
.w8_c02394{width:52.560000px;}
.w7_c02394{width:63.036000px;}
.w5_c02394{width:63.180000px;}
.w1_c02394{width:66.780000px;}
.w4_c02394{width:73.800000px;}
.w3_c02394{width:286.410000px;}
.w2_c02394{width:585.795000px;}
.w0_c02394{width:1188.000000px;}
.x0_c02394{left:0.000000px;}
.x15_c02394{left:7.740000px;}
.x10_c02394{left:9.360000px;}
.x17_c02394{left:10.440000px;}
.x12_c02394{left:14.760000px;}
.x3_c02394{left:16.560000px;}
.x2b_c02394{left:18.180000px;}
.x30_c02394{left:21.060000px;}
.x1a_c02394{left:22.140000px;}
.x31_c02394{left:24.120000px;}
.x34_c02394{left:26.100000px;}
.x19_c02394{left:27.540000px;}
.x1b_c02394{left:28.980000px;}
.x33_c02394{left:31.500000px;}
.x1d_c02394{left:32.940000px;}
.xf_c02394{left:36.900000px;}
.x2a_c02394{left:39.780000px;}
.x35_c02394{left:41.220000px;}
.x23_c02394{left:42.840000px;}
.x25_c02394{left:46.440000px;}
.x28_c02394{left:53.640000px;}
.xd_c02394{left:60.480000px;}
.x2d_c02394{left:63.900000px;}
.x24_c02394{left:65.880000px;}
.x2f_c02394{left:67.680000px;}
.xc_c02394{left:72.180000px;}
.x20_c02394{left:75.960000px;}
.x2e_c02394{left:82.080000px;}
.x1f_c02394{left:83.340000px;}
.x27_c02394{left:91.620000px;}
.x29_c02394{left:95.580000px;}
.x26_c02394{left:100.080000px;}
.x2c_c02394{left:102.600000px;}
.x1_c02394{left:106.200000px;}
.x18_c02394{left:113.220000px;}
.x1e_c02394{left:123.660000px;}
.x22_c02394{left:125.280000px;}
.x21_c02394{left:149.580000px;}
.x1c_c02394{left:152.640000px;}
.x8_c02394{left:158.070000px;}
.x36_c02394{left:169.380000px;}
.x32_c02394{left:243.045000px;}
.xa_c02394{left:256.905000px;}
.x9_c02394{left:292.725000px;}
.x6_c02394{left:427.215000px;}
.x5_c02394{left:431.175000px;}
.x4_c02394{left:574.995000px;}
.x7_c02394{left:623.595000px;}
.xb_c02394{left:744.585000px;}
.x11_c02394{left:808.485000px;}
.x13_c02394{left:861.585000px;}
.x14_c02394{left:925.350000px;}
.x16_c02394{left:978.630000px;}
.xe_c02394{left:1031.730000px;}
.x2_c02394{left:1101.570000px;}
@media print{
.v0_c02394{vertical-align:0.000000pt;}
.ls2_c02394{letter-spacing:-0.938667pt;}
.ls1_c02394{letter-spacing:-0.342933pt;}
.ls0_c02394{letter-spacing:0.000000pt;}
.ws0_c02394{word-spacing:-13.737067pt;}
.ws1_c02394{word-spacing:-13.141333pt;}
.ws2_c02394{word-spacing:0.000000pt;}
._2_c02394{margin-left:-2.186127pt;}
._0_c02394{margin-left:-0.960000pt;}
._1_c02394{width:1.024000pt;}
.fs2_c02394{font-size:56.320000pt;}
.fs0_c02394{font-size:58.880000pt;}
.fs1_c02394{font-size:64.000000pt;}
.y0_c02394{bottom:0.000000pt;}
.y16_c02394{bottom:3.040000pt;}
.y12_c02394{bottom:3.200000pt;}
.y2e_c02394{bottom:3.354667pt;}
.yf_c02394{bottom:3.360000pt;}
.y11_c02394{bottom:3.520000pt;}
.y3_c02394{bottom:4.320000pt;}
.yd_c02394{bottom:8.800000pt;}
.y2f_c02394{bottom:19.194667pt;}
.y2a_c02394{bottom:19.200000pt;}
.y2d_c02394{bottom:19.514667pt;}
.y29_c02394{bottom:19.520000pt;}
.yc_c02394{bottom:24.960000pt;}
.ye_c02394{bottom:25.120000pt;}
.ya_c02394{bottom:25.440000pt;}
.y9_c02394{bottom:41.600000pt;}
.y2_c02394{bottom:46.592000pt;}
.y1_c02394{bottom:67.072000pt;}
.y2c_c02394{bottom:130.272000pt;}
.y2b_c02394{bottom:163.066667pt;}
.y28_c02394{bottom:179.866667pt;}
.y27_c02394{bottom:212.706667pt;}
.y26_c02394{bottom:229.506667pt;}
.y25_c02394{bottom:246.306667pt;}
.y24_c02394{bottom:263.106667pt;}
.y23_c02394{bottom:279.746667pt;}
.y22_c02394{bottom:296.546667pt;}
.y21_c02394{bottom:313.346667pt;}
.y20_c02394{bottom:330.146667pt;}
.y1f_c02394{bottom:346.786667pt;}
.y1e_c02394{bottom:363.586667pt;}
.y1d_c02394{bottom:380.413333pt;}
.y1c_c02394{bottom:397.213333pt;}
.y1b_c02394{bottom:414.013333pt;}
.y1a_c02394{bottom:430.653333pt;}
.y19_c02394{bottom:447.453333pt;}
.y18_c02394{bottom:464.253333pt;}
.y17_c02394{bottom:481.053333pt;}
.y15_c02394{bottom:497.853333pt;}
.y14_c02394{bottom:514.493333pt;}
.y13_c02394{bottom:531.293333pt;}
.y10_c02394{bottom:548.093333pt;}
.y8_c02394{bottom:564.933333pt;}
.yb_c02394{bottom:581.573333pt;}
.y7_c02394{bottom:632.773333pt;}
.y6_c02394{bottom:651.333333pt;}
.y5_c02394{bottom:669.733333pt;}
.y4_c02394{bottom:688.133333pt;}
.h8_c02394{height:16.000000pt;}
.ha_c02394{height:16.160000pt;}
.h9_c02394{height:16.192000pt;}
.h2_c02394{height:20.160000pt;}
.hc_c02394{height:32.160000pt;}
.hb_c02394{height:32.192000pt;}
.h6_c02394{height:37.600000pt;}
.h1_c02394{height:43.441250pt;}
.h4_c02394{height:54.240000pt;}
.h5_c02394{height:55.275000pt;}
.h7_c02394{height:56.760000pt;}
.h3_c02394{height:62.812500pt;}
.h0_c02394{height:816.000000pt;}
.w6_c02394{width:46.560000pt;}
.w8_c02394{width:46.720000pt;}
.w7_c02394{width:56.032000pt;}
.w5_c02394{width:56.160000pt;}
.w1_c02394{width:59.360000pt;}
.w4_c02394{width:65.600000pt;}
.w3_c02394{width:254.586667pt;}
.w2_c02394{width:520.706667pt;}
.w0_c02394{width:1056.000000pt;}
.x0_c02394{left:0.000000pt;}
.x15_c02394{left:6.880000pt;}
.x10_c02394{left:8.320000pt;}
.x17_c02394{left:9.280000pt;}
.x12_c02394{left:13.120000pt;}
.x3_c02394{left:14.720000pt;}
.x2b_c02394{left:16.160000pt;}
.x30_c02394{left:18.720000pt;}
.x1a_c02394{left:19.680000pt;}
.x31_c02394{left:21.440000pt;}
.x34_c02394{left:23.200000pt;}
.x19_c02394{left:24.480000pt;}
.x1b_c02394{left:25.760000pt;}
.x33_c02394{left:28.000000pt;}
.x1d_c02394{left:29.280000pt;}
.xf_c02394{left:32.800000pt;}
.x2a_c02394{left:35.360000pt;}
.x35_c02394{left:36.640000pt;}
.x23_c02394{left:38.080000pt;}
.x25_c02394{left:41.280000pt;}
.x28_c02394{left:47.680000pt;}
.xd_c02394{left:53.760000pt;}
.x2d_c02394{left:56.800000pt;}
.x24_c02394{left:58.560000pt;}
.x2f_c02394{left:60.160000pt;}
.xc_c02394{left:64.160000pt;}
.x20_c02394{left:67.520000pt;}
.x2e_c02394{left:72.960000pt;}
.x1f_c02394{left:74.080000pt;}
.x27_c02394{left:81.440000pt;}
.x29_c02394{left:84.960000pt;}
.x26_c02394{left:88.960000pt;}
.x2c_c02394{left:91.200000pt;}
.x1_c02394{left:94.400000pt;}
.x18_c02394{left:100.640000pt;}
.x1e_c02394{left:109.920000pt;}
.x22_c02394{left:111.360000pt;}
.x21_c02394{left:132.960000pt;}
.x1c_c02394{left:135.680000pt;}
.x8_c02394{left:140.506667pt;}
.x36_c02394{left:150.560000pt;}
.x32_c02394{left:216.040000pt;}
.xa_c02394{left:228.360000pt;}
.x9_c02394{left:260.200000pt;}
.x6_c02394{left:379.746667pt;}
.x5_c02394{left:383.266667pt;}
.x4_c02394{left:511.106667pt;}
.x7_c02394{left:554.306667pt;}
.xb_c02394{left:661.853333pt;}
.x11_c02394{left:718.653333pt;}
.x13_c02394{left:765.853333pt;}
.x14_c02394{left:822.533333pt;}
.x16_c02394{left:869.893333pt;}
.xe_c02394{left:917.093333pt;}
.x2_c02394{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02395 {
    display:none;
  }
  .loading-indicator_c02395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02395 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02395 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02395" -> "#page-container .classname_c02395")
 */
.pf_c02395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02395 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02395 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02395 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02395 {overflow:visible;}
  }
}
.c_c02395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02395 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02395:after { /* webkit #35443 */
  content: '';
}
.t_c02395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02395 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02395 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02395 { /* info for Javascript */
  display:none;
}
.l_c02395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02395:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02395 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02395.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02395;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02395{font-family:ff1_c02395;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02395;src:url('chunks/assets/font_ee5f083ad38d296cf69997ec.woff2')format("woff");}.ff2_c02395{font-family:ff2_c02395;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:ff3_c02395;src:url('chunks/assets/font_2d529f568a71f8879849ac9b.woff2')format("woff");}.ff3_c02395{font-family:ff3_c02395;line-height:1.311035;font-style:normal;font-weight: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_c02395;src:url('chunks/assets/font_a6acd1a5f7db5d29cf2ca6c9.woff2')format("woff");}.ff4_c02395{font-family:ff4_c02395;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02395{vertical-align:0.000000px;}
.ls0_c02395{letter-spacing:0.000000px;}
.sc__c02395{text-shadow:none;}
.sc0_c02395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02395{-webkit-text-stroke:0px transparent;}
.sc0_c02395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02395{word-spacing:0.000000px;}
._0_c02395{margin-left:-1.203587px;}
._4_c02395{width:1.044000px;}
._6_c02395{width:2.249933px;}
._2_c02395{width:3.288000px;}
._5_c02395{width:4.695587px;}
._1_c02395{width:8.568000px;}
._3_c02395{width:9.864000px;}
.fc1_c02395{color:rgb(192,80,77);}
.fc2_c02395{color:rgb(17,17,17);}
.fc0_c02395{color:rgb(0,0,0);}
.fs1_c02395{font-size:63.360000px;}
.fs0_c02395{font-size:66.240000px;}
.fs2_c02395{font-size:72.000000px;}
.y0_c02395{bottom:0.000000px;}
.yc_c02395{bottom:3.420000px;}
.y6_c02395{bottom:3.600000px;}
.yb_c02395{bottom:3.780000px;}
.y5_c02395{bottom:3.960000px;}
.y3_c02395{bottom:4.860000px;}
.y9_c02395{bottom:21.600000px;}
.y8_c02395{bottom:21.960000px;}
.y2_c02395{bottom:52.416000px;}
.y1_c02395{bottom:75.456000px;}
.y12_c02395{bottom:580.785000px;}
.y11_c02395{bottom:601.485000px;}
.y10_c02395{bottom:622.185000px;}
.yf_c02395{bottom:642.930000px;}
.ye_c02395{bottom:659.850000px;}
.yd_c02395{bottom:678.750000px;}
.ya_c02395{bottom:697.650000px;}
.y7_c02395{bottom:734.550000px;}
.y4_c02395{bottom:771.450000px;}
.h3_c02395{height:18.180000px;}
.h2_c02395{height:22.680000px;}
.h6_c02395{height:36.180000px;}
.h1_c02395{height:48.871406px;}
.h4_c02395{height:62.184375px;}
.h5_c02395{height:63.855000px;}
.h7_c02395{height:70.664062px;}
.h0_c02395{height:918.000000px;}
.w4_c02395{width:52.380000px;}
.w6_c02395{width:52.560000px;}
.w5_c02395{width:63.036000px;}
.w3_c02395{width:63.180000px;}
.w1_c02395{width:66.780000px;}
.w7_c02395{width:73.800000px;}
.w2_c02395{width:585.795000px;}
.w0_c02395{width:1188.000000px;}
.x0_c02395{left:0.000000px;}
.x3_c02395{left:16.560000px;}
.x16_c02395{left:18.180000px;}
.x9_c02395{left:22.140000px;}
.x15_c02395{left:23.580000px;}
.x11_c02395{left:26.100000px;}
.x7_c02395{left:27.540000px;}
.x17_c02395{left:28.980000px;}
.xf_c02395{left:31.320000px;}
.xe_c02395{left:32.940000px;}
.x12_c02395{left:36.900000px;}
.x5_c02395{left:58.860000px;}
.x10_c02395{left:61.380000px;}
.x1_c02395{left:106.200000px;}
.x13_c02395{left:151.560000px;}
.x18_c02395{left:153.030000px;}
.x4_c02395{left:158.070000px;}
.x14_c02395{left:265.185000px;}
.x6_c02395{left:744.585000px;}
.x8_c02395{left:808.485000px;}
.xa_c02395{left:861.585000px;}
.xb_c02395{left:925.350000px;}
.xc_c02395{left:978.630000px;}
.xd_c02395{left:1031.730000px;}
.x2_c02395{left:1101.570000px;}
@media print{
.v0_c02395{vertical-align:0.000000pt;}
.ls0_c02395{letter-spacing:0.000000pt;}
.ws0_c02395{word-spacing:0.000000pt;}
._0_c02395{margin-left:-1.069855pt;}
._4_c02395{width:0.928000pt;}
._6_c02395{width:1.999940pt;}
._2_c02395{width:2.922667pt;}
._5_c02395{width:4.173855pt;}
._1_c02395{width:7.616000pt;}
._3_c02395{width:8.768000pt;}
.fs1_c02395{font-size:56.320000pt;}
.fs0_c02395{font-size:58.880000pt;}
.fs2_c02395{font-size:64.000000pt;}
.y0_c02395{bottom:0.000000pt;}
.yc_c02395{bottom:3.040000pt;}
.y6_c02395{bottom:3.200000pt;}
.yb_c02395{bottom:3.360000pt;}
.y5_c02395{bottom:3.520000pt;}
.y3_c02395{bottom:4.320000pt;}
.y9_c02395{bottom:19.200000pt;}
.y8_c02395{bottom:19.520000pt;}
.y2_c02395{bottom:46.592000pt;}
.y1_c02395{bottom:67.072000pt;}
.y12_c02395{bottom:516.253333pt;}
.y11_c02395{bottom:534.653333pt;}
.y10_c02395{bottom:553.053333pt;}
.yf_c02395{bottom:571.493333pt;}
.ye_c02395{bottom:586.533333pt;}
.yd_c02395{bottom:603.333333pt;}
.ya_c02395{bottom:620.133333pt;}
.y7_c02395{bottom:652.933333pt;}
.y4_c02395{bottom:685.733333pt;}
.h3_c02395{height:16.160000pt;}
.h2_c02395{height:20.160000pt;}
.h6_c02395{height:32.160000pt;}
.h1_c02395{height:43.441250pt;}
.h4_c02395{height:55.275000pt;}
.h5_c02395{height:56.760000pt;}
.h7_c02395{height:62.812500pt;}
.h0_c02395{height:816.000000pt;}
.w4_c02395{width:46.560000pt;}
.w6_c02395{width:46.720000pt;}
.w5_c02395{width:56.032000pt;}
.w3_c02395{width:56.160000pt;}
.w1_c02395{width:59.360000pt;}
.w7_c02395{width:65.600000pt;}
.w2_c02395{width:520.706667pt;}
.w0_c02395{width:1056.000000pt;}
.x0_c02395{left:0.000000pt;}
.x3_c02395{left:14.720000pt;}
.x16_c02395{left:16.160000pt;}
.x9_c02395{left:19.680000pt;}
.x15_c02395{left:20.960000pt;}
.x11_c02395{left:23.200000pt;}
.x7_c02395{left:24.480000pt;}
.x17_c02395{left:25.760000pt;}
.xf_c02395{left:27.840000pt;}
.xe_c02395{left:29.280000pt;}
.x12_c02395{left:32.800000pt;}
.x5_c02395{left:52.320000pt;}
.x10_c02395{left:54.560000pt;}
.x1_c02395{left:94.400000pt;}
.x13_c02395{left:134.720000pt;}
.x18_c02395{left:136.026667pt;}
.x4_c02395{left:140.506667pt;}
.x14_c02395{left:235.720000pt;}
.x6_c02395{left:661.853333pt;}
.x8_c02395{left:718.653333pt;}
.xa_c02395{left:765.853333pt;}
.xb_c02395{left:822.533333pt;}
.xc_c02395{left:869.893333pt;}
.xd_c02395{left:917.093333pt;}
.x2_c02395{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02396 {
    display:none;
  }
  .loading-indicator_c02396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02396 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02396 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02396" -> "#page-container .classname_c02396")
 */
.pf_c02396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02396 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02396 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02396 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02396 {overflow:visible;}
  }
}
.c_c02396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02396 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02396:after { /* webkit #35443 */
  content: '';
}
.t_c02396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02396 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02396 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02396 { /* info for Javascript */
  display:none;
}
.l_c02396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02396:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02396 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02396.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02396;src:url('chunks/assets/font_8dc2d45fb4c3425b49abd944.woff2')format("woff");}.ff1_c02396{font-family:ff1_c02396;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02396;src:url('chunks/assets/font_5fb1a4831b843da77a55e1c4.woff2')format("woff");}.ff2_c02396{font-family:ff2_c02396;line-height:1.112305;font-style:normal;font-weight: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_c02396;src:url('chunks/assets/font_610edcd68a8e8f6538c9655d.woff2')format("woff");}.ff3_c02396{font-family:ff3_c02396;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;}
.m0_c02396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02396{vertical-align:0.000000px;}
.ls0_c02396{letter-spacing:0.000000px;}
.ls1_c02396{letter-spacing:0.256200px;}
.sc__c02396{text-shadow:none;}
.sc0_c02396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02396{-webkit-text-stroke:0px transparent;}
.sc0_c02396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02396{word-spacing:-15.226440px;}
.ws1_c02396{word-spacing:0.000000px;}
._10_c02396{margin-left:-2.734560px;}
._0_c02396{margin-left:-1.439520px;}
._2_c02396{width:1.152000px;}
._5_c02396{width:2.232000px;}
._c_c02396{width:3.396000px;}
._f_c02396{width:5.327520px;}
._11_c02396{width:6.335520px;}
._1_c02396{width:7.416000px;}
._3_c02396{width:8.424000px;}
._4_c02396{width:10.008000px;}
._17_c02396{width:11.372640px;}
._14_c02396{width:12.528480px;}
._13_c02396{width:13.607520px;}
._d_c02396{width:15.264000px;}
._e_c02396{width:16.488000px;}
._12_c02396{width:21.384000px;}
._b_c02396{width:23.471040px;}
._6_c02396{width:24.768000px;}
._7_c02396{width:25.848000px;}
._8_c02396{width:26.940000px;}
._16_c02396{width:28.583520px;}
._15_c02396{width:30.312000px;}
._19_c02396{width:45.792000px;}
._18_c02396{width:47.303520px;}
._9_c02396{width:83.448000px;}
._a_c02396{width:84.528000px;}
.fc1_c02396{color:rgb(192,80,77);}
.fc2_c02396{color:rgb(17,17,17);}
.fc0_c02396{color:rgb(0,0,0);}
.fs0_c02396{font-size:66.240000px;}
.fs1_c02396{font-size:72.000000px;}
.y0_c02396{bottom:0.000000px;}
.y3_c02396{bottom:4.680000px;}
.y2_c02396{bottom:41.796000px;}
.y1_c02396{bottom:75.456000px;}
.y22_c02396{bottom:133.776000px;}
.y21_c02396{bottom:164.910000px;}
.y20_c02396{bottom:195.870000px;}
.y1f_c02396{bottom:226.830000px;}
.y1e_c02396{bottom:257.970000px;}
.y1d_c02396{bottom:288.975000px;}
.y1c_c02396{bottom:320.115000px;}
.y1b_c02396{bottom:351.075000px;}
.y1a_c02396{bottom:382.215000px;}
.y19_c02396{bottom:413.175000px;}
.y18_c02396{bottom:444.315000px;}
.y17_c02396{bottom:475.275000px;}
.y16_c02396{bottom:506.415000px;}
.y15_c02396{bottom:537.405000px;}
.y14_c02396{bottom:568.545000px;}
.y13_c02396{bottom:599.505000px;}
.y12_c02396{bottom:630.645000px;}
.y11_c02396{bottom:661.605000px;}
.y10_c02396{bottom:692.745000px;}
.yf_c02396{bottom:723.705000px;}
.ye_c02396{bottom:754.845000px;}
.yd_c02396{bottom:785.805000px;}
.yc_c02396{bottom:816.990000px;}
.yb_c02396{bottom:847.950000px;}
.ya_c02396{bottom:879.090000px;}
.y9_c02396{bottom:910.050000px;}
.y8_c02396{bottom:941.190000px;}
.y7_c02396{bottom:972.150000px;}
.y6_c02396{bottom:1003.290000px;}
.y5_c02396{bottom:1034.250000px;}
.y4_c02396{bottom:1065.420000px;}
.h2_c02396{height:22.500000px;}
.h1_c02396{height:48.871406px;}
.h3_c02396{height:64.546875px;}
.h4_c02396{height:70.664062px;}
.h0_c02396{height:1188.000000px;}
.w1_c02396{width:66.636000px;}
.w0_c02396{width:918.000000px;}
.x0_c02396{left:0.000000px;}
.x3_c02396{left:16.560000px;}
.x1_c02396{left:127.656000px;}
.x4_c02396{left:187.050000px;}
.x2_c02396{left:820.950000px;}
@media print{
.v0_c02396{vertical-align:0.000000pt;}
.ls0_c02396{letter-spacing:0.000000pt;}
.ls1_c02396{letter-spacing:0.227733pt;}
.ws0_c02396{word-spacing:-13.534613pt;}
.ws1_c02396{word-spacing:0.000000pt;}
._10_c02396{margin-left:-2.430720pt;}
._0_c02396{margin-left:-1.279573pt;}
._2_c02396{width:1.024000pt;}
._5_c02396{width:1.984000pt;}
._c_c02396{width:3.018667pt;}
._f_c02396{width:4.735573pt;}
._11_c02396{width:5.631573pt;}
._1_c02396{width:6.592000pt;}
._3_c02396{width:7.488000pt;}
._4_c02396{width:8.896000pt;}
._17_c02396{width:10.109013pt;}
._14_c02396{width:11.136427pt;}
._13_c02396{width:12.095573pt;}
._d_c02396{width:13.568000pt;}
._e_c02396{width:14.656000pt;}
._12_c02396{width:19.008000pt;}
._b_c02396{width:20.863147pt;}
._6_c02396{width:22.016000pt;}
._7_c02396{width:22.976000pt;}
._8_c02396{width:23.946667pt;}
._16_c02396{width:25.407573pt;}
._15_c02396{width:26.944000pt;}
._19_c02396{width:40.704000pt;}
._18_c02396{width:42.047573pt;}
._9_c02396{width:74.176000pt;}
._a_c02396{width:75.136000pt;}
.fs0_c02396{font-size:58.880000pt;}
.fs1_c02396{font-size:64.000000pt;}
.y0_c02396{bottom:0.000000pt;}
.y3_c02396{bottom:4.160000pt;}
.y2_c02396{bottom:37.152000pt;}
.y1_c02396{bottom:67.072000pt;}
.y22_c02396{bottom:118.912000pt;}
.y21_c02396{bottom:146.586667pt;}
.y20_c02396{bottom:174.106667pt;}
.y1f_c02396{bottom:201.626667pt;}
.y1e_c02396{bottom:229.306667pt;}
.y1d_c02396{bottom:256.866667pt;}
.y1c_c02396{bottom:284.546667pt;}
.y1b_c02396{bottom:312.066667pt;}
.y1a_c02396{bottom:339.746667pt;}
.y19_c02396{bottom:367.266667pt;}
.y18_c02396{bottom:394.946667pt;}
.y17_c02396{bottom:422.466667pt;}
.y16_c02396{bottom:450.146667pt;}
.y15_c02396{bottom:477.693333pt;}
.y14_c02396{bottom:505.373333pt;}
.y13_c02396{bottom:532.893333pt;}
.y12_c02396{bottom:560.573333pt;}
.y11_c02396{bottom:588.093333pt;}
.y10_c02396{bottom:615.773333pt;}
.yf_c02396{bottom:643.293333pt;}
.ye_c02396{bottom:670.973333pt;}
.yd_c02396{bottom:698.493333pt;}
.yc_c02396{bottom:726.213333pt;}
.yb_c02396{bottom:753.733333pt;}
.ya_c02396{bottom:781.413333pt;}
.y9_c02396{bottom:808.933333pt;}
.y8_c02396{bottom:836.613333pt;}
.y7_c02396{bottom:864.133333pt;}
.y6_c02396{bottom:891.813333pt;}
.y5_c02396{bottom:919.333333pt;}
.y4_c02396{bottom:947.040000pt;}
.h2_c02396{height:20.000000pt;}
.h1_c02396{height:43.441250pt;}
.h3_c02396{height:57.375000pt;}
.h4_c02396{height:62.812500pt;}
.h0_c02396{height:1056.000000pt;}
.w1_c02396{width:59.232000pt;}
.w0_c02396{width:816.000000pt;}
.x0_c02396{left:0.000000pt;}
.x3_c02396{left:14.720000pt;}
.x1_c02396{left:113.472000pt;}
.x4_c02396{left:166.266667pt;}
.x2_c02396{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02397 {
    display:none;
  }
  .loading-indicator_c02397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02397 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02397 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02397" -> "#page-container .classname_c02397")
 */
.pf_c02397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02397 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02397 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02397 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02397 {overflow:visible;}
  }
}
.c_c02397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02397 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02397:after { /* webkit #35443 */
  content: '';
}
.t_c02397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02397 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02397 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02397 { /* info for Javascript */
  display:none;
}
.l_c02397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02397:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02397 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02397.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02397;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02397{font-family:ff1_c02397;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02397;src:url('chunks/assets/font_3d0ef13692e10c0c37952c7d.woff2')format("woff");}.ff2_c02397{font-family:ff2_c02397;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:ff3_c02397;src:url('chunks/assets/font_ab445c82fa02e4ba78b4cc14.woff2')format("woff");}.ff3_c02397{font-family:ff3_c02397;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02397{vertical-align:0.000000px;}
.ls0_c02397{letter-spacing:0.000000px;}
.sc__c02397{text-shadow:none;}
.sc0_c02397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02397{-webkit-text-stroke:0px transparent;}
.sc0_c02397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02397{word-spacing:0.000000px;}
._9_c02397{margin-left:-2.304000px;}
._0_c02397{margin-left:-1.008000px;}
._5_c02397{width:1.152000px;}
._4_c02397{width:2.232000px;}
._3_c02397{width:3.672000px;}
._a_c02397{width:4.896000px;}
._8_c02397{width:6.048000px;}
._1_c02397{width:10.800000px;}
._2_c02397{width:11.964000px;}
._6_c02397{width:13.548000px;}
._7_c02397{width:14.604000px;}
._d_c02397{width:29.376000px;}
._e_c02397{width:31.392000px;}
._c_c02397{width:40.104000px;}
._b_c02397{width:41.328000px;}
._f_c02397{width:45.288000px;}
._10_c02397{width:46.512000px;}
.fc1_c02397{color:rgb(192,80,77);}
.fc0_c02397{color:rgb(0,0,0);}
.fs0_c02397{font-size:66.240000px;}
.fs1_c02397{font-size:72.000000px;}
.y0_c02397{bottom:0.000000px;}
.y3_c02397{bottom:4.680000px;}
.y2_c02397{bottom:41.796000px;}
.y1_c02397{bottom:75.456000px;}
.y14_c02397{bottom:568.545000px;}
.y13_c02397{bottom:599.505000px;}
.y12_c02397{bottom:630.645000px;}
.y11_c02397{bottom:661.605000px;}
.y10_c02397{bottom:692.745000px;}
.yf_c02397{bottom:723.705000px;}
.ye_c02397{bottom:754.845000px;}
.yd_c02397{bottom:785.805000px;}
.yc_c02397{bottom:816.990000px;}
.yb_c02397{bottom:847.950000px;}
.ya_c02397{bottom:879.090000px;}
.y9_c02397{bottom:910.050000px;}
.y8_c02397{bottom:941.190000px;}
.y7_c02397{bottom:972.150000px;}
.y6_c02397{bottom:1003.290000px;}
.y5_c02397{bottom:1034.250000px;}
.y4_c02397{bottom:1065.420000px;}
.h2_c02397{height:22.500000px;}
.h1_c02397{height:48.871406px;}
.h4_c02397{height:64.546875px;}
.h3_c02397{height:70.664062px;}
.h0_c02397{height:1188.000000px;}
.w1_c02397{width:66.636000px;}
.w0_c02397{width:918.000000px;}
.x0_c02397{left:0.000000px;}
.x3_c02397{left:16.560000px;}
.x1_c02397{left:127.656000px;}
.x4_c02397{left:187.050000px;}
.x2_c02397{left:820.950000px;}
@media print{
.v0_c02397{vertical-align:0.000000pt;}
.ls0_c02397{letter-spacing:0.000000pt;}
.ws0_c02397{word-spacing:0.000000pt;}
._9_c02397{margin-left:-2.048000pt;}
._0_c02397{margin-left:-0.896000pt;}
._5_c02397{width:1.024000pt;}
._4_c02397{width:1.984000pt;}
._3_c02397{width:3.264000pt;}
._a_c02397{width:4.352000pt;}
._8_c02397{width:5.376000pt;}
._1_c02397{width:9.600000pt;}
._2_c02397{width:10.634667pt;}
._6_c02397{width:12.042667pt;}
._7_c02397{width:12.981333pt;}
._d_c02397{width:26.112000pt;}
._e_c02397{width:27.904000pt;}
._c_c02397{width:35.648000pt;}
._b_c02397{width:36.736000pt;}
._f_c02397{width:40.256000pt;}
._10_c02397{width:41.344000pt;}
.fs0_c02397{font-size:58.880000pt;}
.fs1_c02397{font-size:64.000000pt;}
.y0_c02397{bottom:0.000000pt;}
.y3_c02397{bottom:4.160000pt;}
.y2_c02397{bottom:37.152000pt;}
.y1_c02397{bottom:67.072000pt;}
.y14_c02397{bottom:505.373333pt;}
.y13_c02397{bottom:532.893333pt;}
.y12_c02397{bottom:560.573333pt;}
.y11_c02397{bottom:588.093333pt;}
.y10_c02397{bottom:615.773333pt;}
.yf_c02397{bottom:643.293333pt;}
.ye_c02397{bottom:670.973333pt;}
.yd_c02397{bottom:698.493333pt;}
.yc_c02397{bottom:726.213333pt;}
.yb_c02397{bottom:753.733333pt;}
.ya_c02397{bottom:781.413333pt;}
.y9_c02397{bottom:808.933333pt;}
.y8_c02397{bottom:836.613333pt;}
.y7_c02397{bottom:864.133333pt;}
.y6_c02397{bottom:891.813333pt;}
.y5_c02397{bottom:919.333333pt;}
.y4_c02397{bottom:947.040000pt;}
.h2_c02397{height:20.000000pt;}
.h1_c02397{height:43.441250pt;}
.h4_c02397{height:57.375000pt;}
.h3_c02397{height:62.812500pt;}
.h0_c02397{height:1056.000000pt;}
.w1_c02397{width:59.232000pt;}
.w0_c02397{width:816.000000pt;}
.x0_c02397{left:0.000000pt;}
.x3_c02397{left:14.720000pt;}
.x1_c02397{left:113.472000pt;}
.x4_c02397{left:166.266667pt;}
.x2_c02397{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02398 {
    display:none;
  }
  .loading-indicator_c02398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02398 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02398 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02398" -> "#page-container .classname_c02398")
 */
.pf_c02398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02398 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02398 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02398 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02398 {overflow:visible;}
  }
}
.c_c02398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02398 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02398:after { /* webkit #35443 */
  content: '';
}
.t_c02398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02398 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02398 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02398 { /* info for Javascript */
  display:none;
}
.l_c02398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02398:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02398 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02398.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02398;src:url('chunks/assets/font_371e75858281c911a8ed40c9.woff2')format("woff");}.ff1_c02398{font-family:ff1_c02398;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02398;src:url('chunks/assets/font_567a1cff687948e2bf03a926.woff2')format("woff");}.ff2_c02398{font-family:ff2_c02398;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:ff3_c02398;src:url('chunks/assets/font_241cee0d36daaf3d58a1fbb6.woff2')format("woff");}.ff3_c02398{font-family:ff3_c02398;line-height:1.112305;font-style:normal;font-weight: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_c02398;src:url('chunks/assets/font_78e9f4f0d4a60d14b0122c29.woff2')format("woff");}.ff4_c02398{font-family:ff4_c02398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02398{vertical-align:0.000000px;}
.ls2_c02398{letter-spacing:-0.385800px;}
.ls1_c02398{letter-spacing:0.000000px;}
.ls0_c02398{letter-spacing:0.334080px;}
.sc__c02398{text-shadow:none;}
.sc0_c02398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02398{-webkit-text-stroke:0px transparent;}
.sc0_c02398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02398{word-spacing:-15.454200px;}
.ws1_c02398{word-spacing:0.000000px;}
._0_c02398{margin-left:-1.260000px;}
._1_c02398{width:1.092000px;}
.fc1_c02398{color:rgb(192,80,77);}
.fc3_c02398{color:rgb(255,255,255);}
.fc2_c02398{color:rgb(17,17,17);}
.fc0_c02398{color:rgb(0,0,0);}
.fs2_c02398{font-size:63.360000px;}
.fs0_c02398{font-size:66.240000px;}
.fs1_c02398{font-size:72.000000px;}
.y0_c02398{bottom:0.000000px;}
.y13_c02398{bottom:3.420000px;}
.y20_c02398{bottom:3.450000px;}
.y10_c02398{bottom:3.600000px;}
.y12_c02398{bottom:3.780000px;}
.y1f_c02398{bottom:3.810000px;}
.ye_c02398{bottom:3.960000px;}
.y3_c02398{bottom:4.860000px;}
.yc_c02398{bottom:9.720000px;}
.y18_c02398{bottom:21.600000px;}
.y1d_c02398{bottom:21.780000px;}
.y17_c02398{bottom:21.960000px;}
.y1c_c02398{bottom:22.140000px;}
.yb_c02398{bottom:27.900000px;}
.yd_c02398{bottom:28.260000px;}
.y9_c02398{bottom:28.620000px;}
.y8_c02398{bottom:46.800000px;}
.y2_c02398{bottom:52.416000px;}
.y1_c02398{bottom:75.456000px;}
.y2f_c02398{bottom:141.336000px;}
.y2e_c02398{bottom:160.230000px;}
.y2d_c02398{bottom:178.950000px;}
.y2c_c02398{bottom:197.850000px;}
.y2b_c02398{bottom:216.750000px;}
.y2a_c02398{bottom:235.695000px;}
.y29_c02398{bottom:254.595000px;}
.y28_c02398{bottom:273.315000px;}
.y27_c02398{bottom:292.215000px;}
.y26_c02398{bottom:311.115000px;}
.y25_c02398{bottom:330.015000px;}
.y24_c02398{bottom:348.915000px;}
.y23_c02398{bottom:367.635000px;}
.y22_c02398{bottom:386.535000px;}
.y21_c02398{bottom:405.435000px;}
.y1e_c02398{bottom:424.335000px;}
.y1b_c02398{bottom:443.085000px;}
.y1a_c02398{bottom:480.165000px;}
.y19_c02398{bottom:517.065000px;}
.y16_c02398{bottom:554.145000px;}
.y15_c02398{bottom:591.045000px;}
.y14_c02398{bottom:609.945000px;}
.y11_c02398{bottom:628.890000px;}
.yf_c02398{bottom:647.610000px;}
.y7_c02398{bottom:666.510000px;}
.ya_c02398{bottom:685.410000px;}
.y6_c02398{bottom:732.750000px;}
.y5_c02398{bottom:753.450000px;}
.y4_c02398{bottom:774.150000px;}
.h9_c02398{height:18.000000px;}
.ha_c02398{height:18.036000px;}
.h8_c02398{height:18.180000px;}
.hd_c02398{height:18.216000px;}
.h2_c02398{height:22.680000px;}
.hb_c02398{height:36.180000px;}
.hc_c02398{height:36.360000px;}
.h6_c02398{height:42.120000px;}
.h1_c02398{height:48.871406px;}
.h4_c02398{height:61.020000px;}
.h5_c02398{height:62.184375px;}
.h7_c02398{height:63.855000px;}
.h3_c02398{height:70.664062px;}
.h0_c02398{height:918.000000px;}
.w6_c02398{width:52.380000px;}
.w5_c02398{width:52.560000px;}
.w7_c02398{width:63.000000px;}
.w8_c02398{width:63.036000px;}
.w1_c02398{width:66.780000px;}
.w4_c02398{width:73.620000px;}
.w3_c02398{width:307.650000px;}
.w2_c02398{width:637.305000px;}
.w0_c02398{width:1188.000000px;}
.x0_c02398{left:0.000000px;}
.xf_c02398{left:9.180000px;}
.x10_c02398{left:10.800000px;}
.x15_c02398{left:13.140000px;}
.x12_c02398{left:14.760000px;}
.x3_c02398{left:16.560000px;}
.x17_c02398{left:20.880000px;}
.x19_c02398{left:22.140000px;}
.x20_c02398{left:26.100000px;}
.x1a_c02398{left:27.540000px;}
.x21_c02398{left:31.500000px;}
.x1b_c02398{left:32.760000px;}
.xe_c02398{left:36.720000px;}
.x2e_c02398{left:39.240000px;}
.x23_c02398{left:42.480000px;}
.x30_c02398{left:49.356000px;}
.x1e_c02398{left:55.116000px;}
.xc_c02398{left:71.100000px;}
.xb_c02398{left:82.980000px;}
.x7_c02398{left:85.320000px;}
.x26_c02398{left:90.930000px;}
.x1_c02398{left:106.200000px;}
.x1f_c02398{left:109.110000px;}
.x2f_c02398{left:118.650000px;}
.x33_c02398{left:141.510000px;}
.x2d_c02398{left:148.890000px;}
.x2c_c02398{left:170.670000px;}
.x32_c02398{left:172.470000px;}
.x31_c02398{left:176.610000px;}
.x27_c02398{left:181.830000px;}
.x1c_c02398{left:191.010000px;}
.x18_c02398{left:192.450000px;}
.x5_c02398{left:195.330000px;}
.x28_c02398{left:200.910000px;}
.x2b_c02398{left:210.090000px;}
.x29_c02398{left:217.110000px;}
.x1d_c02398{left:243.390000px;}
.x9_c02398{left:250.050000px;}
.x25_c02398{left:262.470000px;}
.x2a_c02398{left:264.090000px;}
.x24_c02398{left:266.250000px;}
.x22_c02398{left:270.210000px;}
.x8_c02398{left:318.675000px;}
.x4_c02398{left:574.995000px;}
.x6_c02398{left:623.595000px;}
.xa_c02398{left:723.345000px;}
.x11_c02398{left:776.625000px;}
.x13_c02398{left:829.725000px;}
.x14_c02398{left:893.445000px;}
.x16_c02398{left:957.390000px;}
.xd_c02398{left:1031.730000px;}
.x2_c02398{left:1101.570000px;}
@media print{
.v0_c02398{vertical-align:0.000000pt;}
.ls2_c02398{letter-spacing:-0.342933pt;}
.ls1_c02398{letter-spacing:0.000000pt;}
.ls0_c02398{letter-spacing:0.296960pt;}
.ws0_c02398{word-spacing:-13.737067pt;}
.ws1_c02398{word-spacing:0.000000pt;}
._0_c02398{margin-left:-1.120000pt;}
._1_c02398{width:0.970667pt;}
.fs2_c02398{font-size:56.320000pt;}
.fs0_c02398{font-size:58.880000pt;}
.fs1_c02398{font-size:64.000000pt;}
.y0_c02398{bottom:0.000000pt;}
.y13_c02398{bottom:3.040000pt;}
.y20_c02398{bottom:3.066667pt;}
.y10_c02398{bottom:3.200000pt;}
.y12_c02398{bottom:3.360000pt;}
.y1f_c02398{bottom:3.386667pt;}
.ye_c02398{bottom:3.520000pt;}
.y3_c02398{bottom:4.320000pt;}
.yc_c02398{bottom:8.640000pt;}
.y18_c02398{bottom:19.200000pt;}
.y1d_c02398{bottom:19.360000pt;}
.y17_c02398{bottom:19.520000pt;}
.y1c_c02398{bottom:19.680000pt;}
.yb_c02398{bottom:24.800000pt;}
.yd_c02398{bottom:25.120000pt;}
.y9_c02398{bottom:25.440000pt;}
.y8_c02398{bottom:41.600000pt;}
.y2_c02398{bottom:46.592000pt;}
.y1_c02398{bottom:67.072000pt;}
.y2f_c02398{bottom:125.632000pt;}
.y2e_c02398{bottom:142.426667pt;}
.y2d_c02398{bottom:159.066667pt;}
.y2c_c02398{bottom:175.866667pt;}
.y2b_c02398{bottom:192.666667pt;}
.y2a_c02398{bottom:209.506667pt;}
.y29_c02398{bottom:226.306667pt;}
.y28_c02398{bottom:242.946667pt;}
.y27_c02398{bottom:259.746667pt;}
.y26_c02398{bottom:276.546667pt;}
.y25_c02398{bottom:293.346667pt;}
.y24_c02398{bottom:310.146667pt;}
.y23_c02398{bottom:326.786667pt;}
.y22_c02398{bottom:343.586667pt;}
.y21_c02398{bottom:360.386667pt;}
.y1e_c02398{bottom:377.186667pt;}
.y1b_c02398{bottom:393.853333pt;}
.y1a_c02398{bottom:426.813333pt;}
.y19_c02398{bottom:459.613333pt;}
.y16_c02398{bottom:492.573333pt;}
.y15_c02398{bottom:525.373333pt;}
.y14_c02398{bottom:542.173333pt;}
.y11_c02398{bottom:559.013333pt;}
.yf_c02398{bottom:575.653333pt;}
.y7_c02398{bottom:592.453333pt;}
.ya_c02398{bottom:609.253333pt;}
.y6_c02398{bottom:651.333333pt;}
.y5_c02398{bottom:669.733333pt;}
.y4_c02398{bottom:688.133333pt;}
.h9_c02398{height:16.000000pt;}
.ha_c02398{height:16.032000pt;}
.h8_c02398{height:16.160000pt;}
.hd_c02398{height:16.192000pt;}
.h2_c02398{height:20.160000pt;}
.hb_c02398{height:32.160000pt;}
.hc_c02398{height:32.320000pt;}
.h6_c02398{height:37.440000pt;}
.h1_c02398{height:43.441250pt;}
.h4_c02398{height:54.240000pt;}
.h5_c02398{height:55.275000pt;}
.h7_c02398{height:56.760000pt;}
.h3_c02398{height:62.812500pt;}
.h0_c02398{height:816.000000pt;}
.w6_c02398{width:46.560000pt;}
.w5_c02398{width:46.720000pt;}
.w7_c02398{width:56.000000pt;}
.w8_c02398{width:56.032000pt;}
.w1_c02398{width:59.360000pt;}
.w4_c02398{width:65.440000pt;}
.w3_c02398{width:273.466667pt;}
.w2_c02398{width:566.493333pt;}
.w0_c02398{width:1056.000000pt;}
.x0_c02398{left:0.000000pt;}
.xf_c02398{left:8.160000pt;}
.x10_c02398{left:9.600000pt;}
.x15_c02398{left:11.680000pt;}
.x12_c02398{left:13.120000pt;}
.x3_c02398{left:14.720000pt;}
.x17_c02398{left:18.560000pt;}
.x19_c02398{left:19.680000pt;}
.x20_c02398{left:23.200000pt;}
.x1a_c02398{left:24.480000pt;}
.x21_c02398{left:28.000000pt;}
.x1b_c02398{left:29.120000pt;}
.xe_c02398{left:32.640000pt;}
.x2e_c02398{left:34.880000pt;}
.x23_c02398{left:37.760000pt;}
.x30_c02398{left:43.872000pt;}
.x1e_c02398{left:48.992000pt;}
.xc_c02398{left:63.200000pt;}
.xb_c02398{left:73.760000pt;}
.x7_c02398{left:75.840000pt;}
.x26_c02398{left:80.826667pt;}
.x1_c02398{left:94.400000pt;}
.x1f_c02398{left:96.986667pt;}
.x2f_c02398{left:105.466667pt;}
.x33_c02398{left:125.786667pt;}
.x2d_c02398{left:132.346667pt;}
.x2c_c02398{left:151.706667pt;}
.x32_c02398{left:153.306667pt;}
.x31_c02398{left:156.986667pt;}
.x27_c02398{left:161.626667pt;}
.x1c_c02398{left:169.786667pt;}
.x18_c02398{left:171.066667pt;}
.x5_c02398{left:173.626667pt;}
.x28_c02398{left:178.586667pt;}
.x2b_c02398{left:186.746667pt;}
.x29_c02398{left:192.986667pt;}
.x1d_c02398{left:216.346667pt;}
.x9_c02398{left:222.266667pt;}
.x25_c02398{left:233.306667pt;}
.x2a_c02398{left:234.746667pt;}
.x24_c02398{left:236.666667pt;}
.x22_c02398{left:240.186667pt;}
.x8_c02398{left:283.266667pt;}
.x4_c02398{left:511.106667pt;}
.x6_c02398{left:554.306667pt;}
.xa_c02398{left:642.973333pt;}
.x11_c02398{left:690.333333pt;}
.x13_c02398{left:737.533333pt;}
.x14_c02398{left:794.173333pt;}
.x16_c02398{left:851.013333pt;}
.xd_c02398{left:917.093333pt;}
.x2_c02398{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02399 {
    display:none;
  }
  .loading-indicator_c02399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02399 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02399 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02399" -> "#page-container .classname_c02399")
 */
.pf_c02399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02399 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02399 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02399 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02399 {overflow:visible;}
  }
}
.c_c02399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02399 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02399:after { /* webkit #35443 */
  content: '';
}
.t_c02399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02399 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02399 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02399 { /* info for Javascript */
  display:none;
}
.l_c02399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02399:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02399 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02399.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02399;src:url('chunks/assets/font_25acfcdebd7d0774d14418a9.woff2')format("woff");}.ff1_c02399{font-family:ff1_c02399;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02399;src:url('chunks/assets/font_daf71183cf124699f2d71a57.woff2')format("woff");}.ff2_c02399{font-family:ff2_c02399;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:ff3_c02399;src:url('chunks/assets/font_ff069d25be405c1ee4394b51.woff2')format("woff");}.ff3_c02399{font-family:ff3_c02399;line-height:1.311035;font-style:normal;font-weight: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_c02399;src:url('chunks/assets/font_4db9b6d66078aa423d1e3815.woff2')format("woff");}.ff4_c02399{font-family:ff4_c02399;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02399{vertical-align:0.000000px;}
.ls0_c02399{letter-spacing:0.000000px;}
.sc__c02399{text-shadow:none;}
.sc0_c02399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02399{-webkit-text-stroke:0px transparent;}
.sc0_c02399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02399{word-spacing:0.000000px;}
._0_c02399{margin-left:-1.393793px;}
._2_c02399{width:1.080000px;}
._1_c02399{width:2.088000px;}
._3_c02399{width:3.384000px;}
._4_c02399{width:5.161793px;}
._5_c02399{width:8.496000px;}
._6_c02399{width:9.516000px;}
.fc1_c02399{color:rgb(192,80,77);}
.fc2_c02399{color:rgb(17,17,17);}
.fc0_c02399{color:rgb(0,0,0);}
.fs1_c02399{font-size:63.360000px;}
.fs0_c02399{font-size:66.240000px;}
.fs2_c02399{font-size:72.000000px;}
.y0_c02399{bottom:0.000000px;}
.y9_c02399{bottom:3.420000px;}
.y6_c02399{bottom:3.600000px;}
.y8_c02399{bottom:3.780000px;}
.y5_c02399{bottom:3.960000px;}
.y3_c02399{bottom:4.860000px;}
.yc_c02399{bottom:21.780000px;}
.yb_c02399{bottom:22.140000px;}
.y2_c02399{bottom:52.416000px;}
.y1_c02399{bottom:75.456000px;}
.y13_c02399{bottom:580.065000px;}
.y12_c02399{bottom:600.765000px;}
.y11_c02399{bottom:621.465000px;}
.y10_c02399{bottom:642.210000px;}
.yf_c02399{bottom:659.130000px;}
.ye_c02399{bottom:678.030000px;}
.yd_c02399{bottom:696.930000px;}
.ya_c02399{bottom:715.650000px;}
.y7_c02399{bottom:752.730000px;}
.y4_c02399{bottom:771.450000px;}
.h6_c02399{height:18.000000px;}
.h3_c02399{height:18.180000px;}
.h2_c02399{height:22.680000px;}
.h7_c02399{height:36.360000px;}
.h1_c02399{height:48.871406px;}
.h4_c02399{height:62.184375px;}
.h5_c02399{height:63.855000px;}
.h8_c02399{height:70.664062px;}
.h0_c02399{height:918.000000px;}
.w4_c02399{width:52.380000px;}
.w3_c02399{width:52.560000px;}
.w5_c02399{width:63.000000px;}
.w6_c02399{width:63.036000px;}
.w1_c02399{width:66.780000px;}
.w7_c02399{width:73.620000px;}
.w2_c02399{width:637.305000px;}
.w0_c02399{width:1188.000000px;}
.x0_c02399{left:0.000000px;}
.x3_c02399{left:16.560000px;}
.x7_c02399{left:22.140000px;}
.x18_c02399{left:23.580000px;}
.x12_c02399{left:26.100000px;}
.xa_c02399{left:27.540000px;}
.x19_c02399{left:28.800000px;}
.x13_c02399{left:31.500000px;}
.xd_c02399{left:32.760000px;}
.x14_c02399{left:36.720000px;}
.x10_c02399{left:59.076000px;}
.x4_c02399{left:85.320000px;}
.x1_c02399{left:106.200000px;}
.x16_c02399{left:108.930000px;}
.x5_c02399{left:134.670000px;}
.x15_c02399{left:183.630000px;}
.x11_c02399{left:220.170000px;}
.xf_c02399{left:227.550000px;}
.x17_c02399{left:291.090000px;}
.x6_c02399{left:723.345000px;}
.x8_c02399{left:776.625000px;}
.x9_c02399{left:829.725000px;}
.xb_c02399{left:893.445000px;}
.xc_c02399{left:957.390000px;}
.xe_c02399{left:1031.730000px;}
.x2_c02399{left:1101.570000px;}
@media print{
.v0_c02399{vertical-align:0.000000pt;}
.ls0_c02399{letter-spacing:0.000000pt;}
.ws0_c02399{word-spacing:0.000000pt;}
._0_c02399{margin-left:-1.238927pt;}
._2_c02399{width:0.960000pt;}
._1_c02399{width:1.856000pt;}
._3_c02399{width:3.008000pt;}
._4_c02399{width:4.588261pt;}
._5_c02399{width:7.552000pt;}
._6_c02399{width:8.458667pt;}
.fs1_c02399{font-size:56.320000pt;}
.fs0_c02399{font-size:58.880000pt;}
.fs2_c02399{font-size:64.000000pt;}
.y0_c02399{bottom:0.000000pt;}
.y9_c02399{bottom:3.040000pt;}
.y6_c02399{bottom:3.200000pt;}
.y8_c02399{bottom:3.360000pt;}
.y5_c02399{bottom:3.520000pt;}
.y3_c02399{bottom:4.320000pt;}
.yc_c02399{bottom:19.360000pt;}
.yb_c02399{bottom:19.680000pt;}
.y2_c02399{bottom:46.592000pt;}
.y1_c02399{bottom:67.072000pt;}
.y13_c02399{bottom:515.613333pt;}
.y12_c02399{bottom:534.013333pt;}
.y11_c02399{bottom:552.413333pt;}
.y10_c02399{bottom:570.853333pt;}
.yf_c02399{bottom:585.893333pt;}
.ye_c02399{bottom:602.693333pt;}
.yd_c02399{bottom:619.493333pt;}
.ya_c02399{bottom:636.133333pt;}
.y7_c02399{bottom:669.093333pt;}
.y4_c02399{bottom:685.733333pt;}
.h6_c02399{height:16.000000pt;}
.h3_c02399{height:16.160000pt;}
.h2_c02399{height:20.160000pt;}
.h7_c02399{height:32.320000pt;}
.h1_c02399{height:43.441250pt;}
.h4_c02399{height:55.275000pt;}
.h5_c02399{height:56.760000pt;}
.h8_c02399{height:62.812500pt;}
.h0_c02399{height:816.000000pt;}
.w4_c02399{width:46.560000pt;}
.w3_c02399{width:46.720000pt;}
.w5_c02399{width:56.000000pt;}
.w6_c02399{width:56.032000pt;}
.w1_c02399{width:59.360000pt;}
.w7_c02399{width:65.440000pt;}
.w2_c02399{width:566.493333pt;}
.w0_c02399{width:1056.000000pt;}
.x0_c02399{left:0.000000pt;}
.x3_c02399{left:14.720000pt;}
.x7_c02399{left:19.680000pt;}
.x18_c02399{left:20.960000pt;}
.x12_c02399{left:23.200000pt;}
.xa_c02399{left:24.480000pt;}
.x19_c02399{left:25.600000pt;}
.x13_c02399{left:28.000000pt;}
.xd_c02399{left:29.120000pt;}
.x14_c02399{left:32.640000pt;}
.x10_c02399{left:52.512000pt;}
.x4_c02399{left:75.840000pt;}
.x1_c02399{left:94.400000pt;}
.x16_c02399{left:96.826667pt;}
.x5_c02399{left:119.706667pt;}
.x15_c02399{left:163.226667pt;}
.x11_c02399{left:195.706667pt;}
.xf_c02399{left:202.266667pt;}
.x17_c02399{left:258.746667pt;}
.x6_c02399{left:642.973333pt;}
.x8_c02399{left:690.333333pt;}
.x9_c02399{left:737.533333pt;}
.xb_c02399{left:794.173333pt;}
.xc_c02399{left:851.013333pt;}
.xe_c02399{left:917.093333pt;}
.x2_c02399{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02400 {
    display:none;
  }
  .loading-indicator_c02400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02400 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02400 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02400" -> "#page-container .classname_c02400")
 */
.pf_c02400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02400 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02400 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02400 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02400 {overflow:visible;}
  }
}
.c_c02400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02400 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02400:after { /* webkit #35443 */
  content: '';
}
.t_c02400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02400 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02400 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02400 { /* info for Javascript */
  display:none;
}
.l_c02400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02400:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02400 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02400.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02400;src:url('chunks/assets/font_4030e8d431173b0d98918d54.woff2')format("woff");}.ff1_c02400{font-family:ff1_c02400;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02400;src:url('chunks/assets/font_df4f7a2ecfd3036829cc7a0e.woff2')format("woff");}.ff2_c02400{font-family:ff2_c02400;line-height:1.112305;font-style:normal;font-weight: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_c02400;src:url('chunks/assets/font_200e3d2840bdc3a116cc6327.woff2')format("woff");}.ff3_c02400{font-family:ff3_c02400;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_c02400;src:url('chunks/assets/font_211c305bed5f5cb1279484c3.woff2')format("woff");}.ff4_c02400{font-family:ff4_c02400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02400{vertical-align:0.000000px;}
.ls1_c02400{letter-spacing:-0.305400px;}
.ls0_c02400{letter-spacing:0.000000px;}
.sc__c02400{text-shadow:none;}
.sc0_c02400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02400{-webkit-text-stroke:0px transparent;}
.sc0_c02400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02400{word-spacing:-16.254600px;}
.ws1_c02400{word-spacing:0.000000px;}
._2_c02400{margin-left:-1.008000px;}
._1_c02400{width:1.296000px;}
._4_c02400{width:2.736000px;}
._5_c02400{width:4.248000px;}
._9_c02400{width:5.328000px;}
._0_c02400{width:8.784000px;}
._3_c02400{width:9.792000px;}
._a_c02400{width:11.160000px;}
._b_c02400{width:12.672000px;}
._7_c02400{width:13.752000px;}
._8_c02400{width:14.976000px;}
._6_c02400{width:16.200000px;}
.fc1_c02400{color:rgb(192,80,77);}
.fc3_c02400{color:rgb(255,255,255);}
.fc2_c02400{color:rgb(17,17,17);}
.fc0_c02400{color:rgb(0,0,0);}
.fs0_c02400{font-size:66.240000px;}
.fs1_c02400{font-size:72.000000px;}
.y0_c02400{bottom:0.000000px;}
.y24_c02400{bottom:3.600000px;}
.y2b_c02400{bottom:3.825000px;}
.y1d_c02400{bottom:3.960000px;}
.y27_c02400{bottom:4.140000px;}
.y3_c02400{bottom:4.680000px;}
.y1b_c02400{bottom:8.280000px;}
.y22_c02400{bottom:22.500000px;}
.y28_c02400{bottom:22.680000px;}
.y20_c02400{bottom:22.860000px;}
.y26_c02400{bottom:23.040000px;}
.y1a_c02400{bottom:27.390000px;}
.y1c_c02400{bottom:27.540000px;}
.y18_c02400{bottom:27.900000px;}
.y21_c02400{bottom:41.580000px;}
.y2_c02400{bottom:41.796000px;}
.y1f_c02400{bottom:41.940000px;}
.y17_c02400{bottom:47.010000px;}
.y1_c02400{bottom:75.456000px;}
.y32_c02400{bottom:128.916000px;}
.y31_c02400{bottom:149.616000px;}
.y30_c02400{bottom:170.310000px;}
.y2f_c02400{bottom:191.010000px;}
.y2e_c02400{bottom:211.710000px;}
.y2d_c02400{bottom:232.410000px;}
.y2c_c02400{bottom:253.110000px;}
.y2a_c02400{bottom:270.030000px;}
.y29_c02400{bottom:289.875000px;}
.y25_c02400{bottom:347.475000px;}
.y23_c02400{bottom:405.255000px;}
.y1e_c02400{bottom:443.955000px;}
.y16_c02400{bottom:501.555000px;}
.y19_c02400{bottom:521.175000px;}
.y15_c02400{bottom:578.805000px;}
.y14_c02400{bottom:599.685000px;}
.y13_c02400{bottom:620.385000px;}
.y12_c02400{bottom:641.085000px;}
.y11_c02400{bottom:661.785000px;}
.y10_c02400{bottom:692.745000px;}
.yf_c02400{bottom:723.705000px;}
.ye_c02400{bottom:754.845000px;}
.yd_c02400{bottom:785.805000px;}
.yc_c02400{bottom:816.990000px;}
.yb_c02400{bottom:847.950000px;}
.ya_c02400{bottom:879.090000px;}
.y9_c02400{bottom:910.050000px;}
.y8_c02400{bottom:941.190000px;}
.y7_c02400{bottom:972.150000px;}
.y6_c02400{bottom:1003.290000px;}
.y5_c02400{bottom:1034.250000px;}
.y4_c02400{bottom:1065.420000px;}
.h9_c02400{height:18.900000px;}
.hc_c02400{height:19.116000px;}
.h2_c02400{height:22.500000px;}
.hb_c02400{height:37.800000px;}
.h7_c02400{height:42.336000px;}
.h1_c02400{height:48.871406px;}
.ha_c02400{height:56.880000px;}
.h5_c02400{height:61.956000px;}
.h3_c02400{height:64.546875px;}
.h6_c02400{height:65.010937px;}
.h8_c02400{height:66.757500px;}
.h4_c02400{height:70.664062px;}
.h0_c02400{height:1188.000000px;}
.w7_c02400{width:59.436000px;}
.w5_c02400{width:63.000000px;}
.w6_c02400{width:63.036000px;}
.w1_c02400{width:66.636000px;}
.w4_c02400{width:78.480000px;}
.w2_c02400{width:224.490000px;}
.w3_c02400{width:314.535000px;}
.w0_c02400{width:918.000000px;}
.x0_c02400{left:0.000000px;}
.x12_c02400{left:10.260000px;}
.x18_c02400{left:12.240000px;}
.x13_c02400{left:15.480000px;}
.x3_c02400{left:16.560000px;}
.x15_c02400{left:19.620000px;}
.x1f_c02400{left:25.560000px;}
.x1d_c02400{left:27.360000px;}
.x1e_c02400{left:29.700000px;}
.x1c_c02400{left:31.500000px;}
.x20_c02400{left:35.100000px;}
.x1a_c02400{left:36.720000px;}
.x11_c02400{left:39.240000px;}
.x23_c02400{left:40.680000px;}
.x22_c02400{left:45.720000px;}
.xc_c02400{left:52.920000px;}
.x1b_c02400{left:61.920000px;}
.xf_c02400{left:70.560000px;}
.x21_c02400{left:72.000000px;}
.xe_c02400{left:82.980000px;}
.xb_c02400{left:112.140000px;}
.x1_c02400{left:127.656000px;}
.xa_c02400{left:179.310000px;}
.x4_c02400{left:187.050000px;}
.x7_c02400{left:272.550000px;}
.x8_c02400{left:292.350000px;}
.xd_c02400{left:404.535000px;}
.x6_c02400{left:424.695000px;}
.x14_c02400{left:468.255000px;}
.x5_c02400{left:472.575000px;}
.x9_c02400{left:488.775000px;}
.x16_c02400{left:532.005000px;}
.x17_c02400{left:595.905000px;}
.x19_c02400{left:659.625000px;}
.x10_c02400{left:719.790000px;}
.x2_c02400{left:820.950000px;}
@media print{
.v0_c02400{vertical-align:0.000000pt;}
.ls1_c02400{letter-spacing:-0.271467pt;}
.ls0_c02400{letter-spacing:0.000000pt;}
.ws0_c02400{word-spacing:-14.448533pt;}
.ws1_c02400{word-spacing:0.000000pt;}
._2_c02400{margin-left:-0.896000pt;}
._1_c02400{width:1.152000pt;}
._4_c02400{width:2.432000pt;}
._5_c02400{width:3.776000pt;}
._9_c02400{width:4.736000pt;}
._0_c02400{width:7.808000pt;}
._3_c02400{width:8.704000pt;}
._a_c02400{width:9.920000pt;}
._b_c02400{width:11.264000pt;}
._7_c02400{width:12.224000pt;}
._8_c02400{width:13.312000pt;}
._6_c02400{width:14.400000pt;}
.fs0_c02400{font-size:58.880000pt;}
.fs1_c02400{font-size:64.000000pt;}
.y0_c02400{bottom:0.000000pt;}
.y24_c02400{bottom:3.200000pt;}
.y2b_c02400{bottom:3.400000pt;}
.y1d_c02400{bottom:3.520000pt;}
.y27_c02400{bottom:3.680000pt;}
.y3_c02400{bottom:4.160000pt;}
.y1b_c02400{bottom:7.360000pt;}
.y22_c02400{bottom:20.000000pt;}
.y28_c02400{bottom:20.160000pt;}
.y20_c02400{bottom:20.320000pt;}
.y26_c02400{bottom:20.480000pt;}
.y1a_c02400{bottom:24.346667pt;}
.y1c_c02400{bottom:24.480000pt;}
.y18_c02400{bottom:24.800000pt;}
.y21_c02400{bottom:36.960000pt;}
.y2_c02400{bottom:37.152000pt;}
.y1f_c02400{bottom:37.280000pt;}
.y17_c02400{bottom:41.786667pt;}
.y1_c02400{bottom:67.072000pt;}
.y32_c02400{bottom:114.592000pt;}
.y31_c02400{bottom:132.992000pt;}
.y30_c02400{bottom:151.386667pt;}
.y2f_c02400{bottom:169.786667pt;}
.y2e_c02400{bottom:188.186667pt;}
.y2d_c02400{bottom:206.586667pt;}
.y2c_c02400{bottom:224.986667pt;}
.y2a_c02400{bottom:240.026667pt;}
.y29_c02400{bottom:257.666667pt;}
.y25_c02400{bottom:308.866667pt;}
.y23_c02400{bottom:360.226667pt;}
.y1e_c02400{bottom:394.626667pt;}
.y16_c02400{bottom:445.826667pt;}
.y19_c02400{bottom:463.266667pt;}
.y15_c02400{bottom:514.493333pt;}
.y14_c02400{bottom:533.053333pt;}
.y13_c02400{bottom:551.453333pt;}
.y12_c02400{bottom:569.853333pt;}
.y11_c02400{bottom:588.253333pt;}
.y10_c02400{bottom:615.773333pt;}
.yf_c02400{bottom:643.293333pt;}
.ye_c02400{bottom:670.973333pt;}
.yd_c02400{bottom:698.493333pt;}
.yc_c02400{bottom:726.213333pt;}
.yb_c02400{bottom:753.733333pt;}
.ya_c02400{bottom:781.413333pt;}
.y9_c02400{bottom:808.933333pt;}
.y8_c02400{bottom:836.613333pt;}
.y7_c02400{bottom:864.133333pt;}
.y6_c02400{bottom:891.813333pt;}
.y5_c02400{bottom:919.333333pt;}
.y4_c02400{bottom:947.040000pt;}
.h9_c02400{height:16.800000pt;}
.hc_c02400{height:16.992000pt;}
.h2_c02400{height:20.000000pt;}
.hb_c02400{height:33.600000pt;}
.h7_c02400{height:37.632000pt;}
.h1_c02400{height:43.441250pt;}
.ha_c02400{height:50.560000pt;}
.h5_c02400{height:55.072000pt;}
.h3_c02400{height:57.375000pt;}
.h6_c02400{height:57.787500pt;}
.h8_c02400{height:59.340000pt;}
.h4_c02400{height:62.812500pt;}
.h0_c02400{height:1056.000000pt;}
.w7_c02400{width:52.832000pt;}
.w5_c02400{width:56.000000pt;}
.w6_c02400{width:56.032000pt;}
.w1_c02400{width:59.232000pt;}
.w4_c02400{width:69.760000pt;}
.w2_c02400{width:199.546667pt;}
.w3_c02400{width:279.586667pt;}
.w0_c02400{width:816.000000pt;}
.x0_c02400{left:0.000000pt;}
.x12_c02400{left:9.120000pt;}
.x18_c02400{left:10.880000pt;}
.x13_c02400{left:13.760000pt;}
.x3_c02400{left:14.720000pt;}
.x15_c02400{left:17.440000pt;}
.x1f_c02400{left:22.720000pt;}
.x1d_c02400{left:24.320000pt;}
.x1e_c02400{left:26.400000pt;}
.x1c_c02400{left:28.000000pt;}
.x20_c02400{left:31.200000pt;}
.x1a_c02400{left:32.640000pt;}
.x11_c02400{left:34.880000pt;}
.x23_c02400{left:36.160000pt;}
.x22_c02400{left:40.640000pt;}
.xc_c02400{left:47.040000pt;}
.x1b_c02400{left:55.040000pt;}
.xf_c02400{left:62.720000pt;}
.x21_c02400{left:64.000000pt;}
.xe_c02400{left:73.760000pt;}
.xb_c02400{left:99.680000pt;}
.x1_c02400{left:113.472000pt;}
.xa_c02400{left:159.386667pt;}
.x4_c02400{left:166.266667pt;}
.x7_c02400{left:242.266667pt;}
.x8_c02400{left:259.866667pt;}
.xd_c02400{left:359.586667pt;}
.x6_c02400{left:377.506667pt;}
.x14_c02400{left:416.226667pt;}
.x5_c02400{left:420.066667pt;}
.x9_c02400{left:434.466667pt;}
.x16_c02400{left:472.893333pt;}
.x17_c02400{left:529.693333pt;}
.x19_c02400{left:586.333333pt;}
.x10_c02400{left:639.813333pt;}
.x2_c02400{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02401 {
    display:none;
  }
  .loading-indicator_c02401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02401 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02401 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02401" -> "#page-container .classname_c02401")
 */
.pf_c02401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02401 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02401 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02401 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02401 {overflow:visible;}
  }
}
.c_c02401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02401 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02401:after { /* webkit #35443 */
  content: '';
}
.t_c02401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02401 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02401 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02401 { /* info for Javascript */
  display:none;
}
.l_c02401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02401:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02401 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02401.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02401;src:url('chunks/assets/font_62cd6e52c3ab7d2e0bb2b9db.woff2')format("woff");}.ff1_c02401{font-family:ff1_c02401;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02401;src:url('chunks/assets/font_f0d7d9993668bf2b74abd30c.woff2')format("woff");}.ff2_c02401{font-family:ff2_c02401;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:ff3_c02401;src:url('chunks/assets/font_ca372484086d515c024d5f50.woff2')format("woff");}.ff3_c02401{font-family:ff3_c02401;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02401{vertical-align:0.000000px;}
.ls0_c02401{letter-spacing:0.000000px;}
.sc__c02401{text-shadow:none;}
.sc0_c02401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02401{-webkit-text-stroke:0px transparent;}
.sc0_c02401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02401{word-spacing:0.000000px;}
._3_c02401{margin-left:-1.008000px;}
._6_c02401{width:1.008000px;}
._f_c02401{width:2.700000px;}
._a_c02401{width:3.960000px;}
._0_c02401{width:5.616000px;}
._2_c02401{width:6.984000px;}
._1_c02401{width:8.100000px;}
._b_c02401{width:10.080000px;}
._10_c02401{width:12.096000px;}
._8_c02401{width:13.824000px;}
._9_c02401{width:14.832000px;}
._e_c02401{width:16.416000px;}
._11_c02401{width:21.960000px;}
._7_c02401{width:22.968000px;}
._14_c02401{width:24.048000px;}
._4_c02401{width:35.712000px;}
._5_c02401{width:37.368000px;}
._13_c02401{width:38.376000px;}
._12_c02401{width:39.528000px;}
._d_c02401{width:66.168000px;}
._c_c02401{width:67.176000px;}
.fc1_c02401{color:rgb(192,80,77);}
.fc2_c02401{color:rgb(17,17,17);}
.fc0_c02401{color:rgb(0,0,0);}
.fs0_c02401{font-size:66.240000px;}
.fs1_c02401{font-size:72.000000px;}
.y0_c02401{bottom:0.000000px;}
.y3_c02401{bottom:4.680000px;}
.y2_c02401{bottom:41.796000px;}
.y1_c02401{bottom:75.456000px;}
.y20_c02401{bottom:195.870000px;}
.y1f_c02401{bottom:226.830000px;}
.y1e_c02401{bottom:257.970000px;}
.y1d_c02401{bottom:288.975000px;}
.y1c_c02401{bottom:320.115000px;}
.y1b_c02401{bottom:351.075000px;}
.y1a_c02401{bottom:382.215000px;}
.y19_c02401{bottom:413.175000px;}
.y18_c02401{bottom:444.315000px;}
.y17_c02401{bottom:475.275000px;}
.y16_c02401{bottom:506.415000px;}
.y15_c02401{bottom:537.405000px;}
.y14_c02401{bottom:568.545000px;}
.y13_c02401{bottom:599.505000px;}
.y12_c02401{bottom:630.645000px;}
.y11_c02401{bottom:661.605000px;}
.y10_c02401{bottom:692.745000px;}
.yf_c02401{bottom:723.705000px;}
.ye_c02401{bottom:754.845000px;}
.yd_c02401{bottom:785.805000px;}
.yc_c02401{bottom:816.990000px;}
.yb_c02401{bottom:847.950000px;}
.ya_c02401{bottom:879.090000px;}
.y9_c02401{bottom:910.050000px;}
.y8_c02401{bottom:941.190000px;}
.y7_c02401{bottom:972.150000px;}
.y6_c02401{bottom:1003.290000px;}
.y5_c02401{bottom:1034.250000px;}
.y4_c02401{bottom:1065.420000px;}
.h2_c02401{height:22.500000px;}
.h1_c02401{height:48.871406px;}
.h3_c02401{height:70.664062px;}
.h0_c02401{height:1188.000000px;}
.w1_c02401{width:66.636000px;}
.w0_c02401{width:918.000000px;}
.x0_c02401{left:0.000000px;}
.x3_c02401{left:16.560000px;}
.x1_c02401{left:127.656000px;}
.x4_c02401{left:187.050000px;}
.x2_c02401{left:820.950000px;}
@media print{
.v0_c02401{vertical-align:0.000000pt;}
.ls0_c02401{letter-spacing:0.000000pt;}
.ws0_c02401{word-spacing:0.000000pt;}
._3_c02401{margin-left:-0.896000pt;}
._6_c02401{width:0.896000pt;}
._f_c02401{width:2.400000pt;}
._a_c02401{width:3.520000pt;}
._0_c02401{width:4.992000pt;}
._2_c02401{width:6.208000pt;}
._1_c02401{width:7.200000pt;}
._b_c02401{width:8.960000pt;}
._10_c02401{width:10.752000pt;}
._8_c02401{width:12.288000pt;}
._9_c02401{width:13.184000pt;}
._e_c02401{width:14.592000pt;}
._11_c02401{width:19.520000pt;}
._7_c02401{width:20.416000pt;}
._14_c02401{width:21.376000pt;}
._4_c02401{width:31.744000pt;}
._5_c02401{width:33.216000pt;}
._13_c02401{width:34.112000pt;}
._12_c02401{width:35.136000pt;}
._d_c02401{width:58.816000pt;}
._c_c02401{width:59.712000pt;}
.fs0_c02401{font-size:58.880000pt;}
.fs1_c02401{font-size:64.000000pt;}
.y0_c02401{bottom:0.000000pt;}
.y3_c02401{bottom:4.160000pt;}
.y2_c02401{bottom:37.152000pt;}
.y1_c02401{bottom:67.072000pt;}
.y20_c02401{bottom:174.106667pt;}
.y1f_c02401{bottom:201.626667pt;}
.y1e_c02401{bottom:229.306667pt;}
.y1d_c02401{bottom:256.866667pt;}
.y1c_c02401{bottom:284.546667pt;}
.y1b_c02401{bottom:312.066667pt;}
.y1a_c02401{bottom:339.746667pt;}
.y19_c02401{bottom:367.266667pt;}
.y18_c02401{bottom:394.946667pt;}
.y17_c02401{bottom:422.466667pt;}
.y16_c02401{bottom:450.146667pt;}
.y15_c02401{bottom:477.693333pt;}
.y14_c02401{bottom:505.373333pt;}
.y13_c02401{bottom:532.893333pt;}
.y12_c02401{bottom:560.573333pt;}
.y11_c02401{bottom:588.093333pt;}
.y10_c02401{bottom:615.773333pt;}
.yf_c02401{bottom:643.293333pt;}
.ye_c02401{bottom:670.973333pt;}
.yd_c02401{bottom:698.493333pt;}
.yc_c02401{bottom:726.213333pt;}
.yb_c02401{bottom:753.733333pt;}
.ya_c02401{bottom:781.413333pt;}
.y9_c02401{bottom:808.933333pt;}
.y8_c02401{bottom:836.613333pt;}
.y7_c02401{bottom:864.133333pt;}
.y6_c02401{bottom:891.813333pt;}
.y5_c02401{bottom:919.333333pt;}
.y4_c02401{bottom:947.040000pt;}
.h2_c02401{height:20.000000pt;}
.h1_c02401{height:43.441250pt;}
.h3_c02401{height:62.812500pt;}
.h0_c02401{height:1056.000000pt;}
.w1_c02401{width:59.232000pt;}
.w0_c02401{width:816.000000pt;}
.x0_c02401{left:0.000000pt;}
.x3_c02401{left:14.720000pt;}
.x1_c02401{left:113.472000pt;}
.x4_c02401{left:166.266667pt;}
.x2_c02401{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02402 {
    display:none;
  }
  .loading-indicator_c02402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02402 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02402 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02402" -> "#page-container .classname_c02402")
 */
.pf_c02402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02402 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02402 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02402 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02402 {overflow:visible;}
  }
}
.c_c02402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02402 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02402:after { /* webkit #35443 */
  content: '';
}
.t_c02402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02402 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02402 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02402 { /* info for Javascript */
  display:none;
}
.l_c02402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02402:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02402 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02402.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02402;src:url('chunks/assets/font_e835131c51337963ac5a749e.woff2')format("woff");}.ff1_c02402{font-family:ff1_c02402;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02402;src:url('chunks/assets/font_80e82212b9eef3df1a2da74e.woff2')format("woff");}.ff2_c02402{font-family:ff2_c02402;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:ff3_c02402;src:url('chunks/assets/font_ab04e1cc4648296b7100f507.woff2')format("woff");}.ff3_c02402{font-family:ff3_c02402;line-height:1.112305;font-style:normal;font-weight: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_c02402;src:url('chunks/assets/font_12fd988aea3da6daea8e403c.woff2')format("woff");}.ff4_c02402{font-family:ff4_c02402;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02402{vertical-align:0.000000px;}
.ls1_c02402{letter-spacing:-0.144000px;}
.ls0_c02402{letter-spacing:0.000000px;}
.sc__c02402{text-shadow:none;}
.sc0_c02402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02402{-webkit-text-stroke:0px transparent;}
.sc0_c02402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02402{word-spacing:-17.856000px;}
.ws1_c02402{word-spacing:0.000000px;}
._0_c02402{margin-left:-1.080000px;}
._1_c02402{width:1.200000px;}
._6_c02402{width:2.592000px;}
._5_c02402{width:4.176000px;}
._7_c02402{width:8.208000px;}
._2_c02402{width:9.288000px;}
._8_c02402{width:11.376000px;}
._9_c02402{width:12.888000px;}
._3_c02402{width:23.328000px;}
._4_c02402{width:25.200000px;}
.fc1_c02402{color:rgb(192,80,77);}
.fc3_c02402{color:rgb(255,255,255);}
.fc2_c02402{color:rgb(17,17,17);}
.fc0_c02402{color:rgb(0,0,0);}
.fs0_c02402{font-size:66.240000px;}
.fs1_c02402{font-size:72.000000px;}
.y0_c02402{bottom:0.000000px;}
.y11_c02402{bottom:4.140000px;}
.yf_c02402{bottom:4.500000px;}
.y3_c02402{bottom:4.680000px;}
.yd_c02402{bottom:5.220000px;}
.y16_c02402{bottom:24.840000px;}
.y22_c02402{bottom:24.870000px;}
.y1b_c02402{bottom:24.885000px;}
.y14_c02402{bottom:25.200000px;}
.y21_c02402{bottom:25.230000px;}
.y19_c02402{bottom:25.245000px;}
.yc_c02402{bottom:25.920000px;}
.ye_c02402{bottom:26.280000px;}
.ya_c02402{bottom:26.640000px;}
.y2_c02402{bottom:41.796000px;}
.y15_c02402{bottom:45.540000px;}
.y1a_c02402{bottom:45.585000px;}
.y13_c02402{bottom:45.900000px;}
.y18_c02402{bottom:45.945000px;}
.y9_c02402{bottom:47.340000px;}
.y25_c02402{bottom:66.240000px;}
.y24_c02402{bottom:66.600000px;}
.y1_c02402{bottom:75.456000px;}
.y30_c02402{bottom:153.570000px;}
.y2f_c02402{bottom:184.530000px;}
.y2e_c02402{bottom:205.410000px;}
.y2d_c02402{bottom:226.110000px;}
.y2c_c02402{bottom:246.810000px;}
.y2b_c02402{bottom:267.510000px;}
.y2a_c02402{bottom:288.255000px;}
.y29_c02402{bottom:308.955000px;}
.y28_c02402{bottom:329.655000px;}
.y27_c02402{bottom:346.755000px;}
.y26_c02402{bottom:368.175000px;}
.y23_c02402{bottom:430.995000px;}
.y20_c02402{bottom:514.515000px;}
.y1f_c02402{bottom:556.665000px;}
.y1e_c02402{bottom:598.785000px;}
.y1d_c02402{bottom:661.605000px;}
.y1c_c02402{bottom:724.605000px;}
.y17_c02402{bottom:787.425000px;}
.y12_c02402{bottom:850.290000px;}
.y10_c02402{bottom:913.110000px;}
.y8_c02402{bottom:934.530000px;}
.yb_c02402{bottom:955.950000px;}
.y7_c02402{bottom:1003.470000px;}
.y6_c02402{bottom:1024.170000px;}
.y5_c02402{bottom:1044.870000px;}
.y4_c02402{bottom:1065.600000px;}
.h7_c02402{height:20.700000px;}
.h2_c02402{height:22.500000px;}
.ha_c02402{height:41.400000px;}
.hb_c02402{height:41.436000px;}
.h5_c02402{height:42.120000px;}
.h1_c02402{height:48.871406px;}
.h8_c02402{height:62.100000px;}
.h9_c02402{height:62.136000px;}
.h4_c02402{height:63.540000px;}
.hd_c02402{height:64.546875px;}
.h3_c02402{height:70.664062px;}
.h6_c02402{height:72.562500px;}
.hc_c02402{height:82.800000px;}
.h0_c02402{height:1188.000000px;}
.w7_c02402{width:59.436000px;}
.w5_c02402{width:63.000000px;}
.w6_c02402{width:63.036000px;}
.w1_c02402{width:66.636000px;}
.w4_c02402{width:78.480000px;}
.w2_c02402{width:224.490000px;}
.w3_c02402{width:314.535000px;}
.w0_c02402{width:918.000000px;}
.x0_c02402{left:0.000000px;}
.x10_c02402{left:7.740000px;}
.x16_c02402{left:10.620000px;}
.x18_c02402{left:11.700000px;}
.x11_c02402{left:13.860000px;}
.x3_c02402{left:16.560000px;}
.x13_c02402{left:18.540000px;}
.x22_c02402{left:20.880000px;}
.x1c_c02402{left:22.140000px;}
.x1a_c02402{left:25.200000px;}
.x19_c02402{left:27.000000px;}
.x1f_c02402{left:29.700000px;}
.x1e_c02402{left:31.500000px;}
.x1b_c02402{left:34.740000px;}
.xf_c02402{left:39.240000px;}
.x23_c02402{left:46.440000px;}
.xa_c02402{left:48.420000px;}
.x21_c02402{left:55.980000px;}
.x20_c02402{left:58.500000px;}
.x1d_c02402{left:59.940000px;}
.xd_c02402{left:62.640000px;}
.x25_c02402{left:65.520000px;}
.x24_c02402{left:70.920000px;}
.xc_c02402{left:76.320000px;}
.x26_c02402{left:80.640000px;}
.x9_c02402{left:112.140000px;}
.x1_c02402{left:127.656000px;}
.x8_c02402{left:179.310000px;}
.x27_c02402{left:187.050000px;}
.x6_c02402{left:286.230000px;}
.x5_c02402{left:347.655000px;}
.xb_c02402{left:404.535000px;}
.x4_c02402{left:424.695000px;}
.x12_c02402{left:468.255000px;}
.x7_c02402{left:488.775000px;}
.x14_c02402{left:532.005000px;}
.x15_c02402{left:595.905000px;}
.x17_c02402{left:659.625000px;}
.xe_c02402{left:719.790000px;}
.x2_c02402{left:820.950000px;}
@media print{
.v0_c02402{vertical-align:0.000000pt;}
.ls1_c02402{letter-spacing:-0.128000pt;}
.ls0_c02402{letter-spacing:0.000000pt;}
.ws0_c02402{word-spacing:-15.872000pt;}
.ws1_c02402{word-spacing:0.000000pt;}
._0_c02402{margin-left:-0.960000pt;}
._1_c02402{width:1.066667pt;}
._6_c02402{width:2.304000pt;}
._5_c02402{width:3.712000pt;}
._7_c02402{width:7.296000pt;}
._2_c02402{width:8.256000pt;}
._8_c02402{width:10.112000pt;}
._9_c02402{width:11.456000pt;}
._3_c02402{width:20.736000pt;}
._4_c02402{width:22.400000pt;}
.fs0_c02402{font-size:58.880000pt;}
.fs1_c02402{font-size:64.000000pt;}
.y0_c02402{bottom:0.000000pt;}
.y11_c02402{bottom:3.680000pt;}
.yf_c02402{bottom:4.000000pt;}
.y3_c02402{bottom:4.160000pt;}
.yd_c02402{bottom:4.640000pt;}
.y16_c02402{bottom:22.080000pt;}
.y22_c02402{bottom:22.106667pt;}
.y1b_c02402{bottom:22.120000pt;}
.y14_c02402{bottom:22.400000pt;}
.y21_c02402{bottom:22.426667pt;}
.y19_c02402{bottom:22.440000pt;}
.yc_c02402{bottom:23.040000pt;}
.ye_c02402{bottom:23.360000pt;}
.ya_c02402{bottom:23.680000pt;}
.y2_c02402{bottom:37.152000pt;}
.y15_c02402{bottom:40.480000pt;}
.y1a_c02402{bottom:40.520000pt;}
.y13_c02402{bottom:40.800000pt;}
.y18_c02402{bottom:40.840000pt;}
.y9_c02402{bottom:42.080000pt;}
.y25_c02402{bottom:58.880000pt;}
.y24_c02402{bottom:59.200000pt;}
.y1_c02402{bottom:67.072000pt;}
.y30_c02402{bottom:136.506667pt;}
.y2f_c02402{bottom:164.026667pt;}
.y2e_c02402{bottom:182.586667pt;}
.y2d_c02402{bottom:200.986667pt;}
.y2c_c02402{bottom:219.386667pt;}
.y2b_c02402{bottom:237.786667pt;}
.y2a_c02402{bottom:256.226667pt;}
.y29_c02402{bottom:274.626667pt;}
.y28_c02402{bottom:293.026667pt;}
.y27_c02402{bottom:308.226667pt;}
.y26_c02402{bottom:327.266667pt;}
.y23_c02402{bottom:383.106667pt;}
.y20_c02402{bottom:457.346667pt;}
.y1f_c02402{bottom:494.813333pt;}
.y1e_c02402{bottom:532.253333pt;}
.y1d_c02402{bottom:588.093333pt;}
.y1c_c02402{bottom:644.093333pt;}
.y17_c02402{bottom:699.933333pt;}
.y12_c02402{bottom:755.813333pt;}
.y10_c02402{bottom:811.653333pt;}
.y8_c02402{bottom:830.693333pt;}
.yb_c02402{bottom:849.733333pt;}
.y7_c02402{bottom:891.973333pt;}
.y6_c02402{bottom:910.373333pt;}
.y5_c02402{bottom:928.773333pt;}
.y4_c02402{bottom:947.200000pt;}
.h7_c02402{height:18.400000pt;}
.h2_c02402{height:20.000000pt;}
.ha_c02402{height:36.800000pt;}
.hb_c02402{height:36.832000pt;}
.h5_c02402{height:37.440000pt;}
.h1_c02402{height:43.441250pt;}
.h8_c02402{height:55.200000pt;}
.h9_c02402{height:55.232000pt;}
.h4_c02402{height:56.480000pt;}
.hd_c02402{height:57.375000pt;}
.h3_c02402{height:62.812500pt;}
.h6_c02402{height:64.500000pt;}
.hc_c02402{height:73.600000pt;}
.h0_c02402{height:1056.000000pt;}
.w7_c02402{width:52.832000pt;}
.w5_c02402{width:56.000000pt;}
.w6_c02402{width:56.032000pt;}
.w1_c02402{width:59.232000pt;}
.w4_c02402{width:69.760000pt;}
.w2_c02402{width:199.546667pt;}
.w3_c02402{width:279.586667pt;}
.w0_c02402{width:816.000000pt;}
.x0_c02402{left:0.000000pt;}
.x10_c02402{left:6.880000pt;}
.x16_c02402{left:9.440000pt;}
.x18_c02402{left:10.400000pt;}
.x11_c02402{left:12.320000pt;}
.x3_c02402{left:14.720000pt;}
.x13_c02402{left:16.480000pt;}
.x22_c02402{left:18.560000pt;}
.x1c_c02402{left:19.680000pt;}
.x1a_c02402{left:22.400000pt;}
.x19_c02402{left:24.000000pt;}
.x1f_c02402{left:26.400000pt;}
.x1e_c02402{left:28.000000pt;}
.x1b_c02402{left:30.880000pt;}
.xf_c02402{left:34.880000pt;}
.x23_c02402{left:41.280000pt;}
.xa_c02402{left:43.040000pt;}
.x21_c02402{left:49.760000pt;}
.x20_c02402{left:52.000000pt;}
.x1d_c02402{left:53.280000pt;}
.xd_c02402{left:55.680000pt;}
.x25_c02402{left:58.240000pt;}
.x24_c02402{left:63.040000pt;}
.xc_c02402{left:67.840000pt;}
.x26_c02402{left:71.680000pt;}
.x9_c02402{left:99.680000pt;}
.x1_c02402{left:113.472000pt;}
.x8_c02402{left:159.386667pt;}
.x27_c02402{left:166.266667pt;}
.x6_c02402{left:254.426667pt;}
.x5_c02402{left:309.026667pt;}
.xb_c02402{left:359.586667pt;}
.x4_c02402{left:377.506667pt;}
.x12_c02402{left:416.226667pt;}
.x7_c02402{left:434.466667pt;}
.x14_c02402{left:472.893333pt;}
.x15_c02402{left:529.693333pt;}
.x17_c02402{left:586.333333pt;}
.xe_c02402{left:639.813333pt;}
.x2_c02402{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02403 {
    display:none;
  }
  .loading-indicator_c02403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02403" -> "#page-container .classname_c02403")
 */
.pf_c02403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02403 {overflow:visible;}
  }
}
.c_c02403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02403:after { /* webkit #35443 */
  content: '';
}
.t_c02403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02403 { /* info for Javascript */
  display:none;
}
.l_c02403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02403:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02403 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02403.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02403;src:url('chunks/assets/font_6978db8317195c6797552c08.woff2')format("woff");}.ff1_c02403{font-family:ff1_c02403;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02403;src:url('chunks/assets/font_9321547e7d0730ba495a2885.woff2')format("woff");}.ff2_c02403{font-family:ff2_c02403;line-height:1.112305;font-style:normal;font-weight: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_c02403;src:url('chunks/assets/font_a23970b5bd59728ff6e89191.woff2')format("woff");}.ff3_c02403{font-family:ff3_c02403;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;}
.m0_c02403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02403{vertical-align:0.000000px;}
.ls0_c02403{letter-spacing:0.000000px;}
.sc__c02403{text-shadow:none;}
.sc0_c02403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02403{-webkit-text-stroke:0px transparent;}
.sc0_c02403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02403{word-spacing:0.000000px;}
._a_c02403{margin-left:-2.160000px;}
._0_c02403{margin-left:-1.080000px;}
._3_c02403{width:1.296000px;}
._5_c02403{width:3.240000px;}
._1_c02403{width:5.040000px;}
._2_c02403{width:6.264000px;}
._4_c02403{width:7.572000px;}
._6_c02403{width:9.720000px;}
._7_c02403{width:10.944000px;}
._d_c02403{width:13.176000px;}
._c_c02403{width:14.760000px;}
._b_c02403{width:15.768000px;}
._9_c02403{width:16.992000px;}
._8_c02403{width:19.872000px;}
._e_c02403{width:20.880000px;}
._11_c02403{width:28.440000px;}
._10_c02403{width:30.168000px;}
._f_c02403{width:31.464000px;}
.fc1_c02403{color:rgb(192,80,77);}
.fc2_c02403{color:rgb(17,17,17);}
.fc0_c02403{color:rgb(0,0,0);}
.fs0_c02403{font-size:66.240000px;}
.fs1_c02403{font-size:72.000000px;}
.y0_c02403{bottom:0.000000px;}
.y3_c02403{bottom:4.680000px;}
.y2_c02403{bottom:41.796000px;}
.y1_c02403{bottom:75.456000px;}
.y16_c02403{bottom:516.675000px;}
.y15_c02403{bottom:547.845000px;}
.y14_c02403{bottom:568.725000px;}
.y13_c02403{bottom:599.505000px;}
.y12_c02403{bottom:630.645000px;}
.y11_c02403{bottom:661.605000px;}
.y10_c02403{bottom:692.745000px;}
.yf_c02403{bottom:723.705000px;}
.ye_c02403{bottom:754.845000px;}
.yd_c02403{bottom:785.805000px;}
.yc_c02403{bottom:816.990000px;}
.yb_c02403{bottom:847.950000px;}
.ya_c02403{bottom:879.090000px;}
.y9_c02403{bottom:910.050000px;}
.y8_c02403{bottom:941.190000px;}
.y7_c02403{bottom:972.150000px;}
.y6_c02403{bottom:1003.290000px;}
.y5_c02403{bottom:1034.250000px;}
.y4_c02403{bottom:1065.420000px;}
.h2_c02403{height:22.500000px;}
.h1_c02403{height:48.871406px;}
.h3_c02403{height:64.546875px;}
.h4_c02403{height:70.664062px;}
.h0_c02403{height:1188.000000px;}
.w1_c02403{width:66.636000px;}
.w0_c02403{width:918.000000px;}
.x0_c02403{left:0.000000px;}
.x3_c02403{left:16.560000px;}
.x1_c02403{left:127.656000px;}
.x4_c02403{left:187.050000px;}
.x5_c02403{left:488.775000px;}
.x2_c02403{left:820.950000px;}
@media print{
.v0_c02403{vertical-align:0.000000pt;}
.ls0_c02403{letter-spacing:0.000000pt;}
.ws0_c02403{word-spacing:0.000000pt;}
._a_c02403{margin-left:-1.920000pt;}
._0_c02403{margin-left:-0.960000pt;}
._3_c02403{width:1.152000pt;}
._5_c02403{width:2.880000pt;}
._1_c02403{width:4.480000pt;}
._2_c02403{width:5.568000pt;}
._4_c02403{width:6.730667pt;}
._6_c02403{width:8.640000pt;}
._7_c02403{width:9.728000pt;}
._d_c02403{width:11.712000pt;}
._c_c02403{width:13.120000pt;}
._b_c02403{width:14.016000pt;}
._9_c02403{width:15.104000pt;}
._8_c02403{width:17.664000pt;}
._e_c02403{width:18.560000pt;}
._11_c02403{width:25.280000pt;}
._10_c02403{width:26.816000pt;}
._f_c02403{width:27.968000pt;}
.fs0_c02403{font-size:58.880000pt;}
.fs1_c02403{font-size:64.000000pt;}
.y0_c02403{bottom:0.000000pt;}
.y3_c02403{bottom:4.160000pt;}
.y2_c02403{bottom:37.152000pt;}
.y1_c02403{bottom:67.072000pt;}
.y16_c02403{bottom:459.266667pt;}
.y15_c02403{bottom:486.973333pt;}
.y14_c02403{bottom:505.533333pt;}
.y13_c02403{bottom:532.893333pt;}
.y12_c02403{bottom:560.573333pt;}
.y11_c02403{bottom:588.093333pt;}
.y10_c02403{bottom:615.773333pt;}
.yf_c02403{bottom:643.293333pt;}
.ye_c02403{bottom:670.973333pt;}
.yd_c02403{bottom:698.493333pt;}
.yc_c02403{bottom:726.213333pt;}
.yb_c02403{bottom:753.733333pt;}
.ya_c02403{bottom:781.413333pt;}
.y9_c02403{bottom:808.933333pt;}
.y8_c02403{bottom:836.613333pt;}
.y7_c02403{bottom:864.133333pt;}
.y6_c02403{bottom:891.813333pt;}
.y5_c02403{bottom:919.333333pt;}
.y4_c02403{bottom:947.040000pt;}
.h2_c02403{height:20.000000pt;}
.h1_c02403{height:43.441250pt;}
.h3_c02403{height:57.375000pt;}
.h4_c02403{height:62.812500pt;}
.h0_c02403{height:1056.000000pt;}
.w1_c02403{width:59.232000pt;}
.w0_c02403{width:816.000000pt;}
.x0_c02403{left:0.000000pt;}
.x3_c02403{left:14.720000pt;}
.x1_c02403{left:113.472000pt;}
.x4_c02403{left:166.266667pt;}
.x5_c02403{left:434.466667pt;}
.x2_c02403{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02404 {
    display:none;
  }
  .loading-indicator_c02404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02404 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02404 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02404" -> "#page-container .classname_c02404")
 */
.pf_c02404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02404 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02404 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02404 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02404 {overflow:visible;}
  }
}
.c_c02404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02404 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02404:after { /* webkit #35443 */
  content: '';
}
.t_c02404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02404 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02404 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02404 { /* info for Javascript */
  display:none;
}
.l_c02404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02404:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02404 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02404.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02404;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02404{font-family:ff1_c02404;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02404;src:url('chunks/assets/font_826925bec730a59d468d1976.woff2')format("woff");}.ff2_c02404{font-family:ff2_c02404;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:ff3_c02404;src:url('chunks/assets/font_c7d2515f207473ee914abd0d.woff2')format("woff");}.ff3_c02404{font-family:ff3_c02404;line-height:1.112305;font-style:normal;font-weight: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_c02404;src:url('chunks/assets/font_ecd04ea044409d2dedeceb9d.woff2')format("woff");}.ff4_c02404{font-family:ff4_c02404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02404{vertical-align:0.000000px;}
.ls1_c02404{letter-spacing:-0.144000px;}
.ls0_c02404{letter-spacing:0.000000px;}
.sc__c02404{text-shadow:none;}
.sc0_c02404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02404{-webkit-text-stroke:0px transparent;}
.sc0_c02404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02404{word-spacing:-18.000000px;}
.ws0_c02404{word-spacing:-17.856000px;}
.ws2_c02404{word-spacing:0.000000px;}
._f_c02404{margin-left:-2.088000px;}
._0_c02404{margin-left:-1.080000px;}
._1_c02404{width:1.200000px;}
._6_c02404{width:2.592000px;}
._5_c02404{width:4.176000px;}
._e_c02404{width:5.544000px;}
._d_c02404{width:6.696000px;}
._7_c02404{width:8.208000px;}
._2_c02404{width:9.288000px;}
._8_c02404{width:11.376000px;}
._9_c02404{width:12.888000px;}
._a_c02404{width:15.624000px;}
._b_c02404{width:21.600000px;}
._c_c02404{width:23.364000px;}
._3_c02404{width:38.376000px;}
._4_c02404{width:39.600000px;}
.fc1_c02404{color:rgb(192,80,77);}
.fc3_c02404{color:rgb(255,255,255);}
.fc2_c02404{color:rgb(17,17,17);}
.fc0_c02404{color:rgb(0,0,0);}
.fs0_c02404{font-size:66.240000px;}
.fs1_c02404{font-size:72.000000px;}
.y0_c02404{bottom:0.000000px;}
.y24_c02404{bottom:4.140000px;}
.y14_c02404{bottom:4.320000px;}
.yf_c02404{bottom:4.500000px;}
.y3_c02404{bottom:4.680000px;}
.yd_c02404{bottom:5.220000px;}
.y13_c02404{bottom:25.020000px;}
.y1a_c02404{bottom:25.200000px;}
.yc_c02404{bottom:25.920000px;}
.ye_c02404{bottom:26.280000px;}
.ya_c02404{bottom:26.640000px;}
.y2_c02404{bottom:41.796000px;}
.y16_c02404{bottom:45.360000px;}
.y1c_c02404{bottom:45.585000px;}
.y12_c02404{bottom:45.720000px;}
.y20_c02404{bottom:45.900000px;}
.y19_c02404{bottom:45.945000px;}
.y9_c02404{bottom:47.340000px;}
.y15_c02404{bottom:66.060000px;}
.y22_c02404{bottom:66.240000px;}
.y1b_c02404{bottom:66.285000px;}
.y11_c02404{bottom:66.420000px;}
.y1f_c02404{bottom:66.600000px;}
.y18_c02404{bottom:66.645000px;}
.y1_c02404{bottom:75.456000px;}
.y21_c02404{bottom:86.940000px;}
.y1e_c02404{bottom:87.300000px;}
.y37_c02404{bottom:127.836000px;}
.y36_c02404{bottom:158.790000px;}
.y35_c02404{bottom:189.930000px;}
.y34_c02404{bottom:220.890000px;}
.y33_c02404{bottom:252.030000px;}
.y32_c02404{bottom:283.035000px;}
.y31_c02404{bottom:314.175000px;}
.y30_c02404{bottom:345.135000px;}
.y2f_c02404{bottom:376.275000px;}
.y2e_c02404{bottom:407.235000px;}
.y2d_c02404{bottom:438.375000px;}
.y2c_c02404{bottom:469.335000px;}
.y2b_c02404{bottom:490.215000px;}
.y2a_c02404{bottom:510.915000px;}
.y29_c02404{bottom:531.615000px;}
.y28_c02404{bottom:552.345000px;}
.y27_c02404{bottom:573.045000px;}
.y26_c02404{bottom:593.745000px;}
.y25_c02404{bottom:614.445000px;}
.y23_c02404{bottom:631.365000px;}
.y1d_c02404{bottom:652.785000px;}
.y17_c02404{bottom:757.005000px;}
.y10_c02404{bottom:840.750000px;}
.y8_c02404{bottom:924.270000px;}
.yb_c02404{bottom:945.690000px;}
.y7_c02404{bottom:1003.290000px;}
.y6_c02404{bottom:1024.170000px;}
.y5_c02404{bottom:1044.870000px;}
.y4_c02404{bottom:1065.600000px;}
.h7_c02404{height:20.700000px;}
.h2_c02404{height:22.500000px;}
.h5_c02404{height:42.120000px;}
.h1_c02404{height:48.871406px;}
.h4_c02404{height:63.540000px;}
.hb_c02404{height:64.546875px;}
.h3_c02404{height:70.664062px;}
.h6_c02404{height:72.562500px;}
.h8_c02404{height:82.620000px;}
.h9_c02404{height:82.836000px;}
.ha_c02404{height:103.500000px;}
.h0_c02404{height:1188.000000px;}
.w7_c02404{width:59.436000px;}
.w5_c02404{width:63.000000px;}
.w6_c02404{width:63.036000px;}
.w1_c02404{width:66.636000px;}
.w4_c02404{width:78.480000px;}
.w2_c02404{width:224.490000px;}
.w3_c02404{width:314.535000px;}
.w0_c02404{width:918.000000px;}
.x0_c02404{left:0.000000px;}
.x10_c02404{left:7.740000px;}
.x16_c02404{left:10.620000px;}
.x18_c02404{left:11.700000px;}
.x11_c02404{left:13.860000px;}
.x21_c02404{left:15.300000px;}
.x3_c02404{left:16.560000px;}
.x13_c02404{left:18.540000px;}
.x1a_c02404{left:20.700000px;}
.x1f_c02404{left:25.200000px;}
.x19_c02404{left:27.540000px;}
.x1e_c02404{left:29.700000px;}
.x1d_c02404{left:31.500000px;}
.x20_c02404{left:34.740000px;}
.x1c_c02404{left:36.000000px;}
.xf_c02404{left:39.240000px;}
.x22_c02404{left:48.420000px;}
.xd_c02404{left:62.640000px;}
.xa_c02404{left:66.960000px;}
.x1b_c02404{left:72.000000px;}
.xc_c02404{left:76.140000px;}
.x23_c02404{left:80.640000px;}
.x9_c02404{left:112.140000px;}
.x1_c02404{left:127.656000px;}
.x8_c02404{left:179.310000px;}
.x24_c02404{left:187.050000px;}
.x6_c02404{left:304.815000px;}
.x5_c02404{left:347.655000px;}
.xb_c02404{left:404.535000px;}
.x4_c02404{left:440.895000px;}
.x12_c02404{left:468.255000px;}
.x7_c02404{left:488.775000px;}
.x14_c02404{left:532.005000px;}
.x15_c02404{left:595.905000px;}
.x17_c02404{left:659.625000px;}
.xe_c02404{left:719.790000px;}
.x2_c02404{left:820.950000px;}
@media print{
.v0_c02404{vertical-align:0.000000pt;}
.ls1_c02404{letter-spacing:-0.128000pt;}
.ls0_c02404{letter-spacing:0.000000pt;}
.ws1_c02404{word-spacing:-16.000000pt;}
.ws0_c02404{word-spacing:-15.872000pt;}
.ws2_c02404{word-spacing:0.000000pt;}
._f_c02404{margin-left:-1.856000pt;}
._0_c02404{margin-left:-0.960000pt;}
._1_c02404{width:1.066667pt;}
._6_c02404{width:2.304000pt;}
._5_c02404{width:3.712000pt;}
._e_c02404{width:4.928000pt;}
._d_c02404{width:5.952000pt;}
._7_c02404{width:7.296000pt;}
._2_c02404{width:8.256000pt;}
._8_c02404{width:10.112000pt;}
._9_c02404{width:11.456000pt;}
._a_c02404{width:13.888000pt;}
._b_c02404{width:19.200000pt;}
._c_c02404{width:20.768000pt;}
._3_c02404{width:34.112000pt;}
._4_c02404{width:35.200000pt;}
.fs0_c02404{font-size:58.880000pt;}
.fs1_c02404{font-size:64.000000pt;}
.y0_c02404{bottom:0.000000pt;}
.y24_c02404{bottom:3.680000pt;}
.y14_c02404{bottom:3.840000pt;}
.yf_c02404{bottom:4.000000pt;}
.y3_c02404{bottom:4.160000pt;}
.yd_c02404{bottom:4.640000pt;}
.y13_c02404{bottom:22.240000pt;}
.y1a_c02404{bottom:22.400000pt;}
.yc_c02404{bottom:23.040000pt;}
.ye_c02404{bottom:23.360000pt;}
.ya_c02404{bottom:23.680000pt;}
.y2_c02404{bottom:37.152000pt;}
.y16_c02404{bottom:40.320000pt;}
.y1c_c02404{bottom:40.520000pt;}
.y12_c02404{bottom:40.640000pt;}
.y20_c02404{bottom:40.800000pt;}
.y19_c02404{bottom:40.840000pt;}
.y9_c02404{bottom:42.080000pt;}
.y15_c02404{bottom:58.720000pt;}
.y22_c02404{bottom:58.880000pt;}
.y1b_c02404{bottom:58.920000pt;}
.y11_c02404{bottom:59.040000pt;}
.y1f_c02404{bottom:59.200000pt;}
.y18_c02404{bottom:59.240000pt;}
.y1_c02404{bottom:67.072000pt;}
.y21_c02404{bottom:77.280000pt;}
.y1e_c02404{bottom:77.600000pt;}
.y37_c02404{bottom:113.632000pt;}
.y36_c02404{bottom:141.146667pt;}
.y35_c02404{bottom:168.826667pt;}
.y34_c02404{bottom:196.346667pt;}
.y33_c02404{bottom:224.026667pt;}
.y32_c02404{bottom:251.586667pt;}
.y31_c02404{bottom:279.266667pt;}
.y30_c02404{bottom:306.786667pt;}
.y2f_c02404{bottom:334.466667pt;}
.y2e_c02404{bottom:361.986667pt;}
.y2d_c02404{bottom:389.666667pt;}
.y2c_c02404{bottom:417.186667pt;}
.y2b_c02404{bottom:435.746667pt;}
.y2a_c02404{bottom:454.146667pt;}
.y29_c02404{bottom:472.546667pt;}
.y28_c02404{bottom:490.973333pt;}
.y27_c02404{bottom:509.373333pt;}
.y26_c02404{bottom:527.773333pt;}
.y25_c02404{bottom:546.173333pt;}
.y23_c02404{bottom:561.213333pt;}
.y1d_c02404{bottom:580.253333pt;}
.y17_c02404{bottom:672.893333pt;}
.y10_c02404{bottom:747.333333pt;}
.y8_c02404{bottom:821.573333pt;}
.yb_c02404{bottom:840.613333pt;}
.y7_c02404{bottom:891.813333pt;}
.y6_c02404{bottom:910.373333pt;}
.y5_c02404{bottom:928.773333pt;}
.y4_c02404{bottom:947.200000pt;}
.h7_c02404{height:18.400000pt;}
.h2_c02404{height:20.000000pt;}
.h5_c02404{height:37.440000pt;}
.h1_c02404{height:43.441250pt;}
.h4_c02404{height:56.480000pt;}
.hb_c02404{height:57.375000pt;}
.h3_c02404{height:62.812500pt;}
.h6_c02404{height:64.500000pt;}
.h8_c02404{height:73.440000pt;}
.h9_c02404{height:73.632000pt;}
.ha_c02404{height:92.000000pt;}
.h0_c02404{height:1056.000000pt;}
.w7_c02404{width:52.832000pt;}
.w5_c02404{width:56.000000pt;}
.w6_c02404{width:56.032000pt;}
.w1_c02404{width:59.232000pt;}
.w4_c02404{width:69.760000pt;}
.w2_c02404{width:199.546667pt;}
.w3_c02404{width:279.586667pt;}
.w0_c02404{width:816.000000pt;}
.x0_c02404{left:0.000000pt;}
.x10_c02404{left:6.880000pt;}
.x16_c02404{left:9.440000pt;}
.x18_c02404{left:10.400000pt;}
.x11_c02404{left:12.320000pt;}
.x21_c02404{left:13.600000pt;}
.x3_c02404{left:14.720000pt;}
.x13_c02404{left:16.480000pt;}
.x1a_c02404{left:18.400000pt;}
.x1f_c02404{left:22.400000pt;}
.x19_c02404{left:24.480000pt;}
.x1e_c02404{left:26.400000pt;}
.x1d_c02404{left:28.000000pt;}
.x20_c02404{left:30.880000pt;}
.x1c_c02404{left:32.000000pt;}
.xf_c02404{left:34.880000pt;}
.x22_c02404{left:43.040000pt;}
.xd_c02404{left:55.680000pt;}
.xa_c02404{left:59.520000pt;}
.x1b_c02404{left:64.000000pt;}
.xc_c02404{left:67.680000pt;}
.x23_c02404{left:71.680000pt;}
.x9_c02404{left:99.680000pt;}
.x1_c02404{left:113.472000pt;}
.x8_c02404{left:159.386667pt;}
.x24_c02404{left:166.266667pt;}
.x6_c02404{left:270.946667pt;}
.x5_c02404{left:309.026667pt;}
.xb_c02404{left:359.586667pt;}
.x4_c02404{left:391.906667pt;}
.x12_c02404{left:416.226667pt;}
.x7_c02404{left:434.466667pt;}
.x14_c02404{left:472.893333pt;}
.x15_c02404{left:529.693333pt;}
.x17_c02404{left:586.333333pt;}
.xe_c02404{left:639.813333pt;}
.x2_c02404{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02405 {
    display:none;
  }
  .loading-indicator_c02405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02405 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02405 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02405" -> "#page-container .classname_c02405")
 */
.pf_c02405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02405 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02405 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02405 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02405 {overflow:visible;}
  }
}
.c_c02405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02405 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02405:after { /* webkit #35443 */
  content: '';
}
.t_c02405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02405 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02405 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02405 { /* info for Javascript */
  display:none;
}
.l_c02405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02405:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02405 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02405.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02405;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02405{font-family:ff1_c02405;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02405;src:url('chunks/assets/font_d8ebbc3b00868d68748a8911.woff2')format("woff");}.ff2_c02405{font-family:ff2_c02405;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:ff3_c02405;src:url('chunks/assets/font_282e509d1d3690615bc13129.woff2')format("woff");}.ff3_c02405{font-family:ff3_c02405;line-height:1.112305;font-style:normal;font-weight: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_c02405;src:url('chunks/assets/font_d9b0ab2480919b23ff0548d1.woff2')format("woff");}.ff4_c02405{font-family:ff4_c02405;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02405{vertical-align:-82.920000px;}
.v0_c02405{vertical-align:0.000000px;}
.ls3_c02405{letter-spacing:-0.144000px;}
.ls2_c02405{letter-spacing:0.000000px;}
.ls1_c02405{letter-spacing:0.144000px;}
.ls0_c02405{letter-spacing:932.580000px;}
.sc__c02405{text-shadow:none;}
.sc0_c02405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02405{-webkit-text-stroke:0px transparent;}
.sc0_c02405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02405{word-spacing:-17.856000px;}
.ws1_c02405{word-spacing:0.000000px;}
._c_c02405{margin-left:-2.160000px;}
._0_c02405{margin-left:-1.080000px;}
._1_c02405{width:1.200000px;}
._4_c02405{width:2.340000px;}
._3_c02405{width:3.480000px;}
._5_c02405{width:4.752000px;}
._a_c02405{width:5.976000px;}
._9_c02405{width:7.056000px;}
._6_c02405{width:8.208000px;}
._2_c02405{width:9.288000px;}
._7_c02405{width:11.376000px;}
._8_c02405{width:12.888000px;}
._d_c02405{width:15.840000px;}
._b_c02405{width:16.992000px;}
._e_c02405{width:35.784000px;}
.fc1_c02405{color:rgb(192,80,77);}
.fc3_c02405{color:rgb(255,255,255);}
.fc2_c02405{color:rgb(17,17,17);}
.fc0_c02405{color:rgb(0,0,0);}
.fs0_c02405{font-size:66.240000px;}
.fs1_c02405{font-size:72.000000px;}
.y0_c02405{bottom:0.000000px;}
.y13_c02405{bottom:4.140000px;}
.yf_c02405{bottom:4.500000px;}
.y3_c02405{bottom:4.680000px;}
.yd_c02405{bottom:5.220000px;}
.y12_c02405{bottom:24.840000px;}
.y11_c02405{bottom:25.200000px;}
.yc_c02405{bottom:25.920000px;}
.ye_c02405{bottom:26.280000px;}
.ya_c02405{bottom:26.640000px;}
.y2_c02405{bottom:41.796000px;}
.y9_c02405{bottom:47.340000px;}
.y1_c02405{bottom:75.456000px;}
.y2b_c02405{bottom:210.630000px;}
.y2a_c02405{bottom:241.590000px;}
.y29_c02405{bottom:272.775000px;}
.y28_c02405{bottom:303.735000px;}
.y27_c02405{bottom:334.875000px;}
.y26_c02405{bottom:365.835000px;}
.y25_c02405{bottom:396.975000px;}
.y24_c02405{bottom:427.935000px;}
.y23_c02405{bottom:459.075000px;}
.y22_c02405{bottom:490.035000px;}
.y21_c02405{bottom:520.995000px;}
.y20_c02405{bottom:552.165000px;}
.y1f_c02405{bottom:583.125000px;}
.y1e_c02405{bottom:614.265000px;}
.y1d_c02405{bottom:635.145000px;}
.y1c_c02405{bottom:655.845000px;}
.y1b_c02405{bottom:676.545000px;}
.y1a_c02405{bottom:697.245000px;}
.y19_c02405{bottom:717.945000px;}
.y18_c02405{bottom:738.645000px;}
.y17_c02405{bottom:759.345000px;}
.y16_c02405{bottom:776.265000px;}
.y15_c02405{bottom:797.730000px;}
.y14_c02405{bottom:839.850000px;}
.y10_c02405{bottom:861.270000px;}
.y8_c02405{bottom:903.570000px;}
.yb_c02405{bottom:924.990000px;}
.y7_c02405{bottom:982.590000px;}
.y6_c02405{bottom:1003.470000px;}
.y5_c02405{bottom:1024.170000px;}
.y4_c02405{bottom:1065.600000px;}
.h7_c02405{height:20.700000px;}
.h9_c02405{height:20.736000px;}
.h2_c02405{height:22.500000px;}
.h8_c02405{height:41.400000px;}
.h5_c02405{height:42.120000px;}
.h1_c02405{height:48.871406px;}
.h4_c02405{height:63.540000px;}
.ha_c02405{height:64.546875px;}
.h3_c02405{height:70.664062px;}
.h6_c02405{height:72.562500px;}
.h0_c02405{height:1188.000000px;}
.w7_c02405{width:59.436000px;}
.w5_c02405{width:63.000000px;}
.w6_c02405{width:63.036000px;}
.w1_c02405{width:66.636000px;}
.w4_c02405{width:78.480000px;}
.w2_c02405{width:224.490000px;}
.w3_c02405{width:314.535000px;}
.w0_c02405{width:918.000000px;}
.x0_c02405{left:0.000000px;}
.x10_c02405{left:7.740000px;}
.x16_c02405{left:10.620000px;}
.x18_c02405{left:11.700000px;}
.x11_c02405{left:13.860000px;}
.x3_c02405{left:16.560000px;}
.x13_c02405{left:18.540000px;}
.xa_c02405{left:21.780000px;}
.x1e_c02405{left:25.200000px;}
.x1c_c02405{left:27.000000px;}
.x1d_c02405{left:29.700000px;}
.x1b_c02405{left:31.500000px;}
.x1f_c02405{left:34.740000px;}
.xf_c02405{left:39.240000px;}
.x19_c02405{left:46.980000px;}
.x1a_c02405{left:55.980000px;}
.xd_c02405{left:62.640000px;}
.xc_c02405{left:76.140000px;}
.x20_c02405{left:80.640000px;}
.x9_c02405{left:112.140000px;}
.x1_c02405{left:127.656000px;}
.x8_c02405{left:179.310000px;}
.x4_c02405{left:187.050000px;}
.x6_c02405{left:259.590000px;}
.x5_c02405{left:347.655000px;}
.xb_c02405{left:404.535000px;}
.x12_c02405{left:468.255000px;}
.x7_c02405{left:488.775000px;}
.x14_c02405{left:532.005000px;}
.x15_c02405{left:595.905000px;}
.x17_c02405{left:659.625000px;}
.xe_c02405{left:719.790000px;}
.x2_c02405{left:820.950000px;}
@media print{
.v1_c02405{vertical-align:-73.706667pt;}
.v0_c02405{vertical-align:0.000000pt;}
.ls3_c02405{letter-spacing:-0.128000pt;}
.ls2_c02405{letter-spacing:0.000000pt;}
.ls1_c02405{letter-spacing:0.128000pt;}
.ls0_c02405{letter-spacing:828.960000pt;}
.ws0_c02405{word-spacing:-15.872000pt;}
.ws1_c02405{word-spacing:0.000000pt;}
._c_c02405{margin-left:-1.920000pt;}
._0_c02405{margin-left:-0.960000pt;}
._1_c02405{width:1.066667pt;}
._4_c02405{width:2.080000pt;}
._3_c02405{width:3.093333pt;}
._5_c02405{width:4.224000pt;}
._a_c02405{width:5.312000pt;}
._9_c02405{width:6.272000pt;}
._6_c02405{width:7.296000pt;}
._2_c02405{width:8.256000pt;}
._7_c02405{width:10.112000pt;}
._8_c02405{width:11.456000pt;}
._d_c02405{width:14.080000pt;}
._b_c02405{width:15.104000pt;}
._e_c02405{width:31.808000pt;}
.fs0_c02405{font-size:58.880000pt;}
.fs1_c02405{font-size:64.000000pt;}
.y0_c02405{bottom:0.000000pt;}
.y13_c02405{bottom:3.680000pt;}
.yf_c02405{bottom:4.000000pt;}
.y3_c02405{bottom:4.160000pt;}
.yd_c02405{bottom:4.640000pt;}
.y12_c02405{bottom:22.080000pt;}
.y11_c02405{bottom:22.400000pt;}
.yc_c02405{bottom:23.040000pt;}
.ye_c02405{bottom:23.360000pt;}
.ya_c02405{bottom:23.680000pt;}
.y2_c02405{bottom:37.152000pt;}
.y9_c02405{bottom:42.080000pt;}
.y1_c02405{bottom:67.072000pt;}
.y2b_c02405{bottom:187.226667pt;}
.y2a_c02405{bottom:214.746667pt;}
.y29_c02405{bottom:242.466667pt;}
.y28_c02405{bottom:269.986667pt;}
.y27_c02405{bottom:297.666667pt;}
.y26_c02405{bottom:325.186667pt;}
.y25_c02405{bottom:352.866667pt;}
.y24_c02405{bottom:380.386667pt;}
.y23_c02405{bottom:408.066667pt;}
.y22_c02405{bottom:435.586667pt;}
.y21_c02405{bottom:463.106667pt;}
.y20_c02405{bottom:490.813333pt;}
.y1f_c02405{bottom:518.333333pt;}
.y1e_c02405{bottom:546.013333pt;}
.y1d_c02405{bottom:564.573333pt;}
.y1c_c02405{bottom:582.973333pt;}
.y1b_c02405{bottom:601.373333pt;}
.y1a_c02405{bottom:619.773333pt;}
.y19_c02405{bottom:638.173333pt;}
.y18_c02405{bottom:656.573333pt;}
.y17_c02405{bottom:674.973333pt;}
.y16_c02405{bottom:690.013333pt;}
.y15_c02405{bottom:709.093333pt;}
.y14_c02405{bottom:746.533333pt;}
.y10_c02405{bottom:765.573333pt;}
.y8_c02405{bottom:803.173333pt;}
.yb_c02405{bottom:822.213333pt;}
.y7_c02405{bottom:873.413333pt;}
.y6_c02405{bottom:891.973333pt;}
.y5_c02405{bottom:910.373333pt;}
.y4_c02405{bottom:947.200000pt;}
.h7_c02405{height:18.400000pt;}
.h9_c02405{height:18.432000pt;}
.h2_c02405{height:20.000000pt;}
.h8_c02405{height:36.800000pt;}
.h5_c02405{height:37.440000pt;}
.h1_c02405{height:43.441250pt;}
.h4_c02405{height:56.480000pt;}
.ha_c02405{height:57.375000pt;}
.h3_c02405{height:62.812500pt;}
.h6_c02405{height:64.500000pt;}
.h0_c02405{height:1056.000000pt;}
.w7_c02405{width:52.832000pt;}
.w5_c02405{width:56.000000pt;}
.w6_c02405{width:56.032000pt;}
.w1_c02405{width:59.232000pt;}
.w4_c02405{width:69.760000pt;}
.w2_c02405{width:199.546667pt;}
.w3_c02405{width:279.586667pt;}
.w0_c02405{width:816.000000pt;}
.x0_c02405{left:0.000000pt;}
.x10_c02405{left:6.880000pt;}
.x16_c02405{left:9.440000pt;}
.x18_c02405{left:10.400000pt;}
.x11_c02405{left:12.320000pt;}
.x3_c02405{left:14.720000pt;}
.x13_c02405{left:16.480000pt;}
.xa_c02405{left:19.360000pt;}
.x1e_c02405{left:22.400000pt;}
.x1c_c02405{left:24.000000pt;}
.x1d_c02405{left:26.400000pt;}
.x1b_c02405{left:28.000000pt;}
.x1f_c02405{left:30.880000pt;}
.xf_c02405{left:34.880000pt;}
.x19_c02405{left:41.760000pt;}
.x1a_c02405{left:49.760000pt;}
.xd_c02405{left:55.680000pt;}
.xc_c02405{left:67.680000pt;}
.x20_c02405{left:71.680000pt;}
.x9_c02405{left:99.680000pt;}
.x1_c02405{left:113.472000pt;}
.x8_c02405{left:159.386667pt;}
.x4_c02405{left:166.266667pt;}
.x6_c02405{left:230.746667pt;}
.x5_c02405{left:309.026667pt;}
.xb_c02405{left:359.586667pt;}
.x12_c02405{left:416.226667pt;}
.x7_c02405{left:434.466667pt;}
.x14_c02405{left:472.893333pt;}
.x15_c02405{left:529.693333pt;}
.x17_c02405{left:586.333333pt;}
.xe_c02405{left:639.813333pt;}
.x2_c02405{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02406 {
    display:none;
  }
  .loading-indicator_c02406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02406 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02406 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02406" -> "#page-container .classname_c02406")
 */
.pf_c02406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02406 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02406 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02406 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02406 {overflow:visible;}
  }
}
.c_c02406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02406 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02406:after { /* webkit #35443 */
  content: '';
}
.t_c02406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02406 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02406 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02406 { /* info for Javascript */
  display:none;
}
.l_c02406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02406:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02406 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02406.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02406;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff1_c02406{font-family:ff1_c02406;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02406;src:url('chunks/assets/font_ece268a04aafad96b3bc873b.woff2')format("woff");}.ff2_c02406{font-family:ff2_c02406;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:ff3_c02406;src:url('chunks/assets/font_92c97f4dc22cb150606a0149.woff2')format("woff");}.ff3_c02406{font-family:ff3_c02406;line-height:1.112305;font-style:normal;font-weight: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_c02406;src:url('chunks/assets/font_dd6376d0c4c771838cdc86f4.woff2')format("woff");}.ff4_c02406{font-family:ff4_c02406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02406{vertical-align:0.000000px;}
.ls1_c02406{letter-spacing:-0.144000px;}
.ls0_c02406{letter-spacing:0.000000px;}
.ls2_c02406{letter-spacing:0.072000px;}
.sc__c02406{text-shadow:none;}
.sc0_c02406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02406{-webkit-text-stroke:0px transparent;}
.sc0_c02406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02406{word-spacing:-18.072000px;}
.ws0_c02406{word-spacing:-17.856000px;}
.ws2_c02406{word-spacing:0.000000px;}
._0_c02406{margin-left:-1.080000px;}
._1_c02406{width:1.200000px;}
._6_c02406{width:2.592000px;}
._5_c02406{width:4.176000px;}
._e_c02406{width:5.832000px;}
._a_c02406{width:6.924000px;}
._7_c02406{width:8.208000px;}
._2_c02406{width:9.288000px;}
._8_c02406{width:11.124000px;}
._9_c02406{width:12.528000px;}
._f_c02406{width:21.240000px;}
._3_c02406{width:23.976000px;}
._4_c02406{width:25.068000px;}
._c_c02406{width:26.352000px;}
._d_c02406{width:27.996000px;}
._b_c02406{width:34.272000px;}
.fc1_c02406{color:rgb(192,80,77);}
.fc3_c02406{color:rgb(255,255,255);}
.fc2_c02406{color:rgb(17,17,17);}
.fc0_c02406{color:rgb(0,0,0);}
.fs0_c02406{font-size:66.240000px;}
.fs1_c02406{font-size:72.000000px;}
.y0_c02406{bottom:0.000000px;}
.y1f_c02406{bottom:4.140000px;}
.yf_c02406{bottom:4.500000px;}
.y3_c02406{bottom:4.680000px;}
.yd_c02406{bottom:5.220000px;}
.y17_c02406{bottom:25.200000px;}
.yc_c02406{bottom:25.920000px;}
.ye_c02406{bottom:26.280000px;}
.ya_c02406{bottom:26.640000px;}
.y2_c02406{bottom:41.796000px;}
.y1c_c02406{bottom:45.900000px;}
.y16_c02406{bottom:45.945000px;}
.y9_c02406{bottom:47.340000px;}
.y1d_c02406{bottom:66.240000px;}
.y1b_c02406{bottom:66.600000px;}
.y15_c02406{bottom:66.645000px;}
.y1_c02406{bottom:75.456000px;}
.y14_c02406{bottom:87.165000px;}
.y13_c02406{bottom:107.865000px;}
.y19_c02406{bottom:128.205000px;}
.y12_c02406{bottom:128.565000px;}
.y18_c02406{bottom:148.905000px;}
.y32_c02406{bottom:149.256000px;}
.y11_c02406{bottom:149.265000px;}
.y31_c02406{bottom:180.210000px;}
.y30_c02406{bottom:211.350000px;}
.y2f_c02406{bottom:242.310000px;}
.y2e_c02406{bottom:273.495000px;}
.y2d_c02406{bottom:304.455000px;}
.y2c_c02406{bottom:335.595000px;}
.y2b_c02406{bottom:366.555000px;}
.y2a_c02406{bottom:397.695000px;}
.y29_c02406{bottom:428.655000px;}
.y28_c02406{bottom:459.795000px;}
.y27_c02406{bottom:490.755000px;}
.y26_c02406{bottom:511.635000px;}
.y25_c02406{bottom:532.335000px;}
.y24_c02406{bottom:553.065000px;}
.y23_c02406{bottom:573.765000px;}
.y22_c02406{bottom:594.465000px;}
.y21_c02406{bottom:615.165000px;}
.y20_c02406{bottom:635.865000px;}
.y1e_c02406{bottom:652.785000px;}
.y1a_c02406{bottom:674.205000px;}
.y10_c02406{bottom:757.905000px;}
.y8_c02406{bottom:924.270000px;}
.yb_c02406{bottom:945.690000px;}
.y7_c02406{bottom:1003.290000px;}
.y6_c02406{bottom:1024.170000px;}
.y5_c02406{bottom:1044.870000px;}
.y4_c02406{bottom:1065.600000px;}
.h7_c02406{height:20.700000px;}
.h2_c02406{height:22.500000px;}
.h5_c02406{height:42.120000px;}
.h1_c02406{height:48.871406px;}
.h4_c02406{height:63.540000px;}
.ha_c02406{height:64.546875px;}
.h3_c02406{height:70.664062px;}
.h6_c02406{height:72.562500px;}
.h9_c02406{height:82.800000px;}
.h8_c02406{height:165.450000px;}
.h0_c02406{height:1188.000000px;}
.w7_c02406{width:59.436000px;}
.w5_c02406{width:63.000000px;}
.w6_c02406{width:63.036000px;}
.w1_c02406{width:66.636000px;}
.w4_c02406{width:78.480000px;}
.w2_c02406{width:224.490000px;}
.w3_c02406{width:314.535000px;}
.w0_c02406{width:918.000000px;}
.x0_c02406{left:0.000000px;}
.x10_c02406{left:7.740000px;}
.x16_c02406{left:10.620000px;}
.x18_c02406{left:11.700000px;}
.x11_c02406{left:13.860000px;}
.x3_c02406{left:16.560000px;}
.x13_c02406{left:18.540000px;}
.x1a_c02406{left:23.580000px;}
.x1f_c02406{left:25.200000px;}
.x1d_c02406{left:27.000000px;}
.x1e_c02406{left:29.700000px;}
.x19_c02406{left:30.780000px;}
.x21_c02406{left:31.860000px;}
.x20_c02406{left:34.740000px;}
.xf_c02406{left:39.240000px;}
.x22_c02406{left:46.260000px;}
.xa_c02406{left:48.960000px;}
.x1b_c02406{left:50.760000px;}
.x1c_c02406{left:56.520000px;}
.xd_c02406{left:62.640000px;}
.xc_c02406{left:76.140000px;}
.x23_c02406{left:80.640000px;}
.x9_c02406{left:112.140000px;}
.x1_c02406{left:127.656000px;}
.x8_c02406{left:179.310000px;}
.x24_c02406{left:187.050000px;}
.x6_c02406{left:286.770000px;}
.x5_c02406{left:347.655000px;}
.xb_c02406{left:404.535000px;}
.x4_c02406{left:424.695000px;}
.x12_c02406{left:468.255000px;}
.x7_c02406{left:488.775000px;}
.x14_c02406{left:532.005000px;}
.x15_c02406{left:595.905000px;}
.x17_c02406{left:659.625000px;}
.xe_c02406{left:719.790000px;}
.x2_c02406{left:820.950000px;}
@media print{
.v0_c02406{vertical-align:0.000000pt;}
.ls1_c02406{letter-spacing:-0.128000pt;}
.ls0_c02406{letter-spacing:0.000000pt;}
.ls2_c02406{letter-spacing:0.064000pt;}
.ws1_c02406{word-spacing:-16.064000pt;}
.ws0_c02406{word-spacing:-15.872000pt;}
.ws2_c02406{word-spacing:0.000000pt;}
._0_c02406{margin-left:-0.960000pt;}
._1_c02406{width:1.066667pt;}
._6_c02406{width:2.304000pt;}
._5_c02406{width:3.712000pt;}
._e_c02406{width:5.184000pt;}
._a_c02406{width:6.154667pt;}
._7_c02406{width:7.296000pt;}
._2_c02406{width:8.256000pt;}
._8_c02406{width:9.888000pt;}
._9_c02406{width:11.136000pt;}
._f_c02406{width:18.880000pt;}
._3_c02406{width:21.312000pt;}
._4_c02406{width:22.282667pt;}
._c_c02406{width:23.424000pt;}
._d_c02406{width:24.885333pt;}
._b_c02406{width:30.464000pt;}
.fs0_c02406{font-size:58.880000pt;}
.fs1_c02406{font-size:64.000000pt;}
.y0_c02406{bottom:0.000000pt;}
.y1f_c02406{bottom:3.680000pt;}
.yf_c02406{bottom:4.000000pt;}
.y3_c02406{bottom:4.160000pt;}
.yd_c02406{bottom:4.640000pt;}
.y17_c02406{bottom:22.400000pt;}
.yc_c02406{bottom:23.040000pt;}
.ye_c02406{bottom:23.360000pt;}
.ya_c02406{bottom:23.680000pt;}
.y2_c02406{bottom:37.152000pt;}
.y1c_c02406{bottom:40.800000pt;}
.y16_c02406{bottom:40.840000pt;}
.y9_c02406{bottom:42.080000pt;}
.y1d_c02406{bottom:58.880000pt;}
.y1b_c02406{bottom:59.200000pt;}
.y15_c02406{bottom:59.240000pt;}
.y1_c02406{bottom:67.072000pt;}
.y14_c02406{bottom:77.480000pt;}
.y13_c02406{bottom:95.880000pt;}
.y19_c02406{bottom:113.960000pt;}
.y12_c02406{bottom:114.280000pt;}
.y18_c02406{bottom:132.360000pt;}
.y32_c02406{bottom:132.672000pt;}
.y11_c02406{bottom:132.680000pt;}
.y31_c02406{bottom:160.186667pt;}
.y30_c02406{bottom:187.866667pt;}
.y2f_c02406{bottom:215.386667pt;}
.y2e_c02406{bottom:243.106667pt;}
.y2d_c02406{bottom:270.626667pt;}
.y2c_c02406{bottom:298.306667pt;}
.y2b_c02406{bottom:325.826667pt;}
.y2a_c02406{bottom:353.506667pt;}
.y29_c02406{bottom:381.026667pt;}
.y28_c02406{bottom:408.706667pt;}
.y27_c02406{bottom:436.226667pt;}
.y26_c02406{bottom:454.786667pt;}
.y25_c02406{bottom:473.186667pt;}
.y24_c02406{bottom:491.613333pt;}
.y23_c02406{bottom:510.013333pt;}
.y22_c02406{bottom:528.413333pt;}
.y21_c02406{bottom:546.813333pt;}
.y20_c02406{bottom:565.213333pt;}
.y1e_c02406{bottom:580.253333pt;}
.y1a_c02406{bottom:599.293333pt;}
.y10_c02406{bottom:673.693333pt;}
.y8_c02406{bottom:821.573333pt;}
.yb_c02406{bottom:840.613333pt;}
.y7_c02406{bottom:891.813333pt;}
.y6_c02406{bottom:910.373333pt;}
.y5_c02406{bottom:928.773333pt;}
.y4_c02406{bottom:947.200000pt;}
.h7_c02406{height:18.400000pt;}
.h2_c02406{height:20.000000pt;}
.h5_c02406{height:37.440000pt;}
.h1_c02406{height:43.441250pt;}
.h4_c02406{height:56.480000pt;}
.ha_c02406{height:57.375000pt;}
.h3_c02406{height:62.812500pt;}
.h6_c02406{height:64.500000pt;}
.h9_c02406{height:73.600000pt;}
.h8_c02406{height:147.066667pt;}
.h0_c02406{height:1056.000000pt;}
.w7_c02406{width:52.832000pt;}
.w5_c02406{width:56.000000pt;}
.w6_c02406{width:56.032000pt;}
.w1_c02406{width:59.232000pt;}
.w4_c02406{width:69.760000pt;}
.w2_c02406{width:199.546667pt;}
.w3_c02406{width:279.586667pt;}
.w0_c02406{width:816.000000pt;}
.x0_c02406{left:0.000000pt;}
.x10_c02406{left:6.880000pt;}
.x16_c02406{left:9.440000pt;}
.x18_c02406{left:10.400000pt;}
.x11_c02406{left:12.320000pt;}
.x3_c02406{left:14.720000pt;}
.x13_c02406{left:16.480000pt;}
.x1a_c02406{left:20.960000pt;}
.x1f_c02406{left:22.400000pt;}
.x1d_c02406{left:24.000000pt;}
.x1e_c02406{left:26.400000pt;}
.x19_c02406{left:27.360000pt;}
.x21_c02406{left:28.320000pt;}
.x20_c02406{left:30.880000pt;}
.xf_c02406{left:34.880000pt;}
.x22_c02406{left:41.120000pt;}
.xa_c02406{left:43.520000pt;}
.x1b_c02406{left:45.120000pt;}
.x1c_c02406{left:50.240000pt;}
.xd_c02406{left:55.680000pt;}
.xc_c02406{left:67.680000pt;}
.x23_c02406{left:71.680000pt;}
.x9_c02406{left:99.680000pt;}
.x1_c02406{left:113.472000pt;}
.x8_c02406{left:159.386667pt;}
.x24_c02406{left:166.266667pt;}
.x6_c02406{left:254.906667pt;}
.x5_c02406{left:309.026667pt;}
.xb_c02406{left:359.586667pt;}
.x4_c02406{left:377.506667pt;}
.x12_c02406{left:416.226667pt;}
.x7_c02406{left:434.466667pt;}
.x14_c02406{left:472.893333pt;}
.x15_c02406{left:529.693333pt;}
.x17_c02406{left:586.333333pt;}
.xe_c02406{left:639.813333pt;}
.x2_c02406{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02407 {
    display:none;
  }
  .loading-indicator_c02407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02407 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02407 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02407" -> "#page-container .classname_c02407")
 */
.pf_c02407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02407 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02407 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02407 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02407 {overflow:visible;}
  }
}
.c_c02407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02407 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02407:after { /* webkit #35443 */
  content: '';
}
.t_c02407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02407 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02407 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02407 { /* info for Javascript */
  display:none;
}
.l_c02407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02407:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02407 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02407.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02407;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02407{font-family:ff1_c02407;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02407;src:url('chunks/assets/font_dfdd47f617f969800beb13a7.woff2')format("woff");}.ff2_c02407{font-family:ff2_c02407;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:ff3_c02407;src:url('chunks/assets/font_aa0c5222f0611d5be95a3a83.woff2')format("woff");}.ff3_c02407{font-family:ff3_c02407;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02407{vertical-align:0.000000px;}
.ls0_c02407{letter-spacing:0.000000px;}
.sc__c02407{text-shadow:none;}
.sc0_c02407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02407{-webkit-text-stroke:0px transparent;}
.sc0_c02407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02407{word-spacing:-18.000000px;}
.ws1_c02407{word-spacing:0.000000px;}
._c_c02407{margin-left:-2.952000px;}
._3_c02407{margin-left:-1.080000px;}
._1_c02407{width:1.080000px;}
._8_c02407{width:2.952000px;}
._4_c02407{width:4.140000px;}
._2_c02407{width:5.328000px;}
._a_c02407{width:6.912000px;}
._b_c02407{width:7.920000px;}
._0_c02407{width:9.864000px;}
._10_c02407{width:11.664000px;}
._e_c02407{width:13.464000px;}
._d_c02407{width:14.760000px;}
._f_c02407{width:16.488000px;}
._6_c02407{width:19.440000px;}
._5_c02407{width:20.448000px;}
._7_c02407{width:21.612000px;}
._9_c02407{width:22.824000px;}
._11_c02407{width:25.488000px;}
.fc1_c02407{color:rgb(192,80,77);}
.fc2_c02407{color:rgb(17,17,17);}
.fc0_c02407{color:rgb(0,0,0);}
.fs0_c02407{font-size:66.240000px;}
.fs1_c02407{font-size:72.000000px;}
.y0_c02407{bottom:0.000000px;}
.y3_c02407{bottom:4.680000px;}
.y2_c02407{bottom:41.796000px;}
.y1_c02407{bottom:75.456000px;}
.y22_c02407{bottom:133.776000px;}
.y21_c02407{bottom:164.910000px;}
.y20_c02407{bottom:195.870000px;}
.y1f_c02407{bottom:226.830000px;}
.y1e_c02407{bottom:257.970000px;}
.y1d_c02407{bottom:288.975000px;}
.y1c_c02407{bottom:320.115000px;}
.y1b_c02407{bottom:351.075000px;}
.y1a_c02407{bottom:382.215000px;}
.y19_c02407{bottom:413.175000px;}
.y18_c02407{bottom:444.315000px;}
.y17_c02407{bottom:475.275000px;}
.y16_c02407{bottom:506.415000px;}
.y15_c02407{bottom:537.405000px;}
.y14_c02407{bottom:568.545000px;}
.y13_c02407{bottom:599.505000px;}
.y12_c02407{bottom:630.645000px;}
.y11_c02407{bottom:661.605000px;}
.y10_c02407{bottom:692.745000px;}
.yf_c02407{bottom:723.705000px;}
.ye_c02407{bottom:754.845000px;}
.yd_c02407{bottom:785.805000px;}
.yc_c02407{bottom:816.990000px;}
.yb_c02407{bottom:847.950000px;}
.ya_c02407{bottom:879.090000px;}
.y9_c02407{bottom:910.050000px;}
.y8_c02407{bottom:941.190000px;}
.y7_c02407{bottom:972.150000px;}
.y6_c02407{bottom:1003.290000px;}
.y5_c02407{bottom:1034.250000px;}
.y4_c02407{bottom:1065.420000px;}
.h2_c02407{height:22.500000px;}
.h1_c02407{height:48.871406px;}
.h4_c02407{height:64.546875px;}
.h3_c02407{height:70.664062px;}
.h0_c02407{height:1188.000000px;}
.w1_c02407{width:66.636000px;}
.w0_c02407{width:918.000000px;}
.x0_c02407{left:0.000000px;}
.x3_c02407{left:16.560000px;}
.x1_c02407{left:127.656000px;}
.x4_c02407{left:187.050000px;}
.x2_c02407{left:820.950000px;}
@media print{
.v0_c02407{vertical-align:0.000000pt;}
.ls0_c02407{letter-spacing:0.000000pt;}
.ws0_c02407{word-spacing:-16.000000pt;}
.ws1_c02407{word-spacing:0.000000pt;}
._c_c02407{margin-left:-2.624000pt;}
._3_c02407{margin-left:-0.960000pt;}
._1_c02407{width:0.960000pt;}
._8_c02407{width:2.624000pt;}
._4_c02407{width:3.680000pt;}
._2_c02407{width:4.736000pt;}
._a_c02407{width:6.144000pt;}
._b_c02407{width:7.040000pt;}
._0_c02407{width:8.768000pt;}
._10_c02407{width:10.368000pt;}
._e_c02407{width:11.968000pt;}
._d_c02407{width:13.120000pt;}
._f_c02407{width:14.656000pt;}
._6_c02407{width:17.280000pt;}
._5_c02407{width:18.176000pt;}
._7_c02407{width:19.210667pt;}
._9_c02407{width:20.288000pt;}
._11_c02407{width:22.656000pt;}
.fs0_c02407{font-size:58.880000pt;}
.fs1_c02407{font-size:64.000000pt;}
.y0_c02407{bottom:0.000000pt;}
.y3_c02407{bottom:4.160000pt;}
.y2_c02407{bottom:37.152000pt;}
.y1_c02407{bottom:67.072000pt;}
.y22_c02407{bottom:118.912000pt;}
.y21_c02407{bottom:146.586667pt;}
.y20_c02407{bottom:174.106667pt;}
.y1f_c02407{bottom:201.626667pt;}
.y1e_c02407{bottom:229.306667pt;}
.y1d_c02407{bottom:256.866667pt;}
.y1c_c02407{bottom:284.546667pt;}
.y1b_c02407{bottom:312.066667pt;}
.y1a_c02407{bottom:339.746667pt;}
.y19_c02407{bottom:367.266667pt;}
.y18_c02407{bottom:394.946667pt;}
.y17_c02407{bottom:422.466667pt;}
.y16_c02407{bottom:450.146667pt;}
.y15_c02407{bottom:477.693333pt;}
.y14_c02407{bottom:505.373333pt;}
.y13_c02407{bottom:532.893333pt;}
.y12_c02407{bottom:560.573333pt;}
.y11_c02407{bottom:588.093333pt;}
.y10_c02407{bottom:615.773333pt;}
.yf_c02407{bottom:643.293333pt;}
.ye_c02407{bottom:670.973333pt;}
.yd_c02407{bottom:698.493333pt;}
.yc_c02407{bottom:726.213333pt;}
.yb_c02407{bottom:753.733333pt;}
.ya_c02407{bottom:781.413333pt;}
.y9_c02407{bottom:808.933333pt;}
.y8_c02407{bottom:836.613333pt;}
.y7_c02407{bottom:864.133333pt;}
.y6_c02407{bottom:891.813333pt;}
.y5_c02407{bottom:919.333333pt;}
.y4_c02407{bottom:947.040000pt;}
.h2_c02407{height:20.000000pt;}
.h1_c02407{height:43.441250pt;}
.h4_c02407{height:57.375000pt;}
.h3_c02407{height:62.812500pt;}
.h0_c02407{height:1056.000000pt;}
.w1_c02407{width:59.232000pt;}
.w0_c02407{width:816.000000pt;}
.x0_c02407{left:0.000000pt;}
.x3_c02407{left:14.720000pt;}
.x1_c02407{left:113.472000pt;}
.x4_c02407{left:166.266667pt;}
.x2_c02407{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02408 {
    display:none;
  }
  .loading-indicator_c02408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02408 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02408 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02408" -> "#page-container .classname_c02408")
 */
.pf_c02408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02408 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02408 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02408 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02408 {overflow:visible;}
  }
}
.c_c02408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02408 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02408:after { /* webkit #35443 */
  content: '';
}
.t_c02408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02408 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02408 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02408 { /* info for Javascript */
  display:none;
}
.l_c02408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02408:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02408 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02408.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02408;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02408{font-family:ff1_c02408;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02408;src:url('chunks/assets/font_21c1840760764eb561222e07.woff2')format("woff");}.ff2_c02408{font-family:ff2_c02408;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:ff3_c02408;src:url('chunks/assets/font_01188fb9834c09c23eaf76ac.woff2')format("woff");}.ff3_c02408{font-family:ff3_c02408;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02408{vertical-align:0.000000px;}
.ls0_c02408{letter-spacing:0.000000px;}
.sc__c02408{text-shadow:none;}
.sc0_c02408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02408{-webkit-text-stroke:0px transparent;}
.sc0_c02408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02408{word-spacing:0.000000px;}
._3_c02408{margin-left:-1.080000px;}
._1_c02408{width:1.080000px;}
._2_c02408{width:2.160000px;}
._4_c02408{width:3.240000px;}
._6_c02408{width:4.608000px;}
._5_c02408{width:6.192000px;}
._9_c02408{width:7.200000px;}
._7_c02408{width:13.536000px;}
._8_c02408{width:15.408000px;}
._0_c02408{width:23.616000px;}
.fc1_c02408{color:rgb(192,80,77);}
.fc0_c02408{color:rgb(0,0,0);}
.fs0_c02408{font-size:66.240000px;}
.fs1_c02408{font-size:72.000000px;}
.y0_c02408{bottom:0.000000px;}
.y3_c02408{bottom:4.680000px;}
.y2_c02408{bottom:41.796000px;}
.y1_c02408{bottom:75.456000px;}
.yd_c02408{bottom:785.805000px;}
.yc_c02408{bottom:816.990000px;}
.yb_c02408{bottom:847.950000px;}
.ya_c02408{bottom:879.090000px;}
.y9_c02408{bottom:910.050000px;}
.y8_c02408{bottom:941.190000px;}
.y7_c02408{bottom:972.150000px;}
.y6_c02408{bottom:1003.290000px;}
.y5_c02408{bottom:1034.250000px;}
.y4_c02408{bottom:1065.420000px;}
.h2_c02408{height:22.500000px;}
.h1_c02408{height:48.871406px;}
.h3_c02408{height:70.664062px;}
.h0_c02408{height:1188.000000px;}
.w1_c02408{width:66.636000px;}
.w0_c02408{width:918.000000px;}
.x0_c02408{left:0.000000px;}
.x3_c02408{left:16.560000px;}
.x1_c02408{left:127.656000px;}
.x4_c02408{left:187.050000px;}
.x2_c02408{left:820.950000px;}
@media print{
.v0_c02408{vertical-align:0.000000pt;}
.ls0_c02408{letter-spacing:0.000000pt;}
.ws0_c02408{word-spacing:0.000000pt;}
._3_c02408{margin-left:-0.960000pt;}
._1_c02408{width:0.960000pt;}
._2_c02408{width:1.920000pt;}
._4_c02408{width:2.880000pt;}
._6_c02408{width:4.096000pt;}
._5_c02408{width:5.504000pt;}
._9_c02408{width:6.400000pt;}
._7_c02408{width:12.032000pt;}
._8_c02408{width:13.696000pt;}
._0_c02408{width:20.992000pt;}
.fs0_c02408{font-size:58.880000pt;}
.fs1_c02408{font-size:64.000000pt;}
.y0_c02408{bottom:0.000000pt;}
.y3_c02408{bottom:4.160000pt;}
.y2_c02408{bottom:37.152000pt;}
.y1_c02408{bottom:67.072000pt;}
.yd_c02408{bottom:698.493333pt;}
.yc_c02408{bottom:726.213333pt;}
.yb_c02408{bottom:753.733333pt;}
.ya_c02408{bottom:781.413333pt;}
.y9_c02408{bottom:808.933333pt;}
.y8_c02408{bottom:836.613333pt;}
.y7_c02408{bottom:864.133333pt;}
.y6_c02408{bottom:891.813333pt;}
.y5_c02408{bottom:919.333333pt;}
.y4_c02408{bottom:947.040000pt;}
.h2_c02408{height:20.000000pt;}
.h1_c02408{height:43.441250pt;}
.h3_c02408{height:62.812500pt;}
.h0_c02408{height:1056.000000pt;}
.w1_c02408{width:59.232000pt;}
.w0_c02408{width:816.000000pt;}
.x0_c02408{left:0.000000pt;}
.x3_c02408{left:14.720000pt;}
.x1_c02408{left:113.472000pt;}
.x4_c02408{left:166.266667pt;}
.x2_c02408{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02409 {
    display:none;
  }
  .loading-indicator_c02409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02409 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02409 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02409" -> "#page-container .classname_c02409")
 */
.pf_c02409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02409 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02409 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02409 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02409 {overflow:visible;}
  }
}
.c_c02409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02409 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02409:after { /* webkit #35443 */
  content: '';
}
.t_c02409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02409 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02409 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02409 { /* info for Javascript */
  display:none;
}
.l_c02409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02409:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02409 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02409.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02409;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02409{font-family:ff1_c02409;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02409;src:url('chunks/assets/font_c9a1559290c6b3ef8fb9f1aa.woff2')format("woff");}.ff2_c02409{font-family:ff2_c02409;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:ff3_c02409;src:url('chunks/assets/font_05ad6b9fe11e92569b077c47.woff2')format("woff");}.ff3_c02409{font-family:ff3_c02409;line-height:1.112305;font-style:normal;font-weight: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_c02409;src:url('chunks/assets/font_6d0c2abf9062f30929d11080.woff2')format("woff");}.ff4_c02409{font-family:ff4_c02409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02409{vertical-align:0.000000px;}
.ls1_c02409{letter-spacing:-0.385800px;}
.ls0_c02409{letter-spacing:0.000000px;}
.ls2_c02409{letter-spacing:0.334200px;}
.sc__c02409{text-shadow:none;}
.sc0_c02409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02409{-webkit-text-stroke:0px transparent;}
.sc0_c02409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02409{word-spacing:-16.174200px;}
.ws1_c02409{word-spacing:-15.840000px;}
.ws0_c02409{word-spacing:-15.454200px;}
.ws3_c02409{word-spacing:0.000000px;}
._0_c02409{margin-left:-1.080000px;}
._3_c02409{width:1.080000px;}
._4_c02409{width:3.264000px;}
._6_c02409{width:4.380000px;}
._5_c02409{width:5.544000px;}
._1_c02409{width:12.168000px;}
._2_c02409{width:13.464000px;}
.fc1_c02409{color:rgb(192,80,77);}
.fc3_c02409{color:rgb(255,255,255);}
.fc2_c02409{color:rgb(17,17,17);}
.fc0_c02409{color:rgb(0,0,0);}
.fs2_c02409{font-size:63.360000px;}
.fs0_c02409{font-size:66.240000px;}
.fs1_c02409{font-size:72.000000px;}
.y0_c02409{bottom:0.000000px;}
.y13_c02409{bottom:3.420000px;}
.y10_c02409{bottom:3.600000px;}
.y22_c02409{bottom:3.630000px;}
.y12_c02409{bottom:3.780000px;}
.ye_c02409{bottom:3.960000px;}
.y21_c02409{bottom:3.990000px;}
.y3_c02409{bottom:4.860000px;}
.yc_c02409{bottom:9.720000px;}
.y1f_c02409{bottom:21.600000px;}
.y1b_c02409{bottom:21.780000px;}
.y1e_c02409{bottom:21.960000px;}
.y1a_c02409{bottom:22.140000px;}
.yb_c02409{bottom:27.900000px;}
.yd_c02409{bottom:28.260000px;}
.y9_c02409{bottom:28.620000px;}
.y8_c02409{bottom:46.800000px;}
.y2_c02409{bottom:52.416000px;}
.y1_c02409{bottom:75.456000px;}
.y30_c02409{bottom:155.010000px;}
.y2f_c02409{bottom:175.710000px;}
.y2e_c02409{bottom:196.410000px;}
.y2d_c02409{bottom:217.110000px;}
.y2c_c02409{bottom:234.075000px;}
.y2b_c02409{bottom:252.975000px;}
.y2a_c02409{bottom:271.875000px;}
.y29_c02409{bottom:290.775000px;}
.y28_c02409{bottom:309.675000px;}
.y27_c02409{bottom:328.395000px;}
.y26_c02409{bottom:347.295000px;}
.y25_c02409{bottom:366.195000px;}
.y24_c02409{bottom:385.095000px;}
.y23_c02409{bottom:403.995000px;}
.y20_c02409{bottom:422.715000px;}
.y1d_c02409{bottom:441.645000px;}
.y1c_c02409{bottom:478.545000px;}
.y19_c02409{bottom:497.445000px;}
.y18_c02409{bottom:534.525000px;}
.y17_c02409{bottom:553.245000px;}
.y16_c02409{bottom:572.145000px;}
.y15_c02409{bottom:591.045000px;}
.y14_c02409{bottom:609.945000px;}
.y11_c02409{bottom:628.890000px;}
.yf_c02409{bottom:647.610000px;}
.y7_c02409{bottom:666.510000px;}
.ya_c02409{bottom:685.410000px;}
.y6_c02409{bottom:732.750000px;}
.y5_c02409{bottom:753.450000px;}
.y4_c02409{bottom:774.150000px;}
.h9_c02409{height:18.000000px;}
.ha_c02409{height:18.036000px;}
.h8_c02409{height:18.180000px;}
.hd_c02409{height:18.216000px;}
.h2_c02409{height:22.680000px;}
.hc_c02409{height:36.180000px;}
.hb_c02409{height:36.360000px;}
.h6_c02409{height:42.120000px;}
.h1_c02409{height:48.871406px;}
.h4_c02409{height:61.020000px;}
.h5_c02409{height:62.184375px;}
.h7_c02409{height:63.855000px;}
.he_c02409{height:64.546875px;}
.h3_c02409{height:70.664062px;}
.h0_c02409{height:918.000000px;}
.w5_c02409{width:52.380000px;}
.w7_c02409{width:63.000000px;}
.w6_c02409{width:63.180000px;}
.w8_c02409{width:63.216000px;}
.w1_c02409{width:66.780000px;}
.w4_c02409{width:73.620000px;}
.w3_c02409{width:307.650000px;}
.w2_c02409{width:592.485000px;}
.w0_c02409{width:1188.000000px;}
.x0_c02409{left:0.000000px;}
.xf_c02409{left:9.180000px;}
.x10_c02409{left:10.800000px;}
.x15_c02409{left:13.140000px;}
.x3_c02409{left:16.560000px;}
.x12_c02409{left:20.160000px;}
.x18_c02409{left:22.140000px;}
.x1c_c02409{left:24.156000px;}
.x21_c02409{left:26.100000px;}
.x19_c02409{left:27.540000px;}
.x30_c02409{left:28.800000px;}
.x22_c02409{left:31.500000px;}
.x1a_c02409{left:32.760000px;}
.xe_c02409{left:36.720000px;}
.x24_c02409{left:43.230000px;}
.x23_c02409{left:46.290000px;}
.xc_c02409{left:71.100000px;}
.xb_c02409{left:82.800000px;}
.x1_c02409{left:106.200000px;}
.x7_c02409{left:108.900000px;}
.x1d_c02409{left:137.010000px;}
.x25_c02409{left:142.950000px;}
.x1f_c02409{left:151.230000px;}
.x2e_c02409{left:162.930000px;}
.x1e_c02409{left:180.930000px;}
.x20_c02409{left:203.070000px;}
.x17_c02409{left:206.130000px;}
.x2a_c02409{left:218.550000px;}
.x2c_c02409{left:220.530000px;}
.x2b_c02409{left:239.790000px;}
.x28_c02409{left:241.050000px;}
.x26_c02409{left:245.910000px;}
.x29_c02409{left:250.230000px;}
.x27_c02409{left:254.730000px;}
.x1b_c02409{left:261.390000px;}
.x9_c02409{left:265.350000px;}
.x2f_c02409{left:268.410000px;}
.x2d_c02409{left:272.370000px;}
.x8_c02409{left:295.995000px;}
.x5_c02409{left:306.570000px;}
.x4_c02409{left:575.895000px;}
.x6_c02409{left:623.595000px;}
.xa_c02409{left:702.105000px;}
.x11_c02409{left:755.205000px;}
.x13_c02409{left:819.105000px;}
.x14_c02409{left:882.825000px;}
.x16_c02409{left:946.770000px;}
.xd_c02409{left:1010.490000px;}
.x2_c02409{left:1101.570000px;}
@media print{
.v0_c02409{vertical-align:0.000000pt;}
.ls1_c02409{letter-spacing:-0.342933pt;}
.ls0_c02409{letter-spacing:0.000000pt;}
.ls2_c02409{letter-spacing:0.297067pt;}
.ws2_c02409{word-spacing:-14.377067pt;}
.ws1_c02409{word-spacing:-14.080000pt;}
.ws0_c02409{word-spacing:-13.737067pt;}
.ws3_c02409{word-spacing:0.000000pt;}
._0_c02409{margin-left:-0.960000pt;}
._3_c02409{width:0.960000pt;}
._4_c02409{width:2.901333pt;}
._6_c02409{width:3.893333pt;}
._5_c02409{width:4.928000pt;}
._1_c02409{width:10.816000pt;}
._2_c02409{width:11.968000pt;}
.fs2_c02409{font-size:56.320000pt;}
.fs0_c02409{font-size:58.880000pt;}
.fs1_c02409{font-size:64.000000pt;}
.y0_c02409{bottom:0.000000pt;}
.y13_c02409{bottom:3.040000pt;}
.y10_c02409{bottom:3.200000pt;}
.y22_c02409{bottom:3.226667pt;}
.y12_c02409{bottom:3.360000pt;}
.ye_c02409{bottom:3.520000pt;}
.y21_c02409{bottom:3.546667pt;}
.y3_c02409{bottom:4.320000pt;}
.yc_c02409{bottom:8.640000pt;}
.y1f_c02409{bottom:19.200000pt;}
.y1b_c02409{bottom:19.360000pt;}
.y1e_c02409{bottom:19.520000pt;}
.y1a_c02409{bottom:19.680000pt;}
.yb_c02409{bottom:24.800000pt;}
.yd_c02409{bottom:25.120000pt;}
.y9_c02409{bottom:25.440000pt;}
.y8_c02409{bottom:41.600000pt;}
.y2_c02409{bottom:46.592000pt;}
.y1_c02409{bottom:67.072000pt;}
.y30_c02409{bottom:137.786667pt;}
.y2f_c02409{bottom:156.186667pt;}
.y2e_c02409{bottom:174.586667pt;}
.y2d_c02409{bottom:192.986667pt;}
.y2c_c02409{bottom:208.066667pt;}
.y2b_c02409{bottom:224.866667pt;}
.y2a_c02409{bottom:241.666667pt;}
.y29_c02409{bottom:258.466667pt;}
.y28_c02409{bottom:275.266667pt;}
.y27_c02409{bottom:291.906667pt;}
.y26_c02409{bottom:308.706667pt;}
.y25_c02409{bottom:325.506667pt;}
.y24_c02409{bottom:342.306667pt;}
.y23_c02409{bottom:359.106667pt;}
.y20_c02409{bottom:375.746667pt;}
.y1d_c02409{bottom:392.573333pt;}
.y1c_c02409{bottom:425.373333pt;}
.y19_c02409{bottom:442.173333pt;}
.y18_c02409{bottom:475.133333pt;}
.y17_c02409{bottom:491.773333pt;}
.y16_c02409{bottom:508.573333pt;}
.y15_c02409{bottom:525.373333pt;}
.y14_c02409{bottom:542.173333pt;}
.y11_c02409{bottom:559.013333pt;}
.yf_c02409{bottom:575.653333pt;}
.y7_c02409{bottom:592.453333pt;}
.ya_c02409{bottom:609.253333pt;}
.y6_c02409{bottom:651.333333pt;}
.y5_c02409{bottom:669.733333pt;}
.y4_c02409{bottom:688.133333pt;}
.h9_c02409{height:16.000000pt;}
.ha_c02409{height:16.032000pt;}
.h8_c02409{height:16.160000pt;}
.hd_c02409{height:16.192000pt;}
.h2_c02409{height:20.160000pt;}
.hc_c02409{height:32.160000pt;}
.hb_c02409{height:32.320000pt;}
.h6_c02409{height:37.440000pt;}
.h1_c02409{height:43.441250pt;}
.h4_c02409{height:54.240000pt;}
.h5_c02409{height:55.275000pt;}
.h7_c02409{height:56.760000pt;}
.he_c02409{height:57.375000pt;}
.h3_c02409{height:62.812500pt;}
.h0_c02409{height:816.000000pt;}
.w5_c02409{width:46.560000pt;}
.w7_c02409{width:56.000000pt;}
.w6_c02409{width:56.160000pt;}
.w8_c02409{width:56.192000pt;}
.w1_c02409{width:59.360000pt;}
.w4_c02409{width:65.440000pt;}
.w3_c02409{width:273.466667pt;}
.w2_c02409{width:526.653333pt;}
.w0_c02409{width:1056.000000pt;}
.x0_c02409{left:0.000000pt;}
.xf_c02409{left:8.160000pt;}
.x10_c02409{left:9.600000pt;}
.x15_c02409{left:11.680000pt;}
.x3_c02409{left:14.720000pt;}
.x12_c02409{left:17.920000pt;}
.x18_c02409{left:19.680000pt;}
.x1c_c02409{left:21.472000pt;}
.x21_c02409{left:23.200000pt;}
.x19_c02409{left:24.480000pt;}
.x30_c02409{left:25.600000pt;}
.x22_c02409{left:28.000000pt;}
.x1a_c02409{left:29.120000pt;}
.xe_c02409{left:32.640000pt;}
.x24_c02409{left:38.426667pt;}
.x23_c02409{left:41.146667pt;}
.xc_c02409{left:63.200000pt;}
.xb_c02409{left:73.600000pt;}
.x1_c02409{left:94.400000pt;}
.x7_c02409{left:96.800000pt;}
.x1d_c02409{left:121.786667pt;}
.x25_c02409{left:127.066667pt;}
.x1f_c02409{left:134.426667pt;}
.x2e_c02409{left:144.826667pt;}
.x1e_c02409{left:160.826667pt;}
.x20_c02409{left:180.506667pt;}
.x17_c02409{left:183.226667pt;}
.x2a_c02409{left:194.266667pt;}
.x2c_c02409{left:196.026667pt;}
.x2b_c02409{left:213.146667pt;}
.x28_c02409{left:214.266667pt;}
.x26_c02409{left:218.586667pt;}
.x29_c02409{left:222.426667pt;}
.x27_c02409{left:226.426667pt;}
.x1b_c02409{left:232.346667pt;}
.x9_c02409{left:235.866667pt;}
.x2f_c02409{left:238.586667pt;}
.x2d_c02409{left:242.106667pt;}
.x8_c02409{left:263.106667pt;}
.x5_c02409{left:272.506667pt;}
.x4_c02409{left:511.906667pt;}
.x6_c02409{left:554.306667pt;}
.xa_c02409{left:624.093333pt;}
.x11_c02409{left:671.293333pt;}
.x13_c02409{left:728.093333pt;}
.x14_c02409{left:784.733333pt;}
.x16_c02409{left:841.573333pt;}
.xd_c02409{left:898.213333pt;}
.x2_c02409{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02410 {
    display:none;
  }
  .loading-indicator_c02410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02410 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02410 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02410" -> "#page-container .classname_c02410")
 */
.pf_c02410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02410 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02410 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02410 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02410 {overflow:visible;}
  }
}
.c_c02410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02410 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02410:after { /* webkit #35443 */
  content: '';
}
.t_c02410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02410 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02410 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02410 { /* info for Javascript */
  display:none;
}
.l_c02410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02410:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02410 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02410.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02410;src:url('chunks/assets/font_e90a743d00850c5cfaaff3e6.woff2')format("woff");}.ff1_c02410{font-family:ff1_c02410;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02410;src:url('chunks/assets/font_b462e8a1a79d38dff70ad153.woff2')format("woff");}.ff2_c02410{font-family:ff2_c02410;line-height:1.112305;font-style:normal;font-weight: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_c02410;src:url('chunks/assets/font_4148dd67b03dca53d711a327.woff2')format("woff");}.ff3_c02410{font-family:ff3_c02410;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;}
.m0_c02410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02410{vertical-align:0.000000px;}
.ls2_c02410{letter-spacing:-0.072000px;}
.ls1_c02410{letter-spacing:0.000000px;}
.ls0_c02410{letter-spacing:2.880000px;}
.sc__c02410{text-shadow:none;}
.sc0_c02410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02410{-webkit-text-stroke:0px transparent;}
.sc0_c02410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02410{word-spacing:-17.928000px;}
.ws1_c02410{word-spacing:0.000000px;}
._5_c02410{margin-left:-1.152000px;}
._1_c02410{width:1.584000px;}
._b_c02410{width:3.024000px;}
._16_c02410{width:4.032000px;}
._0_c02410{width:5.040000px;}
._2_c02410{width:6.120000px;}
._a_c02410{width:7.272000px;}
._d_c02410{width:8.640000px;}
._c_c02410{width:10.008000px;}
._7_c02410{width:13.536000px;}
._6_c02410{width:14.544000px;}
._1a_c02410{width:15.696000px;}
._e_c02410{width:16.992000px;}
._19_c02410{width:19.368000px;}
._18_c02410{width:20.376000px;}
._15_c02410{width:22.248000px;}
._3_c02410{width:23.256000px;}
._4_c02410{width:24.420000px;}
._13_c02410{width:35.928000px;}
._14_c02410{width:37.368000px;}
._12_c02410{width:39.600000px;}
._11_c02410{width:40.824000px;}
._17_c02410{width:41.976000px;}
._f_c02410{width:51.696000px;}
._10_c02410{width:53.280000px;}
._8_c02410{width:64.008000px;}
._9_c02410{width:66.168000px;}
.fc1_c02410{color:rgb(192,80,77);}
.fc2_c02410{color:rgb(17,17,17);}
.fc0_c02410{color:rgb(0,0,0);}
.fs0_c02410{font-size:66.240000px;}
.fs1_c02410{font-size:72.000000px;}
.y0_c02410{bottom:0.000000px;}
.y3_c02410{bottom:4.680000px;}
.y2_c02410{bottom:41.796000px;}
.y1_c02410{bottom:75.456000px;}
.y22_c02410{bottom:133.776000px;}
.y21_c02410{bottom:164.910000px;}
.y20_c02410{bottom:195.870000px;}
.y1f_c02410{bottom:226.830000px;}
.y1e_c02410{bottom:257.970000px;}
.y1d_c02410{bottom:288.975000px;}
.y1c_c02410{bottom:320.115000px;}
.y1b_c02410{bottom:351.075000px;}
.y1a_c02410{bottom:382.215000px;}
.y19_c02410{bottom:413.175000px;}
.y18_c02410{bottom:444.315000px;}
.y17_c02410{bottom:475.275000px;}
.y16_c02410{bottom:506.415000px;}
.y15_c02410{bottom:537.405000px;}
.y14_c02410{bottom:568.545000px;}
.y13_c02410{bottom:599.505000px;}
.y12_c02410{bottom:630.645000px;}
.y11_c02410{bottom:661.605000px;}
.y10_c02410{bottom:692.745000px;}
.yf_c02410{bottom:723.705000px;}
.ye_c02410{bottom:754.845000px;}
.yd_c02410{bottom:785.805000px;}
.yc_c02410{bottom:816.990000px;}
.yb_c02410{bottom:847.950000px;}
.ya_c02410{bottom:879.090000px;}
.y9_c02410{bottom:910.050000px;}
.y8_c02410{bottom:941.190000px;}
.y7_c02410{bottom:972.150000px;}
.y6_c02410{bottom:1003.290000px;}
.y5_c02410{bottom:1034.250000px;}
.y4_c02410{bottom:1065.420000px;}
.h2_c02410{height:22.500000px;}
.h1_c02410{height:48.871406px;}
.h3_c02410{height:64.546875px;}
.h4_c02410{height:70.664062px;}
.h0_c02410{height:1188.000000px;}
.w1_c02410{width:66.636000px;}
.w0_c02410{width:918.000000px;}
.x0_c02410{left:0.000000px;}
.x3_c02410{left:16.560000px;}
.x1_c02410{left:127.656000px;}
.x4_c02410{left:187.050000px;}
.x2_c02410{left:820.950000px;}
@media print{
.v0_c02410{vertical-align:0.000000pt;}
.ls2_c02410{letter-spacing:-0.064000pt;}
.ls1_c02410{letter-spacing:0.000000pt;}
.ls0_c02410{letter-spacing:2.560000pt;}
.ws0_c02410{word-spacing:-15.936000pt;}
.ws1_c02410{word-spacing:0.000000pt;}
._5_c02410{margin-left:-1.024000pt;}
._1_c02410{width:1.408000pt;}
._b_c02410{width:2.688000pt;}
._16_c02410{width:3.584000pt;}
._0_c02410{width:4.480000pt;}
._2_c02410{width:5.440000pt;}
._a_c02410{width:6.464000pt;}
._d_c02410{width:7.680000pt;}
._c_c02410{width:8.896000pt;}
._7_c02410{width:12.032000pt;}
._6_c02410{width:12.928000pt;}
._1a_c02410{width:13.952000pt;}
._e_c02410{width:15.104000pt;}
._19_c02410{width:17.216000pt;}
._18_c02410{width:18.112000pt;}
._15_c02410{width:19.776000pt;}
._3_c02410{width:20.672000pt;}
._4_c02410{width:21.706667pt;}
._13_c02410{width:31.936000pt;}
._14_c02410{width:33.216000pt;}
._12_c02410{width:35.200000pt;}
._11_c02410{width:36.288000pt;}
._17_c02410{width:37.312000pt;}
._f_c02410{width:45.952000pt;}
._10_c02410{width:47.360000pt;}
._8_c02410{width:56.896000pt;}
._9_c02410{width:58.816000pt;}
.fs0_c02410{font-size:58.880000pt;}
.fs1_c02410{font-size:64.000000pt;}
.y0_c02410{bottom:0.000000pt;}
.y3_c02410{bottom:4.160000pt;}
.y2_c02410{bottom:37.152000pt;}
.y1_c02410{bottom:67.072000pt;}
.y22_c02410{bottom:118.912000pt;}
.y21_c02410{bottom:146.586667pt;}
.y20_c02410{bottom:174.106667pt;}
.y1f_c02410{bottom:201.626667pt;}
.y1e_c02410{bottom:229.306667pt;}
.y1d_c02410{bottom:256.866667pt;}
.y1c_c02410{bottom:284.546667pt;}
.y1b_c02410{bottom:312.066667pt;}
.y1a_c02410{bottom:339.746667pt;}
.y19_c02410{bottom:367.266667pt;}
.y18_c02410{bottom:394.946667pt;}
.y17_c02410{bottom:422.466667pt;}
.y16_c02410{bottom:450.146667pt;}
.y15_c02410{bottom:477.693333pt;}
.y14_c02410{bottom:505.373333pt;}
.y13_c02410{bottom:532.893333pt;}
.y12_c02410{bottom:560.573333pt;}
.y11_c02410{bottom:588.093333pt;}
.y10_c02410{bottom:615.773333pt;}
.yf_c02410{bottom:643.293333pt;}
.ye_c02410{bottom:670.973333pt;}
.yd_c02410{bottom:698.493333pt;}
.yc_c02410{bottom:726.213333pt;}
.yb_c02410{bottom:753.733333pt;}
.ya_c02410{bottom:781.413333pt;}
.y9_c02410{bottom:808.933333pt;}
.y8_c02410{bottom:836.613333pt;}
.y7_c02410{bottom:864.133333pt;}
.y6_c02410{bottom:891.813333pt;}
.y5_c02410{bottom:919.333333pt;}
.y4_c02410{bottom:947.040000pt;}
.h2_c02410{height:20.000000pt;}
.h1_c02410{height:43.441250pt;}
.h3_c02410{height:57.375000pt;}
.h4_c02410{height:62.812500pt;}
.h0_c02410{height:1056.000000pt;}
.w1_c02410{width:59.232000pt;}
.w0_c02410{width:816.000000pt;}
.x0_c02410{left:0.000000pt;}
.x3_c02410{left:14.720000pt;}
.x1_c02410{left:113.472000pt;}
.x4_c02410{left:166.266667pt;}
.x2_c02410{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02411 {
    display:none;
  }
  .loading-indicator_c02411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02411" -> "#page-container .classname_c02411")
 */
.pf_c02411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02411 {overflow:visible;}
  }
}
.c_c02411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02411:after { /* webkit #35443 */
  content: '';
}
.t_c02411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02411 { /* info for Javascript */
  display:none;
}
.l_c02411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02411:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02411 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02411.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02411;src:url('chunks/assets/font_c3d86259765a43afca692c25.woff2')format("woff");}.ff1_c02411{font-family:ff1_c02411;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02411;src:url('chunks/assets/font_b0b7f383ab66612818503b9a.woff2')format("woff");}.ff2_c02411{font-family:ff2_c02411;line-height:1.112305;font-style:normal;font-weight: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_c02411;src:url('chunks/assets/font_a48350b091aa5b3e2140c46a.woff2')format("woff");}.ff3_c02411{font-family:ff3_c02411;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;}
.m0_c02411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02411{vertical-align:0.000000px;}
.ls0_c02411{letter-spacing:0.000000px;}
.sc__c02411{text-shadow:none;}
.sc0_c02411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02411{-webkit-text-stroke:0px transparent;}
.sc0_c02411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02411{word-spacing:-18.000000px;}
.ws1_c02411{word-spacing:0.000000px;}
._7_c02411{margin-left:-2.316000px;}
._4_c02411{margin-left:-1.152000px;}
._2_c02411{width:1.308000px;}
._f_c02411{width:2.340000px;}
._0_c02411{width:3.816000px;}
._1_c02411{width:4.824000px;}
._5_c02411{width:5.832000px;}
._6_c02411{width:7.740000px;}
._c_c02411{width:10.944000px;}
._b_c02411{width:12.024000px;}
._9_c02411{width:13.032000px;}
._8_c02411{width:14.184000px;}
._a_c02411{width:15.408000px;}
._15_c02411{width:19.212000px;}
._d_c02411{width:20.376000px;}
._e_c02411{width:22.464000px;}
._17_c02411{width:23.544000px;}
._16_c02411{width:24.768000px;}
._14_c02411{width:26.136000px;}
._3_c02411{width:27.432000px;}
._10_c02411{width:31.176000px;}
._11_c02411{width:32.544000px;}
._12_c02411{width:45.936000px;}
._13_c02411{width:47.592000px;}
.fc1_c02411{color:rgb(192,80,77);}
.fc2_c02411{color:rgb(17,17,17);}
.fc0_c02411{color:rgb(0,0,0);}
.fs0_c02411{font-size:66.240000px;}
.fs1_c02411{font-size:72.000000px;}
.y0_c02411{bottom:0.000000px;}
.y3_c02411{bottom:4.680000px;}
.y2_c02411{bottom:41.796000px;}
.y1_c02411{bottom:75.456000px;}
.y21_c02411{bottom:164.910000px;}
.y20_c02411{bottom:195.870000px;}
.y1f_c02411{bottom:226.830000px;}
.y1e_c02411{bottom:257.970000px;}
.y1d_c02411{bottom:288.975000px;}
.y1c_c02411{bottom:320.115000px;}
.y1b_c02411{bottom:351.075000px;}
.y1a_c02411{bottom:382.215000px;}
.y19_c02411{bottom:413.175000px;}
.y18_c02411{bottom:444.315000px;}
.y17_c02411{bottom:475.275000px;}
.y16_c02411{bottom:506.415000px;}
.y15_c02411{bottom:537.405000px;}
.y14_c02411{bottom:568.545000px;}
.y13_c02411{bottom:599.505000px;}
.y12_c02411{bottom:630.645000px;}
.y11_c02411{bottom:661.605000px;}
.y10_c02411{bottom:692.745000px;}
.yf_c02411{bottom:723.705000px;}
.ye_c02411{bottom:754.845000px;}
.yd_c02411{bottom:785.805000px;}
.yc_c02411{bottom:816.990000px;}
.yb_c02411{bottom:847.950000px;}
.ya_c02411{bottom:879.090000px;}
.y9_c02411{bottom:910.050000px;}
.y8_c02411{bottom:941.190000px;}
.y7_c02411{bottom:972.150000px;}
.y6_c02411{bottom:1003.290000px;}
.y5_c02411{bottom:1034.250000px;}
.y4_c02411{bottom:1065.420000px;}
.h2_c02411{height:22.500000px;}
.h1_c02411{height:48.871406px;}
.h3_c02411{height:64.546875px;}
.h4_c02411{height:70.664062px;}
.h0_c02411{height:1188.000000px;}
.w1_c02411{width:66.636000px;}
.w0_c02411{width:918.000000px;}
.x0_c02411{left:0.000000px;}
.x3_c02411{left:16.560000px;}
.x1_c02411{left:127.656000px;}
.x4_c02411{left:187.050000px;}
.x2_c02411{left:820.950000px;}
@media print{
.v0_c02411{vertical-align:0.000000pt;}
.ls0_c02411{letter-spacing:0.000000pt;}
.ws0_c02411{word-spacing:-16.000000pt;}
.ws1_c02411{word-spacing:0.000000pt;}
._7_c02411{margin-left:-2.058667pt;}
._4_c02411{margin-left:-1.024000pt;}
._2_c02411{width:1.162667pt;}
._f_c02411{width:2.080000pt;}
._0_c02411{width:3.392000pt;}
._1_c02411{width:4.288000pt;}
._5_c02411{width:5.184000pt;}
._6_c02411{width:6.880000pt;}
._c_c02411{width:9.728000pt;}
._b_c02411{width:10.688000pt;}
._9_c02411{width:11.584000pt;}
._8_c02411{width:12.608000pt;}
._a_c02411{width:13.696000pt;}
._15_c02411{width:17.077333pt;}
._d_c02411{width:18.112000pt;}
._e_c02411{width:19.968000pt;}
._17_c02411{width:20.928000pt;}
._16_c02411{width:22.016000pt;}
._14_c02411{width:23.232000pt;}
._3_c02411{width:24.384000pt;}
._10_c02411{width:27.712000pt;}
._11_c02411{width:28.928000pt;}
._12_c02411{width:40.832000pt;}
._13_c02411{width:42.304000pt;}
.fs0_c02411{font-size:58.880000pt;}
.fs1_c02411{font-size:64.000000pt;}
.y0_c02411{bottom:0.000000pt;}
.y3_c02411{bottom:4.160000pt;}
.y2_c02411{bottom:37.152000pt;}
.y1_c02411{bottom:67.072000pt;}
.y21_c02411{bottom:146.586667pt;}
.y20_c02411{bottom:174.106667pt;}
.y1f_c02411{bottom:201.626667pt;}
.y1e_c02411{bottom:229.306667pt;}
.y1d_c02411{bottom:256.866667pt;}
.y1c_c02411{bottom:284.546667pt;}
.y1b_c02411{bottom:312.066667pt;}
.y1a_c02411{bottom:339.746667pt;}
.y19_c02411{bottom:367.266667pt;}
.y18_c02411{bottom:394.946667pt;}
.y17_c02411{bottom:422.466667pt;}
.y16_c02411{bottom:450.146667pt;}
.y15_c02411{bottom:477.693333pt;}
.y14_c02411{bottom:505.373333pt;}
.y13_c02411{bottom:532.893333pt;}
.y12_c02411{bottom:560.573333pt;}
.y11_c02411{bottom:588.093333pt;}
.y10_c02411{bottom:615.773333pt;}
.yf_c02411{bottom:643.293333pt;}
.ye_c02411{bottom:670.973333pt;}
.yd_c02411{bottom:698.493333pt;}
.yc_c02411{bottom:726.213333pt;}
.yb_c02411{bottom:753.733333pt;}
.ya_c02411{bottom:781.413333pt;}
.y9_c02411{bottom:808.933333pt;}
.y8_c02411{bottom:836.613333pt;}
.y7_c02411{bottom:864.133333pt;}
.y6_c02411{bottom:891.813333pt;}
.y5_c02411{bottom:919.333333pt;}
.y4_c02411{bottom:947.040000pt;}
.h2_c02411{height:20.000000pt;}
.h1_c02411{height:43.441250pt;}
.h3_c02411{height:57.375000pt;}
.h4_c02411{height:62.812500pt;}
.h0_c02411{height:1056.000000pt;}
.w1_c02411{width:59.232000pt;}
.w0_c02411{width:816.000000pt;}
.x0_c02411{left:0.000000pt;}
.x3_c02411{left:14.720000pt;}
.x1_c02411{left:113.472000pt;}
.x4_c02411{left:166.266667pt;}
.x2_c02411{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02412 {
    display:none;
  }
  .loading-indicator_c02412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02412" -> "#page-container .classname_c02412")
 */
.pf_c02412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02412 {overflow:visible;}
  }
}
.c_c02412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02412:after { /* webkit #35443 */
  content: '';
}
.t_c02412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02412 { /* info for Javascript */
  display:none;
}
.l_c02412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02412:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02412 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02412.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02412;src:url('chunks/assets/font_48dc4d9840460d103ea74434.woff2')format("woff");}.ff1_c02412{font-family:ff1_c02412;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02412;src:url('chunks/assets/font_6ebd77418e8827dbd4738388.woff2')format("woff");}.ff2_c02412{font-family:ff2_c02412;line-height:1.112305;font-style:normal;font-weight: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_c02412;src:url('chunks/assets/font_40345bde1040d14c65b56b6f.woff2')format("woff");}.ff3_c02412{font-family:ff3_c02412;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;}
.m0_c02412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02412{vertical-align:0.000000px;}
.ls0_c02412{letter-spacing:0.000000px;}
.sc__c02412{text-shadow:none;}
.sc0_c02412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02412{-webkit-text-stroke:0px transparent;}
.sc0_c02412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02412{word-spacing:0.000000px;}
._1_c02412{margin-left:-1.152000px;}
._2_c02412{width:1.272000px;}
._0_c02412{width:16.704000px;}
.fc1_c02412{color:rgb(192,80,77);}
.fc2_c02412{color:rgb(17,17,17);}
.fc0_c02412{color:rgb(0,0,0);}
.fs0_c02412{font-size:66.240000px;}
.fs1_c02412{font-size:72.000000px;}
.y0_c02412{bottom:0.000000px;}
.y3_c02412{bottom:4.680000px;}
.y2_c02412{bottom:41.796000px;}
.y1_c02412{bottom:75.456000px;}
.y5_c02412{bottom:1034.250000px;}
.y4_c02412{bottom:1065.420000px;}
.h2_c02412{height:22.500000px;}
.h1_c02412{height:48.871406px;}
.h3_c02412{height:64.546875px;}
.h4_c02412{height:70.664062px;}
.h0_c02412{height:1188.000000px;}
.w1_c02412{width:66.636000px;}
.w0_c02412{width:918.000000px;}
.x0_c02412{left:0.000000px;}
.x3_c02412{left:16.560000px;}
.x1_c02412{left:127.656000px;}
.x4_c02412{left:187.050000px;}
.x2_c02412{left:820.950000px;}
@media print{
.v0_c02412{vertical-align:0.000000pt;}
.ls0_c02412{letter-spacing:0.000000pt;}
.ws0_c02412{word-spacing:0.000000pt;}
._1_c02412{margin-left:-1.024000pt;}
._2_c02412{width:1.130667pt;}
._0_c02412{width:14.848000pt;}
.fs0_c02412{font-size:58.880000pt;}
.fs1_c02412{font-size:64.000000pt;}
.y0_c02412{bottom:0.000000pt;}
.y3_c02412{bottom:4.160000pt;}
.y2_c02412{bottom:37.152000pt;}
.y1_c02412{bottom:67.072000pt;}
.y5_c02412{bottom:919.333333pt;}
.y4_c02412{bottom:947.040000pt;}
.h2_c02412{height:20.000000pt;}
.h1_c02412{height:43.441250pt;}
.h3_c02412{height:57.375000pt;}
.h4_c02412{height:62.812500pt;}
.h0_c02412{height:1056.000000pt;}
.w1_c02412{width:59.232000pt;}
.w0_c02412{width:816.000000pt;}
.x0_c02412{left:0.000000pt;}
.x3_c02412{left:14.720000pt;}
.x1_c02412{left:113.472000pt;}
.x4_c02412{left:166.266667pt;}
.x2_c02412{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02413 {
    display:none;
  }
  .loading-indicator_c02413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02413" -> "#page-container .classname_c02413")
 */
.pf_c02413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02413 {overflow:visible;}
  }
}
.c_c02413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02413:after { /* webkit #35443 */
  content: '';
}
.t_c02413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02413 { /* info for Javascript */
  display:none;
}
.l_c02413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02413:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02413 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02413.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02413;src:url('chunks/assets/font_4d93ce469372740a9bf543cf.woff2')format("woff");}.ff1_c02413{font-family:ff1_c02413;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02413;src:url('chunks/assets/font_4c17b9cf35198ff94065e531.woff2')format("woff");}.ff2_c02413{font-family:ff2_c02413;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:ff3_c02413;src:url('chunks/assets/font_8890d3fdb6c4f8e174ecf071.woff2')format("woff");}.ff3_c02413{font-family:ff3_c02413;line-height:1.112305;font-style:normal;font-weight: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_c02413;src:url('chunks/assets/font_775369455222f505b5f2fc9d.woff2')format("woff");}.ff4_c02413{font-family:ff4_c02413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02413{vertical-align:0.000000px;}
.ls1_c02413{letter-spacing:-0.144000px;}
.ls0_c02413{letter-spacing:0.000000px;}
.sc__c02413{text-shadow:none;}
.sc0_c02413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02413{-webkit-text-stroke:0px transparent;}
.sc0_c02413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02413{word-spacing:-17.856000px;}
.ws1_c02413{word-spacing:0.000000px;}
._0_c02413{margin-left:-1.080000px;}
._1_c02413{width:1.200000px;}
._7_c02413{width:2.256000px;}
._9_c02413{width:3.360000px;}
._6_c02413{width:4.680000px;}
._5_c02413{width:5.760000px;}
._b_c02413{width:7.632000px;}
._2_c02413{width:9.288000px;}
._3_c02413{width:12.528000px;}
._4_c02413{width:13.536000px;}
._8_c02413{width:16.416000px;}
._a_c02413{width:23.184000px;}
.fc1_c02413{color:rgb(192,80,77);}
.fc3_c02413{color:rgb(255,255,255);}
.fc2_c02413{color:rgb(17,17,17);}
.fc0_c02413{color:rgb(0,0,0);}
.fs0_c02413{font-size:66.240000px;}
.fs1_c02413{font-size:72.000000px;}
.y0_c02413{bottom:0.000000px;}
.y13_c02413{bottom:4.140000px;}
.yf_c02413{bottom:4.500000px;}
.y3_c02413{bottom:4.680000px;}
.yd_c02413{bottom:5.220000px;}
.y12_c02413{bottom:24.840000px;}
.y11_c02413{bottom:25.200000px;}
.yc_c02413{bottom:25.920000px;}
.ye_c02413{bottom:26.280000px;}
.ya_c02413{bottom:26.640000px;}
.y2_c02413{bottom:41.796000px;}
.y9_c02413{bottom:47.340000px;}
.y1_c02413{bottom:75.456000px;}
.y31_c02413{bottom:129.816000px;}
.y30_c02413{bottom:160.950000px;}
.y2f_c02413{bottom:191.910000px;}
.y2e_c02413{bottom:223.050000px;}
.y2d_c02413{bottom:254.010000px;}
.y2c_c02413{bottom:285.195000px;}
.y2b_c02413{bottom:316.155000px;}
.y2a_c02413{bottom:337.035000px;}
.y29_c02413{bottom:357.735000px;}
.y28_c02413{bottom:378.435000px;}
.y27_c02413{bottom:399.135000px;}
.y26_c02413{bottom:419.835000px;}
.y25_c02413{bottom:440.535000px;}
.y24_c02413{bottom:461.235000px;}
.y23_c02413{bottom:481.935000px;}
.y22_c02413{bottom:502.635000px;}
.y21_c02413{bottom:519.555000px;}
.y20_c02413{bottom:541.005000px;}
.y1f_c02413{bottom:562.605000px;}
.y1e_c02413{bottom:584.025000px;}
.y1d_c02413{bottom:605.445000px;}
.y1c_c02413{bottom:626.865000px;}
.y1b_c02413{bottom:648.285000px;}
.y1a_c02413{bottom:690.405000px;}
.y19_c02413{bottom:712.005000px;}
.y18_c02413{bottom:754.125000px;}
.y17_c02413{bottom:775.545000px;}
.y16_c02413{bottom:797.010000px;}
.y15_c02413{bottom:818.430000px;}
.y14_c02413{bottom:839.850000px;}
.y10_c02413{bottom:881.970000px;}
.y8_c02413{bottom:924.270000px;}
.yb_c02413{bottom:945.690000px;}
.y7_c02413{bottom:1003.290000px;}
.y6_c02413{bottom:1024.170000px;}
.y5_c02413{bottom:1044.870000px;}
.y4_c02413{bottom:1065.600000px;}
.h7_c02413{height:20.700000px;}
.h9_c02413{height:20.736000px;}
.h2_c02413{height:22.500000px;}
.h8_c02413{height:41.400000px;}
.h5_c02413{height:42.120000px;}
.h1_c02413{height:48.871406px;}
.h4_c02413{height:63.540000px;}
.h3_c02413{height:70.664062px;}
.h6_c02413{height:72.562500px;}
.h0_c02413{height:1188.000000px;}
.w7_c02413{width:59.436000px;}
.w5_c02413{width:63.000000px;}
.w6_c02413{width:63.036000px;}
.w1_c02413{width:66.636000px;}
.w4_c02413{width:78.480000px;}
.w2_c02413{width:224.490000px;}
.w3_c02413{width:314.535000px;}
.w0_c02413{width:918.000000px;}
.x0_c02413{left:0.000000px;}
.x10_c02413{left:7.740000px;}
.x16_c02413{left:10.620000px;}
.x18_c02413{left:11.700000px;}
.x11_c02413{left:13.860000px;}
.x3_c02413{left:16.560000px;}
.x13_c02413{left:18.540000px;}
.x1e_c02413{left:20.700000px;}
.x1c_c02413{left:22.500000px;}
.x1f_c02413{left:25.740000px;}
.x21_c02413{left:27.000000px;}
.x1d_c02413{left:29.700000px;}
.x1b_c02413{left:31.500000px;}
.x22_c02413{left:34.740000px;}
.xf_c02413{left:39.240000px;}
.x25_c02413{left:42.660000px;}
.x20_c02413{left:48.420000px;}
.x19_c02413{left:54.540000px;}
.x1a_c02413{left:59.220000px;}
.xd_c02413{left:62.640000px;}
.x26_c02413{left:63.720000px;}
.x23_c02413{left:66.780000px;}
.x27_c02413{left:69.660000px;}
.x24_c02413{left:72.180000px;}
.xc_c02413{left:76.320000px;}
.x28_c02413{left:80.640000px;}
.xa_c02413{left:92.160000px;}
.x9_c02413{left:112.140000px;}
.x1_c02413{left:127.656000px;}
.x2a_c02413{left:154.650000px;}
.x8_c02413{left:179.310000px;}
.x29_c02413{left:187.050000px;}
.x6_c02413{left:330.015000px;}
.x5_c02413{left:347.655000px;}
.xb_c02413{left:404.535000px;}
.x4_c02413{left:424.695000px;}
.x12_c02413{left:468.255000px;}
.x7_c02413{left:488.775000px;}
.x14_c02413{left:532.005000px;}
.x15_c02413{left:595.905000px;}
.x17_c02413{left:659.625000px;}
.xe_c02413{left:719.790000px;}
.x2_c02413{left:820.950000px;}
@media print{
.v0_c02413{vertical-align:0.000000pt;}
.ls1_c02413{letter-spacing:-0.128000pt;}
.ls0_c02413{letter-spacing:0.000000pt;}
.ws0_c02413{word-spacing:-15.872000pt;}
.ws1_c02413{word-spacing:0.000000pt;}
._0_c02413{margin-left:-0.960000pt;}
._1_c02413{width:1.066667pt;}
._7_c02413{width:2.005333pt;}
._9_c02413{width:2.986667pt;}
._6_c02413{width:4.160000pt;}
._5_c02413{width:5.120000pt;}
._b_c02413{width:6.784000pt;}
._2_c02413{width:8.256000pt;}
._3_c02413{width:11.136000pt;}
._4_c02413{width:12.032000pt;}
._8_c02413{width:14.592000pt;}
._a_c02413{width:20.608000pt;}
.fs0_c02413{font-size:58.880000pt;}
.fs1_c02413{font-size:64.000000pt;}
.y0_c02413{bottom:0.000000pt;}
.y13_c02413{bottom:3.680000pt;}
.yf_c02413{bottom:4.000000pt;}
.y3_c02413{bottom:4.160000pt;}
.yd_c02413{bottom:4.640000pt;}
.y12_c02413{bottom:22.080000pt;}
.y11_c02413{bottom:22.400000pt;}
.yc_c02413{bottom:23.040000pt;}
.ye_c02413{bottom:23.360000pt;}
.ya_c02413{bottom:23.680000pt;}
.y2_c02413{bottom:37.152000pt;}
.y9_c02413{bottom:42.080000pt;}
.y1_c02413{bottom:67.072000pt;}
.y31_c02413{bottom:115.392000pt;}
.y30_c02413{bottom:143.066667pt;}
.y2f_c02413{bottom:170.586667pt;}
.y2e_c02413{bottom:198.266667pt;}
.y2d_c02413{bottom:225.786667pt;}
.y2c_c02413{bottom:253.506667pt;}
.y2b_c02413{bottom:281.026667pt;}
.y2a_c02413{bottom:299.586667pt;}
.y29_c02413{bottom:317.986667pt;}
.y28_c02413{bottom:336.386667pt;}
.y27_c02413{bottom:354.786667pt;}
.y26_c02413{bottom:373.186667pt;}
.y25_c02413{bottom:391.586667pt;}
.y24_c02413{bottom:409.986667pt;}
.y23_c02413{bottom:428.386667pt;}
.y22_c02413{bottom:446.786667pt;}
.y21_c02413{bottom:461.826667pt;}
.y20_c02413{bottom:480.893333pt;}
.y1f_c02413{bottom:500.093333pt;}
.y1e_c02413{bottom:519.133333pt;}
.y1d_c02413{bottom:538.173333pt;}
.y1c_c02413{bottom:557.213333pt;}
.y1b_c02413{bottom:576.253333pt;}
.y1a_c02413{bottom:613.693333pt;}
.y19_c02413{bottom:632.893333pt;}
.y18_c02413{bottom:670.333333pt;}
.y17_c02413{bottom:689.373333pt;}
.y16_c02413{bottom:708.453333pt;}
.y15_c02413{bottom:727.493333pt;}
.y14_c02413{bottom:746.533333pt;}
.y10_c02413{bottom:783.973333pt;}
.y8_c02413{bottom:821.573333pt;}
.yb_c02413{bottom:840.613333pt;}
.y7_c02413{bottom:891.813333pt;}
.y6_c02413{bottom:910.373333pt;}
.y5_c02413{bottom:928.773333pt;}
.y4_c02413{bottom:947.200000pt;}
.h7_c02413{height:18.400000pt;}
.h9_c02413{height:18.432000pt;}
.h2_c02413{height:20.000000pt;}
.h8_c02413{height:36.800000pt;}
.h5_c02413{height:37.440000pt;}
.h1_c02413{height:43.441250pt;}
.h4_c02413{height:56.480000pt;}
.h3_c02413{height:62.812500pt;}
.h6_c02413{height:64.500000pt;}
.h0_c02413{height:1056.000000pt;}
.w7_c02413{width:52.832000pt;}
.w5_c02413{width:56.000000pt;}
.w6_c02413{width:56.032000pt;}
.w1_c02413{width:59.232000pt;}
.w4_c02413{width:69.760000pt;}
.w2_c02413{width:199.546667pt;}
.w3_c02413{width:279.586667pt;}
.w0_c02413{width:816.000000pt;}
.x0_c02413{left:0.000000pt;}
.x10_c02413{left:6.880000pt;}
.x16_c02413{left:9.440000pt;}
.x18_c02413{left:10.400000pt;}
.x11_c02413{left:12.320000pt;}
.x3_c02413{left:14.720000pt;}
.x13_c02413{left:16.480000pt;}
.x1e_c02413{left:18.400000pt;}
.x1c_c02413{left:20.000000pt;}
.x1f_c02413{left:22.880000pt;}
.x21_c02413{left:24.000000pt;}
.x1d_c02413{left:26.400000pt;}
.x1b_c02413{left:28.000000pt;}
.x22_c02413{left:30.880000pt;}
.xf_c02413{left:34.880000pt;}
.x25_c02413{left:37.920000pt;}
.x20_c02413{left:43.040000pt;}
.x19_c02413{left:48.480000pt;}
.x1a_c02413{left:52.640000pt;}
.xd_c02413{left:55.680000pt;}
.x26_c02413{left:56.640000pt;}
.x23_c02413{left:59.360000pt;}
.x27_c02413{left:61.920000pt;}
.x24_c02413{left:64.160000pt;}
.xc_c02413{left:67.840000pt;}
.x28_c02413{left:71.680000pt;}
.xa_c02413{left:81.920000pt;}
.x9_c02413{left:99.680000pt;}
.x1_c02413{left:113.472000pt;}
.x2a_c02413{left:137.466667pt;}
.x8_c02413{left:159.386667pt;}
.x29_c02413{left:166.266667pt;}
.x6_c02413{left:293.346667pt;}
.x5_c02413{left:309.026667pt;}
.xb_c02413{left:359.586667pt;}
.x4_c02413{left:377.506667pt;}
.x12_c02413{left:416.226667pt;}
.x7_c02413{left:434.466667pt;}
.x14_c02413{left:472.893333pt;}
.x15_c02413{left:529.693333pt;}
.x17_c02413{left:586.333333pt;}
.xe_c02413{left:639.813333pt;}
.x2_c02413{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02414 {
    display:none;
  }
  .loading-indicator_c02414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02414 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02414 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02414" -> "#page-container .classname_c02414")
 */
.pf_c02414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02414 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02414 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02414 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02414 {overflow:visible;}
  }
}
.c_c02414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02414 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02414:after { /* webkit #35443 */
  content: '';
}
.t_c02414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02414 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02414 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02414 { /* info for Javascript */
  display:none;
}
.l_c02414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02414:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02414 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02414.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02414;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02414{font-family:ff1_c02414;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02414;src:url('chunks/assets/font_8b6859ff92b003debade9b63.woff2')format("woff");}.ff2_c02414{font-family:ff2_c02414;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;}
.m0_c02414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02414{vertical-align:0.000000px;}
.ls1_c02414{letter-spacing:-1.440000px;}
.ls0_c02414{letter-spacing:0.000000px;}
.sc__c02414{text-shadow:none;}
.sc0_c02414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02414{-webkit-text-stroke:0px transparent;}
.sc0_c02414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02414{word-spacing:0.000000px;}
._6_c02414{margin-left:-2.304000px;}
._4_c02414{margin-left:-1.008000px;}
._2_c02414{width:1.368000px;}
._f_c02414{width:2.880000px;}
._c_c02414{width:3.960000px;}
._d_c02414{width:5.112000px;}
._a_c02414{width:6.624000px;}
._b_c02414{width:7.704000px;}
._e_c02414{width:9.144000px;}
._5_c02414{width:10.728000px;}
._3_c02414{width:12.672000px;}
._0_c02414{width:14.040000px;}
._1_c02414{width:15.264000px;}
._10_c02414{width:19.224000px;}
._7_c02414{width:22.392000px;}
._8_c02414{width:23.400000px;}
._9_c02414{width:25.680000px;}
.fc1_c02414{color:rgb(192,80,77);}
.fc2_c02414{color:rgb(17,17,17);}
.fc0_c02414{color:rgb(0,0,0);}
.fs0_c02414{font-size:66.240000px;}
.fs1_c02414{font-size:72.000000px;}
.y0_c02414{bottom:0.000000px;}
.y3_c02414{bottom:4.680000px;}
.y2_c02414{bottom:41.796000px;}
.y1_c02414{bottom:75.456000px;}
.y1a_c02414{bottom:382.215000px;}
.y19_c02414{bottom:413.175000px;}
.y18_c02414{bottom:444.315000px;}
.y17_c02414{bottom:475.275000px;}
.y16_c02414{bottom:506.415000px;}
.y15_c02414{bottom:537.405000px;}
.y14_c02414{bottom:568.545000px;}
.y13_c02414{bottom:599.505000px;}
.y12_c02414{bottom:630.645000px;}
.y11_c02414{bottom:661.605000px;}
.y10_c02414{bottom:692.745000px;}
.yf_c02414{bottom:723.705000px;}
.ye_c02414{bottom:754.845000px;}
.yd_c02414{bottom:785.805000px;}
.yc_c02414{bottom:816.990000px;}
.yb_c02414{bottom:847.950000px;}
.ya_c02414{bottom:879.090000px;}
.y9_c02414{bottom:910.050000px;}
.y8_c02414{bottom:941.190000px;}
.y7_c02414{bottom:972.150000px;}
.y6_c02414{bottom:1003.290000px;}
.y5_c02414{bottom:1034.250000px;}
.y4_c02414{bottom:1065.420000px;}
.h2_c02414{height:22.500000px;}
.h1_c02414{height:48.871406px;}
.h3_c02414{height:70.664062px;}
.h0_c02414{height:1188.000000px;}
.w1_c02414{width:66.636000px;}
.w0_c02414{width:918.000000px;}
.x0_c02414{left:0.000000px;}
.x3_c02414{left:16.560000px;}
.x1_c02414{left:127.656000px;}
.x4_c02414{left:187.050000px;}
.x2_c02414{left:820.950000px;}
@media print{
.v0_c02414{vertical-align:0.000000pt;}
.ls1_c02414{letter-spacing:-1.280000pt;}
.ls0_c02414{letter-spacing:0.000000pt;}
.ws0_c02414{word-spacing:0.000000pt;}
._6_c02414{margin-left:-2.048000pt;}
._4_c02414{margin-left:-0.896000pt;}
._2_c02414{width:1.216000pt;}
._f_c02414{width:2.560000pt;}
._c_c02414{width:3.520000pt;}
._d_c02414{width:4.544000pt;}
._a_c02414{width:5.888000pt;}
._b_c02414{width:6.848000pt;}
._e_c02414{width:8.128000pt;}
._5_c02414{width:9.536000pt;}
._3_c02414{width:11.264000pt;}
._0_c02414{width:12.480000pt;}
._1_c02414{width:13.568000pt;}
._10_c02414{width:17.088000pt;}
._7_c02414{width:19.904000pt;}
._8_c02414{width:20.800000pt;}
._9_c02414{width:22.826667pt;}
.fs0_c02414{font-size:58.880000pt;}
.fs1_c02414{font-size:64.000000pt;}
.y0_c02414{bottom:0.000000pt;}
.y3_c02414{bottom:4.160000pt;}
.y2_c02414{bottom:37.152000pt;}
.y1_c02414{bottom:67.072000pt;}
.y1a_c02414{bottom:339.746667pt;}
.y19_c02414{bottom:367.266667pt;}
.y18_c02414{bottom:394.946667pt;}
.y17_c02414{bottom:422.466667pt;}
.y16_c02414{bottom:450.146667pt;}
.y15_c02414{bottom:477.693333pt;}
.y14_c02414{bottom:505.373333pt;}
.y13_c02414{bottom:532.893333pt;}
.y12_c02414{bottom:560.573333pt;}
.y11_c02414{bottom:588.093333pt;}
.y10_c02414{bottom:615.773333pt;}
.yf_c02414{bottom:643.293333pt;}
.ye_c02414{bottom:670.973333pt;}
.yd_c02414{bottom:698.493333pt;}
.yc_c02414{bottom:726.213333pt;}
.yb_c02414{bottom:753.733333pt;}
.ya_c02414{bottom:781.413333pt;}
.y9_c02414{bottom:808.933333pt;}
.y8_c02414{bottom:836.613333pt;}
.y7_c02414{bottom:864.133333pt;}
.y6_c02414{bottom:891.813333pt;}
.y5_c02414{bottom:919.333333pt;}
.y4_c02414{bottom:947.040000pt;}
.h2_c02414{height:20.000000pt;}
.h1_c02414{height:43.441250pt;}
.h3_c02414{height:62.812500pt;}
.h0_c02414{height:1056.000000pt;}
.w1_c02414{width:59.232000pt;}
.w0_c02414{width:816.000000pt;}
.x0_c02414{left:0.000000pt;}
.x3_c02414{left:14.720000pt;}
.x1_c02414{left:113.472000pt;}
.x4_c02414{left:166.266667pt;}
.x2_c02414{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02415 {
    display:none;
  }
  .loading-indicator_c02415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02415 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02415 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02415" -> "#page-container .classname_c02415")
 */
.pf_c02415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02415 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02415 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02415 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02415 {overflow:visible;}
  }
}
.c_c02415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02415 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02415:after { /* webkit #35443 */
  content: '';
}
.t_c02415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02415 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02415 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02415 { /* info for Javascript */
  display:none;
}
.l_c02415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02415:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02415 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02415.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02415;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02415{font-family:ff1_c02415;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02415;src:url('chunks/assets/font_02db9517b6022c0704568767.woff2')format("woff");}.ff2_c02415{font-family:ff2_c02415;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:ff3_c02415;src:url('chunks/assets/font_241944a3c5a656a00993d0f3.woff2')format("woff");}.ff3_c02415{font-family:ff3_c02415;line-height:1.311035;font-style:normal;font-weight: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_c02415;src:url('chunks/assets/font_7284324d70b1a336cd1f7842.woff2')format("woff");}.ff4_c02415{font-family:ff4_c02415;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02415{vertical-align:0.000000px;}
.ls4_c02415{letter-spacing:-1.440000px;}
.ls3_c02415{letter-spacing:-0.144000px;}
.ls2_c02415{letter-spacing:0.000000px;}
.ls1_c02415{letter-spacing:3.600000px;}
.ls0_c02415{letter-spacing:20.160000px;}
.sc__c02415{text-shadow:none;}
.sc0_c02415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02415{-webkit-text-stroke:0px transparent;}
.sc0_c02415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02415{word-spacing:-17.856000px;}
.ws1_c02415{word-spacing:0.000000px;}
._9_c02415{margin-left:-2.256000px;}
._0_c02415{margin-left:-1.080000px;}
._1_c02415{width:1.488000px;}
._4_c02415{width:3.192000px;}
._a_c02415{width:4.320000px;}
._2_c02415{width:5.688000px;}
._3_c02415{width:6.864000px;}
._b_c02415{width:8.280000px;}
._c_c02415{width:9.432000px;}
._7_c02415{width:10.584000px;}
._8_c02415{width:19.440000px;}
._5_c02415{width:22.104000px;}
._6_c02415{width:23.544000px;}
._d_c02415{width:24.912000px;}
.fc1_c02415{color:rgb(192,80,77);}
.fc3_c02415{color:rgb(255,255,255);}
.fc2_c02415{color:rgb(17,17,17);}
.fc0_c02415{color:rgb(0,0,0);}
.fs0_c02415{font-size:66.240000px;}
.fs1_c02415{font-size:72.000000px;}
.y0_c02415{bottom:0.000000px;}
.y10_c02415{bottom:4.140000px;}
.ye_c02415{bottom:4.500000px;}
.y3_c02415{bottom:4.680000px;}
.yc_c02415{bottom:5.220000px;}
.yb_c02415{bottom:25.920000px;}
.yd_c02415{bottom:26.280000px;}
.y9_c02415{bottom:26.640000px;}
.y2_c02415{bottom:41.796000px;}
.y8_c02415{bottom:47.340000px;}
.y1_c02415{bottom:75.456000px;}
.y2d_c02415{bottom:127.836000px;}
.y2c_c02415{bottom:158.790000px;}
.y2b_c02415{bottom:189.930000px;}
.y2a_c02415{bottom:220.890000px;}
.y29_c02415{bottom:252.030000px;}
.y28_c02415{bottom:283.035000px;}
.y27_c02415{bottom:314.175000px;}
.y26_c02415{bottom:345.135000px;}
.y25_c02415{bottom:376.275000px;}
.y24_c02415{bottom:407.235000px;}
.y23_c02415{bottom:438.375000px;}
.y22_c02415{bottom:469.335000px;}
.y21_c02415{bottom:500.295000px;}
.y20_c02415{bottom:531.435000px;}
.y1f_c02415{bottom:562.425000px;}
.y1e_c02415{bottom:593.565000px;}
.y1d_c02415{bottom:624.525000px;}
.y1c_c02415{bottom:655.665000px;}
.y1b_c02415{bottom:686.625000px;}
.y1a_c02415{bottom:717.765000px;}
.y19_c02415{bottom:738.645000px;}
.y18_c02415{bottom:759.345000px;}
.y17_c02415{bottom:780.045000px;}
.y16_c02415{bottom:800.790000px;}
.y15_c02415{bottom:821.490000px;}
.y14_c02415{bottom:842.190000px;}
.y13_c02415{bottom:859.110000px;}
.y12_c02415{bottom:880.530000px;}
.y11_c02415{bottom:901.950000px;}
.yf_c02415{bottom:923.370000px;}
.y7_c02415{bottom:944.970000px;}
.ya_c02415{bottom:966.390000px;}
.y6_c02415{bottom:1023.990000px;}
.y5_c02415{bottom:1044.870000px;}
.y4_c02415{bottom:1065.600000px;}
.h7_c02415{height:20.700000px;}
.h2_c02415{height:22.500000px;}
.h5_c02415{height:42.120000px;}
.h1_c02415{height:48.871406px;}
.h4_c02415{height:63.540000px;}
.h8_c02415{height:64.546875px;}
.h3_c02415{height:70.664062px;}
.h6_c02415{height:72.562500px;}
.h0_c02415{height:1188.000000px;}
.w7_c02415{width:59.436000px;}
.w5_c02415{width:63.000000px;}
.w6_c02415{width:63.036000px;}
.w1_c02415{width:66.636000px;}
.w4_c02415{width:78.480000px;}
.w2_c02415{width:224.490000px;}
.w3_c02415{width:314.535000px;}
.w0_c02415{width:918.000000px;}
.x0_c02415{left:0.000000px;}
.xf_c02415{left:7.740000px;}
.x15_c02415{left:10.620000px;}
.x17_c02415{left:11.700000px;}
.x10_c02415{left:13.860000px;}
.x3_c02415{left:16.560000px;}
.x12_c02415{left:18.540000px;}
.x1b_c02415{left:20.700000px;}
.x1a_c02415{left:22.500000px;}
.x1c_c02415{left:25.740000px;}
.x19_c02415{left:27.000000px;}
.x1e_c02415{left:30.240000px;}
.xe_c02415{left:39.240000px;}
.x9_c02415{left:74.700000px;}
.xc_c02415{left:77.040000px;}
.x1d_c02415{left:79.740000px;}
.x18_c02415{left:81.000000px;}
.xb_c02415{left:86.760000px;}
.x1f_c02415{left:87.840000px;}
.x8_c02415{left:112.140000px;}
.x1_c02415{left:127.656000px;}
.x7_c02415{left:179.310000px;}
.x6_c02415{left:187.050000px;}
.x5_c02415{left:268.050000px;}
.xa_c02415{left:404.535000px;}
.x4_c02415{left:440.895000px;}
.x11_c02415{left:468.255000px;}
.x13_c02415{left:532.005000px;}
.x14_c02415{left:595.905000px;}
.x16_c02415{left:659.625000px;}
.xd_c02415{left:719.790000px;}
.x2_c02415{left:820.950000px;}
@media print{
.v0_c02415{vertical-align:0.000000pt;}
.ls4_c02415{letter-spacing:-1.280000pt;}
.ls3_c02415{letter-spacing:-0.128000pt;}
.ls2_c02415{letter-spacing:0.000000pt;}
.ls1_c02415{letter-spacing:3.200000pt;}
.ls0_c02415{letter-spacing:17.920000pt;}
.ws0_c02415{word-spacing:-15.872000pt;}
.ws1_c02415{word-spacing:0.000000pt;}
._9_c02415{margin-left:-2.005333pt;}
._0_c02415{margin-left:-0.960000pt;}
._1_c02415{width:1.322667pt;}
._4_c02415{width:2.837333pt;}
._a_c02415{width:3.840000pt;}
._2_c02415{width:5.056000pt;}
._3_c02415{width:6.101333pt;}
._b_c02415{width:7.360000pt;}
._c_c02415{width:8.384000pt;}
._7_c02415{width:9.408000pt;}
._8_c02415{width:17.280000pt;}
._5_c02415{width:19.648000pt;}
._6_c02415{width:20.928000pt;}
._d_c02415{width:22.144000pt;}
.fs0_c02415{font-size:58.880000pt;}
.fs1_c02415{font-size:64.000000pt;}
.y0_c02415{bottom:0.000000pt;}
.y10_c02415{bottom:3.680000pt;}
.ye_c02415{bottom:4.000000pt;}
.y3_c02415{bottom:4.160000pt;}
.yc_c02415{bottom:4.640000pt;}
.yb_c02415{bottom:23.040000pt;}
.yd_c02415{bottom:23.360000pt;}
.y9_c02415{bottom:23.680000pt;}
.y2_c02415{bottom:37.152000pt;}
.y8_c02415{bottom:42.080000pt;}
.y1_c02415{bottom:67.072000pt;}
.y2d_c02415{bottom:113.632000pt;}
.y2c_c02415{bottom:141.146667pt;}
.y2b_c02415{bottom:168.826667pt;}
.y2a_c02415{bottom:196.346667pt;}
.y29_c02415{bottom:224.026667pt;}
.y28_c02415{bottom:251.586667pt;}
.y27_c02415{bottom:279.266667pt;}
.y26_c02415{bottom:306.786667pt;}
.y25_c02415{bottom:334.466667pt;}
.y24_c02415{bottom:361.986667pt;}
.y23_c02415{bottom:389.666667pt;}
.y22_c02415{bottom:417.186667pt;}
.y21_c02415{bottom:444.706667pt;}
.y20_c02415{bottom:472.386667pt;}
.y1f_c02415{bottom:499.933333pt;}
.y1e_c02415{bottom:527.613333pt;}
.y1d_c02415{bottom:555.133333pt;}
.y1c_c02415{bottom:582.813333pt;}
.y1b_c02415{bottom:610.333333pt;}
.y1a_c02415{bottom:638.013333pt;}
.y19_c02415{bottom:656.573333pt;}
.y18_c02415{bottom:674.973333pt;}
.y17_c02415{bottom:693.373333pt;}
.y16_c02415{bottom:711.813333pt;}
.y15_c02415{bottom:730.213333pt;}
.y14_c02415{bottom:748.613333pt;}
.y13_c02415{bottom:763.653333pt;}
.y12_c02415{bottom:782.693333pt;}
.y11_c02415{bottom:801.733333pt;}
.yf_c02415{bottom:820.773333pt;}
.y7_c02415{bottom:839.973333pt;}
.ya_c02415{bottom:859.013333pt;}
.y6_c02415{bottom:910.213333pt;}
.y5_c02415{bottom:928.773333pt;}
.y4_c02415{bottom:947.200000pt;}
.h7_c02415{height:18.400000pt;}
.h2_c02415{height:20.000000pt;}
.h5_c02415{height:37.440000pt;}
.h1_c02415{height:43.441250pt;}
.h4_c02415{height:56.480000pt;}
.h8_c02415{height:57.375000pt;}
.h3_c02415{height:62.812500pt;}
.h6_c02415{height:64.500000pt;}
.h0_c02415{height:1056.000000pt;}
.w7_c02415{width:52.832000pt;}
.w5_c02415{width:56.000000pt;}
.w6_c02415{width:56.032000pt;}
.w1_c02415{width:59.232000pt;}
.w4_c02415{width:69.760000pt;}
.w2_c02415{width:199.546667pt;}
.w3_c02415{width:279.586667pt;}
.w0_c02415{width:816.000000pt;}
.x0_c02415{left:0.000000pt;}
.xf_c02415{left:6.880000pt;}
.x15_c02415{left:9.440000pt;}
.x17_c02415{left:10.400000pt;}
.x10_c02415{left:12.320000pt;}
.x3_c02415{left:14.720000pt;}
.x12_c02415{left:16.480000pt;}
.x1b_c02415{left:18.400000pt;}
.x1a_c02415{left:20.000000pt;}
.x1c_c02415{left:22.880000pt;}
.x19_c02415{left:24.000000pt;}
.x1e_c02415{left:26.880000pt;}
.xe_c02415{left:34.880000pt;}
.x9_c02415{left:66.400000pt;}
.xc_c02415{left:68.480000pt;}
.x1d_c02415{left:70.880000pt;}
.x18_c02415{left:72.000000pt;}
.xb_c02415{left:77.120000pt;}
.x1f_c02415{left:78.080000pt;}
.x8_c02415{left:99.680000pt;}
.x1_c02415{left:113.472000pt;}
.x7_c02415{left:159.386667pt;}
.x6_c02415{left:166.266667pt;}
.x5_c02415{left:238.266667pt;}
.xa_c02415{left:359.586667pt;}
.x4_c02415{left:391.906667pt;}
.x11_c02415{left:416.226667pt;}
.x13_c02415{left:472.893333pt;}
.x14_c02415{left:529.693333pt;}
.x16_c02415{left:586.333333pt;}
.xd_c02415{left:639.813333pt;}
.x2_c02415{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02416 {
    display:none;
  }
  .loading-indicator_c02416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02416 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02416 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02416" -> "#page-container .classname_c02416")
 */
.pf_c02416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02416 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02416 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02416 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02416 {overflow:visible;}
  }
}
.c_c02416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02416 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02416:after { /* webkit #35443 */
  content: '';
}
.t_c02416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02416 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02416 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02416 { /* info for Javascript */
  display:none;
}
.l_c02416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02416:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02416 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02416.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02416;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02416{font-family:ff1_c02416;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02416;src:url('chunks/assets/font_37579c97c9e3c5ae518b6fc9.woff2')format("woff");}.ff2_c02416{font-family:ff2_c02416;line-height:1.112305;font-style:normal;font-weight: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_c02416;src:url('chunks/assets/font_35938d6843eb7a9bec6df328.woff2')format("woff");}.ff3_c02416{font-family:ff3_c02416;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;}
.m0_c02416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02416{vertical-align:0.000000px;}
.ls0_c02416{letter-spacing:0.000000px;}
.sc__c02416{text-shadow:none;}
.sc0_c02416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02416{-webkit-text-stroke:0px transparent;}
.sc0_c02416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02416{word-spacing:0.000000px;}
._13_c02416{margin-left:-2.448000px;}
._1_c02416{margin-left:-1.440000px;}
._3_c02416{width:1.080000px;}
._4_c02416{width:2.244000px;}
._12_c02416{width:3.432000px;}
._9_c02416{width:4.536000px;}
._a_c02416{width:5.832000px;}
._b_c02416{width:7.128000px;}
._2_c02416{width:8.568000px;}
._0_c02416{width:9.720000px;}
._c_c02416{width:10.944000px;}
._d_c02416{width:12.024000px;}
._7_c02416{width:13.824000px;}
._8_c02416{width:14.832000px;}
._11_c02416{width:16.272000px;}
._5_c02416{width:19.296000px;}
._6_c02416{width:21.168000px;}
._10_c02416{width:24.408000px;}
._f_c02416{width:25.848000px;}
._e_c02416{width:27.000000px;}
.fc1_c02416{color:rgb(192,80,77);}
.fc2_c02416{color:rgb(17,17,17);}
.fc0_c02416{color:rgb(0,0,0);}
.fs0_c02416{font-size:66.240000px;}
.fs1_c02416{font-size:72.000000px;}
.y0_c02416{bottom:0.000000px;}
.y3_c02416{bottom:4.680000px;}
.y2_c02416{bottom:41.796000px;}
.y1_c02416{bottom:75.456000px;}
.y22_c02416{bottom:133.776000px;}
.y21_c02416{bottom:164.910000px;}
.y20_c02416{bottom:195.870000px;}
.y1f_c02416{bottom:226.830000px;}
.y1e_c02416{bottom:257.970000px;}
.y1d_c02416{bottom:288.975000px;}
.y1c_c02416{bottom:320.115000px;}
.y1b_c02416{bottom:351.075000px;}
.y1a_c02416{bottom:382.215000px;}
.y19_c02416{bottom:413.175000px;}
.y18_c02416{bottom:444.315000px;}
.y17_c02416{bottom:475.275000px;}
.y16_c02416{bottom:506.415000px;}
.y15_c02416{bottom:537.405000px;}
.y14_c02416{bottom:568.545000px;}
.y13_c02416{bottom:599.505000px;}
.y12_c02416{bottom:630.645000px;}
.y11_c02416{bottom:661.605000px;}
.y10_c02416{bottom:692.745000px;}
.yf_c02416{bottom:723.705000px;}
.ye_c02416{bottom:754.845000px;}
.yd_c02416{bottom:785.805000px;}
.yc_c02416{bottom:816.990000px;}
.yb_c02416{bottom:847.950000px;}
.ya_c02416{bottom:879.090000px;}
.y9_c02416{bottom:910.050000px;}
.y8_c02416{bottom:941.190000px;}
.y7_c02416{bottom:972.150000px;}
.y6_c02416{bottom:1003.290000px;}
.y5_c02416{bottom:1034.250000px;}
.y4_c02416{bottom:1065.420000px;}
.h2_c02416{height:22.500000px;}
.h1_c02416{height:48.871406px;}
.h4_c02416{height:64.546875px;}
.h3_c02416{height:70.664062px;}
.h0_c02416{height:1188.000000px;}
.w1_c02416{width:66.636000px;}
.w0_c02416{width:918.000000px;}
.x0_c02416{left:0.000000px;}
.x3_c02416{left:16.560000px;}
.x1_c02416{left:127.656000px;}
.x4_c02416{left:187.050000px;}
.x2_c02416{left:820.950000px;}
@media print{
.v0_c02416{vertical-align:0.000000pt;}
.ls0_c02416{letter-spacing:0.000000pt;}
.ws0_c02416{word-spacing:0.000000pt;}
._13_c02416{margin-left:-2.176000pt;}
._1_c02416{margin-left:-1.280000pt;}
._3_c02416{width:0.960000pt;}
._4_c02416{width:1.994667pt;}
._12_c02416{width:3.050667pt;}
._9_c02416{width:4.032000pt;}
._a_c02416{width:5.184000pt;}
._b_c02416{width:6.336000pt;}
._2_c02416{width:7.616000pt;}
._0_c02416{width:8.640000pt;}
._c_c02416{width:9.728000pt;}
._d_c02416{width:10.688000pt;}
._7_c02416{width:12.288000pt;}
._8_c02416{width:13.184000pt;}
._11_c02416{width:14.464000pt;}
._5_c02416{width:17.152000pt;}
._6_c02416{width:18.816000pt;}
._10_c02416{width:21.696000pt;}
._f_c02416{width:22.976000pt;}
._e_c02416{width:24.000000pt;}
.fs0_c02416{font-size:58.880000pt;}
.fs1_c02416{font-size:64.000000pt;}
.y0_c02416{bottom:0.000000pt;}
.y3_c02416{bottom:4.160000pt;}
.y2_c02416{bottom:37.152000pt;}
.y1_c02416{bottom:67.072000pt;}
.y22_c02416{bottom:118.912000pt;}
.y21_c02416{bottom:146.586667pt;}
.y20_c02416{bottom:174.106667pt;}
.y1f_c02416{bottom:201.626667pt;}
.y1e_c02416{bottom:229.306667pt;}
.y1d_c02416{bottom:256.866667pt;}
.y1c_c02416{bottom:284.546667pt;}
.y1b_c02416{bottom:312.066667pt;}
.y1a_c02416{bottom:339.746667pt;}
.y19_c02416{bottom:367.266667pt;}
.y18_c02416{bottom:394.946667pt;}
.y17_c02416{bottom:422.466667pt;}
.y16_c02416{bottom:450.146667pt;}
.y15_c02416{bottom:477.693333pt;}
.y14_c02416{bottom:505.373333pt;}
.y13_c02416{bottom:532.893333pt;}
.y12_c02416{bottom:560.573333pt;}
.y11_c02416{bottom:588.093333pt;}
.y10_c02416{bottom:615.773333pt;}
.yf_c02416{bottom:643.293333pt;}
.ye_c02416{bottom:670.973333pt;}
.yd_c02416{bottom:698.493333pt;}
.yc_c02416{bottom:726.213333pt;}
.yb_c02416{bottom:753.733333pt;}
.ya_c02416{bottom:781.413333pt;}
.y9_c02416{bottom:808.933333pt;}
.y8_c02416{bottom:836.613333pt;}
.y7_c02416{bottom:864.133333pt;}
.y6_c02416{bottom:891.813333pt;}
.y5_c02416{bottom:919.333333pt;}
.y4_c02416{bottom:947.040000pt;}
.h2_c02416{height:20.000000pt;}
.h1_c02416{height:43.441250pt;}
.h4_c02416{height:57.375000pt;}
.h3_c02416{height:62.812500pt;}
.h0_c02416{height:1056.000000pt;}
.w1_c02416{width:59.232000pt;}
.w0_c02416{width:816.000000pt;}
.x0_c02416{left:0.000000pt;}
.x3_c02416{left:14.720000pt;}
.x1_c02416{left:113.472000pt;}
.x4_c02416{left:166.266667pt;}
.x2_c02416{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02417 {
    display:none;
  }
  .loading-indicator_c02417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02417" -> "#page-container .classname_c02417")
 */
.pf_c02417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02417 {overflow:visible;}
  }
}
.c_c02417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02417:after { /* webkit #35443 */
  content: '';
}
.t_c02417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02417 { /* info for Javascript */
  display:none;
}
.l_c02417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02417:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02417 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02417.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02417;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02417{font-family:ff1_c02417;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02417;src:url('chunks/assets/font_51f892163e84ae29dca127c1.woff2')format("woff");}.ff2_c02417{font-family:ff2_c02417;line-height:1.112305;font-style:normal;font-weight: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_c02417;src:url('chunks/assets/font_78bf65606bd532f590a5e8ad.woff2')format("woff");}.ff3_c02417{font-family:ff3_c02417;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;}
.m0_c02417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02417{vertical-align:0.000000px;}
.ls2_c02417{letter-spacing:0.000000px;}
.ls1_c02417{letter-spacing:11.520000px;}
.ls0_c02417{letter-spacing:43.200000px;}
.sc__c02417{text-shadow:none;}
.sc0_c02417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02417{-webkit-text-stroke:0px transparent;}
.sc0_c02417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02417{word-spacing:0.000000px;}
._2_c02417{margin-left:-1.224000px;}
._1_c02417{width:1.080000px;}
._4_c02417{width:2.232000px;}
._a_c02417{width:4.968000px;}
._b_c02417{width:6.264000px;}
._6_c02417{width:10.800000px;}
._5_c02417{width:12.024000px;}
._9_c02417{width:15.984000px;}
._7_c02417{width:20.232000px;}
._8_c02417{width:21.384000px;}
._0_c02417{width:42.480000px;}
._3_c02417{width:44.496000px;}
.fc1_c02417{color:rgb(192,80,77);}
.fc2_c02417{color:rgb(17,17,17);}
.fc0_c02417{color:rgb(0,0,0);}
.fs0_c02417{font-size:66.240000px;}
.fs1_c02417{font-size:72.000000px;}
.y0_c02417{bottom:0.000000px;}
.y3_c02417{bottom:4.680000px;}
.y2_c02417{bottom:41.796000px;}
.y1_c02417{bottom:75.456000px;}
.ye_c02417{bottom:754.845000px;}
.yd_c02417{bottom:785.805000px;}
.yc_c02417{bottom:816.990000px;}
.yb_c02417{bottom:847.950000px;}
.ya_c02417{bottom:879.090000px;}
.y9_c02417{bottom:910.050000px;}
.y8_c02417{bottom:941.190000px;}
.y7_c02417{bottom:972.150000px;}
.y6_c02417{bottom:1003.290000px;}
.y5_c02417{bottom:1034.250000px;}
.y4_c02417{bottom:1065.420000px;}
.h2_c02417{height:22.500000px;}
.h1_c02417{height:48.871406px;}
.h4_c02417{height:64.546875px;}
.h3_c02417{height:70.664062px;}
.h0_c02417{height:1188.000000px;}
.w1_c02417{width:66.636000px;}
.w0_c02417{width:918.000000px;}
.x0_c02417{left:0.000000px;}
.x3_c02417{left:16.560000px;}
.x1_c02417{left:127.656000px;}
.x4_c02417{left:187.050000px;}
.x2_c02417{left:820.950000px;}
@media print{
.v0_c02417{vertical-align:0.000000pt;}
.ls2_c02417{letter-spacing:0.000000pt;}
.ls1_c02417{letter-spacing:10.240000pt;}
.ls0_c02417{letter-spacing:38.400000pt;}
.ws0_c02417{word-spacing:0.000000pt;}
._2_c02417{margin-left:-1.088000pt;}
._1_c02417{width:0.960000pt;}
._4_c02417{width:1.984000pt;}
._a_c02417{width:4.416000pt;}
._b_c02417{width:5.568000pt;}
._6_c02417{width:9.600000pt;}
._5_c02417{width:10.688000pt;}
._9_c02417{width:14.208000pt;}
._7_c02417{width:17.984000pt;}
._8_c02417{width:19.008000pt;}
._0_c02417{width:37.760000pt;}
._3_c02417{width:39.552000pt;}
.fs0_c02417{font-size:58.880000pt;}
.fs1_c02417{font-size:64.000000pt;}
.y0_c02417{bottom:0.000000pt;}
.y3_c02417{bottom:4.160000pt;}
.y2_c02417{bottom:37.152000pt;}
.y1_c02417{bottom:67.072000pt;}
.ye_c02417{bottom:670.973333pt;}
.yd_c02417{bottom:698.493333pt;}
.yc_c02417{bottom:726.213333pt;}
.yb_c02417{bottom:753.733333pt;}
.ya_c02417{bottom:781.413333pt;}
.y9_c02417{bottom:808.933333pt;}
.y8_c02417{bottom:836.613333pt;}
.y7_c02417{bottom:864.133333pt;}
.y6_c02417{bottom:891.813333pt;}
.y5_c02417{bottom:919.333333pt;}
.y4_c02417{bottom:947.040000pt;}
.h2_c02417{height:20.000000pt;}
.h1_c02417{height:43.441250pt;}
.h4_c02417{height:57.375000pt;}
.h3_c02417{height:62.812500pt;}
.h0_c02417{height:1056.000000pt;}
.w1_c02417{width:59.232000pt;}
.w0_c02417{width:816.000000pt;}
.x0_c02417{left:0.000000pt;}
.x3_c02417{left:14.720000pt;}
.x1_c02417{left:113.472000pt;}
.x4_c02417{left:166.266667pt;}
.x2_c02417{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02418 {
    display:none;
  }
  .loading-indicator_c02418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02418" -> "#page-container .classname_c02418")
 */
.pf_c02418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02418 {overflow:visible;}
  }
}
.c_c02418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02418:after { /* webkit #35443 */
  content: '';
}
.t_c02418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02418 { /* info for Javascript */
  display:none;
}
.l_c02418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02418:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02418 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02418.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02418;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02418{font-family:ff1_c02418;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02418;src:url('chunks/assets/font_29687770b51121cb9eaeafae.woff2')format("woff");}.ff2_c02418{font-family:ff2_c02418;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:ff3_c02418;src:url('chunks/assets/font_75704b15468253df5d04bd8e.woff2')format("woff");}.ff3_c02418{font-family:ff3_c02418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02418{vertical-align:0.000000px;}
.ls1_c02418{letter-spacing:-0.385800px;}
.ls0_c02418{letter-spacing:0.000000px;}
.sc__c02418{text-shadow:none;}
.sc0_c02418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02418{-webkit-text-stroke:0px transparent;}
.sc0_c02418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02418{word-spacing:-15.454200px;}
.ws1_c02418{word-spacing:0.000000px;}
._0_c02418{margin-left:-1.296000px;}
._1_c02418{width:1.308000px;}
._3_c02418{width:19.440000px;}
._2_c02418{width:1662.780000px;}
.fc1_c02418{color:rgb(192,80,77);}
.fc3_c02418{color:rgb(255,255,255);}
.fc2_c02418{color:rgb(17,17,17);}
.fc0_c02418{color:rgb(0,0,0);}
.fs2_c02418{font-size:63.360000px;}
.fs0_c02418{font-size:66.240000px;}
.fs1_c02418{font-size:72.000000px;}
.y0_c02418{bottom:0.000000px;}
.y16_c02418{bottom:3.420000px;}
.y13_c02418{bottom:3.600000px;}
.y15_c02418{bottom:3.780000px;}
.ye_c02418{bottom:3.960000px;}
.y25_c02418{bottom:3.990000px;}
.y3_c02418{bottom:4.860000px;}
.y2e_c02418{bottom:5.400000px;}
.yc_c02418{bottom:9.720000px;}
.y1a_c02418{bottom:23.400000px;}
.y11_c02418{bottom:23.445000px;}
.y2d_c02418{bottom:23.580000px;}
.yb_c02418{bottom:27.900000px;}
.yd_c02418{bottom:28.260000px;}
.y9_c02418{bottom:28.620000px;}
.y19_c02418{bottom:41.580000px;}
.y10_c02418{bottom:41.625000px;}
.y23_c02418{bottom:41.790000px;}
.y8_c02418{bottom:46.800000px;}
.y2_c02418{bottom:52.416000px;}
.y1_c02418{bottom:75.456000px;}
.y35_c02418{bottom:138.276000px;}
.y32_c02418{bottom:157.170000px;}
.y34_c02418{bottom:176.070000px;}
.y33_c02418{bottom:194.970000px;}
.y31_c02418{bottom:213.690000px;}
.y2c_c02418{bottom:232.635000px;}
.y30_c02418{bottom:251.535000px;}
.y2f_c02418{bottom:270.435000px;}
.y2b_c02418{bottom:289.155000px;}
.y28_c02418{bottom:308.055000px;}
.y2a_c02418{bottom:326.955000px;}
.y29_c02418{bottom:345.855000px;}
.y27_c02418{bottom:364.755000px;}
.y22_c02418{bottom:383.475000px;}
.y26_c02418{bottom:402.375000px;}
.y24_c02418{bottom:421.275000px;}
.y21_c02418{bottom:440.205000px;}
.y1e_c02418{bottom:459.105000px;}
.y20_c02418{bottom:477.825000px;}
.y1f_c02418{bottom:496.725000px;}
.y1d_c02418{bottom:515.625000px;}
.y18_c02418{bottom:534.525000px;}
.y1c_c02418{bottom:553.245000px;}
.y1b_c02418{bottom:572.145000px;}
.y17_c02418{bottom:591.045000px;}
.yf_c02418{bottom:609.945000px;}
.y14_c02418{bottom:628.890000px;}
.y12_c02418{bottom:647.610000px;}
.y7_c02418{bottom:666.510000px;}
.ya_c02418{bottom:685.410000px;}
.y6_c02418{bottom:732.750000px;}
.y5_c02418{bottom:753.450000px;}
.y4_c02418{bottom:774.150000px;}
.ha_c02418{height:18.000000px;}
.hb_c02418{height:18.036000px;}
.h8_c02418{height:18.180000px;}
.he_c02418{height:18.216000px;}
.h2_c02418{height:22.680000px;}
.h6_c02418{height:42.120000px;}
.h1_c02418{height:48.871406px;}
.hc_c02418{height:55.800000px;}
.h9_c02418{height:55.836000px;}
.hd_c02418{height:56.016000px;}
.h4_c02418{height:61.020000px;}
.h5_c02418{height:62.184375px;}
.h7_c02418{height:63.855000px;}
.h3_c02418{height:70.664062px;}
.h0_c02418{height:918.000000px;}
.w6_c02418{width:52.380000px;}
.w7_c02418{width:52.416000px;}
.w1_c02418{width:66.780000px;}
.w8_c02418{width:73.800000px;}
.w5_c02418{width:75.780000px;}
.w3_c02418{width:113.976000px;}
.w4_c02418{width:286.410000px;}
.w2_c02418{width:490.575000px;}
.w9_c02418{width:892.410000px;}
.w0_c02418{width:1188.000000px;}
.x0_c02418{left:0.000000px;}
.x16_c02418{left:7.740000px;}
.x11_c02418{left:10.260000px;}
.x13_c02418{left:14.580000px;}
.x3_c02418{left:16.560000px;}
.x1e_c02418{left:18.000000px;}
.x18_c02418{left:21.060000px;}
.x1b_c02418{left:22.140000px;}
.xb_c02418{left:24.120000px;}
.x21_c02418{left:26.100000px;}
.x1c_c02418{left:28.800000px;}
.x1d_c02418{left:29.880000px;}
.x1a_c02418{left:31.500000px;}
.x23_c02418{left:32.760000px;}
.x24_c02418{left:33.840000px;}
.x1f_c02418{left:35.460000px;}
.x10_c02418{left:37.800000px;}
.xa_c02418{left:56.880000px;}
.xe_c02418{left:72.900000px;}
.xd_c02418{left:81.540000px;}
.x1_c02418{left:106.200000px;}
.x2c_c02418{left:184.710000px;}
.x22_c02418{left:187.590000px;}
.x2a_c02418{left:188.670000px;}
.x29_c02418{left:194.250000px;}
.x27_c02418{left:197.130000px;}
.x19_c02418{left:198.930000px;}
.x28_c02418{left:201.090000px;}
.x26_c02418{left:203.250000px;}
.x2b_c02418{left:215.130000px;}
.x8_c02418{left:224.130000px;}
.x7_c02418{left:245.010000px;}
.x5_c02418{left:372.990000px;}
.x25_c02418{left:399.135000px;}
.x4_c02418{left:575.895000px;}
.x9_c02418{left:598.035000px;}
.x6_c02418{left:623.595000px;}
.xc_c02418{left:712.725000px;}
.x12_c02418{left:766.005000px;}
.x14_c02418{left:819.105000px;}
.x20_c02418{left:827.610000px;}
.x15_c02418{left:872.205000px;}
.x17_c02418{left:925.350000px;}
.xf_c02418{left:999.870000px;}
.x2_c02418{left:1101.570000px;}
@media print{
.v0_c02418{vertical-align:0.000000pt;}
.ls1_c02418{letter-spacing:-0.342933pt;}
.ls0_c02418{letter-spacing:0.000000pt;}
.ws0_c02418{word-spacing:-13.737067pt;}
.ws1_c02418{word-spacing:0.000000pt;}
._0_c02418{margin-left:-1.152000pt;}
._1_c02418{width:1.162667pt;}
._3_c02418{width:17.280000pt;}
._2_c02418{width:1478.026667pt;}
.fs2_c02418{font-size:56.320000pt;}
.fs0_c02418{font-size:58.880000pt;}
.fs1_c02418{font-size:64.000000pt;}
.y0_c02418{bottom:0.000000pt;}
.y16_c02418{bottom:3.040000pt;}
.y13_c02418{bottom:3.200000pt;}
.y15_c02418{bottom:3.360000pt;}
.ye_c02418{bottom:3.520000pt;}
.y25_c02418{bottom:3.546667pt;}
.y3_c02418{bottom:4.320000pt;}
.y2e_c02418{bottom:4.800000pt;}
.yc_c02418{bottom:8.640000pt;}
.y1a_c02418{bottom:20.800000pt;}
.y11_c02418{bottom:20.840000pt;}
.y2d_c02418{bottom:20.960000pt;}
.yb_c02418{bottom:24.800000pt;}
.yd_c02418{bottom:25.120000pt;}
.y9_c02418{bottom:25.440000pt;}
.y19_c02418{bottom:36.960000pt;}
.y10_c02418{bottom:37.000000pt;}
.y23_c02418{bottom:37.146667pt;}
.y8_c02418{bottom:41.600000pt;}
.y2_c02418{bottom:46.592000pt;}
.y1_c02418{bottom:67.072000pt;}
.y35_c02418{bottom:122.912000pt;}
.y32_c02418{bottom:139.706667pt;}
.y34_c02418{bottom:156.506667pt;}
.y33_c02418{bottom:173.306667pt;}
.y31_c02418{bottom:189.946667pt;}
.y2c_c02418{bottom:206.786667pt;}
.y30_c02418{bottom:223.586667pt;}
.y2f_c02418{bottom:240.386667pt;}
.y2b_c02418{bottom:257.026667pt;}
.y28_c02418{bottom:273.826667pt;}
.y2a_c02418{bottom:290.626667pt;}
.y29_c02418{bottom:307.426667pt;}
.y27_c02418{bottom:324.226667pt;}
.y22_c02418{bottom:340.866667pt;}
.y26_c02418{bottom:357.666667pt;}
.y24_c02418{bottom:374.466667pt;}
.y21_c02418{bottom:391.293333pt;}
.y1e_c02418{bottom:408.093333pt;}
.y20_c02418{bottom:424.733333pt;}
.y1f_c02418{bottom:441.533333pt;}
.y1d_c02418{bottom:458.333333pt;}
.y18_c02418{bottom:475.133333pt;}
.y1c_c02418{bottom:491.773333pt;}
.y1b_c02418{bottom:508.573333pt;}
.y17_c02418{bottom:525.373333pt;}
.yf_c02418{bottom:542.173333pt;}
.y14_c02418{bottom:559.013333pt;}
.y12_c02418{bottom:575.653333pt;}
.y7_c02418{bottom:592.453333pt;}
.ya_c02418{bottom:609.253333pt;}
.y6_c02418{bottom:651.333333pt;}
.y5_c02418{bottom:669.733333pt;}
.y4_c02418{bottom:688.133333pt;}
.ha_c02418{height:16.000000pt;}
.hb_c02418{height:16.032000pt;}
.h8_c02418{height:16.160000pt;}
.he_c02418{height:16.192000pt;}
.h2_c02418{height:20.160000pt;}
.h6_c02418{height:37.440000pt;}
.h1_c02418{height:43.441250pt;}
.hc_c02418{height:49.600000pt;}
.h9_c02418{height:49.632000pt;}
.hd_c02418{height:49.792000pt;}
.h4_c02418{height:54.240000pt;}
.h5_c02418{height:55.275000pt;}
.h7_c02418{height:56.760000pt;}
.h3_c02418{height:62.812500pt;}
.h0_c02418{height:816.000000pt;}
.w6_c02418{width:46.560000pt;}
.w7_c02418{width:46.592000pt;}
.w1_c02418{width:59.360000pt;}
.w8_c02418{width:65.600000pt;}
.w5_c02418{width:67.360000pt;}
.w3_c02418{width:101.312000pt;}
.w4_c02418{width:254.586667pt;}
.w2_c02418{width:436.066667pt;}
.w9_c02418{width:793.253333pt;}
.w0_c02418{width:1056.000000pt;}
.x0_c02418{left:0.000000pt;}
.x16_c02418{left:6.880000pt;}
.x11_c02418{left:9.120000pt;}
.x13_c02418{left:12.960000pt;}
.x3_c02418{left:14.720000pt;}
.x1e_c02418{left:16.000000pt;}
.x18_c02418{left:18.720000pt;}
.x1b_c02418{left:19.680000pt;}
.xb_c02418{left:21.440000pt;}
.x21_c02418{left:23.200000pt;}
.x1c_c02418{left:25.600000pt;}
.x1d_c02418{left:26.560000pt;}
.x1a_c02418{left:28.000000pt;}
.x23_c02418{left:29.120000pt;}
.x24_c02418{left:30.080000pt;}
.x1f_c02418{left:31.520000pt;}
.x10_c02418{left:33.600000pt;}
.xa_c02418{left:50.560000pt;}
.xe_c02418{left:64.800000pt;}
.xd_c02418{left:72.480000pt;}
.x1_c02418{left:94.400000pt;}
.x2c_c02418{left:164.186667pt;}
.x22_c02418{left:166.746667pt;}
.x2a_c02418{left:167.706667pt;}
.x29_c02418{left:172.666667pt;}
.x27_c02418{left:175.226667pt;}
.x19_c02418{left:176.826667pt;}
.x28_c02418{left:178.746667pt;}
.x26_c02418{left:180.666667pt;}
.x2b_c02418{left:191.226667pt;}
.x8_c02418{left:199.226667pt;}
.x7_c02418{left:217.786667pt;}
.x5_c02418{left:331.546667pt;}
.x25_c02418{left:354.786667pt;}
.x4_c02418{left:511.906667pt;}
.x9_c02418{left:531.586667pt;}
.x6_c02418{left:554.306667pt;}
.xc_c02418{left:633.533333pt;}
.x12_c02418{left:680.893333pt;}
.x14_c02418{left:728.093333pt;}
.x20_c02418{left:735.653333pt;}
.x15_c02418{left:775.293333pt;}
.x17_c02418{left:822.533333pt;}
.xf_c02418{left:888.773333pt;}
.x2_c02418{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02419 {
    display:none;
  }
  .loading-indicator_c02419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02419" -> "#page-container .classname_c02419")
 */
.pf_c02419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02419 {overflow:visible;}
  }
}
.c_c02419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02419:after { /* webkit #35443 */
  content: '';
}
.t_c02419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02419 { /* info for Javascript */
  display:none;
}
.l_c02419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02419:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02419 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02419.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02419;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02419{font-family:ff1_c02419;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02419;src:url('chunks/assets/font_7608eb9d3e086027774e8a13.woff2')format("woff");}.ff2_c02419{font-family:ff2_c02419;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:ff3_c02419;src:url('chunks/assets/font_1a749a2d18c4d65f71e8ea39.woff2')format("woff");}.ff3_c02419{font-family:ff3_c02419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02419{vertical-align:0.000000px;}
.ls0_c02419{letter-spacing:0.000000px;}
.sc__c02419{text-shadow:none;}
.sc0_c02419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02419{-webkit-text-stroke:0px transparent;}
.sc0_c02419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02419{word-spacing:0.000000px;}
._0_c02419{margin-left:-1.267200px;}
._2_c02419{width:1.368000px;}
._5_c02419{width:3.451200px;}
._1_c02419{width:10.008000px;}
._3_c02419{width:11.016000px;}
._4_c02419{width:12.528000px;}
.fc1_c02419{color:rgb(192,80,77);}
.fc2_c02419{color:rgb(17,17,17);}
.fc0_c02419{color:rgb(0,0,0);}
.fs1_c02419{font-size:63.360000px;}
.fs0_c02419{font-size:66.240000px;}
.fs2_c02419{font-size:72.000000px;}
.y0_c02419{bottom:0.000000px;}
.yc_c02419{bottom:3.420000px;}
.y9_c02419{bottom:3.600000px;}
.y16_c02419{bottom:3.645000px;}
.yb_c02419{bottom:3.780000px;}
.y8_c02419{bottom:3.960000px;}
.y15_c02419{bottom:4.005000px;}
.y3_c02419{bottom:4.860000px;}
.y6_c02419{bottom:23.400000px;}
.y5_c02419{bottom:41.580000px;}
.y13_c02419{bottom:41.625000px;}
.y1e_c02419{bottom:41.760000px;}
.y2_c02419{bottom:52.416000px;}
.y1_c02419{bottom:75.456000px;}
.y27_c02419{bottom:294.555000px;}
.y26_c02419{bottom:315.255000px;}
.y25_c02419{bottom:335.955000px;}
.y24_c02419{bottom:356.655000px;}
.y23_c02419{bottom:377.355000px;}
.y22_c02419{bottom:394.275000px;}
.y21_c02419{bottom:413.175000px;}
.y1d_c02419{bottom:431.925000px;}
.y20_c02419{bottom:450.825000px;}
.y1f_c02419{bottom:469.725000px;}
.y1c_c02419{bottom:488.625000px;}
.y19_c02419{bottom:507.525000px;}
.y1b_c02419{bottom:526.245000px;}
.y1a_c02419{bottom:545.145000px;}
.y18_c02419{bottom:564.045000px;}
.y12_c02419{bottom:582.945000px;}
.y17_c02419{bottom:601.665000px;}
.y14_c02419{bottom:620.565000px;}
.y11_c02419{bottom:639.510000px;}
.ye_c02419{bottom:658.410000px;}
.y10_c02419{bottom:677.310000px;}
.yf_c02419{bottom:696.030000px;}
.yd_c02419{bottom:714.930000px;}
.y4_c02419{bottom:733.830000px;}
.ya_c02419{bottom:752.730000px;}
.y7_c02419{bottom:771.450000px;}
.h7_c02419{height:18.000000px;}
.hb_c02419{height:18.036000px;}
.h5_c02419{height:18.180000px;}
.h9_c02419{height:18.216000px;}
.h2_c02419{height:22.680000px;}
.h1_c02419{height:48.871406px;}
.h3_c02419{height:55.800000px;}
.h8_c02419{height:55.836000px;}
.ha_c02419{height:55.980000px;}
.h4_c02419{height:62.184375px;}
.h6_c02419{height:63.855000px;}
.hc_c02419{height:70.664062px;}
.h0_c02419{height:918.000000px;}
.w4_c02419{width:52.380000px;}
.w5_c02419{width:52.416000px;}
.w1_c02419{width:66.780000px;}
.w6_c02419{width:73.800000px;}
.w7_c02419{width:75.780000px;}
.w3_c02419{width:113.976000px;}
.w2_c02419{width:490.575000px;}
.w8_c02419{width:892.410000px;}
.w0_c02419{width:1188.000000px;}
.x0_c02419{left:0.000000px;}
.x3_c02419{left:16.560000px;}
.x9_c02419{left:22.140000px;}
.x1a_c02419{left:26.100000px;}
.x11_c02419{left:28.440000px;}
.x18_c02419{left:29.880000px;}
.x7_c02419{left:31.500000px;}
.xe_c02419{left:32.760000px;}
.x10_c02419{left:33.840000px;}
.x12_c02419{left:35.460000px;}
.x1_c02419{left:106.200000px;}
.x15_c02419{left:185.790000px;}
.x4_c02419{left:196.230000px;}
.x14_c02419{left:205.050000px;}
.x16_c02419{left:215.130000px;}
.x5_c02419{left:220.710000px;}
.x17_c02419{left:227.550000px;}
.x6_c02419{left:598.035000px;}
.x8_c02419{left:712.725000px;}
.xa_c02419{left:766.005000px;}
.xb_c02419{left:819.105000px;}
.x13_c02419{left:827.610000px;}
.x19_c02419{left:829.410000px;}
.xc_c02419{left:872.205000px;}
.xd_c02419{left:925.350000px;}
.xf_c02419{left:999.870000px;}
.x2_c02419{left:1101.570000px;}
@media print{
.v0_c02419{vertical-align:0.000000pt;}
.ls0_c02419{letter-spacing:0.000000pt;}
.ws0_c02419{word-spacing:0.000000pt;}
._0_c02419{margin-left:-1.126400pt;}
._2_c02419{width:1.216000pt;}
._5_c02419{width:3.067733pt;}
._1_c02419{width:8.896000pt;}
._3_c02419{width:9.792000pt;}
._4_c02419{width:11.136000pt;}
.fs1_c02419{font-size:56.320000pt;}
.fs0_c02419{font-size:58.880000pt;}
.fs2_c02419{font-size:64.000000pt;}
.y0_c02419{bottom:0.000000pt;}
.yc_c02419{bottom:3.040000pt;}
.y9_c02419{bottom:3.200000pt;}
.y16_c02419{bottom:3.240000pt;}
.yb_c02419{bottom:3.360000pt;}
.y8_c02419{bottom:3.520000pt;}
.y15_c02419{bottom:3.560000pt;}
.y3_c02419{bottom:4.320000pt;}
.y6_c02419{bottom:20.800000pt;}
.y5_c02419{bottom:36.960000pt;}
.y13_c02419{bottom:37.000000pt;}
.y1e_c02419{bottom:37.120000pt;}
.y2_c02419{bottom:46.592000pt;}
.y1_c02419{bottom:67.072000pt;}
.y27_c02419{bottom:261.826667pt;}
.y26_c02419{bottom:280.226667pt;}
.y25_c02419{bottom:298.626667pt;}
.y24_c02419{bottom:317.026667pt;}
.y23_c02419{bottom:335.426667pt;}
.y22_c02419{bottom:350.466667pt;}
.y21_c02419{bottom:367.266667pt;}
.y1d_c02419{bottom:383.933333pt;}
.y20_c02419{bottom:400.733333pt;}
.y1f_c02419{bottom:417.533333pt;}
.y1c_c02419{bottom:434.333333pt;}
.y19_c02419{bottom:451.133333pt;}
.y1b_c02419{bottom:467.773333pt;}
.y1a_c02419{bottom:484.573333pt;}
.y18_c02419{bottom:501.373333pt;}
.y12_c02419{bottom:518.173333pt;}
.y17_c02419{bottom:534.813333pt;}
.y14_c02419{bottom:551.613333pt;}
.y11_c02419{bottom:568.453333pt;}
.ye_c02419{bottom:585.253333pt;}
.y10_c02419{bottom:602.053333pt;}
.yf_c02419{bottom:618.693333pt;}
.yd_c02419{bottom:635.493333pt;}
.y4_c02419{bottom:652.293333pt;}
.ya_c02419{bottom:669.093333pt;}
.y7_c02419{bottom:685.733333pt;}
.h7_c02419{height:16.000000pt;}
.hb_c02419{height:16.032000pt;}
.h5_c02419{height:16.160000pt;}
.h9_c02419{height:16.192000pt;}
.h2_c02419{height:20.160000pt;}
.h1_c02419{height:43.441250pt;}
.h3_c02419{height:49.600000pt;}
.h8_c02419{height:49.632000pt;}
.ha_c02419{height:49.760000pt;}
.h4_c02419{height:55.275000pt;}
.h6_c02419{height:56.760000pt;}
.hc_c02419{height:62.812500pt;}
.h0_c02419{height:816.000000pt;}
.w4_c02419{width:46.560000pt;}
.w5_c02419{width:46.592000pt;}
.w1_c02419{width:59.360000pt;}
.w6_c02419{width:65.600000pt;}
.w7_c02419{width:67.360000pt;}
.w3_c02419{width:101.312000pt;}
.w2_c02419{width:436.066667pt;}
.w8_c02419{width:793.253333pt;}
.w0_c02419{width:1056.000000pt;}
.x0_c02419{left:0.000000pt;}
.x3_c02419{left:14.720000pt;}
.x9_c02419{left:19.680000pt;}
.x1a_c02419{left:23.200000pt;}
.x11_c02419{left:25.280000pt;}
.x18_c02419{left:26.560000pt;}
.x7_c02419{left:28.000000pt;}
.xe_c02419{left:29.120000pt;}
.x10_c02419{left:30.080000pt;}
.x12_c02419{left:31.520000pt;}
.x1_c02419{left:94.400000pt;}
.x15_c02419{left:165.146667pt;}
.x4_c02419{left:174.426667pt;}
.x14_c02419{left:182.266667pt;}
.x16_c02419{left:191.226667pt;}
.x5_c02419{left:196.186667pt;}
.x17_c02419{left:202.266667pt;}
.x6_c02419{left:531.586667pt;}
.x8_c02419{left:633.533333pt;}
.xa_c02419{left:680.893333pt;}
.xb_c02419{left:728.093333pt;}
.x13_c02419{left:735.653333pt;}
.x19_c02419{left:737.253333pt;}
.xc_c02419{left:775.293333pt;}
.xd_c02419{left:822.533333pt;}
.xf_c02419{left:888.773333pt;}
.x2_c02419{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02420 {
    display:none;
  }
  .loading-indicator_c02420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02420 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02420 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02420" -> "#page-container .classname_c02420")
 */
.pf_c02420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02420 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02420 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02420 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02420 {overflow:visible;}
  }
}
.c_c02420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02420 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02420:after { /* webkit #35443 */
  content: '';
}
.t_c02420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02420 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02420 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02420 { /* info for Javascript */
  display:none;
}
.l_c02420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02420:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02420 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02420.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02420;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02420{font-family:ff1_c02420;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02420;src:url('chunks/assets/font_b413aff0215e5f0d70594d85.woff2')format("woff");}.ff2_c02420{font-family:ff2_c02420;line-height:1.311035;font-style:normal;font-weight: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_c02420;src:url('chunks/assets/font_517c03da7f4354445f2742bf.woff2')format("woff");}.ff3_c02420{font-family:ff3_c02420;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_c02420;src:url('chunks/assets/font_70455abc26be86f32b661442.woff2')format("woff");}.ff4_c02420{font-family:ff4_c02420;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02420{vertical-align:0.000000px;}
.ls1_c02420{letter-spacing:0.000000px;}
.ls0_c02420{letter-spacing:13.080000px;}
.sc__c02420{text-shadow:none;}
.sc0_c02420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02420{-webkit-text-stroke:0px transparent;}
.sc0_c02420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02420{word-spacing:0.000000px;}
._2_c02420{margin-left:-1.116076px;}
._0_c02420{width:1.275523px;}
._1_c02420{width:3.272502px;}
._9_c02420{width:4.536000px;}
._a_c02420{width:5.655498px;}
._4_c02420{width:7.344000px;}
._5_c02420{width:8.352000px;}
._3_c02420{width:9.792000px;}
._8_c02420{width:11.628076px;}
._b_c02420{width:13.031695px;}
._6_c02420{width:25.128000px;}
._7_c02420{width:26.208000px;}
.fc1_c02420{color:rgb(192,80,77);}
.fc2_c02420{color:rgb(17,17,17);}
.fc0_c02420{color:rgb(0,0,0);}
.fs0_c02420{font-size:66.240000px;}
.fs2_c02420{font-size:72.000000px;}
.fs1_c02420{font-size:95.760000px;}
.y0_c02420{bottom:0.000000px;}
.y3_c02420{bottom:4.680000px;}
.y2_c02420{bottom:41.796000px;}
.y1_c02420{bottom:75.456000px;}
.y23_c02420{bottom:123.516000px;}
.y22_c02420{bottom:154.470000px;}
.y21_c02420{bottom:185.430000px;}
.y20_c02420{bottom:216.570000px;}
.y1f_c02420{bottom:247.530000px;}
.y1e_c02420{bottom:278.715000px;}
.y1d_c02420{bottom:309.675000px;}
.y1c_c02420{bottom:340.815000px;}
.y1b_c02420{bottom:371.775000px;}
.y1a_c02420{bottom:402.915000px;}
.y19_c02420{bottom:433.875000px;}
.y18_c02420{bottom:465.015000px;}
.y17_c02420{bottom:495.975000px;}
.y16_c02420{bottom:527.115000px;}
.y15_c02420{bottom:548.025000px;}
.y14_c02420{bottom:578.445000px;}
.y13_c02420{bottom:609.945000px;}
.y12_c02420{bottom:640.905000px;}
.y11_c02420{bottom:672.045000px;}
.y10_c02420{bottom:703.005000px;}
.yf_c02420{bottom:734.145000px;}
.ye_c02420{bottom:765.105000px;}
.yd_c02420{bottom:796.290000px;}
.yc_c02420{bottom:827.250000px;}
.yb_c02420{bottom:858.390000px;}
.ya_c02420{bottom:889.350000px;}
.y9_c02420{bottom:920.490000px;}
.y8_c02420{bottom:951.450000px;}
.y7_c02420{bottom:982.590000px;}
.y6_c02420{bottom:1004.190000px;}
.y5_c02420{bottom:1031.730000px;}
.y4_c02420{bottom:1059.480000px;}
.h2_c02420{height:22.500000px;}
.h1_c02420{height:48.871406px;}
.h4_c02420{height:70.664062px;}
.h5_c02420{height:72.562500px;}
.h6_c02420{height:74.004654px;}
.h3_c02420{height:96.508125px;}
.h0_c02420{height:1188.000000px;}
.w1_c02420{width:66.636000px;}
.w0_c02420{width:918.000000px;}
.x0_c02420{left:0.000000px;}
.x3_c02420{left:16.560000px;}
.x1_c02420{left:127.656000px;}
.x9_c02420{left:131.976000px;}
.x4_c02420{left:154.110000px;}
.x5_c02420{left:166.890000px;}
.x7_c02420{left:180.750000px;}
.x8_c02420{left:187.050000px;}
.x6_c02420{left:266.610000px;}
.x2_c02420{left:820.950000px;}
@media print{
.v0_c02420{vertical-align:0.000000pt;}
.ls1_c02420{letter-spacing:0.000000pt;}
.ls0_c02420{letter-spacing:11.626667pt;}
.ws0_c02420{word-spacing:0.000000pt;}
._2_c02420{margin-left:-0.992068pt;}
._0_c02420{width:1.133798pt;}
._1_c02420{width:2.908891pt;}
._9_c02420{width:4.032000pt;}
._a_c02420{width:5.027109pt;}
._4_c02420{width:6.528000pt;}
._5_c02420{width:7.424000pt;}
._3_c02420{width:8.704000pt;}
._8_c02420{width:10.336068pt;}
._b_c02420{width:11.583729pt;}
._6_c02420{width:22.336000pt;}
._7_c02420{width:23.296000pt;}
.fs0_c02420{font-size:58.880000pt;}
.fs2_c02420{font-size:64.000000pt;}
.fs1_c02420{font-size:85.120000pt;}
.y0_c02420{bottom:0.000000pt;}
.y3_c02420{bottom:4.160000pt;}
.y2_c02420{bottom:37.152000pt;}
.y1_c02420{bottom:67.072000pt;}
.y23_c02420{bottom:109.792000pt;}
.y22_c02420{bottom:137.306667pt;}
.y21_c02420{bottom:164.826667pt;}
.y20_c02420{bottom:192.506667pt;}
.y1f_c02420{bottom:220.026667pt;}
.y1e_c02420{bottom:247.746667pt;}
.y1d_c02420{bottom:275.266667pt;}
.y1c_c02420{bottom:302.946667pt;}
.y1b_c02420{bottom:330.466667pt;}
.y1a_c02420{bottom:358.146667pt;}
.y19_c02420{bottom:385.666667pt;}
.y18_c02420{bottom:413.346667pt;}
.y17_c02420{bottom:440.866667pt;}
.y16_c02420{bottom:468.546667pt;}
.y15_c02420{bottom:487.133333pt;}
.y14_c02420{bottom:514.173333pt;}
.y13_c02420{bottom:542.173333pt;}
.y12_c02420{bottom:569.693333pt;}
.y11_c02420{bottom:597.373333pt;}
.y10_c02420{bottom:624.893333pt;}
.yf_c02420{bottom:652.573333pt;}
.ye_c02420{bottom:680.093333pt;}
.yd_c02420{bottom:707.813333pt;}
.yc_c02420{bottom:735.333333pt;}
.yb_c02420{bottom:763.013333pt;}
.ya_c02420{bottom:790.533333pt;}
.y9_c02420{bottom:818.213333pt;}
.y8_c02420{bottom:845.733333pt;}
.y7_c02420{bottom:873.413333pt;}
.y6_c02420{bottom:892.613333pt;}
.y5_c02420{bottom:917.093333pt;}
.y4_c02420{bottom:941.760000pt;}
.h2_c02420{height:20.000000pt;}
.h1_c02420{height:43.441250pt;}
.h4_c02420{height:62.812500pt;}
.h5_c02420{height:64.500000pt;}
.h6_c02420{height:65.781915pt;}
.h3_c02420{height:85.785000pt;}
.h0_c02420{height:1056.000000pt;}
.w1_c02420{width:59.232000pt;}
.w0_c02420{width:816.000000pt;}
.x0_c02420{left:0.000000pt;}
.x3_c02420{left:14.720000pt;}
.x1_c02420{left:113.472000pt;}
.x9_c02420{left:117.312000pt;}
.x4_c02420{left:136.986667pt;}
.x5_c02420{left:148.346667pt;}
.x7_c02420{left:160.666667pt;}
.x8_c02420{left:166.266667pt;}
.x6_c02420{left:236.986667pt;}
.x2_c02420{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02421 {
    display:none;
  }
  .loading-indicator_c02421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02421" -> "#page-container .classname_c02421")
 */
.pf_c02421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02421 {overflow:visible;}
  }
}
.c_c02421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02421:after { /* webkit #35443 */
  content: '';
}
.t_c02421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02421 { /* info for Javascript */
  display:none;
}
.l_c02421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02421:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02421 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02421.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02421;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02421{font-family:ff1_c02421;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02421;src:url('chunks/assets/font_e6613b743bec6bcac44ebff1.woff2')format("woff");}.ff2_c02421{font-family:ff2_c02421;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:ff3_c02421;src:url('chunks/assets/font_fb7e072c6eef4a91d73c91fe.woff2')format("woff");}.ff3_c02421{font-family:ff3_c02421;line-height:1.112305;font-style:normal;font-weight: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_c02421;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02421{font-family:ff4_c02421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02421{vertical-align:0.000000px;}
.ls3_c02421{letter-spacing:-0.262200px;}
.ls2_c02421{letter-spacing:0.000000px;}
.ls1_c02421{letter-spacing:0.152400px;}
.ls0_c02421{letter-spacing:6.480000px;}
.sc__c02421{text-shadow:none;}
.sc0_c02421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02421{-webkit-text-stroke:0px transparent;}
.sc0_c02421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02421{word-spacing:-16.560000px;}
.ws0_c02421{word-spacing:-16.297800px;}
.ws2_c02421{word-spacing:0.000000px;}
._1_c02421{margin-left:-1.053658px;}
._4_c02421{width:1.702964px;}
._3_c02421{width:2.914825px;}
._2_c02421{width:4.371641px;}
._0_c02421{width:5.558441px;}
._e_c02421{width:7.004419px;}
._a_c02421{width:8.008924px;}
._7_c02421{width:9.207625px;}
._d_c02421{width:11.160659px;}
._5_c02421{width:12.168000px;}
._6_c02421{width:13.309036px;}
._b_c02421{width:15.301175px;}
._8_c02421{width:19.076988px;}
._9_c02421{width:20.401854px;}
._c_c02421{width:21.492142px;}
._10_c02421{width:27.423625px;}
._f_c02421{width:37.656000px;}
.fc1_c02421{color:rgb(192,80,77);}
.fc0_c02421{color:rgb(0,0,0);}
.fs0_c02421{font-size:66.240000px;}
.fs1_c02421{font-size:72.000000px;}
.y0_c02421{bottom:0.000000px;}
.y3_c02421{bottom:4.680000px;}
.y2_c02421{bottom:41.796000px;}
.y1_c02421{bottom:75.456000px;}
.y30_c02421{bottom:116.316000px;}
.y2f_c02421{bottom:135.216000px;}
.y2e_c02421{bottom:154.110000px;}
.y2d_c02421{bottom:173.190000px;}
.y2c_c02421{bottom:192.090000px;}
.y2b_c02421{bottom:211.170000px;}
.y2a_c02421{bottom:230.070000px;}
.y29_c02421{bottom:248.970000px;}
.y28_c02421{bottom:268.050000px;}
.y27_c02421{bottom:286.995000px;}
.y26_c02421{bottom:306.075000px;}
.y25_c02421{bottom:335.595000px;}
.y24_c02421{bottom:366.735000px;}
.y23_c02421{bottom:397.695000px;}
.y22_c02421{bottom:428.835000px;}
.y21_c02421{bottom:459.795000px;}
.y20_c02421{bottom:490.935000px;}
.y1f_c02421{bottom:521.895000px;}
.y1e_c02421{bottom:553.065000px;}
.y1d_c02421{bottom:573.405000px;}
.y1c_c02421{bottom:592.305000px;}
.y1b_c02421{bottom:611.385000px;}
.y1a_c02421{bottom:630.285000px;}
.y19_c02421{bottom:649.365000px;}
.y18_c02421{bottom:668.265000px;}
.y17_c02421{bottom:687.165000px;}
.y16_c02421{bottom:706.245000px;}
.y15_c02421{bottom:725.145000px;}
.y14_c02421{bottom:744.225000px;}
.y13_c02421{bottom:763.125000px;}
.y12_c02421{bottom:782.025000px;}
.y11_c02421{bottom:801.150000px;}
.y10_c02421{bottom:820.050000px;}
.yf_c02421{bottom:839.130000px;}
.ye_c02421{bottom:858.030000px;}
.yd_c02421{bottom:877.110000px;}
.yc_c02421{bottom:896.010000px;}
.yb_c02421{bottom:914.910000px;}
.ya_c02421{bottom:934.350000px;}
.y9_c02421{bottom:955.050000px;}
.y8_c02421{bottom:975.750000px;}
.y7_c02421{bottom:996.450000px;}
.y6_c02421{bottom:1016.790000px;}
.y5_c02421{bottom:1035.690000px;}
.y4_c02421{bottom:1065.420000px;}
.h2_c02421{height:22.500000px;}
.h1_c02421{height:48.871406px;}
.h5_c02421{height:59.383125px;}
.h4_c02421{height:65.010937px;}
.h6_c02421{height:66.757500px;}
.h3_c02421{height:70.664062px;}
.h0_c02421{height:1188.000000px;}
.w1_c02421{width:66.636000px;}
.w0_c02421{width:918.000000px;}
.x0_c02421{left:0.000000px;}
.x3_c02421{left:16.560000px;}
.x1_c02421{left:127.656000px;}
.x4_c02421{left:181.650000px;}
.x5_c02421{left:244.650000px;}
.x2_c02421{left:820.950000px;}
@media print{
.v0_c02421{vertical-align:0.000000pt;}
.ls3_c02421{letter-spacing:-0.233067pt;}
.ls2_c02421{letter-spacing:0.000000pt;}
.ls1_c02421{letter-spacing:0.135467pt;}
.ls0_c02421{letter-spacing:5.760000pt;}
.ws1_c02421{word-spacing:-14.720000pt;}
.ws0_c02421{word-spacing:-14.486933pt;}
.ws2_c02421{word-spacing:0.000000pt;}
._1_c02421{margin-left:-0.936585pt;}
._4_c02421{width:1.513746pt;}
._3_c02421{width:2.590956pt;}
._2_c02421{width:3.885903pt;}
._0_c02421{width:4.940837pt;}
._e_c02421{width:6.226150pt;}
._a_c02421{width:7.119043pt;}
._7_c02421{width:8.184556pt;}
._d_c02421{width:9.920585pt;}
._5_c02421{width:10.816000pt;}
._6_c02421{width:11.830254pt;}
._b_c02421{width:13.601044pt;}
._8_c02421{width:16.957322pt;}
._9_c02421{width:18.134981pt;}
._c_c02421{width:19.104126pt;}
._10_c02421{width:24.376556pt;}
._f_c02421{width:33.472000pt;}
.fs0_c02421{font-size:58.880000pt;}
.fs1_c02421{font-size:64.000000pt;}
.y0_c02421{bottom:0.000000pt;}
.y3_c02421{bottom:4.160000pt;}
.y2_c02421{bottom:37.152000pt;}
.y1_c02421{bottom:67.072000pt;}
.y30_c02421{bottom:103.392000pt;}
.y2f_c02421{bottom:120.192000pt;}
.y2e_c02421{bottom:136.986667pt;}
.y2d_c02421{bottom:153.946667pt;}
.y2c_c02421{bottom:170.746667pt;}
.y2b_c02421{bottom:187.706667pt;}
.y2a_c02421{bottom:204.506667pt;}
.y29_c02421{bottom:221.306667pt;}
.y28_c02421{bottom:238.266667pt;}
.y27_c02421{bottom:255.106667pt;}
.y26_c02421{bottom:272.066667pt;}
.y25_c02421{bottom:298.306667pt;}
.y24_c02421{bottom:325.986667pt;}
.y23_c02421{bottom:353.506667pt;}
.y22_c02421{bottom:381.186667pt;}
.y21_c02421{bottom:408.706667pt;}
.y20_c02421{bottom:436.386667pt;}
.y1f_c02421{bottom:463.906667pt;}
.y1e_c02421{bottom:491.613333pt;}
.y1d_c02421{bottom:509.693333pt;}
.y1c_c02421{bottom:526.493333pt;}
.y1b_c02421{bottom:543.453333pt;}
.y1a_c02421{bottom:560.253333pt;}
.y19_c02421{bottom:577.213333pt;}
.y18_c02421{bottom:594.013333pt;}
.y17_c02421{bottom:610.813333pt;}
.y16_c02421{bottom:627.773333pt;}
.y15_c02421{bottom:644.573333pt;}
.y14_c02421{bottom:661.533333pt;}
.y13_c02421{bottom:678.333333pt;}
.y12_c02421{bottom:695.133333pt;}
.y11_c02421{bottom:712.133333pt;}
.y10_c02421{bottom:728.933333pt;}
.yf_c02421{bottom:745.893333pt;}
.ye_c02421{bottom:762.693333pt;}
.yd_c02421{bottom:779.653333pt;}
.yc_c02421{bottom:796.453333pt;}
.yb_c02421{bottom:813.253333pt;}
.ya_c02421{bottom:830.533333pt;}
.y9_c02421{bottom:848.933333pt;}
.y8_c02421{bottom:867.333333pt;}
.y7_c02421{bottom:885.733333pt;}
.y6_c02421{bottom:903.813333pt;}
.y5_c02421{bottom:920.613333pt;}
.y4_c02421{bottom:947.040000pt;}
.h2_c02421{height:20.000000pt;}
.h1_c02421{height:43.441250pt;}
.h5_c02421{height:52.785000pt;}
.h4_c02421{height:57.787500pt;}
.h6_c02421{height:59.340000pt;}
.h3_c02421{height:62.812500pt;}
.h0_c02421{height:1056.000000pt;}
.w1_c02421{width:59.232000pt;}
.w0_c02421{width:816.000000pt;}
.x0_c02421{left:0.000000pt;}
.x3_c02421{left:14.720000pt;}
.x1_c02421{left:113.472000pt;}
.x4_c02421{left:161.466667pt;}
.x5_c02421{left:217.466667pt;}
.x2_c02421{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02422 {
    display:none;
  }
  .loading-indicator_c02422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02422" -> "#page-container .classname_c02422")
 */
.pf_c02422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02422 {overflow:visible;}
  }
}
.c_c02422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02422:after { /* webkit #35443 */
  content: '';
}
.t_c02422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02422 { /* info for Javascript */
  display:none;
}
.l_c02422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02422:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02422 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02422.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02422;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02422{font-family:ff1_c02422;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02422;src:url('chunks/assets/font_7e48127f211261f9a7c396e8.woff2')format("woff");}.ff2_c02422{font-family:ff2_c02422;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:ff3_c02422;src:url('chunks/assets/font_d9845b61e354e18eaff42200.woff2')format("woff");}.ff3_c02422{font-family:ff3_c02422;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02422{vertical-align:0.000000px;}
.ls0_c02422{letter-spacing:0.000000px;}
.sc__c02422{text-shadow:none;}
.sc0_c02422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02422{-webkit-text-stroke:0px transparent;}
.sc0_c02422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02422{word-spacing:0.000000px;}
._4_c02422{margin-left:-1.296000px;}
._1_c02422{width:1.440000px;}
._14_c02422{width:2.563266px;}
._d_c02422{width:3.657799px;}
._3_c02422{width:5.112000px;}
._5_c02422{width:6.300000px;}
._10_c02422{width:7.474101px;}
._b_c02422{width:8.588491px;}
._8_c02422{width:9.864000px;}
._c_c02422{width:11.563266px;}
._12_c02422{width:12.591625px;}
._11_c02422{width:13.608199px;}
._e_c02422{width:15.082759px;}
._f_c02422{width:16.848000px;}
._17_c02422{width:18.624056px;}
._13_c02422{width:20.401788px;}
._15_c02422{width:24.376188px;}
._16_c02422{width:25.502400px;}
._9_c02422{width:26.562041px;}
._a_c02422{width:27.688784px;}
._0_c02422{width:34.776000px;}
._2_c02422{width:35.856000px;}
._6_c02422{width:38.520000px;}
._7_c02422{width:39.672000px;}
.fc1_c02422{color:rgb(192,80,77);}
.fc0_c02422{color:rgb(0,0,0);}
.fs0_c02422{font-size:66.240000px;}
.fs1_c02422{font-size:72.000000px;}
.y0_c02422{bottom:0.000000px;}
.y3_c02422{bottom:4.680000px;}
.y2_c02422{bottom:41.796000px;}
.y1_c02422{bottom:75.456000px;}
.y2e_c02422{bottom:112.716000px;}
.y2d_c02422{bottom:131.796000px;}
.y2c_c02422{bottom:150.690000px;}
.y2b_c02422{bottom:169.770000px;}
.y2a_c02422{bottom:188.670000px;}
.y29_c02422{bottom:207.570000px;}
.y28_c02422{bottom:226.650000px;}
.y27_c02422{bottom:245.550000px;}
.y26_c02422{bottom:264.630000px;}
.y25_c02422{bottom:283.575000px;}
.y24_c02422{bottom:302.655000px;}
.y23_c02422{bottom:321.555000px;}
.y22_c02422{bottom:340.455000px;}
.y21_c02422{bottom:359.535000px;}
.y20_c02422{bottom:378.435000px;}
.y1f_c02422{bottom:397.515000px;}
.y1e_c02422{bottom:416.415000px;}
.y1d_c02422{bottom:435.315000px;}
.y1c_c02422{bottom:465.015000px;}
.y1b_c02422{bottom:495.975000px;}
.y1a_c02422{bottom:527.115000px;}
.y19_c02422{bottom:558.105000px;}
.y18_c02422{bottom:589.245000px;}
.y17_c02422{bottom:620.205000px;}
.y16_c02422{bottom:651.345000px;}
.y15_c02422{bottom:671.685000px;}
.y14_c02422{bottom:690.765000px;}
.y13_c02422{bottom:709.665000px;}
.y12_c02422{bottom:728.565000px;}
.y11_c02422{bottom:747.645000px;}
.y10_c02422{bottom:766.545000px;}
.yf_c02422{bottom:785.625000px;}
.ye_c02422{bottom:804.570000px;}
.yd_c02422{bottom:823.470000px;}
.yc_c02422{bottom:842.550000px;}
.yb_c02422{bottom:861.450000px;}
.ya_c02422{bottom:880.530000px;}
.y9_c02422{bottom:910.050000px;}
.y8_c02422{bottom:941.190000px;}
.y7_c02422{bottom:972.150000px;}
.y6_c02422{bottom:1003.290000px;}
.y5_c02422{bottom:1034.250000px;}
.y4_c02422{bottom:1065.420000px;}
.h2_c02422{height:22.500000px;}
.h1_c02422{height:48.871406px;}
.h5_c02422{height:59.383125px;}
.h4_c02422{height:65.010937px;}
.h3_c02422{height:70.664062px;}
.h0_c02422{height:1188.000000px;}
.w1_c02422{width:66.636000px;}
.w0_c02422{width:918.000000px;}
.x0_c02422{left:0.000000px;}
.x3_c02422{left:16.560000px;}
.x1_c02422{left:127.656000px;}
.x4_c02422{left:181.650000px;}
.x5_c02422{left:244.650000px;}
.x2_c02422{left:820.950000px;}
@media print{
.v0_c02422{vertical-align:0.000000pt;}
.ls0_c02422{letter-spacing:0.000000pt;}
.ws0_c02422{word-spacing:0.000000pt;}
._4_c02422{margin-left:-1.152000pt;}
._1_c02422{width:1.280000pt;}
._14_c02422{width:2.278459pt;}
._d_c02422{width:3.251377pt;}
._3_c02422{width:4.544000pt;}
._5_c02422{width:5.600000pt;}
._10_c02422{width:6.643645pt;}
._b_c02422{width:7.634214pt;}
._8_c02422{width:8.768000pt;}
._c_c02422{width:10.278459pt;}
._12_c02422{width:11.192556pt;}
._11_c02422{width:12.096177pt;}
._e_c02422{width:13.406897pt;}
._f_c02422{width:14.976000pt;}
._17_c02422{width:16.554716pt;}
._13_c02422{width:18.134922pt;}
._15_c02422{width:21.667722pt;}
._16_c02422{width:22.668800pt;}
._9_c02422{width:23.610703pt;}
._a_c02422{width:24.612252pt;}
._0_c02422{width:30.912000pt;}
._2_c02422{width:31.872000pt;}
._6_c02422{width:34.240000pt;}
._7_c02422{width:35.264000pt;}
.fs0_c02422{font-size:58.880000pt;}
.fs1_c02422{font-size:64.000000pt;}
.y0_c02422{bottom:0.000000pt;}
.y3_c02422{bottom:4.160000pt;}
.y2_c02422{bottom:37.152000pt;}
.y1_c02422{bottom:67.072000pt;}
.y2e_c02422{bottom:100.192000pt;}
.y2d_c02422{bottom:117.152000pt;}
.y2c_c02422{bottom:133.946667pt;}
.y2b_c02422{bottom:150.906667pt;}
.y2a_c02422{bottom:167.706667pt;}
.y29_c02422{bottom:184.506667pt;}
.y28_c02422{bottom:201.466667pt;}
.y27_c02422{bottom:218.266667pt;}
.y26_c02422{bottom:235.226667pt;}
.y25_c02422{bottom:252.066667pt;}
.y24_c02422{bottom:269.026667pt;}
.y23_c02422{bottom:285.826667pt;}
.y22_c02422{bottom:302.626667pt;}
.y21_c02422{bottom:319.586667pt;}
.y20_c02422{bottom:336.386667pt;}
.y1f_c02422{bottom:353.346667pt;}
.y1e_c02422{bottom:370.146667pt;}
.y1d_c02422{bottom:386.946667pt;}
.y1c_c02422{bottom:413.346667pt;}
.y1b_c02422{bottom:440.866667pt;}
.y1a_c02422{bottom:468.546667pt;}
.y19_c02422{bottom:496.093333pt;}
.y18_c02422{bottom:523.773333pt;}
.y17_c02422{bottom:551.293333pt;}
.y16_c02422{bottom:578.973333pt;}
.y15_c02422{bottom:597.053333pt;}
.y14_c02422{bottom:614.013333pt;}
.y13_c02422{bottom:630.813333pt;}
.y12_c02422{bottom:647.613333pt;}
.y11_c02422{bottom:664.573333pt;}
.y10_c02422{bottom:681.373333pt;}
.yf_c02422{bottom:698.333333pt;}
.ye_c02422{bottom:715.173333pt;}
.yd_c02422{bottom:731.973333pt;}
.yc_c02422{bottom:748.933333pt;}
.yb_c02422{bottom:765.733333pt;}
.ya_c02422{bottom:782.693333pt;}
.y9_c02422{bottom:808.933333pt;}
.y8_c02422{bottom:836.613333pt;}
.y7_c02422{bottom:864.133333pt;}
.y6_c02422{bottom:891.813333pt;}
.y5_c02422{bottom:919.333333pt;}
.y4_c02422{bottom:947.040000pt;}
.h2_c02422{height:20.000000pt;}
.h1_c02422{height:43.441250pt;}
.h5_c02422{height:52.785000pt;}
.h4_c02422{height:57.787500pt;}
.h3_c02422{height:62.812500pt;}
.h0_c02422{height:1056.000000pt;}
.w1_c02422{width:59.232000pt;}
.w0_c02422{width:816.000000pt;}
.x0_c02422{left:0.000000pt;}
.x3_c02422{left:14.720000pt;}
.x1_c02422{left:113.472000pt;}
.x4_c02422{left:161.466667pt;}
.x5_c02422{left:217.466667pt;}
.x2_c02422{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02423 {
    display:none;
  }
  .loading-indicator_c02423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02423 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02423 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02423" -> "#page-container .classname_c02423")
 */
.pf_c02423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02423 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02423 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02423 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02423 {overflow:visible;}
  }
}
.c_c02423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02423 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02423:after { /* webkit #35443 */
  content: '';
}
.t_c02423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02423 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02423 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02423 { /* info for Javascript */
  display:none;
}
.l_c02423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02423:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02423 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02423.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02423;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff1_c02423{font-family:ff1_c02423;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02423;src:url('chunks/assets/font_a2c11273b2e0e30c144f5279.woff2')format("woff");}.ff2_c02423{font-family:ff2_c02423;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:ff3_c02423;src:url('chunks/assets/font_e0fc07f10b51936d5e80f404.woff2')format("woff");}.ff3_c02423{font-family:ff3_c02423;line-height:1.112305;font-style:normal;font-weight: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_c02423;src:url('chunks/assets/font_0c4f8d89af8bca3c4c433b0f.woff2')format("woff");}.ff4_c02423{font-family:ff4_c02423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02423{vertical-align:0.000000px;}
.ls1_c02423{letter-spacing:0.000000px;}
.ls0_c02423{letter-spacing:0.262080px;}
.sc__c02423{text-shadow:none;}
.sc0_c02423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02423{-webkit-text-stroke:0px transparent;}
.sc0_c02423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02423{word-spacing:-16.560000px;}
.ws1_c02423{word-spacing:0.000000px;}
._0_c02423{margin-left:-1.126146px;}
._5_c02423{width:1.192916px;}
._a_c02423{width:2.239479px;}
._7_c02423{width:3.246886px;}
._4_c02423{width:4.305534px;}
._3_c02423{width:5.365175px;}
._9_c02423{width:6.416805px;}
._6_c02423{width:7.767195px;}
._8_c02423{width:8.936437px;}
._e_c02423{width:10.074509px;}
._2_c02423{width:11.329623px;}
._1_c02423{width:12.453054px;}
._d_c02423{width:16.128000px;}
._f_c02423{width:26.098825px;}
._10_c02423{width:31.464000px;}
._b_c02423{width:50.544000px;}
._c_c02423{width:52.056000px;}
.fc1_c02423{color:rgb(192,80,77);}
.fc0_c02423{color:rgb(0,0,0);}
.fs0_c02423{font-size:66.240000px;}
.fs1_c02423{font-size:72.000000px;}
.y0_c02423{bottom:0.000000px;}
.y3_c02423{bottom:4.680000px;}
.y2_c02423{bottom:41.796000px;}
.y1_c02423{bottom:75.456000px;}
.y2d_c02423{bottom:116.676000px;}
.y2c_c02423{bottom:137.016000px;}
.y2b_c02423{bottom:155.910000px;}
.y2a_c02423{bottom:174.810000px;}
.y29_c02423{bottom:193.890000px;}
.y28_c02423{bottom:223.410000px;}
.y27_c02423{bottom:254.550000px;}
.y26_c02423{bottom:285.555000px;}
.y25_c02423{bottom:316.695000px;}
.y24_c02423{bottom:347.655000px;}
.y23_c02423{bottom:378.795000px;}
.y22_c02423{bottom:399.135000px;}
.y21_c02423{bottom:418.215000px;}
.y20_c02423{bottom:437.115000px;}
.y1f_c02423{bottom:456.015000px;}
.y1e_c02423{bottom:475.455000px;}
.y1d_c02423{bottom:495.795000px;}
.y1c_c02423{bottom:514.695000px;}
.y1b_c02423{bottom:533.805000px;}
.y1a_c02423{bottom:552.705000px;}
.y19_c02423{bottom:571.605000px;}
.y18_c02423{bottom:590.685000px;}
.y17_c02423{bottom:609.585000px;}
.y16_c02423{bottom:628.665000px;}
.y15_c02423{bottom:647.565000px;}
.y14_c02423{bottom:666.465000px;}
.y13_c02423{bottom:696.165000px;}
.y12_c02423{bottom:727.125000px;}
.y11_c02423{bottom:758.265000px;}
.y10_c02423{bottom:789.225000px;}
.yf_c02423{bottom:820.410000px;}
.ye_c02423{bottom:851.370000px;}
.yd_c02423{bottom:882.510000px;}
.yc_c02423{bottom:913.470000px;}
.yb_c02423{bottom:933.990000px;}
.ya_c02423{bottom:952.890000px;}
.y9_c02423{bottom:971.970000px;}
.y8_c02423{bottom:990.870000px;}
.y7_c02423{bottom:1009.770000px;}
.y6_c02423{bottom:1028.850000px;}
.y5_c02423{bottom:1047.750000px;}
.y4_c02423{bottom:1066.860000px;}
.h2_c02423{height:22.500000px;}
.h1_c02423{height:48.871406px;}
.h5_c02423{height:59.383125px;}
.h3_c02423{height:65.010937px;}
.h4_c02423{height:70.664062px;}
.h0_c02423{height:1188.000000px;}
.w1_c02423{width:66.636000px;}
.w0_c02423{width:918.000000px;}
.x0_c02423{left:0.000000px;}
.x3_c02423{left:16.560000px;}
.x1_c02423{left:127.656000px;}
.x5_c02423{left:181.650000px;}
.x4_c02423{left:244.650000px;}
.x2_c02423{left:820.950000px;}
@media print{
.v0_c02423{vertical-align:0.000000pt;}
.ls1_c02423{letter-spacing:0.000000pt;}
.ls0_c02423{letter-spacing:0.232960pt;}
.ws0_c02423{word-spacing:-14.720000pt;}
.ws1_c02423{word-spacing:0.000000pt;}
._0_c02423{margin-left:-1.001019pt;}
._5_c02423{width:1.060370pt;}
._a_c02423{width:1.990648pt;}
._7_c02423{width:2.886121pt;}
._4_c02423{width:3.827141pt;}
._3_c02423{width:4.769044pt;}
._9_c02423{width:5.703827pt;}
._6_c02423{width:6.904173pt;}
._8_c02423{width:7.943500pt;}
._e_c02423{width:8.955119pt;}
._2_c02423{width:10.070776pt;}
._1_c02423{width:11.069381pt;}
._d_c02423{width:14.336000pt;}
._f_c02423{width:23.198956pt;}
._10_c02423{width:27.968000pt;}
._b_c02423{width:44.928000pt;}
._c_c02423{width:46.272000pt;}
.fs0_c02423{font-size:58.880000pt;}
.fs1_c02423{font-size:64.000000pt;}
.y0_c02423{bottom:0.000000pt;}
.y3_c02423{bottom:4.160000pt;}
.y2_c02423{bottom:37.152000pt;}
.y1_c02423{bottom:67.072000pt;}
.y2d_c02423{bottom:103.712000pt;}
.y2c_c02423{bottom:121.792000pt;}
.y2b_c02423{bottom:138.586667pt;}
.y2a_c02423{bottom:155.386667pt;}
.y29_c02423{bottom:172.346667pt;}
.y28_c02423{bottom:198.586667pt;}
.y27_c02423{bottom:226.266667pt;}
.y26_c02423{bottom:253.826667pt;}
.y25_c02423{bottom:281.506667pt;}
.y24_c02423{bottom:309.026667pt;}
.y23_c02423{bottom:336.706667pt;}
.y22_c02423{bottom:354.786667pt;}
.y21_c02423{bottom:371.746667pt;}
.y20_c02423{bottom:388.546667pt;}
.y1f_c02423{bottom:405.346667pt;}
.y1e_c02423{bottom:422.626667pt;}
.y1d_c02423{bottom:440.706667pt;}
.y1c_c02423{bottom:457.506667pt;}
.y1b_c02423{bottom:474.493333pt;}
.y1a_c02423{bottom:491.293333pt;}
.y19_c02423{bottom:508.093333pt;}
.y18_c02423{bottom:525.053333pt;}
.y17_c02423{bottom:541.853333pt;}
.y16_c02423{bottom:558.813333pt;}
.y15_c02423{bottom:575.613333pt;}
.y14_c02423{bottom:592.413333pt;}
.y13_c02423{bottom:618.813333pt;}
.y12_c02423{bottom:646.333333pt;}
.y11_c02423{bottom:674.013333pt;}
.y10_c02423{bottom:701.533333pt;}
.yf_c02423{bottom:729.253333pt;}
.ye_c02423{bottom:756.773333pt;}
.yd_c02423{bottom:784.453333pt;}
.yc_c02423{bottom:811.973333pt;}
.yb_c02423{bottom:830.213333pt;}
.ya_c02423{bottom:847.013333pt;}
.y9_c02423{bottom:863.973333pt;}
.y8_c02423{bottom:880.773333pt;}
.y7_c02423{bottom:897.573333pt;}
.y6_c02423{bottom:914.533333pt;}
.y5_c02423{bottom:931.333333pt;}
.y4_c02423{bottom:948.320000pt;}
.h2_c02423{height:20.000000pt;}
.h1_c02423{height:43.441250pt;}
.h5_c02423{height:52.785000pt;}
.h3_c02423{height:57.787500pt;}
.h4_c02423{height:62.812500pt;}
.h0_c02423{height:1056.000000pt;}
.w1_c02423{width:59.232000pt;}
.w0_c02423{width:816.000000pt;}
.x0_c02423{left:0.000000pt;}
.x3_c02423{left:14.720000pt;}
.x1_c02423{left:113.472000pt;}
.x5_c02423{left:161.466667pt;}
.x4_c02423{left:217.466667pt;}
.x2_c02423{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02424 {
    display:none;
  }
  .loading-indicator_c02424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02424 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02424 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02424" -> "#page-container .classname_c02424")
 */
.pf_c02424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02424 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02424 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02424 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02424 {overflow:visible;}
  }
}
.c_c02424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02424 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02424:after { /* webkit #35443 */
  content: '';
}
.t_c02424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02424 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02424 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02424 { /* info for Javascript */
  display:none;
}
.l_c02424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02424:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02424 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02424.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02424;src:url('chunks/assets/font_0437fe96966bf5675b289c47.woff2')format("woff");}.ff1_c02424{font-family:ff1_c02424;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02424;src:url('chunks/assets/font_e7d7c9750953d1c7dfb5ab3e.woff2')format("woff");}.ff2_c02424{font-family:ff2_c02424;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:ff3_c02424;src:url('chunks/assets/font_5bb26109aa19ce50ede550af.woff2')format("woff");}.ff3_c02424{font-family:ff3_c02424;line-height:1.311035;font-style:normal;font-weight: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_c02424;src:url('chunks/assets/font_46b43a6f138b380ddeef63d5.woff2')format("woff");}.ff4_c02424{font-family:ff4_c02424;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02424{vertical-align:0.000000px;}
.ls2_c02424{letter-spacing:0.000000px;}
.ls0_c02424{letter-spacing:0.262080px;}
.ls1_c02424{letter-spacing:18.000000px;}
.sc__c02424{text-shadow:none;}
.sc0_c02424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02424{-webkit-text-stroke:0px transparent;}
.sc0_c02424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02424{word-spacing:-16.560000px;}
.ws1_c02424{word-spacing:0.000000px;}
._1_c02424{margin-left:-1.257566px;}
._8_c02424{width:1.062887px;}
._5_c02424{width:2.516921px;}
._4_c02424{width:3.841125px;}
._9_c02424{width:4.842374px;}
._15_c02424{width:5.904000px;}
._16_c02424{width:7.920000px;}
._f_c02424{width:10.135647px;}
._e_c02424{width:11.590808px;}
._7_c02424{width:12.913024px;}
._6_c02424{width:14.506825px;}
._12_c02424{width:17.686279px;}
._13_c02424{width:18.811034px;}
._d_c02424{width:21.640211px;}
._c_c02424{width:23.182741px;}
._10_c02424{width:24.440838px;}
._11_c02424{width:25.500612px;}
._14_c02424{width:27.688188px;}
._3_c02424{width:28.880971px;}
._2_c02424{width:29.939420px;}
._18_c02424{width:34.311525px;}
._17_c02424{width:35.438400px;}
._0_c02424{width:36.829241px;}
._a_c02424{width:41.400000px;}
._b_c02424{width:42.408000px;}
.fc1_c02424{color:rgb(192,80,77);}
.fc0_c02424{color:rgb(0,0,0);}
.fs0_c02424{font-size:66.240000px;}
.fs1_c02424{font-size:72.000000px;}
.y0_c02424{bottom:0.000000px;}
.y3_c02424{bottom:4.680000px;}
.y2_c02424{bottom:41.796000px;}
.y1_c02424{bottom:75.456000px;}
.y2d_c02424{bottom:142.956000px;}
.y2c_c02424{bottom:162.030000px;}
.y2b_c02424{bottom:180.930000px;}
.y2a_c02424{bottom:199.830000px;}
.y29_c02424{bottom:218.910000px;}
.y28_c02424{bottom:237.810000px;}
.y27_c02424{bottom:256.890000px;}
.y26_c02424{bottom:275.835000px;}
.y25_c02424{bottom:294.735000px;}
.y24_c02424{bottom:313.815000px;}
.y23_c02424{bottom:343.335000px;}
.y22_c02424{bottom:374.475000px;}
.y21_c02424{bottom:405.435000px;}
.y20_c02424{bottom:436.575000px;}
.y1f_c02424{bottom:467.535000px;}
.y1e_c02424{bottom:497.415000px;}
.y1d_c02424{bottom:516.495000px;}
.y1c_c02424{bottom:535.425000px;}
.y1b_c02424{bottom:554.505000px;}
.y1a_c02424{bottom:573.405000px;}
.y19_c02424{bottom:592.845000px;}
.y18_c02424{bottom:613.005000px;}
.y17_c02424{bottom:632.085000px;}
.y16_c02424{bottom:650.985000px;}
.y15_c02424{bottom:670.425000px;}
.y14_c02424{bottom:690.765000px;}
.y13_c02424{bottom:709.665000px;}
.y12_c02424{bottom:728.565000px;}
.y11_c02424{bottom:747.645000px;}
.y10_c02424{bottom:766.545000px;}
.yf_c02424{bottom:785.625000px;}
.ye_c02424{bottom:815.190000px;}
.yd_c02424{bottom:846.330000px;}
.yc_c02424{bottom:877.290000px;}
.yb_c02424{bottom:908.430000px;}
.ya_c02424{bottom:939.390000px;}
.y9_c02424{bottom:970.530000px;}
.y8_c02424{bottom:990.870000px;}
.y7_c02424{bottom:1009.770000px;}
.y6_c02424{bottom:1028.850000px;}
.y5_c02424{bottom:1047.750000px;}
.y4_c02424{bottom:1066.860000px;}
.h2_c02424{height:22.500000px;}
.h1_c02424{height:48.871406px;}
.h6_c02424{height:59.383125px;}
.h3_c02424{height:65.010937px;}
.h5_c02424{height:66.757500px;}
.h4_c02424{height:70.664062px;}
.h0_c02424{height:1188.000000px;}
.w1_c02424{width:66.636000px;}
.w0_c02424{width:918.000000px;}
.x0_c02424{left:0.000000px;}
.x3_c02424{left:16.560000px;}
.x1_c02424{left:127.656000px;}
.x5_c02424{left:181.650000px;}
.x4_c02424{left:244.650000px;}
.x2_c02424{left:820.950000px;}
@media print{
.v0_c02424{vertical-align:0.000000pt;}
.ls2_c02424{letter-spacing:0.000000pt;}
.ls0_c02424{letter-spacing:0.232960pt;}
.ls1_c02424{letter-spacing:16.000000pt;}
.ws0_c02424{word-spacing:-14.720000pt;}
.ws1_c02424{word-spacing:0.000000pt;}
._1_c02424{margin-left:-1.117837pt;}
._8_c02424{width:0.944788pt;}
._5_c02424{width:2.237263pt;}
._4_c02424{width:3.414333pt;}
._9_c02424{width:4.304333pt;}
._15_c02424{width:5.248000pt;}
._16_c02424{width:7.040000pt;}
._f_c02424{width:9.009464pt;}
._e_c02424{width:10.302940pt;}
._7_c02424{width:11.478244pt;}
._6_c02424{width:12.894956pt;}
._12_c02424{width:15.721137pt;}
._13_c02424{width:16.720919pt;}
._d_c02424{width:19.235743pt;}
._c_c02424{width:20.606881pt;}
._10_c02424{width:21.725189pt;}
._11_c02424{width:22.667210pt;}
._14_c02424{width:24.611722pt;}
._3_c02424{width:25.671974pt;}
._2_c02424{width:26.612818pt;}
._18_c02424{width:30.499133pt;}
._17_c02424{width:31.500800pt;}
._0_c02424{width:32.737103pt;}
._a_c02424{width:36.800000pt;}
._b_c02424{width:37.696000pt;}
.fs0_c02424{font-size:58.880000pt;}
.fs1_c02424{font-size:64.000000pt;}
.y0_c02424{bottom:0.000000pt;}
.y3_c02424{bottom:4.160000pt;}
.y2_c02424{bottom:37.152000pt;}
.y1_c02424{bottom:67.072000pt;}
.y2d_c02424{bottom:127.072000pt;}
.y2c_c02424{bottom:144.026667pt;}
.y2b_c02424{bottom:160.826667pt;}
.y2a_c02424{bottom:177.626667pt;}
.y29_c02424{bottom:194.586667pt;}
.y28_c02424{bottom:211.386667pt;}
.y27_c02424{bottom:228.346667pt;}
.y26_c02424{bottom:245.186667pt;}
.y25_c02424{bottom:261.986667pt;}
.y24_c02424{bottom:278.946667pt;}
.y23_c02424{bottom:305.186667pt;}
.y22_c02424{bottom:332.866667pt;}
.y21_c02424{bottom:360.386667pt;}
.y20_c02424{bottom:388.066667pt;}
.y1f_c02424{bottom:415.586667pt;}
.y1e_c02424{bottom:442.146667pt;}
.y1d_c02424{bottom:459.106667pt;}
.y1c_c02424{bottom:475.933333pt;}
.y1b_c02424{bottom:492.893333pt;}
.y1a_c02424{bottom:509.693333pt;}
.y19_c02424{bottom:526.973333pt;}
.y18_c02424{bottom:544.893333pt;}
.y17_c02424{bottom:561.853333pt;}
.y16_c02424{bottom:578.653333pt;}
.y15_c02424{bottom:595.933333pt;}
.y14_c02424{bottom:614.013333pt;}
.y13_c02424{bottom:630.813333pt;}
.y12_c02424{bottom:647.613333pt;}
.y11_c02424{bottom:664.573333pt;}
.y10_c02424{bottom:681.373333pt;}
.yf_c02424{bottom:698.333333pt;}
.ye_c02424{bottom:724.613333pt;}
.yd_c02424{bottom:752.293333pt;}
.yc_c02424{bottom:779.813333pt;}
.yb_c02424{bottom:807.493333pt;}
.ya_c02424{bottom:835.013333pt;}
.y9_c02424{bottom:862.693333pt;}
.y8_c02424{bottom:880.773333pt;}
.y7_c02424{bottom:897.573333pt;}
.y6_c02424{bottom:914.533333pt;}
.y5_c02424{bottom:931.333333pt;}
.y4_c02424{bottom:948.320000pt;}
.h2_c02424{height:20.000000pt;}
.h1_c02424{height:43.441250pt;}
.h6_c02424{height:52.785000pt;}
.h3_c02424{height:57.787500pt;}
.h5_c02424{height:59.340000pt;}
.h4_c02424{height:62.812500pt;}
.h0_c02424{height:1056.000000pt;}
.w1_c02424{width:59.232000pt;}
.w0_c02424{width:816.000000pt;}
.x0_c02424{left:0.000000pt;}
.x3_c02424{left:14.720000pt;}
.x1_c02424{left:113.472000pt;}
.x5_c02424{left:161.466667pt;}
.x4_c02424{left:217.466667pt;}
.x2_c02424{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02425 {
    display:none;
  }
  .loading-indicator_c02425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02425 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02425 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02425" -> "#page-container .classname_c02425")
 */
.pf_c02425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02425 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02425 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02425 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02425 {overflow:visible;}
  }
}
.c_c02425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02425 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02425:after { /* webkit #35443 */
  content: '';
}
.t_c02425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02425 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02425 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02425 { /* info for Javascript */
  display:none;
}
.l_c02425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02425:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02425 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02425.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02425;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02425{font-family:ff1_c02425;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02425;src:url('chunks/assets/font_4bb5fd76d07ce856340650bb.woff2')format("woff");}.ff2_c02425{font-family:ff2_c02425;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:ff3_c02425;src:url('chunks/assets/font_f6d91ff5a0d1eec0218194bc.woff2')format("woff");}.ff3_c02425{font-family:ff3_c02425;line-height:1.112305;font-style:normal;font-weight: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_c02425;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02425{font-family:ff4_c02425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02425{vertical-align:-76.320000px;}
.v0_c02425{vertical-align:0.000000px;}
.ls1_c02425{letter-spacing:0.000000px;}
.ls2_c02425{letter-spacing:0.262200px;}
.ls0_c02425{letter-spacing:235.440000px;}
.sc__c02425{text-shadow:none;}
.sc0_c02425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02425{-webkit-text-stroke:0px transparent;}
.sc0_c02425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02425{word-spacing:-16.822200px;}
.ws0_c02425{word-spacing:-16.560000px;}
.ws2_c02425{word-spacing:0.000000px;}
._1_c02425{margin-left:-1.789142px;}
._2_c02425{width:1.127339px;}
._3_c02425{width:2.515332px;}
._6_c02425{width:3.908425px;}
._7_c02425{width:5.235013px;}
._8_c02425{width:6.585515px;}
._5_c02425{width:8.546815px;}
._4_c02425{width:9.604800px;}
._e_c02425{width:11.326908px;}
._d_c02425{width:12.495096px;}
._a_c02425{width:14.184000px;}
._9_c02425{width:16.333142px;}
._0_c02425{width:18.150025px;}
._f_c02425{width:19.673412px;}
._10_c02425{width:20.971650px;}
._b_c02425{width:24.376254px;}
._c_c02425{width:25.965020px;}
.fc1_c02425{color:rgb(192,80,77);}
.fc0_c02425{color:rgb(0,0,0);}
.fs0_c02425{font-size:66.240000px;}
.fs1_c02425{font-size:72.000000px;}
.y0_c02425{bottom:0.000000px;}
.y3_c02425{bottom:4.680000px;}
.y2_c02425{bottom:41.796000px;}
.y1_c02425{bottom:75.456000px;}
.y30_c02425{bottom:142.956000px;}
.y2f_c02425{bottom:162.030000px;}
.y2e_c02425{bottom:180.930000px;}
.y2d_c02425{bottom:199.830000px;}
.y2c_c02425{bottom:218.910000px;}
.y2b_c02425{bottom:237.450000px;}
.y2a_c02425{bottom:256.890000px;}
.y29_c02425{bottom:275.835000px;}
.y28_c02425{bottom:294.735000px;}
.y27_c02425{bottom:313.815000px;}
.y26_c02425{bottom:332.715000px;}
.y25_c02425{bottom:351.795000px;}
.y24_c02425{bottom:370.695000px;}
.y23_c02425{bottom:389.595000px;}
.y22_c02425{bottom:408.675000px;}
.y21_c02425{bottom:427.575000px;}
.y20_c02425{bottom:446.655000px;}
.y1f_c02425{bottom:465.555000px;}
.y1e_c02425{bottom:484.455000px;}
.y1d_c02425{bottom:503.535000px;}
.y1c_c02425{bottom:522.435000px;}
.y1b_c02425{bottom:541.545000px;}
.y1a_c02425{bottom:560.445000px;}
.y19_c02425{bottom:579.525000px;}
.y18_c02425{bottom:598.425000px;}
.y17_c02425{bottom:617.325000px;}
.y16_c02425{bottom:636.405000px;}
.y15_c02425{bottom:654.945000px;}
.y14_c02425{bottom:674.385000px;}
.y13_c02425{bottom:693.285000px;}
.y12_c02425{bottom:731.265000px;}
.y11_c02425{bottom:760.785000px;}
.y10_c02425{bottom:791.925000px;}
.yf_c02425{bottom:822.930000px;}
.ye_c02425{bottom:854.070000px;}
.yd_c02425{bottom:885.030000px;}
.yc_c02425{bottom:914.910000px;}
.yb_c02425{bottom:933.990000px;}
.ya_c02425{bottom:952.890000px;}
.y9_c02425{bottom:971.970000px;}
.y8_c02425{bottom:990.870000px;}
.y7_c02425{bottom:1009.770000px;}
.y6_c02425{bottom:1028.850000px;}
.y5_c02425{bottom:1047.750000px;}
.y4_c02425{bottom:1066.860000px;}
.h2_c02425{height:22.500000px;}
.h1_c02425{height:48.871406px;}
.h4_c02425{height:59.383125px;}
.h3_c02425{height:65.010937px;}
.h6_c02425{height:66.757500px;}
.h5_c02425{height:70.664062px;}
.h0_c02425{height:1188.000000px;}
.w1_c02425{width:66.636000px;}
.w0_c02425{width:918.000000px;}
.x0_c02425{left:0.000000px;}
.x3_c02425{left:16.560000px;}
.x1_c02425{left:127.656000px;}
.x5_c02425{left:181.650000px;}
.x4_c02425{left:244.650000px;}
.x2_c02425{left:820.950000px;}
@media print{
.v1_c02425{vertical-align:-67.840000pt;}
.v0_c02425{vertical-align:0.000000pt;}
.ls1_c02425{letter-spacing:0.000000pt;}
.ls2_c02425{letter-spacing:0.233067pt;}
.ls0_c02425{letter-spacing:209.280000pt;}
.ws1_c02425{word-spacing:-14.953067pt;}
.ws0_c02425{word-spacing:-14.720000pt;}
.ws2_c02425{word-spacing:0.000000pt;}
._1_c02425{margin-left:-1.590349pt;}
._2_c02425{width:1.002079pt;}
._3_c02425{width:2.235850pt;}
._6_c02425{width:3.474156pt;}
._7_c02425{width:4.653345pt;}
._8_c02425{width:5.853791pt;}
._5_c02425{width:7.597169pt;}
._4_c02425{width:8.537600pt;}
._e_c02425{width:10.068362pt;}
._d_c02425{width:11.106752pt;}
._a_c02425{width:12.608000pt;}
._9_c02425{width:14.518349pt;}
._0_c02425{width:16.133356pt;}
._f_c02425{width:17.487478pt;}
._10_c02425{width:18.641467pt;}
._b_c02425{width:21.667781pt;}
._c_c02425{width:23.080018pt;}
.fs0_c02425{font-size:58.880000pt;}
.fs1_c02425{font-size:64.000000pt;}
.y0_c02425{bottom:0.000000pt;}
.y3_c02425{bottom:4.160000pt;}
.y2_c02425{bottom:37.152000pt;}
.y1_c02425{bottom:67.072000pt;}
.y30_c02425{bottom:127.072000pt;}
.y2f_c02425{bottom:144.026667pt;}
.y2e_c02425{bottom:160.826667pt;}
.y2d_c02425{bottom:177.626667pt;}
.y2c_c02425{bottom:194.586667pt;}
.y2b_c02425{bottom:211.066667pt;}
.y2a_c02425{bottom:228.346667pt;}
.y29_c02425{bottom:245.186667pt;}
.y28_c02425{bottom:261.986667pt;}
.y27_c02425{bottom:278.946667pt;}
.y26_c02425{bottom:295.746667pt;}
.y25_c02425{bottom:312.706667pt;}
.y24_c02425{bottom:329.506667pt;}
.y23_c02425{bottom:346.306667pt;}
.y22_c02425{bottom:363.266667pt;}
.y21_c02425{bottom:380.066667pt;}
.y20_c02425{bottom:397.026667pt;}
.y1f_c02425{bottom:413.826667pt;}
.y1e_c02425{bottom:430.626667pt;}
.y1d_c02425{bottom:447.586667pt;}
.y1c_c02425{bottom:464.386667pt;}
.y1b_c02425{bottom:481.373333pt;}
.y1a_c02425{bottom:498.173333pt;}
.y19_c02425{bottom:515.133333pt;}
.y18_c02425{bottom:531.933333pt;}
.y17_c02425{bottom:548.733333pt;}
.y16_c02425{bottom:565.693333pt;}
.y15_c02425{bottom:582.173333pt;}
.y14_c02425{bottom:599.453333pt;}
.y13_c02425{bottom:616.253333pt;}
.y12_c02425{bottom:650.013333pt;}
.y11_c02425{bottom:676.253333pt;}
.y10_c02425{bottom:703.933333pt;}
.yf_c02425{bottom:731.493333pt;}
.ye_c02425{bottom:759.173333pt;}
.yd_c02425{bottom:786.693333pt;}
.yc_c02425{bottom:813.253333pt;}
.yb_c02425{bottom:830.213333pt;}
.ya_c02425{bottom:847.013333pt;}
.y9_c02425{bottom:863.973333pt;}
.y8_c02425{bottom:880.773333pt;}
.y7_c02425{bottom:897.573333pt;}
.y6_c02425{bottom:914.533333pt;}
.y5_c02425{bottom:931.333333pt;}
.y4_c02425{bottom:948.320000pt;}
.h2_c02425{height:20.000000pt;}
.h1_c02425{height:43.441250pt;}
.h4_c02425{height:52.785000pt;}
.h3_c02425{height:57.787500pt;}
.h6_c02425{height:59.340000pt;}
.h5_c02425{height:62.812500pt;}
.h0_c02425{height:1056.000000pt;}
.w1_c02425{width:59.232000pt;}
.w0_c02425{width:816.000000pt;}
.x0_c02425{left:0.000000pt;}
.x3_c02425{left:14.720000pt;}
.x1_c02425{left:113.472000pt;}
.x5_c02425{left:161.466667pt;}
.x4_c02425{left:217.466667pt;}
.x2_c02425{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02426 {
    display:none;
  }
  .loading-indicator_c02426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02426 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02426 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02426" -> "#page-container .classname_c02426")
 */
.pf_c02426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02426 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02426 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02426 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02426 {overflow:visible;}
  }
}
.c_c02426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02426 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02426:after { /* webkit #35443 */
  content: '';
}
.t_c02426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02426 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02426 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02426 { /* info for Javascript */
  display:none;
}
.l_c02426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02426:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02426 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02426.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02426;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02426{font-family:ff1_c02426;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02426;src:url('chunks/assets/font_33df95308a4af75ca90dfc03.woff2')format("woff");}.ff2_c02426{font-family:ff2_c02426;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:ff3_c02426;src:url('chunks/assets/font_4e9ee67c90cd8982d7ccc21f.woff2')format("woff");}.ff3_c02426{font-family:ff3_c02426;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02426{vertical-align:0.000000px;}
.ls0_c02426{letter-spacing:0.000000px;}
.sc__c02426{text-shadow:none;}
.sc0_c02426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02426{-webkit-text-stroke:0px transparent;}
.sc0_c02426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02426{word-spacing:0.000000px;}
._3_c02426{margin-left:-1.368000px;}
._1_c02426{width:1.008000px;}
._b_c02426{width:2.237959px;}
._11_c02426{width:3.312000px;}
._8_c02426{width:4.351447px;}
._7_c02426{width:5.585314px;}
._6_c02426{width:7.352441px;}
._f_c02426{width:8.611200px;}
._10_c02426{width:9.639691px;}
._c_c02426{width:11.393412px;}
._4_c02426{width:12.600000px;}
._5_c02426{width:13.860000px;}
._e_c02426{width:14.997764px;}
._a_c02426{width:17.916414px;}
._9_c02426{width:18.921666px;}
._d_c02426{width:20.269241px;}
._0_c02426{width:27.864000px;}
._2_c02426{width:28.944000px;}
.fc1_c02426{color:rgb(192,80,77);}
.fc0_c02426{color:rgb(0,0,0);}
.fs0_c02426{font-size:66.240000px;}
.fs1_c02426{font-size:72.000000px;}
.y0_c02426{bottom:0.000000px;}
.y3_c02426{bottom:4.680000px;}
.y2_c02426{bottom:41.796000px;}
.y1_c02426{bottom:75.456000px;}
.y2f_c02426{bottom:113.616000px;}
.y2e_c02426{bottom:132.696000px;}
.y2d_c02426{bottom:151.590000px;}
.y2c_c02426{bottom:170.490000px;}
.y2b_c02426{bottom:189.570000px;}
.y2a_c02426{bottom:208.470000px;}
.y29_c02426{bottom:227.550000px;}
.y28_c02426{bottom:246.450000px;}
.y27_c02426{bottom:265.530000px;}
.y26_c02426{bottom:284.475000px;}
.y25_c02426{bottom:303.375000px;}
.y24_c02426{bottom:322.455000px;}
.y23_c02426{bottom:341.355000px;}
.y22_c02426{bottom:369.795000px;}
.y21_c02426{bottom:399.495000px;}
.y20_c02426{bottom:430.455000px;}
.y1f_c02426{bottom:461.595000px;}
.y1e_c02426{bottom:492.555000px;}
.y1d_c02426{bottom:522.435000px;}
.y1c_c02426{bottom:541.545000px;}
.y1b_c02426{bottom:560.445000px;}
.y1a_c02426{bottom:579.525000px;}
.y19_c02426{bottom:598.425000px;}
.y18_c02426{bottom:617.325000px;}
.y17_c02426{bottom:636.405000px;}
.y16_c02426{bottom:655.305000px;}
.y15_c02426{bottom:674.385000px;}
.y14_c02426{bottom:693.285000px;}
.y13_c02426{bottom:712.185000px;}
.y12_c02426{bottom:731.265000px;}
.y11_c02426{bottom:750.165000px;}
.y10_c02426{bottom:769.245000px;}
.yf_c02426{bottom:788.145000px;}
.ye_c02426{bottom:807.090000px;}
.yd_c02426{bottom:826.170000px;}
.yc_c02426{bottom:845.070000px;}
.yb_c02426{bottom:864.150000px;}
.ya_c02426{bottom:883.050000px;}
.y9_c02426{bottom:911.490000px;}
.y8_c02426{bottom:941.190000px;}
.y7_c02426{bottom:972.150000px;}
.y6_c02426{bottom:1003.290000px;}
.y5_c02426{bottom:1034.250000px;}
.y4_c02426{bottom:1065.420000px;}
.h2_c02426{height:22.500000px;}
.h1_c02426{height:48.871406px;}
.h5_c02426{height:59.383125px;}
.h4_c02426{height:65.010937px;}
.h3_c02426{height:70.664062px;}
.h0_c02426{height:1188.000000px;}
.w1_c02426{width:66.636000px;}
.w0_c02426{width:918.000000px;}
.x0_c02426{left:0.000000px;}
.x3_c02426{left:16.560000px;}
.x1_c02426{left:127.656000px;}
.x4_c02426{left:181.650000px;}
.x5_c02426{left:244.650000px;}
.x2_c02426{left:820.950000px;}
@media print{
.v0_c02426{vertical-align:0.000000pt;}
.ls0_c02426{letter-spacing:0.000000pt;}
.ws0_c02426{word-spacing:0.000000pt;}
._3_c02426{margin-left:-1.216000pt;}
._1_c02426{width:0.896000pt;}
._b_c02426{width:1.989297pt;}
._11_c02426{width:2.944000pt;}
._8_c02426{width:3.867953pt;}
._7_c02426{width:4.964723pt;}
._6_c02426{width:6.535503pt;}
._f_c02426{width:7.654400pt;}
._10_c02426{width:8.568614pt;}
._c_c02426{width:10.127478pt;}
._4_c02426{width:11.200000pt;}
._5_c02426{width:12.320000pt;}
._e_c02426{width:13.331346pt;}
._a_c02426{width:15.925701pt;}
._9_c02426{width:16.819259pt;}
._d_c02426{width:18.017103pt;}
._0_c02426{width:24.768000pt;}
._2_c02426{width:25.728000pt;}
.fs0_c02426{font-size:58.880000pt;}
.fs1_c02426{font-size:64.000000pt;}
.y0_c02426{bottom:0.000000pt;}
.y3_c02426{bottom:4.160000pt;}
.y2_c02426{bottom:37.152000pt;}
.y1_c02426{bottom:67.072000pt;}
.y2f_c02426{bottom:100.992000pt;}
.y2e_c02426{bottom:117.952000pt;}
.y2d_c02426{bottom:134.746667pt;}
.y2c_c02426{bottom:151.546667pt;}
.y2b_c02426{bottom:168.506667pt;}
.y2a_c02426{bottom:185.306667pt;}
.y29_c02426{bottom:202.266667pt;}
.y28_c02426{bottom:219.066667pt;}
.y27_c02426{bottom:236.026667pt;}
.y26_c02426{bottom:252.866667pt;}
.y25_c02426{bottom:269.666667pt;}
.y24_c02426{bottom:286.626667pt;}
.y23_c02426{bottom:303.426667pt;}
.y22_c02426{bottom:328.706667pt;}
.y21_c02426{bottom:355.106667pt;}
.y20_c02426{bottom:382.626667pt;}
.y1f_c02426{bottom:410.306667pt;}
.y1e_c02426{bottom:437.826667pt;}
.y1d_c02426{bottom:464.386667pt;}
.y1c_c02426{bottom:481.373333pt;}
.y1b_c02426{bottom:498.173333pt;}
.y1a_c02426{bottom:515.133333pt;}
.y19_c02426{bottom:531.933333pt;}
.y18_c02426{bottom:548.733333pt;}
.y17_c02426{bottom:565.693333pt;}
.y16_c02426{bottom:582.493333pt;}
.y15_c02426{bottom:599.453333pt;}
.y14_c02426{bottom:616.253333pt;}
.y13_c02426{bottom:633.053333pt;}
.y12_c02426{bottom:650.013333pt;}
.y11_c02426{bottom:666.813333pt;}
.y10_c02426{bottom:683.773333pt;}
.yf_c02426{bottom:700.573333pt;}
.ye_c02426{bottom:717.413333pt;}
.yd_c02426{bottom:734.373333pt;}
.yc_c02426{bottom:751.173333pt;}
.yb_c02426{bottom:768.133333pt;}
.ya_c02426{bottom:784.933333pt;}
.y9_c02426{bottom:810.213333pt;}
.y8_c02426{bottom:836.613333pt;}
.y7_c02426{bottom:864.133333pt;}
.y6_c02426{bottom:891.813333pt;}
.y5_c02426{bottom:919.333333pt;}
.y4_c02426{bottom:947.040000pt;}
.h2_c02426{height:20.000000pt;}
.h1_c02426{height:43.441250pt;}
.h5_c02426{height:52.785000pt;}
.h4_c02426{height:57.787500pt;}
.h3_c02426{height:62.812500pt;}
.h0_c02426{height:1056.000000pt;}
.w1_c02426{width:59.232000pt;}
.w0_c02426{width:816.000000pt;}
.x0_c02426{left:0.000000pt;}
.x3_c02426{left:14.720000pt;}
.x1_c02426{left:113.472000pt;}
.x4_c02426{left:161.466667pt;}
.x5_c02426{left:217.466667pt;}
.x2_c02426{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02427 {
    display:none;
  }
  .loading-indicator_c02427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02427 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02427 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02427" -> "#page-container .classname_c02427")
 */
.pf_c02427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02427 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02427 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02427 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02427 {overflow:visible;}
  }
}
.c_c02427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02427 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02427:after { /* webkit #35443 */
  content: '';
}
.t_c02427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02427 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02427 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02427 { /* info for Javascript */
  display:none;
}
.l_c02427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02427:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02427 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02427.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02427;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02427{font-family:ff1_c02427;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02427;src:url('chunks/assets/font_ed899be9956ad818711e8311.woff2')format("woff");}.ff2_c02427{font-family:ff2_c02427;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:ff3_c02427;src:url('chunks/assets/font_bd11662a7ce2e5a72a5b4b5d.woff2')format("woff");}.ff3_c02427{font-family:ff3_c02427;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02427{vertical-align:0.000000px;}
.ls0_c02427{letter-spacing:0.000000px;}
.sc__c02427{text-shadow:none;}
.sc0_c02427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02427{-webkit-text-stroke:0px transparent;}
.sc0_c02427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02427{word-spacing:0.000000px;}
._1_c02427{margin-left:-1.590025px;}
._2_c02427{width:2.010649px;}
._5_c02427{width:3.302755px;}
._10_c02427{width:4.498024px;}
._6_c02427{width:5.544000px;}
._b_c02427{width:6.664916px;}
._3_c02427{width:8.412612px;}
._4_c02427{width:9.737545px;}
._7_c02427{width:11.232000px;}
._c_c02427{width:12.988339px;}
._a_c02427{width:14.011681px;}
._8_c02427{width:15.399210px;}
._0_c02427{width:17.818825px;}
._f_c02427{width:20.799625px;}
._e_c02427{width:28.549308px;}
._d_c02427{width:29.609412px;}
._9_c02427{width:46.633225px;}
.fc1_c02427{color:rgb(192,80,77);}
.fc0_c02427{color:rgb(0,0,0);}
.fs0_c02427{font-size:66.240000px;}
.fs1_c02427{font-size:72.000000px;}
.y0_c02427{bottom:0.000000px;}
.y3_c02427{bottom:4.680000px;}
.y2_c02427{bottom:41.796000px;}
.y1_c02427{bottom:75.456000px;}
.y31_c02427{bottom:130.896000px;}
.y30_c02427{bottom:149.796000px;}
.y2f_c02427{bottom:168.870000px;}
.y2e_c02427{bottom:187.770000px;}
.y2d_c02427{bottom:206.850000px;}
.y2c_c02427{bottom:225.750000px;}
.y2b_c02427{bottom:244.830000px;}
.y2a_c02427{bottom:263.730000px;}
.y29_c02427{bottom:282.675000px;}
.y28_c02427{bottom:301.755000px;}
.y27_c02427{bottom:320.655000px;}
.y26_c02427{bottom:339.735000px;}
.y25_c02427{bottom:358.635000px;}
.y24_c02427{bottom:377.535000px;}
.y23_c02427{bottom:396.615000px;}
.y22_c02427{bottom:415.515000px;}
.y21_c02427{bottom:434.595000px;}
.y20_c02427{bottom:453.495000px;}
.y1f_c02427{bottom:472.395000px;}
.y1e_c02427{bottom:491.475000px;}
.y1d_c02427{bottom:510.375000px;}
.y1c_c02427{bottom:529.455000px;}
.y1b_c02427{bottom:548.385000px;}
.y1a_c02427{bottom:567.285000px;}
.y19_c02427{bottom:586.365000px;}
.y18_c02427{bottom:605.265000px;}
.y17_c02427{bottom:624.345000px;}
.y16_c02427{bottom:643.245000px;}
.y15_c02427{bottom:662.145000px;}
.y14_c02427{bottom:681.225000px;}
.y13_c02427{bottom:700.125000px;}
.y12_c02427{bottom:719.205000px;}
.y11_c02427{bottom:738.105000px;}
.y10_c02427{bottom:757.185000px;}
.yf_c02427{bottom:776.085000px;}
.ye_c02427{bottom:805.650000px;}
.yd_c02427{bottom:836.790000px;}
.yc_c02427{bottom:867.750000px;}
.yb_c02427{bottom:898.890000px;}
.ya_c02427{bottom:929.850000px;}
.y9_c02427{bottom:960.990000px;}
.y8_c02427{bottom:990.870000px;}
.y7_c02427{bottom:1009.770000px;}
.y6_c02427{bottom:1028.850000px;}
.y5_c02427{bottom:1047.750000px;}
.y4_c02427{bottom:1066.860000px;}
.h2_c02427{height:22.500000px;}
.h1_c02427{height:48.871406px;}
.h4_c02427{height:59.383125px;}
.h3_c02427{height:65.010937px;}
.h5_c02427{height:70.664062px;}
.h0_c02427{height:1188.000000px;}
.w1_c02427{width:66.636000px;}
.w0_c02427{width:918.000000px;}
.x0_c02427{left:0.000000px;}
.x3_c02427{left:16.560000px;}
.x1_c02427{left:127.656000px;}
.x5_c02427{left:181.650000px;}
.x4_c02427{left:244.650000px;}
.x2_c02427{left:820.950000px;}
@media print{
.v0_c02427{vertical-align:0.000000pt;}
.ls0_c02427{letter-spacing:0.000000pt;}
.ws0_c02427{word-spacing:0.000000pt;}
._1_c02427{margin-left:-1.413356pt;}
._2_c02427{width:1.787244pt;}
._5_c02427{width:2.935782pt;}
._10_c02427{width:3.998244pt;}
._6_c02427{width:4.928000pt;}
._b_c02427{width:5.924370pt;}
._3_c02427{width:7.477878pt;}
._4_c02427{width:8.655596pt;}
._7_c02427{width:9.984000pt;}
._c_c02427{width:11.545190pt;}
._a_c02427{width:12.454828pt;}
._8_c02427{width:13.688187pt;}
._0_c02427{width:15.838956pt;}
._f_c02427{width:18.488556pt;}
._e_c02427{width:25.377162pt;}
._d_c02427{width:26.319478pt;}
._9_c02427{width:41.451756pt;}
.fs0_c02427{font-size:58.880000pt;}
.fs1_c02427{font-size:64.000000pt;}
.y0_c02427{bottom:0.000000pt;}
.y3_c02427{bottom:4.160000pt;}
.y2_c02427{bottom:37.152000pt;}
.y1_c02427{bottom:67.072000pt;}
.y31_c02427{bottom:116.352000pt;}
.y30_c02427{bottom:133.152000pt;}
.y2f_c02427{bottom:150.106667pt;}
.y2e_c02427{bottom:166.906667pt;}
.y2d_c02427{bottom:183.866667pt;}
.y2c_c02427{bottom:200.666667pt;}
.y2b_c02427{bottom:217.626667pt;}
.y2a_c02427{bottom:234.426667pt;}
.y29_c02427{bottom:251.266667pt;}
.y28_c02427{bottom:268.226667pt;}
.y27_c02427{bottom:285.026667pt;}
.y26_c02427{bottom:301.986667pt;}
.y25_c02427{bottom:318.786667pt;}
.y24_c02427{bottom:335.586667pt;}
.y23_c02427{bottom:352.546667pt;}
.y22_c02427{bottom:369.346667pt;}
.y21_c02427{bottom:386.306667pt;}
.y20_c02427{bottom:403.106667pt;}
.y1f_c02427{bottom:419.906667pt;}
.y1e_c02427{bottom:436.866667pt;}
.y1d_c02427{bottom:453.666667pt;}
.y1c_c02427{bottom:470.626667pt;}
.y1b_c02427{bottom:487.453333pt;}
.y1a_c02427{bottom:504.253333pt;}
.y19_c02427{bottom:521.213333pt;}
.y18_c02427{bottom:538.013333pt;}
.y17_c02427{bottom:554.973333pt;}
.y16_c02427{bottom:571.773333pt;}
.y15_c02427{bottom:588.573333pt;}
.y14_c02427{bottom:605.533333pt;}
.y13_c02427{bottom:622.333333pt;}
.y12_c02427{bottom:639.293333pt;}
.y11_c02427{bottom:656.093333pt;}
.y10_c02427{bottom:673.053333pt;}
.yf_c02427{bottom:689.853333pt;}
.ye_c02427{bottom:716.133333pt;}
.yd_c02427{bottom:743.813333pt;}
.yc_c02427{bottom:771.333333pt;}
.yb_c02427{bottom:799.013333pt;}
.ya_c02427{bottom:826.533333pt;}
.y9_c02427{bottom:854.213333pt;}
.y8_c02427{bottom:880.773333pt;}
.y7_c02427{bottom:897.573333pt;}
.y6_c02427{bottom:914.533333pt;}
.y5_c02427{bottom:931.333333pt;}
.y4_c02427{bottom:948.320000pt;}
.h2_c02427{height:20.000000pt;}
.h1_c02427{height:43.441250pt;}
.h4_c02427{height:52.785000pt;}
.h3_c02427{height:57.787500pt;}
.h5_c02427{height:62.812500pt;}
.h0_c02427{height:1056.000000pt;}
.w1_c02427{width:59.232000pt;}
.w0_c02427{width:816.000000pt;}
.x0_c02427{left:0.000000pt;}
.x3_c02427{left:14.720000pt;}
.x1_c02427{left:113.472000pt;}
.x5_c02427{left:161.466667pt;}
.x4_c02427{left:217.466667pt;}
.x2_c02427{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02428 {
    display:none;
  }
  .loading-indicator_c02428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02428" -> "#page-container .classname_c02428")
 */
.pf_c02428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02428 {overflow:visible;}
  }
}
.c_c02428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02428:after { /* webkit #35443 */
  content: '';
}
.t_c02428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02428 { /* info for Javascript */
  display:none;
}
.l_c02428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02428:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02428 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02428.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02428;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02428{font-family:ff1_c02428;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02428;src:url('chunks/assets/font_fce2ad646f97aaf6f95809ae.woff2')format("woff");}.ff2_c02428{font-family:ff2_c02428;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:ff3_c02428;src:url('chunks/assets/font_833624f2f0f7312057ab19d9.woff2')format("woff");}.ff3_c02428{font-family:ff3_c02428;line-height:1.284180;font-style:normal;font-weight: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_c02428;src:url('chunks/assets/font_e4b0833003f65aa421f465f3.woff2')format("woff");}.ff4_c02428{font-family:ff4_c02428;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02428{vertical-align:-76.500000px;}
.v0_c02428{vertical-align:0.000000px;}
.ls2_c02428{letter-spacing:-1.134000px;}
.ls1_c02428{letter-spacing:0.000000px;}
.ls0_c02428{letter-spacing:235.440000px;}
.sc__c02428{text-shadow:none;}
.sc0_c02428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02428{-webkit-text-stroke:0px transparent;}
.sc0_c02428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02428{word-spacing:-15.426000px;}
.ws1_c02428{word-spacing:0.000000px;}
._1_c02428{margin-left:-1.856707px;}
._4_c02428{width:1.067921px;}
._c_c02428{width:2.354567px;}
._3_c02428{width:4.371575px;}
._0_c02428{width:5.564425px;}
._2_c02428{width:6.823382px;}
._a_c02428{width:8.214091px;}
._b_c02428{width:9.322750px;}
._e_c02428{width:10.462775px;}
._5_c02428{width:11.857225px;}
._6_c02428{width:13.050936px;}
._9_c02428{width:14.241666px;}
._d_c02428{width:16.992000px;}
._7_c02428{width:18.944441px;}
._8_c02428{width:20.142524px;}
._f_c02428{width:22.392000px;}
._10_c02428{width:23.544000px;}
._11_c02428{width:27.000000px;}
._12_c02428{width:28.740079px;}
.fc1_c02428{color:rgb(192,80,77);}
.fc0_c02428{color:rgb(0,0,0);}
.fs0_c02428{font-size:66.240000px;}
.fs1_c02428{font-size:72.000000px;}
.y0_c02428{bottom:0.000000px;}
.y3_c02428{bottom:4.680000px;}
.y2_c02428{bottom:41.796000px;}
.y1_c02428{bottom:75.456000px;}
.y2e_c02428{bottom:143.316000px;}
.y2d_c02428{bottom:174.270000px;}
.y2c_c02428{bottom:205.410000px;}
.y2b_c02428{bottom:235.290000px;}
.y2a_c02428{bottom:254.190000px;}
.y29_c02428{bottom:273.315000px;}
.y28_c02428{bottom:292.215000px;}
.y27_c02428{bottom:311.115000px;}
.y26_c02428{bottom:330.195000px;}
.y25_c02428{bottom:349.095000px;}
.y24_c02428{bottom:368.175000px;}
.y23_c02428{bottom:387.075000px;}
.y22_c02428{bottom:405.975000px;}
.y21_c02428{bottom:425.055000px;}
.y20_c02428{bottom:443.955000px;}
.y1f_c02428{bottom:463.035000px;}
.y1e_c02428{bottom:492.555000px;}
.y1d_c02428{bottom:523.695000px;}
.y1c_c02428{bottom:554.685000px;}
.y1b_c02428{bottom:585.825000px;}
.y1a_c02428{bottom:616.785000px;}
.y19_c02428{bottom:647.925000px;}
.y18_c02428{bottom:668.265000px;}
.y17_c02428{bottom:687.165000px;}
.y16_c02428{bottom:706.245000px;}
.y15_c02428{bottom:725.145000px;}
.y14_c02428{bottom:744.225000px;}
.y13_c02428{bottom:763.125000px;}
.y12_c02428{bottom:801.150000px;}
.y11_c02428{bottom:820.050000px;}
.y10_c02428{bottom:839.130000px;}
.yf_c02428{bottom:858.030000px;}
.ye_c02428{bottom:877.110000px;}
.yd_c02428{bottom:896.010000px;}
.yc_c02428{bottom:914.910000px;}
.yb_c02428{bottom:933.990000px;}
.ya_c02428{bottom:952.890000px;}
.y9_c02428{bottom:971.970000px;}
.y8_c02428{bottom:990.870000px;}
.y7_c02428{bottom:1009.770000px;}
.y6_c02428{bottom:1028.850000px;}
.y5_c02428{bottom:1047.750000px;}
.y4_c02428{bottom:1066.860000px;}
.h2_c02428{height:22.500000px;}
.h1_c02428{height:48.871406px;}
.h5_c02428{height:59.383125px;}
.h3_c02428{height:65.010937px;}
.h4_c02428{height:70.664062px;}
.h0_c02428{height:1188.000000px;}
.w1_c02428{width:66.636000px;}
.w0_c02428{width:918.000000px;}
.x0_c02428{left:0.000000px;}
.x3_c02428{left:16.560000px;}
.x1_c02428{left:127.656000px;}
.x5_c02428{left:181.650000px;}
.x4_c02428{left:244.650000px;}
.x2_c02428{left:820.950000px;}
@media print{
.v1_c02428{vertical-align:-68.000000pt;}
.v0_c02428{vertical-align:0.000000pt;}
.ls2_c02428{letter-spacing:-1.008000pt;}
.ls1_c02428{letter-spacing:0.000000pt;}
.ls0_c02428{letter-spacing:209.280000pt;}
.ws0_c02428{word-spacing:-13.712000pt;}
.ws1_c02428{word-spacing:0.000000pt;}
._1_c02428{margin-left:-1.650406pt;}
._4_c02428{width:0.949263pt;}
._c_c02428{width:2.092948pt;}
._3_c02428{width:3.885844pt;}
._0_c02428{width:4.946156pt;}
._2_c02428{width:6.065229pt;}
._a_c02428{width:7.301414pt;}
._b_c02428{width:8.286889pt;}
._e_c02428{width:9.300244pt;}
._5_c02428{width:10.539756pt;}
._6_c02428{width:11.600832pt;}
._9_c02428{width:12.659259pt;}
._d_c02428{width:15.104000pt;}
._7_c02428{width:16.839503pt;}
._8_c02428{width:17.904466pt;}
._f_c02428{width:19.904000pt;}
._10_c02428{width:20.928000pt;}
._11_c02428{width:24.000000pt;}
._12_c02428{width:25.546737pt;}
.fs0_c02428{font-size:58.880000pt;}
.fs1_c02428{font-size:64.000000pt;}
.y0_c02428{bottom:0.000000pt;}
.y3_c02428{bottom:4.160000pt;}
.y2_c02428{bottom:37.152000pt;}
.y1_c02428{bottom:67.072000pt;}
.y2e_c02428{bottom:127.392000pt;}
.y2d_c02428{bottom:154.906667pt;}
.y2c_c02428{bottom:182.586667pt;}
.y2b_c02428{bottom:209.146667pt;}
.y2a_c02428{bottom:225.946667pt;}
.y29_c02428{bottom:242.946667pt;}
.y28_c02428{bottom:259.746667pt;}
.y27_c02428{bottom:276.546667pt;}
.y26_c02428{bottom:293.506667pt;}
.y25_c02428{bottom:310.306667pt;}
.y24_c02428{bottom:327.266667pt;}
.y23_c02428{bottom:344.066667pt;}
.y22_c02428{bottom:360.866667pt;}
.y21_c02428{bottom:377.826667pt;}
.y20_c02428{bottom:394.626667pt;}
.y1f_c02428{bottom:411.586667pt;}
.y1e_c02428{bottom:437.826667pt;}
.y1d_c02428{bottom:465.506667pt;}
.y1c_c02428{bottom:493.053333pt;}
.y1b_c02428{bottom:520.733333pt;}
.y1a_c02428{bottom:548.253333pt;}
.y19_c02428{bottom:575.933333pt;}
.y18_c02428{bottom:594.013333pt;}
.y17_c02428{bottom:610.813333pt;}
.y16_c02428{bottom:627.773333pt;}
.y15_c02428{bottom:644.573333pt;}
.y14_c02428{bottom:661.533333pt;}
.y13_c02428{bottom:678.333333pt;}
.y12_c02428{bottom:712.133333pt;}
.y11_c02428{bottom:728.933333pt;}
.y10_c02428{bottom:745.893333pt;}
.yf_c02428{bottom:762.693333pt;}
.ye_c02428{bottom:779.653333pt;}
.yd_c02428{bottom:796.453333pt;}
.yc_c02428{bottom:813.253333pt;}
.yb_c02428{bottom:830.213333pt;}
.ya_c02428{bottom:847.013333pt;}
.y9_c02428{bottom:863.973333pt;}
.y8_c02428{bottom:880.773333pt;}
.y7_c02428{bottom:897.573333pt;}
.y6_c02428{bottom:914.533333pt;}
.y5_c02428{bottom:931.333333pt;}
.y4_c02428{bottom:948.320000pt;}
.h2_c02428{height:20.000000pt;}
.h1_c02428{height:43.441250pt;}
.h5_c02428{height:52.785000pt;}
.h3_c02428{height:57.787500pt;}
.h4_c02428{height:62.812500pt;}
.h0_c02428{height:1056.000000pt;}
.w1_c02428{width:59.232000pt;}
.w0_c02428{width:816.000000pt;}
.x0_c02428{left:0.000000pt;}
.x3_c02428{left:14.720000pt;}
.x1_c02428{left:113.472000pt;}
.x5_c02428{left:161.466667pt;}
.x4_c02428{left:217.466667pt;}
.x2_c02428{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02429 {
    display:none;
  }
  .loading-indicator_c02429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02429 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02429 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02429" -> "#page-container .classname_c02429")
 */
.pf_c02429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02429 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02429 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02429 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02429 {overflow:visible;}
  }
}
.c_c02429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02429 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02429:after { /* webkit #35443 */
  content: '';
}
.t_c02429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02429 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02429 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02429 { /* info for Javascript */
  display:none;
}
.l_c02429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02429:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02429 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02429.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02429;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02429{font-family:ff1_c02429;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02429;src:url('chunks/assets/font_87bc095694da587f0f1fddc7.woff2')format("woff");}.ff2_c02429{font-family:ff2_c02429;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:ff3_c02429;src:url('chunks/assets/font_46082861ee8f86f5a99933db.woff2')format("woff");}.ff3_c02429{font-family:ff3_c02429;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02429{vertical-align:0.000000px;}
.ls0_c02429{letter-spacing:0.000000px;}
.sc__c02429{text-shadow:none;}
.sc0_c02429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02429{-webkit-text-stroke:0px transparent;}
.sc0_c02429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02429{word-spacing:0.000000px;}
._12_c02429{margin-left:-2.298041px;}
._0_c02429{margin-left:-1.080000px;}
._7_c02429{width:1.157959px;}
._2_c02429{width:2.304000px;}
._1_c02429{width:3.744000px;}
._10_c02429{width:4.745379px;}
._d_c02429{width:5.860866px;}
._3_c02429{width:6.955266px;}
._4_c02429{width:8.147454px;}
._b_c02429{width:9.287603px;}
._a_c02429{width:10.399746px;}
._8_c02429{width:12.009534px;}
._c_c02429{width:13.383328px;}
._5_c02429{width:14.440254px;}
._6_c02429{width:15.495261px;}
._11_c02429{width:17.772679px;}
._f_c02429{width:19.474825px;}
._e_c02429{width:20.865666px;}
._9_c02429{width:24.131388px;}
.fc1_c02429{color:rgb(192,80,77);}
.fc0_c02429{color:rgb(0,0,0);}
.fs0_c02429{font-size:66.240000px;}
.fs1_c02429{font-size:72.000000px;}
.y0_c02429{bottom:0.000000px;}
.y3_c02429{bottom:4.680000px;}
.y2_c02429{bottom:41.796000px;}
.y1_c02429{bottom:75.456000px;}
.y2e_c02429{bottom:112.716000px;}
.y2d_c02429{bottom:131.796000px;}
.y2c_c02429{bottom:150.690000px;}
.y2b_c02429{bottom:169.770000px;}
.y2a_c02429{bottom:188.670000px;}
.y29_c02429{bottom:207.570000px;}
.y28_c02429{bottom:226.650000px;}
.y27_c02429{bottom:245.550000px;}
.y26_c02429{bottom:275.295000px;}
.y25_c02429{bottom:306.255000px;}
.y24_c02429{bottom:337.395000px;}
.y23_c02429{bottom:368.355000px;}
.y22_c02429{bottom:399.495000px;}
.y21_c02429{bottom:419.835000px;}
.y20_c02429{bottom:438.915000px;}
.y1f_c02429{bottom:457.815000px;}
.y1e_c02429{bottom:476.715000px;}
.y1d_c02429{bottom:495.795000px;}
.y1c_c02429{bottom:514.695000px;}
.y1b_c02429{bottom:533.805000px;}
.y1a_c02429{bottom:552.705000px;}
.y19_c02429{bottom:582.225000px;}
.y18_c02429{bottom:613.365000px;}
.y17_c02429{bottom:644.325000px;}
.y16_c02429{bottom:675.465000px;}
.y15_c02429{bottom:706.425000px;}
.y14_c02429{bottom:726.945000px;}
.y13_c02429{bottom:745.845000px;}
.y12_c02429{bottom:764.925000px;}
.y11_c02429{bottom:783.825000px;}
.y10_c02429{bottom:802.770000px;}
.yf_c02429{bottom:821.850000px;}
.ye_c02429{bottom:840.750000px;}
.yd_c02429{bottom:859.830000px;}
.yc_c02429{bottom:878.730000px;}
.yb_c02429{bottom:897.630000px;}
.ya_c02429{bottom:916.710000px;}
.y9_c02429{bottom:935.610000px;}
.y8_c02429{bottom:954.690000px;}
.y7_c02429{bottom:973.590000px;}
.y6_c02429{bottom:1003.290000px;}
.y5_c02429{bottom:1034.250000px;}
.y4_c02429{bottom:1065.420000px;}
.h2_c02429{height:22.500000px;}
.h1_c02429{height:48.871406px;}
.h4_c02429{height:65.010937px;}
.h3_c02429{height:70.664062px;}
.h0_c02429{height:1188.000000px;}
.w1_c02429{width:66.636000px;}
.w0_c02429{width:918.000000px;}
.x0_c02429{left:0.000000px;}
.x3_c02429{left:16.560000px;}
.x1_c02429{left:127.656000px;}
.x4_c02429{left:181.650000px;}
.x5_c02429{left:244.650000px;}
.x2_c02429{left:820.950000px;}
@media print{
.v0_c02429{vertical-align:0.000000pt;}
.ls0_c02429{letter-spacing:0.000000pt;}
.ws0_c02429{word-spacing:0.000000pt;}
._12_c02429{margin-left:-2.042703pt;}
._0_c02429{margin-left:-0.960000pt;}
._7_c02429{width:1.029297pt;}
._2_c02429{width:2.048000pt;}
._1_c02429{width:3.328000pt;}
._10_c02429{width:4.218115pt;}
._d_c02429{width:5.209659pt;}
._3_c02429{width:6.182459pt;}
._4_c02429{width:7.242181pt;}
._b_c02429{width:8.255647pt;}
._a_c02429{width:9.244219pt;}
._8_c02429{width:10.675141pt;}
._c_c02429{width:11.896292pt;}
._5_c02429{width:12.835781pt;}
._6_c02429{width:13.773565pt;}
._11_c02429{width:15.797937pt;}
._f_c02429{width:17.310956pt;}
._e_c02429{width:18.547259pt;}
._9_c02429{width:21.450122pt;}
.fs0_c02429{font-size:58.880000pt;}
.fs1_c02429{font-size:64.000000pt;}
.y0_c02429{bottom:0.000000pt;}
.y3_c02429{bottom:4.160000pt;}
.y2_c02429{bottom:37.152000pt;}
.y1_c02429{bottom:67.072000pt;}
.y2e_c02429{bottom:100.192000pt;}
.y2d_c02429{bottom:117.152000pt;}
.y2c_c02429{bottom:133.946667pt;}
.y2b_c02429{bottom:150.906667pt;}
.y2a_c02429{bottom:167.706667pt;}
.y29_c02429{bottom:184.506667pt;}
.y28_c02429{bottom:201.466667pt;}
.y27_c02429{bottom:218.266667pt;}
.y26_c02429{bottom:244.706667pt;}
.y25_c02429{bottom:272.226667pt;}
.y24_c02429{bottom:299.906667pt;}
.y23_c02429{bottom:327.426667pt;}
.y22_c02429{bottom:355.106667pt;}
.y21_c02429{bottom:373.186667pt;}
.y20_c02429{bottom:390.146667pt;}
.y1f_c02429{bottom:406.946667pt;}
.y1e_c02429{bottom:423.746667pt;}
.y1d_c02429{bottom:440.706667pt;}
.y1c_c02429{bottom:457.506667pt;}
.y1b_c02429{bottom:474.493333pt;}
.y1a_c02429{bottom:491.293333pt;}
.y19_c02429{bottom:517.533333pt;}
.y18_c02429{bottom:545.213333pt;}
.y17_c02429{bottom:572.733333pt;}
.y16_c02429{bottom:600.413333pt;}
.y15_c02429{bottom:627.933333pt;}
.y14_c02429{bottom:646.173333pt;}
.y13_c02429{bottom:662.973333pt;}
.y12_c02429{bottom:679.933333pt;}
.y11_c02429{bottom:696.733333pt;}
.y10_c02429{bottom:713.573333pt;}
.yf_c02429{bottom:730.533333pt;}
.ye_c02429{bottom:747.333333pt;}
.yd_c02429{bottom:764.293333pt;}
.yc_c02429{bottom:781.093333pt;}
.yb_c02429{bottom:797.893333pt;}
.ya_c02429{bottom:814.853333pt;}
.y9_c02429{bottom:831.653333pt;}
.y8_c02429{bottom:848.613333pt;}
.y7_c02429{bottom:865.413333pt;}
.y6_c02429{bottom:891.813333pt;}
.y5_c02429{bottom:919.333333pt;}
.y4_c02429{bottom:947.040000pt;}
.h2_c02429{height:20.000000pt;}
.h1_c02429{height:43.441250pt;}
.h4_c02429{height:57.787500pt;}
.h3_c02429{height:62.812500pt;}
.h0_c02429{height:1056.000000pt;}
.w1_c02429{width:59.232000pt;}
.w0_c02429{width:816.000000pt;}
.x0_c02429{left:0.000000pt;}
.x3_c02429{left:14.720000pt;}
.x1_c02429{left:113.472000pt;}
.x4_c02429{left:161.466667pt;}
.x5_c02429{left:217.466667pt;}
.x2_c02429{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02430 {
    display:none;
  }
  .loading-indicator_c02430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02430 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02430 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02430" -> "#page-container .classname_c02430")
 */
.pf_c02430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02430 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02430 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02430 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02430 {overflow:visible;}
  }
}
.c_c02430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02430 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02430:after { /* webkit #35443 */
  content: '';
}
.t_c02430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02430 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02430 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02430 { /* info for Javascript */
  display:none;
}
.l_c02430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02430:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02430 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02430.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02430;src:url('chunks/assets/font_f92eef65ba27cf4373ef563f.woff2')format("woff");}.ff1_c02430{font-family:ff1_c02430;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02430;src:url('chunks/assets/font_d07b9f3246707b96b747e094.woff2')format("woff");}.ff2_c02430{font-family:ff2_c02430;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:ff3_c02430;src:url('chunks/assets/font_78b6a5e176f81f58b0b98bbd.woff2')format("woff");}.ff3_c02430{font-family:ff3_c02430;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02430{vertical-align:0.000000px;}
.ls1_c02430{letter-spacing:0.000000px;}
.ls0_c02430{letter-spacing:13.080000px;}
.sc__c02430{text-shadow:none;}
.sc0_c02430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02430{-webkit-text-stroke:0px transparent;}
.sc0_c02430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02430{word-spacing:0.000000px;}
._13_c02430{margin-left:-2.108557px;}
._1_c02430{margin-left:-1.059443px;}
._9_c02430{width:1.728000px;}
._c_c02430{width:3.444612px;}
._d_c02430{width:4.768684px;}
._0_c02430{width:5.961534px;}
._a_c02430{width:6.984000px;}
._b_c02430{width:8.035399px;}
._7_c02430{width:10.008000px;}
._8_c02430{width:11.376000px;}
._6_c02430{width:12.453054px;}
._3_c02430{width:14.440254px;}
._11_c02430{width:20.732988px;}
._e_c02430{width:26.627354px;}
._4_c02430{width:27.886841px;}
._5_c02430{width:29.278809px;}
._2_c02430{width:31.464000px;}
._f_c02430{width:39.346825px;}
._10_c02430{width:40.472441px;}
._12_c02430{width:42.027443px;}
.fc1_c02430{color:rgb(192,80,77);}
.fc2_c02430{color:rgb(17,17,17);}
.fc0_c02430{color:rgb(0,0,0);}
.fs0_c02430{font-size:66.240000px;}
.fs1_c02430{font-size:72.000000px;}
.y0_c02430{bottom:0.000000px;}
.y3_c02430{bottom:4.680000px;}
.y2_c02430{bottom:41.796000px;}
.y1_c02430{bottom:75.456000px;}
.y29_c02430{bottom:173.370000px;}
.y28_c02430{bottom:204.510000px;}
.y27_c02430{bottom:235.470000px;}
.y26_c02430{bottom:266.610000px;}
.y25_c02430{bottom:297.615000px;}
.y24_c02430{bottom:328.755000px;}
.y23_c02430{bottom:359.715000px;}
.y22_c02430{bottom:390.855000px;}
.y21_c02430{bottom:421.815000px;}
.y20_c02430{bottom:442.695000px;}
.y1f_c02430{bottom:473.655000px;}
.y1e_c02430{bottom:493.995000px;}
.y1d_c02430{bottom:513.075000px;}
.y1c_c02430{bottom:531.975000px;}
.y1b_c02430{bottom:550.905000px;}
.y1a_c02430{bottom:569.985000px;}
.y19_c02430{bottom:588.885000px;}
.y18_c02430{bottom:607.965000px;}
.y17_c02430{bottom:626.865000px;}
.y16_c02430{bottom:645.765000px;}
.y15_c02430{bottom:664.845000px;}
.y14_c02430{bottom:683.745000px;}
.y13_c02430{bottom:702.825000px;}
.y12_c02430{bottom:721.725000px;}
.y11_c02430{bottom:750.165000px;}
.y10_c02430{bottom:779.865000px;}
.yf_c02430{bottom:810.870000px;}
.ye_c02430{bottom:842.010000px;}
.yd_c02430{bottom:872.970000px;}
.yc_c02430{bottom:904.110000px;}
.yb_c02430{bottom:933.990000px;}
.ya_c02430{bottom:952.890000px;}
.y9_c02430{bottom:971.970000px;}
.y8_c02430{bottom:990.870000px;}
.y7_c02430{bottom:1009.770000px;}
.y6_c02430{bottom:1028.850000px;}
.y5_c02430{bottom:1047.750000px;}
.y4_c02430{bottom:1066.860000px;}
.h2_c02430{height:22.500000px;}
.h1_c02430{height:48.871406px;}
.h3_c02430{height:65.010937px;}
.h4_c02430{height:70.664062px;}
.h5_c02430{height:74.004654px;}
.h0_c02430{height:1188.000000px;}
.w1_c02430{width:66.636000px;}
.w0_c02430{width:918.000000px;}
.x0_c02430{left:0.000000px;}
.x3_c02430{left:16.560000px;}
.x1_c02430{left:127.656000px;}
.x7_c02430{left:131.976000px;}
.x9_c02430{left:175.710000px;}
.x5_c02430{left:181.650000px;}
.x8_c02430{left:185.970000px;}
.x6_c02430{left:187.050000px;}
.x4_c02430{left:244.650000px;}
.x2_c02430{left:820.950000px;}
@media print{
.v0_c02430{vertical-align:0.000000pt;}
.ls1_c02430{letter-spacing:0.000000pt;}
.ls0_c02430{letter-spacing:11.626667pt;}
.ws0_c02430{word-spacing:0.000000pt;}
._13_c02430{margin-left:-1.874273pt;}
._1_c02430{margin-left:-0.941727pt;}
._9_c02430{width:1.536000pt;}
._c_c02430{width:3.061878pt;}
._d_c02430{width:4.238830pt;}
._0_c02430{width:5.299141pt;}
._a_c02430{width:6.208000pt;}
._b_c02430{width:7.142577pt;}
._7_c02430{width:8.896000pt;}
._8_c02430{width:10.112000pt;}
._6_c02430{width:11.069381pt;}
._3_c02430{width:12.835781pt;}
._11_c02430{width:18.429322pt;}
._e_c02430{width:23.668759pt;}
._4_c02430{width:24.788303pt;}
._5_c02430{width:26.025608pt;}
._2_c02430{width:27.968000pt;}
._f_c02430{width:34.974956pt;}
._10_c02430{width:35.975503pt;}
._12_c02430{width:37.357727pt;}
.fs0_c02430{font-size:58.880000pt;}
.fs1_c02430{font-size:64.000000pt;}
.y0_c02430{bottom:0.000000pt;}
.y3_c02430{bottom:4.160000pt;}
.y2_c02430{bottom:37.152000pt;}
.y1_c02430{bottom:67.072000pt;}
.y29_c02430{bottom:154.106667pt;}
.y28_c02430{bottom:181.786667pt;}
.y27_c02430{bottom:209.306667pt;}
.y26_c02430{bottom:236.986667pt;}
.y25_c02430{bottom:264.546667pt;}
.y24_c02430{bottom:292.226667pt;}
.y23_c02430{bottom:319.746667pt;}
.y22_c02430{bottom:347.426667pt;}
.y21_c02430{bottom:374.946667pt;}
.y20_c02430{bottom:393.506667pt;}
.y1f_c02430{bottom:421.026667pt;}
.y1e_c02430{bottom:439.106667pt;}
.y1d_c02430{bottom:456.066667pt;}
.y1c_c02430{bottom:472.866667pt;}
.y1b_c02430{bottom:489.693333pt;}
.y1a_c02430{bottom:506.653333pt;}
.y19_c02430{bottom:523.453333pt;}
.y18_c02430{bottom:540.413333pt;}
.y17_c02430{bottom:557.213333pt;}
.y16_c02430{bottom:574.013333pt;}
.y15_c02430{bottom:590.973333pt;}
.y14_c02430{bottom:607.773333pt;}
.y13_c02430{bottom:624.733333pt;}
.y12_c02430{bottom:641.533333pt;}
.y11_c02430{bottom:666.813333pt;}
.y10_c02430{bottom:693.213333pt;}
.yf_c02430{bottom:720.773333pt;}
.ye_c02430{bottom:748.453333pt;}
.yd_c02430{bottom:775.973333pt;}
.yc_c02430{bottom:803.653333pt;}
.yb_c02430{bottom:830.213333pt;}
.ya_c02430{bottom:847.013333pt;}
.y9_c02430{bottom:863.973333pt;}
.y8_c02430{bottom:880.773333pt;}
.y7_c02430{bottom:897.573333pt;}
.y6_c02430{bottom:914.533333pt;}
.y5_c02430{bottom:931.333333pt;}
.y4_c02430{bottom:948.320000pt;}
.h2_c02430{height:20.000000pt;}
.h1_c02430{height:43.441250pt;}
.h3_c02430{height:57.787500pt;}
.h4_c02430{height:62.812500pt;}
.h5_c02430{height:65.781915pt;}
.h0_c02430{height:1056.000000pt;}
.w1_c02430{width:59.232000pt;}
.w0_c02430{width:816.000000pt;}
.x0_c02430{left:0.000000pt;}
.x3_c02430{left:14.720000pt;}
.x1_c02430{left:113.472000pt;}
.x7_c02430{left:117.312000pt;}
.x9_c02430{left:156.186667pt;}
.x5_c02430{left:161.466667pt;}
.x8_c02430{left:165.306667pt;}
.x6_c02430{left:166.266667pt;}
.x4_c02430{left:217.466667pt;}
.x2_c02430{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02431 {
    display:none;
  }
  .loading-indicator_c02431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02431 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02431 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02431" -> "#page-container .classname_c02431")
 */
.pf_c02431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02431 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02431 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02431 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02431 {overflow:visible;}
  }
}
.c_c02431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02431 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02431:after { /* webkit #35443 */
  content: '';
}
.t_c02431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02431 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02431 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02431 { /* info for Javascript */
  display:none;
}
.l_c02431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02431:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02431 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02431.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02431;src:url('chunks/assets/font_5e4ddc77dc958b0a617b28da.woff2')format("woff");}.ff1_c02431{font-family:ff1_c02431;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02431;src:url('chunks/assets/font_158a43ad764f3932917ebda3.woff2')format("woff");}.ff2_c02431{font-family:ff2_c02431;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;}
.m0_c02431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02431{vertical-align:0.000000px;}
.ls0_c02431{letter-spacing:0.000000px;}
.ls1_c02431{letter-spacing:0.144000px;}
.sc__c02431{text-shadow:none;}
.sc0_c02431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02431{-webkit-text-stroke:0px transparent;}
.sc0_c02431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02431{word-spacing:-18.144000px;}
.ws1_c02431{word-spacing:0.000000px;}
._3_c02431{margin-left:-1.440000px;}
._1_c02431{width:1.188000px;}
._2_c02431{width:2.988000px;}
._0_c02431{width:4.968000px;}
._6_c02431{width:6.120000px;}
._7_c02431{width:7.200000px;}
._d_c02431{width:8.928000px;}
._4_c02431{width:11.016000px;}
._5_c02431{width:12.168000px;}
._c_c02431{width:13.392000px;}
._b_c02431{width:14.400000px;}
._10_c02431{width:15.948000px;}
._8_c02431{width:16.992000px;}
._9_c02431{width:20.592000px;}
._a_c02431{width:22.176000px;}
._e_c02431{width:26.064000px;}
._f_c02431{width:27.576000px;}
._11_c02431{width:28.584000px;}
.fc1_c02431{color:rgb(192,80,77);}
.fc0_c02431{color:rgb(0,0,0);}
.fs0_c02431{font-size:66.240000px;}
.fs1_c02431{font-size:72.000000px;}
.y0_c02431{bottom:0.000000px;}
.y3_c02431{bottom:4.680000px;}
.y2_c02431{bottom:41.796000px;}
.y1_c02431{bottom:75.456000px;}
.y24_c02431{bottom:134.676000px;}
.y23_c02431{bottom:165.630000px;}
.y22_c02431{bottom:196.770000px;}
.y21_c02431{bottom:227.730000px;}
.y20_c02431{bottom:257.610000px;}
.y1f_c02431{bottom:276.735000px;}
.y1e_c02431{bottom:295.635000px;}
.y1d_c02431{bottom:314.715000px;}
.y1c_c02431{bottom:333.615000px;}
.y1b_c02431{bottom:352.515000px;}
.y1a_c02431{bottom:382.215000px;}
.y19_c02431{bottom:413.175000px;}
.y18_c02431{bottom:444.315000px;}
.y17_c02431{bottom:475.275000px;}
.y16_c02431{bottom:506.415000px;}
.y15_c02431{bottom:537.405000px;}
.y14_c02431{bottom:568.545000px;}
.y13_c02431{bottom:599.505000px;}
.y12_c02431{bottom:630.645000px;}
.y11_c02431{bottom:661.605000px;}
.y10_c02431{bottom:692.745000px;}
.yf_c02431{bottom:723.705000px;}
.ye_c02431{bottom:754.845000px;}
.yd_c02431{bottom:785.805000px;}
.yc_c02431{bottom:816.990000px;}
.yb_c02431{bottom:847.950000px;}
.ya_c02431{bottom:879.090000px;}
.y9_c02431{bottom:910.050000px;}
.y8_c02431{bottom:941.190000px;}
.y7_c02431{bottom:972.150000px;}
.y6_c02431{bottom:1003.290000px;}
.y5_c02431{bottom:1034.250000px;}
.y4_c02431{bottom:1065.420000px;}
.h2_c02431{height:22.500000px;}
.h1_c02431{height:48.871406px;}
.h4_c02431{height:65.010937px;}
.h3_c02431{height:70.664062px;}
.h0_c02431{height:1188.000000px;}
.w1_c02431{width:66.636000px;}
.w0_c02431{width:918.000000px;}
.x0_c02431{left:0.000000px;}
.x3_c02431{left:16.560000px;}
.x1_c02431{left:127.656000px;}
.x4_c02431{left:181.650000px;}
.x5_c02431{left:244.650000px;}
.x2_c02431{left:820.950000px;}
@media print{
.v0_c02431{vertical-align:0.000000pt;}
.ls0_c02431{letter-spacing:0.000000pt;}
.ls1_c02431{letter-spacing:0.128000pt;}
.ws0_c02431{word-spacing:-16.128000pt;}
.ws1_c02431{word-spacing:0.000000pt;}
._3_c02431{margin-left:-1.280000pt;}
._1_c02431{width:1.056000pt;}
._2_c02431{width:2.656000pt;}
._0_c02431{width:4.416000pt;}
._6_c02431{width:5.440000pt;}
._7_c02431{width:6.400000pt;}
._d_c02431{width:7.936000pt;}
._4_c02431{width:9.792000pt;}
._5_c02431{width:10.816000pt;}
._c_c02431{width:11.904000pt;}
._b_c02431{width:12.800000pt;}
._10_c02431{width:14.176000pt;}
._8_c02431{width:15.104000pt;}
._9_c02431{width:18.304000pt;}
._a_c02431{width:19.712000pt;}
._e_c02431{width:23.168000pt;}
._f_c02431{width:24.512000pt;}
._11_c02431{width:25.408000pt;}
.fs0_c02431{font-size:58.880000pt;}
.fs1_c02431{font-size:64.000000pt;}
.y0_c02431{bottom:0.000000pt;}
.y3_c02431{bottom:4.160000pt;}
.y2_c02431{bottom:37.152000pt;}
.y1_c02431{bottom:67.072000pt;}
.y24_c02431{bottom:119.712000pt;}
.y23_c02431{bottom:147.226667pt;}
.y22_c02431{bottom:174.906667pt;}
.y21_c02431{bottom:202.426667pt;}
.y20_c02431{bottom:228.986667pt;}
.y1f_c02431{bottom:245.986667pt;}
.y1e_c02431{bottom:262.786667pt;}
.y1d_c02431{bottom:279.746667pt;}
.y1c_c02431{bottom:296.546667pt;}
.y1b_c02431{bottom:313.346667pt;}
.y1a_c02431{bottom:339.746667pt;}
.y19_c02431{bottom:367.266667pt;}
.y18_c02431{bottom:394.946667pt;}
.y17_c02431{bottom:422.466667pt;}
.y16_c02431{bottom:450.146667pt;}
.y15_c02431{bottom:477.693333pt;}
.y14_c02431{bottom:505.373333pt;}
.y13_c02431{bottom:532.893333pt;}
.y12_c02431{bottom:560.573333pt;}
.y11_c02431{bottom:588.093333pt;}
.y10_c02431{bottom:615.773333pt;}
.yf_c02431{bottom:643.293333pt;}
.ye_c02431{bottom:670.973333pt;}
.yd_c02431{bottom:698.493333pt;}
.yc_c02431{bottom:726.213333pt;}
.yb_c02431{bottom:753.733333pt;}
.ya_c02431{bottom:781.413333pt;}
.y9_c02431{bottom:808.933333pt;}
.y8_c02431{bottom:836.613333pt;}
.y7_c02431{bottom:864.133333pt;}
.y6_c02431{bottom:891.813333pt;}
.y5_c02431{bottom:919.333333pt;}
.y4_c02431{bottom:947.040000pt;}
.h2_c02431{height:20.000000pt;}
.h1_c02431{height:43.441250pt;}
.h4_c02431{height:57.787500pt;}
.h3_c02431{height:62.812500pt;}
.h0_c02431{height:1056.000000pt;}
.w1_c02431{width:59.232000pt;}
.w0_c02431{width:816.000000pt;}
.x0_c02431{left:0.000000pt;}
.x3_c02431{left:14.720000pt;}
.x1_c02431{left:113.472000pt;}
.x4_c02431{left:161.466667pt;}
.x5_c02431{left:217.466667pt;}
.x2_c02431{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02432 {
    display:none;
  }
  .loading-indicator_c02432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02432 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02432 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02432" -> "#page-container .classname_c02432")
 */
.pf_c02432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02432 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02432 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02432 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02432 {overflow:visible;}
  }
}
.c_c02432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02432 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02432:after { /* webkit #35443 */
  content: '';
}
.t_c02432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02432 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02432 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02432 { /* info for Javascript */
  display:none;
}
.l_c02432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02432:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02432 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02432.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02432;src:url('chunks/assets/font_4551dd4e2f00730f24905c39.woff2')format("woff");}.ff1_c02432{font-family:ff1_c02432;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02432;src:url('chunks/assets/font_3cbd382b88a55d26cc99ff43.woff2')format("woff");}.ff2_c02432{font-family:ff2_c02432;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:ff3_c02432;src:url('chunks/assets/font_2aa7d859917c7d34c94eac7a.woff2')format("woff");}.ff3_c02432{font-family:ff3_c02432;line-height:1.284180;font-style:normal;font-weight: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_c02432;src:url('chunks/assets/font_a9966aec4da2e8f67c898308.woff2')format("woff");}.ff4_c02432{font-family:ff4_c02432;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02432{vertical-align:0.000000px;}
.ls1_c02432{letter-spacing:-0.612000px;}
.ls0_c02432{letter-spacing:0.000000px;}
.sc__c02432{text-shadow:none;}
.sc0_c02432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02432{-webkit-text-stroke:0px transparent;}
.sc0_c02432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02432{word-spacing:0.000000px;}
._2_c02432{margin-left:-1.440000px;}
._3_c02432{width:1.008000px;}
._a_c02432{width:2.908964px;}
._8_c02432{width:4.040971px;}
._7_c02432{width:5.166588px;}
._6_c02432{width:6.425412px;}
._5_c02432{width:7.467641px;}
._12_c02432{width:8.966445px;}
._b_c02432{width:10.158025px;}
._0_c02432{width:11.304000px;}
._1_c02432{width:12.960000px;}
._c_c02432{width:14.440188px;}
._14_c02432{width:15.500425px;}
._9_c02432{width:17.734908px;}
._4_c02432{width:18.812425px;}
._d_c02432{width:20.267850px;}
._15_c02432{width:23.132128px;}
._f_c02432{width:24.839934px;}
._e_c02432{width:25.966212px;}
._11_c02432{width:29.344784px;}
._10_c02432{width:30.982841px;}
._13_c02432{width:37.889479px;}
.fc1_c02432{color:rgb(192,80,77);}
.fc0_c02432{color:rgb(0,0,0);}
.fs0_c02432{font-size:66.240000px;}
.fs1_c02432{font-size:72.000000px;}
.y0_c02432{bottom:0.000000px;}
.y3_c02432{bottom:4.680000px;}
.y2_c02432{bottom:41.796000px;}
.y1_c02432{bottom:75.456000px;}
.y34_c02432{bottom:117.936000px;}
.y33_c02432{bottom:137.016000px;}
.y32_c02432{bottom:155.910000px;}
.y31_c02432{bottom:174.810000px;}
.y30_c02432{bottom:193.890000px;}
.y2f_c02432{bottom:212.790000px;}
.y2e_c02432{bottom:231.870000px;}
.y2d_c02432{bottom:250.770000px;}
.y2c_c02432{bottom:269.670000px;}
.y2b_c02432{bottom:288.795000px;}
.y2a_c02432{bottom:307.695000px;}
.y29_c02432{bottom:326.775000px;}
.y28_c02432{bottom:345.675000px;}
.y27_c02432{bottom:364.575000px;}
.y26_c02432{bottom:383.655000px;}
.y25_c02432{bottom:402.555000px;}
.y24_c02432{bottom:421.635000px;}
.y23_c02432{bottom:440.535000px;}
.y22_c02432{bottom:459.615000px;}
.y21_c02432{bottom:479.055000px;}
.y20_c02432{bottom:499.215000px;}
.y1f_c02432{bottom:518.115000px;}
.y1e_c02432{bottom:537.225000px;}
.y1d_c02432{bottom:556.125000px;}
.y1c_c02432{bottom:575.205000px;}
.y1b_c02432{bottom:594.105000px;}
.y1a_c02432{bottom:613.005000px;}
.y19_c02432{bottom:632.085000px;}
.y18_c02432{bottom:650.985000px;}
.y17_c02432{bottom:670.065000px;}
.y16_c02432{bottom:688.965000px;}
.y15_c02432{bottom:707.865000px;}
.y14_c02432{bottom:726.945000px;}
.y13_c02432{bottom:745.845000px;}
.y12_c02432{bottom:764.925000px;}
.y11_c02432{bottom:783.825000px;}
.y10_c02432{bottom:802.770000px;}
.yf_c02432{bottom:821.850000px;}
.ye_c02432{bottom:840.750000px;}
.yd_c02432{bottom:859.830000px;}
.yc_c02432{bottom:878.730000px;}
.yb_c02432{bottom:897.630000px;}
.ya_c02432{bottom:916.710000px;}
.y9_c02432{bottom:935.610000px;}
.y8_c02432{bottom:954.690000px;}
.y7_c02432{bottom:973.590000px;}
.y6_c02432{bottom:1003.290000px;}
.y5_c02432{bottom:1034.250000px;}
.y4_c02432{bottom:1065.420000px;}
.h2_c02432{height:22.500000px;}
.h1_c02432{height:48.871406px;}
.h5_c02432{height:59.383125px;}
.h4_c02432{height:65.010937px;}
.h3_c02432{height:70.664062px;}
.h0_c02432{height:1188.000000px;}
.w1_c02432{width:66.636000px;}
.w0_c02432{width:918.000000px;}
.x0_c02432{left:0.000000px;}
.x3_c02432{left:16.560000px;}
.x1_c02432{left:127.656000px;}
.x4_c02432{left:181.650000px;}
.x5_c02432{left:244.650000px;}
.x2_c02432{left:820.950000px;}
@media print{
.v0_c02432{vertical-align:0.000000pt;}
.ls1_c02432{letter-spacing:-0.544000pt;}
.ls0_c02432{letter-spacing:0.000000pt;}
.ws0_c02432{word-spacing:0.000000pt;}
._2_c02432{margin-left:-1.280000pt;}
._3_c02432{width:0.896000pt;}
._a_c02432{width:2.585746pt;}
._8_c02432{width:3.591974pt;}
._7_c02432{width:4.592522pt;}
._6_c02432{width:5.711478pt;}
._5_c02432{width:6.637903pt;}
._12_c02432{width:7.970173pt;}
._b_c02432{width:9.029356pt;}
._0_c02432{width:10.048000pt;}
._1_c02432{width:11.520000pt;}
._c_c02432{width:12.835722pt;}
._14_c02432{width:13.778156pt;}
._9_c02432{width:15.764362pt;}
._4_c02432{width:16.722156pt;}
._d_c02432{width:18.015867pt;}
._15_c02432{width:20.561892pt;}
._f_c02432{width:22.079941pt;}
._e_c02432{width:23.081078pt;}
._11_c02432{width:26.084252pt;}
._10_c02432{width:27.540303pt;}
._13_c02432{width:33.679537pt;}
.fs0_c02432{font-size:58.880000pt;}
.fs1_c02432{font-size:64.000000pt;}
.y0_c02432{bottom:0.000000pt;}
.y3_c02432{bottom:4.160000pt;}
.y2_c02432{bottom:37.152000pt;}
.y1_c02432{bottom:67.072000pt;}
.y34_c02432{bottom:104.832000pt;}
.y33_c02432{bottom:121.792000pt;}
.y32_c02432{bottom:138.586667pt;}
.y31_c02432{bottom:155.386667pt;}
.y30_c02432{bottom:172.346667pt;}
.y2f_c02432{bottom:189.146667pt;}
.y2e_c02432{bottom:206.106667pt;}
.y2d_c02432{bottom:222.906667pt;}
.y2c_c02432{bottom:239.706667pt;}
.y2b_c02432{bottom:256.706667pt;}
.y2a_c02432{bottom:273.506667pt;}
.y29_c02432{bottom:290.466667pt;}
.y28_c02432{bottom:307.266667pt;}
.y27_c02432{bottom:324.066667pt;}
.y26_c02432{bottom:341.026667pt;}
.y25_c02432{bottom:357.826667pt;}
.y24_c02432{bottom:374.786667pt;}
.y23_c02432{bottom:391.586667pt;}
.y22_c02432{bottom:408.546667pt;}
.y21_c02432{bottom:425.826667pt;}
.y20_c02432{bottom:443.746667pt;}
.y1f_c02432{bottom:460.546667pt;}
.y1e_c02432{bottom:477.533333pt;}
.y1d_c02432{bottom:494.333333pt;}
.y1c_c02432{bottom:511.293333pt;}
.y1b_c02432{bottom:528.093333pt;}
.y1a_c02432{bottom:544.893333pt;}
.y19_c02432{bottom:561.853333pt;}
.y18_c02432{bottom:578.653333pt;}
.y17_c02432{bottom:595.613333pt;}
.y16_c02432{bottom:612.413333pt;}
.y15_c02432{bottom:629.213333pt;}
.y14_c02432{bottom:646.173333pt;}
.y13_c02432{bottom:662.973333pt;}
.y12_c02432{bottom:679.933333pt;}
.y11_c02432{bottom:696.733333pt;}
.y10_c02432{bottom:713.573333pt;}
.yf_c02432{bottom:730.533333pt;}
.ye_c02432{bottom:747.333333pt;}
.yd_c02432{bottom:764.293333pt;}
.yc_c02432{bottom:781.093333pt;}
.yb_c02432{bottom:797.893333pt;}
.ya_c02432{bottom:814.853333pt;}
.y9_c02432{bottom:831.653333pt;}
.y8_c02432{bottom:848.613333pt;}
.y7_c02432{bottom:865.413333pt;}
.y6_c02432{bottom:891.813333pt;}
.y5_c02432{bottom:919.333333pt;}
.y4_c02432{bottom:947.040000pt;}
.h2_c02432{height:20.000000pt;}
.h1_c02432{height:43.441250pt;}
.h5_c02432{height:52.785000pt;}
.h4_c02432{height:57.787500pt;}
.h3_c02432{height:62.812500pt;}
.h0_c02432{height:1056.000000pt;}
.w1_c02432{width:59.232000pt;}
.w0_c02432{width:816.000000pt;}
.x0_c02432{left:0.000000pt;}
.x3_c02432{left:14.720000pt;}
.x1_c02432{left:113.472000pt;}
.x4_c02432{left:161.466667pt;}
.x5_c02432{left:217.466667pt;}
.x2_c02432{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02433 {
    display:none;
  }
  .loading-indicator_c02433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02433 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02433 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02433" -> "#page-container .classname_c02433")
 */
.pf_c02433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02433 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02433 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02433 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02433 {overflow:visible;}
  }
}
.c_c02433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02433 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02433:after { /* webkit #35443 */
  content: '';
}
.t_c02433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02433 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02433 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02433 { /* info for Javascript */
  display:none;
}
.l_c02433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02433:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02433 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02433.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02433;src:url('chunks/assets/font_102189ec2932551816d6596c.woff2')format("woff");}.ff1_c02433{font-family:ff1_c02433;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02433;src:url('chunks/assets/font_2072f0b7ae7dcd92d0848404.woff2')format("woff");}.ff2_c02433{font-family:ff2_c02433;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:ff3_c02433;src:url('chunks/assets/font_877c9e71a4f255922c8312c5.woff2')format("woff");}.ff3_c02433{font-family:ff3_c02433;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02433{vertical-align:0.000000px;}
.ls0_c02433{letter-spacing:0.000000px;}
.sc__c02433{text-shadow:none;}
.sc0_c02433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02433{-webkit-text-stroke:0px transparent;}
.sc0_c02433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02433{word-spacing:0.000000px;}
._1_c02433{margin-left:-1.152000px;}
._4_c02433{width:1.308024px;}
._b_c02433{width:2.376000px;}
._a_c02433{width:3.456000px;}
._2_c02433{width:5.184000px;}
._3_c02433{width:6.192000px;}
._7_c02433{width:7.200000px;}
._0_c02433{width:9.216000px;}
._8_c02433{width:10.296000px;}
._9_c02433{width:12.011976px;}
._c_c02433{width:13.755649px;}
._d_c02433{width:14.882368px;}
._5_c02433{width:19.800000px;}
._6_c02433{width:20.808000px;}
.fc1_c02433{color:rgb(192,80,77);}
.fc0_c02433{color:rgb(0,0,0);}
.fs0_c02433{font-size:66.240000px;}
.fs1_c02433{font-size:72.000000px;}
.y0_c02433{bottom:0.000000px;}
.y3_c02433{bottom:4.680000px;}
.y2_c02433{bottom:41.796000px;}
.y1_c02433{bottom:75.456000px;}
.y2a_c02433{bottom:149.256000px;}
.y29_c02433{bottom:180.390000px;}
.y28_c02433{bottom:211.350000px;}
.y27_c02433{bottom:242.490000px;}
.y26_c02433{bottom:263.370000px;}
.y25_c02433{bottom:283.575000px;}
.y24_c02433{bottom:302.655000px;}
.y23_c02433{bottom:321.555000px;}
.y22_c02433{bottom:340.455000px;}
.y21_c02433{bottom:359.535000px;}
.y20_c02433{bottom:378.435000px;}
.y1f_c02433{bottom:397.515000px;}
.y1e_c02433{bottom:416.415000px;}
.y1d_c02433{bottom:435.315000px;}
.y1c_c02433{bottom:454.395000px;}
.y1b_c02433{bottom:473.295000px;}
.y1a_c02433{bottom:492.375000px;}
.y19_c02433{bottom:511.275000px;}
.y18_c02433{bottom:530.175000px;}
.y17_c02433{bottom:549.285000px;}
.y16_c02433{bottom:568.185000px;}
.y15_c02433{bottom:587.265000px;}
.y14_c02433{bottom:606.165000px;}
.y13_c02433{bottom:625.065000px;}
.y12_c02433{bottom:644.145000px;}
.y11_c02433{bottom:663.045000px;}
.y10_c02433{bottom:692.745000px;}
.yf_c02433{bottom:723.705000px;}
.ye_c02433{bottom:754.845000px;}
.yd_c02433{bottom:785.805000px;}
.yc_c02433{bottom:816.990000px;}
.yb_c02433{bottom:847.950000px;}
.ya_c02433{bottom:879.090000px;}
.y9_c02433{bottom:910.050000px;}
.y8_c02433{bottom:941.190000px;}
.y7_c02433{bottom:972.150000px;}
.y6_c02433{bottom:1003.290000px;}
.y5_c02433{bottom:1034.250000px;}
.y4_c02433{bottom:1065.420000px;}
.h2_c02433{height:22.500000px;}
.h1_c02433{height:48.871406px;}
.h5_c02433{height:59.383125px;}
.h4_c02433{height:65.010937px;}
.h3_c02433{height:70.664062px;}
.h0_c02433{height:1188.000000px;}
.w1_c02433{width:66.636000px;}
.w0_c02433{width:918.000000px;}
.x0_c02433{left:0.000000px;}
.x3_c02433{left:16.560000px;}
.x1_c02433{left:127.656000px;}
.x4_c02433{left:181.650000px;}
.x5_c02433{left:244.650000px;}
.x2_c02433{left:820.950000px;}
@media print{
.v0_c02433{vertical-align:0.000000pt;}
.ls0_c02433{letter-spacing:0.000000pt;}
.ws0_c02433{word-spacing:0.000000pt;}
._1_c02433{margin-left:-1.024000pt;}
._4_c02433{width:1.162688pt;}
._b_c02433{width:2.112000pt;}
._a_c02433{width:3.072000pt;}
._2_c02433{width:4.608000pt;}
._3_c02433{width:5.504000pt;}
._7_c02433{width:6.400000pt;}
._0_c02433{width:8.192000pt;}
._8_c02433{width:9.152000pt;}
._9_c02433{width:10.677312pt;}
._c_c02433{width:12.227244pt;}
._d_c02433{width:13.228772pt;}
._5_c02433{width:17.600000pt;}
._6_c02433{width:18.496000pt;}
.fs0_c02433{font-size:58.880000pt;}
.fs1_c02433{font-size:64.000000pt;}
.y0_c02433{bottom:0.000000pt;}
.y3_c02433{bottom:4.160000pt;}
.y2_c02433{bottom:37.152000pt;}
.y1_c02433{bottom:67.072000pt;}
.y2a_c02433{bottom:132.672000pt;}
.y29_c02433{bottom:160.346667pt;}
.y28_c02433{bottom:187.866667pt;}
.y27_c02433{bottom:215.546667pt;}
.y26_c02433{bottom:234.106667pt;}
.y25_c02433{bottom:252.066667pt;}
.y24_c02433{bottom:269.026667pt;}
.y23_c02433{bottom:285.826667pt;}
.y22_c02433{bottom:302.626667pt;}
.y21_c02433{bottom:319.586667pt;}
.y20_c02433{bottom:336.386667pt;}
.y1f_c02433{bottom:353.346667pt;}
.y1e_c02433{bottom:370.146667pt;}
.y1d_c02433{bottom:386.946667pt;}
.y1c_c02433{bottom:403.906667pt;}
.y1b_c02433{bottom:420.706667pt;}
.y1a_c02433{bottom:437.666667pt;}
.y19_c02433{bottom:454.466667pt;}
.y18_c02433{bottom:471.266667pt;}
.y17_c02433{bottom:488.253333pt;}
.y16_c02433{bottom:505.053333pt;}
.y15_c02433{bottom:522.013333pt;}
.y14_c02433{bottom:538.813333pt;}
.y13_c02433{bottom:555.613333pt;}
.y12_c02433{bottom:572.573333pt;}
.y11_c02433{bottom:589.373333pt;}
.y10_c02433{bottom:615.773333pt;}
.yf_c02433{bottom:643.293333pt;}
.ye_c02433{bottom:670.973333pt;}
.yd_c02433{bottom:698.493333pt;}
.yc_c02433{bottom:726.213333pt;}
.yb_c02433{bottom:753.733333pt;}
.ya_c02433{bottom:781.413333pt;}
.y9_c02433{bottom:808.933333pt;}
.y8_c02433{bottom:836.613333pt;}
.y7_c02433{bottom:864.133333pt;}
.y6_c02433{bottom:891.813333pt;}
.y5_c02433{bottom:919.333333pt;}
.y4_c02433{bottom:947.040000pt;}
.h2_c02433{height:20.000000pt;}
.h1_c02433{height:43.441250pt;}
.h5_c02433{height:52.785000pt;}
.h4_c02433{height:57.787500pt;}
.h3_c02433{height:62.812500pt;}
.h0_c02433{height:1056.000000pt;}
.w1_c02433{width:59.232000pt;}
.w0_c02433{width:816.000000pt;}
.x0_c02433{left:0.000000pt;}
.x3_c02433{left:14.720000pt;}
.x1_c02433{left:113.472000pt;}
.x4_c02433{left:161.466667pt;}
.x5_c02433{left:217.466667pt;}
.x2_c02433{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02434 {
    display:none;
  }
  .loading-indicator_c02434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02434" -> "#page-container .classname_c02434")
 */
.pf_c02434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02434 {overflow:visible;}
  }
}
.c_c02434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02434:after { /* webkit #35443 */
  content: '';
}
.t_c02434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02434 { /* info for Javascript */
  display:none;
}
.l_c02434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02434:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02434 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02434.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02434;src:url('chunks/assets/font_0225a09a43116cee11a158b8.woff2')format("woff");}.ff1_c02434{font-family:ff1_c02434;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02434;src:url('chunks/assets/font_27b7992d578be649cd79e644.woff2')format("woff");}.ff2_c02434{font-family:ff2_c02434;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:ff3_c02434;src:url('chunks/assets/font_8b9ef7321e0bfbb0b8fecde1.woff2')format("woff");}.ff3_c02434{font-family:ff3_c02434;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02434{vertical-align:0.000000px;}
.ls1_c02434{letter-spacing:-0.612000px;}
.ls0_c02434{letter-spacing:0.000000px;}
.sc__c02434{text-shadow:none;}
.sc0_c02434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02434{-webkit-text-stroke:0px transparent;}
.sc0_c02434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02434{word-spacing:0.000000px;}
._0_c02434{margin-left:-1.008000px;}
._1_c02434{width:1.080000px;}
._2_c02434{width:2.451012px;}
._3_c02434{width:3.757954px;}
._4_c02434{width:5.165493px;}
._5_c02434{width:6.297601px;}
._8_c02434{width:7.882759px;}
._7_c02434{width:9.008441px;}
._10_c02434{width:10.033517px;}
._c_c02434{width:11.062212px;}
._d_c02434{width:12.097886px;}
._a_c02434{width:13.557419px;}
._9_c02434{width:14.638841px;}
._6_c02434{width:17.745725px;}
._b_c02434{width:19.613900px;}
._f_c02434{width:23.979012px;}
._e_c02434{width:25.053054px;}
._11_c02434{width:35.784000px;}
.fc1_c02434{color:rgb(192,80,77);}
.fc0_c02434{color:rgb(0,0,0);}
.fs0_c02434{font-size:66.240000px;}
.fs1_c02434{font-size:72.000000px;}
.y0_c02434{bottom:0.000000px;}
.y3_c02434{bottom:4.680000px;}
.y2_c02434{bottom:41.796000px;}
.y1_c02434{bottom:75.456000px;}
.y31_c02434{bottom:128.376000px;}
.y30_c02434{bottom:147.276000px;}
.y2f_c02434{bottom:166.350000px;}
.y2e_c02434{bottom:185.250000px;}
.y2d_c02434{bottom:204.150000px;}
.y2c_c02434{bottom:233.850000px;}
.y2b_c02434{bottom:264.810000px;}
.y2a_c02434{bottom:295.995000px;}
.y29_c02434{bottom:326.955000px;}
.y28_c02434{bottom:347.475000px;}
.y27_c02434{bottom:366.375000px;}
.y26_c02434{bottom:385.275000px;}
.y25_c02434{bottom:404.355000px;}
.y24_c02434{bottom:423.255000px;}
.y23_c02434{bottom:442.335000px;}
.y22_c02434{bottom:461.235000px;}
.y21_c02434{bottom:480.315000px;}
.y20_c02434{bottom:499.215000px;}
.y1f_c02434{bottom:518.115000px;}
.y1e_c02434{bottom:537.225000px;}
.y1d_c02434{bottom:556.125000px;}
.y1c_c02434{bottom:575.205000px;}
.y1b_c02434{bottom:594.105000px;}
.y1a_c02434{bottom:613.005000px;}
.y19_c02434{bottom:632.085000px;}
.y18_c02434{bottom:650.985000px;}
.y17_c02434{bottom:670.065000px;}
.y16_c02434{bottom:688.965000px;}
.y15_c02434{bottom:707.865000px;}
.y14_c02434{bottom:726.945000px;}
.y13_c02434{bottom:745.845000px;}
.y12_c02434{bottom:764.925000px;}
.y11_c02434{bottom:783.825000px;}
.y10_c02434{bottom:802.770000px;}
.yf_c02434{bottom:821.850000px;}
.ye_c02434{bottom:840.750000px;}
.yd_c02434{bottom:859.830000px;}
.yc_c02434{bottom:878.730000px;}
.yb_c02434{bottom:897.630000px;}
.ya_c02434{bottom:916.710000px;}
.y9_c02434{bottom:935.610000px;}
.y8_c02434{bottom:954.690000px;}
.y7_c02434{bottom:973.590000px;}
.y6_c02434{bottom:1003.290000px;}
.y5_c02434{bottom:1034.250000px;}
.y4_c02434{bottom:1065.420000px;}
.h2_c02434{height:22.500000px;}
.h1_c02434{height:48.871406px;}
.h5_c02434{height:59.383125px;}
.h4_c02434{height:65.010937px;}
.h3_c02434{height:70.664062px;}
.h0_c02434{height:1188.000000px;}
.w1_c02434{width:66.636000px;}
.w0_c02434{width:918.000000px;}
.x0_c02434{left:0.000000px;}
.x3_c02434{left:16.560000px;}
.x1_c02434{left:127.656000px;}
.x4_c02434{left:181.650000px;}
.x5_c02434{left:244.650000px;}
.x2_c02434{left:820.950000px;}
@media print{
.v0_c02434{vertical-align:0.000000pt;}
.ls1_c02434{letter-spacing:-0.544000pt;}
.ls0_c02434{letter-spacing:0.000000pt;}
.ws0_c02434{word-spacing:0.000000pt;}
._0_c02434{margin-left:-0.896000pt;}
._1_c02434{width:0.960000pt;}
._2_c02434{width:2.178678pt;}
._3_c02434{width:3.340403pt;}
._4_c02434{width:4.591549pt;}
._5_c02434{width:5.597868pt;}
._8_c02434{width:7.006897pt;}
._7_c02434{width:8.007503pt;}
._10_c02434{width:8.918682pt;}
._c_c02434{width:9.833078pt;}
._d_c02434{width:10.753677pt;}
._a_c02434{width:12.051039pt;}
._9_c02434{width:13.012303pt;}
._6_c02434{width:15.773978pt;}
._b_c02434{width:17.434578pt;}
._f_c02434{width:21.314678pt;}
._e_c02434{width:22.269381pt;}
._11_c02434{width:31.808000pt;}
.fs0_c02434{font-size:58.880000pt;}
.fs1_c02434{font-size:64.000000pt;}
.y0_c02434{bottom:0.000000pt;}
.y3_c02434{bottom:4.160000pt;}
.y2_c02434{bottom:37.152000pt;}
.y1_c02434{bottom:67.072000pt;}
.y31_c02434{bottom:114.112000pt;}
.y30_c02434{bottom:130.912000pt;}
.y2f_c02434{bottom:147.866667pt;}
.y2e_c02434{bottom:164.666667pt;}
.y2d_c02434{bottom:181.466667pt;}
.y2c_c02434{bottom:207.866667pt;}
.y2b_c02434{bottom:235.386667pt;}
.y2a_c02434{bottom:263.106667pt;}
.y29_c02434{bottom:290.626667pt;}
.y28_c02434{bottom:308.866667pt;}
.y27_c02434{bottom:325.666667pt;}
.y26_c02434{bottom:342.466667pt;}
.y25_c02434{bottom:359.426667pt;}
.y24_c02434{bottom:376.226667pt;}
.y23_c02434{bottom:393.186667pt;}
.y22_c02434{bottom:409.986667pt;}
.y21_c02434{bottom:426.946667pt;}
.y20_c02434{bottom:443.746667pt;}
.y1f_c02434{bottom:460.546667pt;}
.y1e_c02434{bottom:477.533333pt;}
.y1d_c02434{bottom:494.333333pt;}
.y1c_c02434{bottom:511.293333pt;}
.y1b_c02434{bottom:528.093333pt;}
.y1a_c02434{bottom:544.893333pt;}
.y19_c02434{bottom:561.853333pt;}
.y18_c02434{bottom:578.653333pt;}
.y17_c02434{bottom:595.613333pt;}
.y16_c02434{bottom:612.413333pt;}
.y15_c02434{bottom:629.213333pt;}
.y14_c02434{bottom:646.173333pt;}
.y13_c02434{bottom:662.973333pt;}
.y12_c02434{bottom:679.933333pt;}
.y11_c02434{bottom:696.733333pt;}
.y10_c02434{bottom:713.573333pt;}
.yf_c02434{bottom:730.533333pt;}
.ye_c02434{bottom:747.333333pt;}
.yd_c02434{bottom:764.293333pt;}
.yc_c02434{bottom:781.093333pt;}
.yb_c02434{bottom:797.893333pt;}
.ya_c02434{bottom:814.853333pt;}
.y9_c02434{bottom:831.653333pt;}
.y8_c02434{bottom:848.613333pt;}
.y7_c02434{bottom:865.413333pt;}
.y6_c02434{bottom:891.813333pt;}
.y5_c02434{bottom:919.333333pt;}
.y4_c02434{bottom:947.040000pt;}
.h2_c02434{height:20.000000pt;}
.h1_c02434{height:43.441250pt;}
.h5_c02434{height:52.785000pt;}
.h4_c02434{height:57.787500pt;}
.h3_c02434{height:62.812500pt;}
.h0_c02434{height:1056.000000pt;}
.w1_c02434{width:59.232000pt;}
.w0_c02434{width:816.000000pt;}
.x0_c02434{left:0.000000pt;}
.x3_c02434{left:14.720000pt;}
.x1_c02434{left:113.472000pt;}
.x4_c02434{left:161.466667pt;}
.x5_c02434{left:217.466667pt;}
.x2_c02434{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02435 {
    display:none;
  }
  .loading-indicator_c02435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02435" -> "#page-container .classname_c02435")
 */
.pf_c02435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02435 {overflow:visible;}
  }
}
.c_c02435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02435:after { /* webkit #35443 */
  content: '';
}
.t_c02435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02435 { /* info for Javascript */
  display:none;
}
.l_c02435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02435:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02435 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02435.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02435;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02435{font-family:ff1_c02435;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02435;src:url('chunks/assets/font_e8f956ca3a0f92b0d34f4e4a.woff2')format("woff");}.ff2_c02435{font-family:ff2_c02435;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:ff3_c02435;src:url('chunks/assets/font_a0d828e3ae50ec87edf64f53.woff2')format("woff");}.ff3_c02435{font-family:ff3_c02435;line-height:1.112305;font-style:normal;font-weight: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_c02435;src:url('chunks/assets/font_d3b0c53a88d956cfb74b7256.woff2')format("woff");}.ff4_c02435{font-family:ff4_c02435;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02435{vertical-align:0.000000px;}
.ls1_c02435{letter-spacing:0.000000px;}
.ls0_c02435{letter-spacing:13.080000px;}
.sc__c02435{text-shadow:none;}
.sc0_c02435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02435{-webkit-text-stroke:0px transparent;}
.sc0_c02435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02435{word-spacing:0.000000px;}
._9_c02435{margin-left:-2.200228px;}
._1_c02435{margin-left:-1.177813px;}
._3_c02435{width:1.087396px;}
._c_c02435{width:3.384000px;}
._2_c02435{width:4.768286px;}
._0_c02435{width:6.226759px;}
._8_c02435{width:7.867855px;}
._5_c02435{width:10.068612px;}
._a_c02435{width:11.232000px;}
._b_c02435{width:13.057813px;}
._d_c02435{width:16.488000px;}
._4_c02435{width:19.739388px;}
._e_c02435{width:20.922178px;}
._f_c02435{width:21.947645px;}
._7_c02435{width:23.163267px;}
._6_c02435{width:24.508800px;}
.fc1_c02435{color:rgb(192,80,77);}
.fc2_c02435{color:rgb(17,17,17);}
.fc0_c02435{color:rgb(0,0,0);}
.fs0_c02435{font-size:66.240000px;}
.fs1_c02435{font-size:72.000000px;}
.y0_c02435{bottom:0.000000px;}
.y3_c02435{bottom:4.680000px;}
.y2_c02435{bottom:41.796000px;}
.y1_c02435{bottom:75.456000px;}
.y20_c02435{bottom:341.895000px;}
.y1f_c02435{bottom:373.035000px;}
.y1e_c02435{bottom:403.995000px;}
.y1d_c02435{bottom:435.135000px;}
.y1c_c02435{bottom:466.095000px;}
.y1b_c02435{bottom:497.235000px;}
.y1a_c02435{bottom:528.195000px;}
.y19_c02435{bottom:559.365000px;}
.y18_c02435{bottom:590.325000px;}
.y17_c02435{bottom:621.465000px;}
.y16_c02435{bottom:652.425000px;}
.y15_c02435{bottom:683.565000px;}
.y14_c02435{bottom:714.525000px;}
.y13_c02435{bottom:745.485000px;}
.y12_c02435{bottom:776.625000px;}
.y11_c02435{bottom:797.550000px;}
.y10_c02435{bottom:835.350000px;}
.yf_c02435{bottom:854.610000px;}
.ye_c02435{bottom:873.510000px;}
.yd_c02435{bottom:892.590000px;}
.yc_c02435{bottom:911.490000px;}
.yb_c02435{bottom:930.570000px;}
.ya_c02435{bottom:950.010000px;}
.y9_c02435{bottom:970.170000px;}
.y8_c02435{bottom:989.070000px;}
.y7_c02435{bottom:1008.510000px;}
.y6_c02435{bottom:1028.850000px;}
.y5_c02435{bottom:1047.750000px;}
.y4_c02435{bottom:1066.860000px;}
.h2_c02435{height:22.500000px;}
.h1_c02435{height:48.871406px;}
.h5_c02435{height:59.383125px;}
.h3_c02435{height:65.010937px;}
.h6_c02435{height:68.084282px;}
.h4_c02435{height:70.664062px;}
.h7_c02435{height:74.004654px;}
.h0_c02435{height:1188.000000px;}
.w1_c02435{width:66.636000px;}
.w0_c02435{width:918.000000px;}
.x0_c02435{left:0.000000px;}
.x3_c02435{left:16.560000px;}
.x1_c02435{left:127.656000px;}
.x6_c02435{left:131.976000px;}
.x8_c02435{left:181.650000px;}
.x7_c02435{left:185.970000px;}
.x5_c02435{left:187.050000px;}
.x4_c02435{left:244.650000px;}
.x2_c02435{left:820.950000px;}
@media print{
.v0_c02435{vertical-align:0.000000pt;}
.ls1_c02435{letter-spacing:0.000000pt;}
.ls0_c02435{letter-spacing:11.626667pt;}
.ws0_c02435{word-spacing:0.000000pt;}
._9_c02435{margin-left:-1.955758pt;}
._1_c02435{margin-left:-1.046945pt;}
._3_c02435{width:0.966574pt;}
._c_c02435{width:3.008000pt;}
._2_c02435{width:4.238477pt;}
._0_c02435{width:5.534897pt;}
._8_c02435{width:6.993649pt;}
._5_c02435{width:8.949878pt;}
._a_c02435{width:9.984000pt;}
._b_c02435{width:11.606945pt;}
._d_c02435{width:14.656000pt;}
._4_c02435{width:17.546122pt;}
._e_c02435{width:18.597491pt;}
._f_c02435{width:19.509018pt;}
._7_c02435{width:20.589571pt;}
._6_c02435{width:21.785600pt;}
.fs0_c02435{font-size:58.880000pt;}
.fs1_c02435{font-size:64.000000pt;}
.y0_c02435{bottom:0.000000pt;}
.y3_c02435{bottom:4.160000pt;}
.y2_c02435{bottom:37.152000pt;}
.y1_c02435{bottom:67.072000pt;}
.y20_c02435{bottom:303.906667pt;}
.y1f_c02435{bottom:331.586667pt;}
.y1e_c02435{bottom:359.106667pt;}
.y1d_c02435{bottom:386.786667pt;}
.y1c_c02435{bottom:414.306667pt;}
.y1b_c02435{bottom:441.986667pt;}
.y1a_c02435{bottom:469.506667pt;}
.y19_c02435{bottom:497.213333pt;}
.y18_c02435{bottom:524.733333pt;}
.y17_c02435{bottom:552.413333pt;}
.y16_c02435{bottom:579.933333pt;}
.y15_c02435{bottom:607.613333pt;}
.y14_c02435{bottom:635.133333pt;}
.y13_c02435{bottom:662.653333pt;}
.y12_c02435{bottom:690.333333pt;}
.y11_c02435{bottom:708.933333pt;}
.y10_c02435{bottom:742.533333pt;}
.yf_c02435{bottom:759.653333pt;}
.ye_c02435{bottom:776.453333pt;}
.yd_c02435{bottom:793.413333pt;}
.yc_c02435{bottom:810.213333pt;}
.yb_c02435{bottom:827.173333pt;}
.ya_c02435{bottom:844.453333pt;}
.y9_c02435{bottom:862.373333pt;}
.y8_c02435{bottom:879.173333pt;}
.y7_c02435{bottom:896.453333pt;}
.y6_c02435{bottom:914.533333pt;}
.y5_c02435{bottom:931.333333pt;}
.y4_c02435{bottom:948.320000pt;}
.h2_c02435{height:20.000000pt;}
.h1_c02435{height:43.441250pt;}
.h5_c02435{height:52.785000pt;}
.h3_c02435{height:57.787500pt;}
.h6_c02435{height:60.519362pt;}
.h4_c02435{height:62.812500pt;}
.h7_c02435{height:65.781915pt;}
.h0_c02435{height:1056.000000pt;}
.w1_c02435{width:59.232000pt;}
.w0_c02435{width:816.000000pt;}
.x0_c02435{left:0.000000pt;}
.x3_c02435{left:14.720000pt;}
.x1_c02435{left:113.472000pt;}
.x6_c02435{left:117.312000pt;}
.x8_c02435{left:161.466667pt;}
.x7_c02435{left:165.306667pt;}
.x5_c02435{left:166.266667pt;}
.x4_c02435{left:217.466667pt;}
.x2_c02435{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02436 {
    display:none;
  }
  .loading-indicator_c02436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02436 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02436 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02436" -> "#page-container .classname_c02436")
 */
.pf_c02436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02436 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02436 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02436 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02436 {overflow:visible;}
  }
}
.c_c02436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02436 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02436:after { /* webkit #35443 */
  content: '';
}
.t_c02436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02436 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02436 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02436 { /* info for Javascript */
  display:none;
}
.l_c02436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02436:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02436 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02436.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02436;src:url('chunks/assets/font_c18c51e7adef585a198451c0.woff2')format("woff");}.ff1_c02436{font-family:ff1_c02436;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02436;src:url('chunks/assets/font_b88027c22dabab018eb70489.woff2')format("woff");}.ff2_c02436{font-family:ff2_c02436;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:ff3_c02436;src:url('chunks/assets/font_466ffc035f902f904cdf8775.woff2')format("woff");}.ff3_c02436{font-family:ff3_c02436;line-height:1.284180;font-style:normal;font-weight: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_c02436;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02436{font-family:ff4_c02436;line-height:1.311035;font-style:normal;font-weight: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_c02436;src:url('chunks/assets/font_ebeabdbe34d2e39b0933903a.woff2')format("woff");}.ff5_c02436{font-family:ff5_c02436;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02436{vertical-align:0.000000px;}
.ls0_c02436{letter-spacing:0.000000px;}
.sc__c02436{text-shadow:none;}
.sc0_c02436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02436{-webkit-text-stroke:0px transparent;}
.sc0_c02436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02436{word-spacing:-16.560000px;}
.ws1_c02436{word-spacing:0.000000px;}
._1_c02436{margin-left:-1.060171px;}
._5_c02436{width:1.126676px;}
._2_c02436{width:3.100164px;}
._0_c02436{width:4.239625px;}
._9_c02436{width:5.552375px;}
._d_c02436{width:6.735724px;}
._8_c02436{width:7.800745px;}
._4_c02436{width:9.140988px;}
._3_c02436{width:10.399812px;}
._a_c02436{width:12.024000px;}
._b_c02436{width:13.356000px;}
._f_c02436{width:14.605324px;}
._10_c02436{width:18.348612px;}
._c_c02436{width:21.096000px;}
._e_c02436{width:22.860000px;}
._7_c02436{width:50.872784px;}
._6_c02436{width:52.726841px;}
.fc1_c02436{color:rgb(192,80,77);}
.fc0_c02436{color:rgb(0,0,0);}
.fs0_c02436{font-size:66.240000px;}
.fs1_c02436{font-size:72.000000px;}
.y0_c02436{bottom:0.000000px;}
.y3_c02436{bottom:4.680000px;}
.y2_c02436{bottom:41.796000px;}
.y1_c02436{bottom:75.456000px;}
.y28_c02436{bottom:120.636000px;}
.y27_c02436{bottom:139.536000px;}
.y26_c02436{bottom:158.430000px;}
.y25_c02436{bottom:177.510000px;}
.y24_c02436{bottom:196.410000px;}
.y23_c02436{bottom:215.490000px;}
.y22_c02436{bottom:245.010000px;}
.y21_c02436{bottom:276.195000px;}
.y20_c02436{bottom:307.155000px;}
.y1f_c02436{bottom:338.295000px;}
.y1e_c02436{bottom:369.255000px;}
.y1d_c02436{bottom:400.395000px;}
.y1c_c02436{bottom:431.355000px;}
.y1b_c02436{bottom:462.315000px;}
.y1a_c02436{bottom:493.455000px;}
.y19_c02436{bottom:524.415000px;}
.y18_c02436{bottom:555.585000px;}
.y17_c02436{bottom:586.545000px;}
.y16_c02436{bottom:617.685000px;}
.y15_c02436{bottom:648.645000px;}
.y14_c02436{bottom:679.785000px;}
.y13_c02436{bottom:710.745000px;}
.y12_c02436{bottom:741.885000px;}
.y11_c02436{bottom:772.845000px;}
.y10_c02436{bottom:804.030000px;}
.yf_c02436{bottom:834.990000px;}
.ye_c02436{bottom:866.130000px;}
.yd_c02436{bottom:896.010000px;}
.yc_c02436{bottom:914.910000px;}
.yb_c02436{bottom:933.990000px;}
.ya_c02436{bottom:952.890000px;}
.y9_c02436{bottom:971.970000px;}
.y8_c02436{bottom:990.870000px;}
.y7_c02436{bottom:1009.770000px;}
.y6_c02436{bottom:1028.850000px;}
.y5_c02436{bottom:1047.750000px;}
.y4_c02436{bottom:1066.860000px;}
.h2_c02436{height:22.500000px;}
.h1_c02436{height:48.871406px;}
.h3_c02436{height:65.010937px;}
.h4_c02436{height:66.757500px;}
.h5_c02436{height:70.664062px;}
.h0_c02436{height:1188.000000px;}
.w1_c02436{width:66.636000px;}
.w0_c02436{width:918.000000px;}
.x0_c02436{left:0.000000px;}
.x3_c02436{left:16.560000px;}
.x1_c02436{left:127.656000px;}
.x5_c02436{left:181.650000px;}
.x4_c02436{left:244.650000px;}
.x2_c02436{left:820.950000px;}
@media print{
.v0_c02436{vertical-align:0.000000pt;}
.ls0_c02436{letter-spacing:0.000000pt;}
.ws0_c02436{word-spacing:-14.720000pt;}
.ws1_c02436{word-spacing:0.000000pt;}
._1_c02436{margin-left:-0.942374pt;}
._5_c02436{width:1.001490pt;}
._2_c02436{width:2.755702pt;}
._0_c02436{width:3.768556pt;}
._9_c02436{width:4.935444pt;}
._d_c02436{width:5.987310pt;}
._8_c02436{width:6.933996pt;}
._4_c02436{width:8.125322pt;}
._3_c02436{width:9.244278pt;}
._a_c02436{width:10.688000pt;}
._b_c02436{width:11.872000pt;}
._f_c02436{width:12.982510pt;}
._10_c02436{width:16.309878pt;}
._c_c02436{width:18.752000pt;}
._e_c02436{width:20.320000pt;}
._7_c02436{width:45.220252pt;}
._6_c02436{width:46.868303pt;}
.fs0_c02436{font-size:58.880000pt;}
.fs1_c02436{font-size:64.000000pt;}
.y0_c02436{bottom:0.000000pt;}
.y3_c02436{bottom:4.160000pt;}
.y2_c02436{bottom:37.152000pt;}
.y1_c02436{bottom:67.072000pt;}
.y28_c02436{bottom:107.232000pt;}
.y27_c02436{bottom:124.032000pt;}
.y26_c02436{bottom:140.826667pt;}
.y25_c02436{bottom:157.786667pt;}
.y24_c02436{bottom:174.586667pt;}
.y23_c02436{bottom:191.546667pt;}
.y22_c02436{bottom:217.786667pt;}
.y21_c02436{bottom:245.506667pt;}
.y20_c02436{bottom:273.026667pt;}
.y1f_c02436{bottom:300.706667pt;}
.y1e_c02436{bottom:328.226667pt;}
.y1d_c02436{bottom:355.906667pt;}
.y1c_c02436{bottom:383.426667pt;}
.y1b_c02436{bottom:410.946667pt;}
.y1a_c02436{bottom:438.626667pt;}
.y19_c02436{bottom:466.146667pt;}
.y18_c02436{bottom:493.853333pt;}
.y17_c02436{bottom:521.373333pt;}
.y16_c02436{bottom:549.053333pt;}
.y15_c02436{bottom:576.573333pt;}
.y14_c02436{bottom:604.253333pt;}
.y13_c02436{bottom:631.773333pt;}
.y12_c02436{bottom:659.453333pt;}
.y11_c02436{bottom:686.973333pt;}
.y10_c02436{bottom:714.693333pt;}
.yf_c02436{bottom:742.213333pt;}
.ye_c02436{bottom:769.893333pt;}
.yd_c02436{bottom:796.453333pt;}
.yc_c02436{bottom:813.253333pt;}
.yb_c02436{bottom:830.213333pt;}
.ya_c02436{bottom:847.013333pt;}
.y9_c02436{bottom:863.973333pt;}
.y8_c02436{bottom:880.773333pt;}
.y7_c02436{bottom:897.573333pt;}
.y6_c02436{bottom:914.533333pt;}
.y5_c02436{bottom:931.333333pt;}
.y4_c02436{bottom:948.320000pt;}
.h2_c02436{height:20.000000pt;}
.h1_c02436{height:43.441250pt;}
.h3_c02436{height:57.787500pt;}
.h4_c02436{height:59.340000pt;}
.h5_c02436{height:62.812500pt;}
.h0_c02436{height:1056.000000pt;}
.w1_c02436{width:59.232000pt;}
.w0_c02436{width:816.000000pt;}
.x0_c02436{left:0.000000pt;}
.x3_c02436{left:14.720000pt;}
.x1_c02436{left:113.472000pt;}
.x5_c02436{left:161.466667pt;}
.x4_c02436{left:217.466667pt;}
.x2_c02436{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02437 {
    display:none;
  }
  .loading-indicator_c02437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02437" -> "#page-container .classname_c02437")
 */
.pf_c02437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02437 {overflow:visible;}
  }
}
.c_c02437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02437:after { /* webkit #35443 */
  content: '';
}
.t_c02437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02437 { /* info for Javascript */
  display:none;
}
.l_c02437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02437:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02437 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02437.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02437;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02437{font-family:ff1_c02437;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02437;src:url('chunks/assets/font_647b1ad5bfbee7d9fe5cbdb8.woff2')format("woff");}.ff2_c02437{font-family:ff2_c02437;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:ff3_c02437;src:url('chunks/assets/font_365f036dd2e37d73b1f72f00.woff2')format("woff");}.ff3_c02437{font-family:ff3_c02437;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02437{vertical-align:0.000000px;}
.ls0_c02437{letter-spacing:0.000000px;}
.sc__c02437{text-shadow:none;}
.sc0_c02437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02437{-webkit-text-stroke:0px transparent;}
.sc0_c02437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02437{word-spacing:0.000000px;}
._e_c02437{margin-left:-2.589517px;}
._0_c02437{margin-left:-1.258759px;}
._3_c02437{width:1.138268px;}
._4_c02437{width:3.010674px;}
._9_c02437{width:4.474380px;}
._7_c02437{width:5.497788px;}
._8_c02437{width:6.691167px;}
._10_c02437{width:8.068833px;}
._6_c02437{width:9.406279px;}
._5_c02437{width:11.062212px;}
._f_c02437{width:15.735724px;}
._d_c02437{width:16.954759px;}
._c_c02437{width:21.240000px;}
._b_c02437{width:23.250571px;}
._a_c02437{width:24.508800px;}
._2_c02437{width:30.602946px;}
._1_c02437{width:31.729225px;}
.fc1_c02437{color:rgb(192,80,77);}
.fc0_c02437{color:rgb(0,0,0);}
.fs0_c02437{font-size:66.240000px;}
.fs1_c02437{font-size:72.000000px;}
.y0_c02437{bottom:0.000000px;}
.y3_c02437{bottom:4.680000px;}
.y2_c02437{bottom:41.796000px;}
.y1_c02437{bottom:75.456000px;}
.y29_c02437{bottom:125.676000px;}
.y28_c02437{bottom:144.756000px;}
.y27_c02437{bottom:163.650000px;}
.y26_c02437{bottom:182.730000px;}
.y25_c02437{bottom:212.250000px;}
.y24_c02437{bottom:243.390000px;}
.y23_c02437{bottom:274.395000px;}
.y22_c02437{bottom:305.355000px;}
.y21_c02437{bottom:336.495000px;}
.y20_c02437{bottom:367.455000px;}
.y1f_c02437{bottom:398.595000px;}
.y1e_c02437{bottom:429.555000px;}
.y1d_c02437{bottom:460.695000px;}
.y1c_c02437{bottom:491.655000px;}
.y1b_c02437{bottom:522.795000px;}
.y1a_c02437{bottom:553.785000px;}
.y19_c02437{bottom:584.925000px;}
.y18_c02437{bottom:615.885000px;}
.y17_c02437{bottom:647.025000px;}
.y16_c02437{bottom:677.985000px;}
.y15_c02437{bottom:709.125000px;}
.y14_c02437{bottom:740.085000px;}
.y13_c02437{bottom:771.225000px;}
.y12_c02437{bottom:801.150000px;}
.y11_c02437{bottom:820.050000px;}
.y10_c02437{bottom:839.130000px;}
.yf_c02437{bottom:858.030000px;}
.ye_c02437{bottom:877.110000px;}
.yd_c02437{bottom:896.010000px;}
.yc_c02437{bottom:914.910000px;}
.yb_c02437{bottom:933.990000px;}
.ya_c02437{bottom:952.890000px;}
.y9_c02437{bottom:971.970000px;}
.y8_c02437{bottom:990.870000px;}
.y7_c02437{bottom:1009.770000px;}
.y6_c02437{bottom:1028.850000px;}
.y5_c02437{bottom:1047.750000px;}
.y4_c02437{bottom:1066.860000px;}
.h2_c02437{height:22.500000px;}
.h1_c02437{height:48.871406px;}
.h5_c02437{height:64.546875px;}
.h3_c02437{height:65.010937px;}
.h4_c02437{height:70.664062px;}
.h0_c02437{height:1188.000000px;}
.w1_c02437{width:66.636000px;}
.w0_c02437{width:918.000000px;}
.x0_c02437{left:0.000000px;}
.x3_c02437{left:16.560000px;}
.x1_c02437{left:127.656000px;}
.x5_c02437{left:181.650000px;}
.x4_c02437{left:244.650000px;}
.x2_c02437{left:820.950000px;}
@media print{
.v0_c02437{vertical-align:0.000000pt;}
.ls0_c02437{letter-spacing:0.000000pt;}
.ws0_c02437{word-spacing:0.000000pt;}
._e_c02437{margin-left:-2.301793pt;}
._0_c02437{margin-left:-1.118897pt;}
._3_c02437{width:1.011794pt;}
._4_c02437{width:2.676155pt;}
._9_c02437{width:3.977226pt;}
._7_c02437{width:4.886922pt;}
._8_c02437{width:5.947704pt;}
._10_c02437{width:7.172296pt;}
._6_c02437{width:8.361137pt;}
._5_c02437{width:9.833078pt;}
._f_c02437{width:13.987310pt;}
._d_c02437{width:15.070897pt;}
._c_c02437{width:18.880000pt;}
._b_c02437{width:20.667174pt;}
._a_c02437{width:21.785600pt;}
._2_c02437{width:27.202619pt;}
._1_c02437{width:28.203756pt;}
.fs0_c02437{font-size:58.880000pt;}
.fs1_c02437{font-size:64.000000pt;}
.y0_c02437{bottom:0.000000pt;}
.y3_c02437{bottom:4.160000pt;}
.y2_c02437{bottom:37.152000pt;}
.y1_c02437{bottom:67.072000pt;}
.y29_c02437{bottom:111.712000pt;}
.y28_c02437{bottom:128.672000pt;}
.y27_c02437{bottom:145.466667pt;}
.y26_c02437{bottom:162.426667pt;}
.y25_c02437{bottom:188.666667pt;}
.y24_c02437{bottom:216.346667pt;}
.y23_c02437{bottom:243.906667pt;}
.y22_c02437{bottom:271.426667pt;}
.y21_c02437{bottom:299.106667pt;}
.y20_c02437{bottom:326.626667pt;}
.y1f_c02437{bottom:354.306667pt;}
.y1e_c02437{bottom:381.826667pt;}
.y1d_c02437{bottom:409.506667pt;}
.y1c_c02437{bottom:437.026667pt;}
.y1b_c02437{bottom:464.706667pt;}
.y1a_c02437{bottom:492.253333pt;}
.y19_c02437{bottom:519.933333pt;}
.y18_c02437{bottom:547.453333pt;}
.y17_c02437{bottom:575.133333pt;}
.y16_c02437{bottom:602.653333pt;}
.y15_c02437{bottom:630.333333pt;}
.y14_c02437{bottom:657.853333pt;}
.y13_c02437{bottom:685.533333pt;}
.y12_c02437{bottom:712.133333pt;}
.y11_c02437{bottom:728.933333pt;}
.y10_c02437{bottom:745.893333pt;}
.yf_c02437{bottom:762.693333pt;}
.ye_c02437{bottom:779.653333pt;}
.yd_c02437{bottom:796.453333pt;}
.yc_c02437{bottom:813.253333pt;}
.yb_c02437{bottom:830.213333pt;}
.ya_c02437{bottom:847.013333pt;}
.y9_c02437{bottom:863.973333pt;}
.y8_c02437{bottom:880.773333pt;}
.y7_c02437{bottom:897.573333pt;}
.y6_c02437{bottom:914.533333pt;}
.y5_c02437{bottom:931.333333pt;}
.y4_c02437{bottom:948.320000pt;}
.h2_c02437{height:20.000000pt;}
.h1_c02437{height:43.441250pt;}
.h5_c02437{height:57.375000pt;}
.h3_c02437{height:57.787500pt;}
.h4_c02437{height:62.812500pt;}
.h0_c02437{height:1056.000000pt;}
.w1_c02437{width:59.232000pt;}
.w0_c02437{width:816.000000pt;}
.x0_c02437{left:0.000000pt;}
.x3_c02437{left:14.720000pt;}
.x1_c02437{left:113.472000pt;}
.x5_c02437{left:161.466667pt;}
.x4_c02437{left:217.466667pt;}
.x2_c02437{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02438 {
    display:none;
  }
  .loading-indicator_c02438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02438 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02438 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02438" -> "#page-container .classname_c02438")
 */
.pf_c02438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02438 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02438 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02438 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02438 {overflow:visible;}
  }
}
.c_c02438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02438 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02438:after { /* webkit #35443 */
  content: '';
}
.t_c02438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02438 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02438 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02438 { /* info for Javascript */
  display:none;
}
.l_c02438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02438:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02438 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02438.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02438;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02438{font-family:ff1_c02438;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02438;src:url('chunks/assets/font_4eceffe044d43c183145d1f7.woff2')format("woff");}.ff2_c02438{font-family:ff2_c02438;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:ff3_c02438;src:url('chunks/assets/font_bb35cb4a89ad3213231b7eb5.woff2')format("woff");}.ff3_c02438{font-family:ff3_c02438;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02438{vertical-align:0.000000px;}
.ls2_c02438{letter-spacing:-0.612000px;}
.ls3_c02438{letter-spacing:-0.216000px;}
.ls1_c02438{letter-spacing:0.000000px;}
.ls0_c02438{letter-spacing:13.080000px;}
.sc__c02438{text-shadow:none;}
.sc0_c02438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02438{-webkit-text-stroke:0px transparent;}
.sc0_c02438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02438{word-spacing:-17.784000px;}
.ws1_c02438{word-spacing:0.000000px;}
._4_c02438{margin-left:-1.722041px;}
._2_c02438{width:1.060171px;}
._3_c02438{width:2.119349px;}
._c_c02438{width:3.528000px;}
._5_c02438{width:5.564425px;}
._0_c02438{width:7.352441px;}
._1_c02438{width:8.413142px;}
._6_c02438{width:9.936000px;}
._a_c02438{width:14.976000px;}
._b_c02438{width:16.200000px;}
._7_c02438{width:19.296000px;}
._8_c02438{width:36.648000px;}
._9_c02438{width:37.891829px;}
.fc1_c02438{color:rgb(192,80,77);}
.fc2_c02438{color:rgb(17,17,17);}
.fc0_c02438{color:rgb(0,0,0);}
.fs0_c02438{font-size:66.240000px;}
.fs1_c02438{font-size:72.000000px;}
.y0_c02438{bottom:0.000000px;}
.y3_c02438{bottom:4.680000px;}
.y2_c02438{bottom:41.796000px;}
.y1_c02438{bottom:75.456000px;}
.y24_c02438{bottom:165.630000px;}
.y23_c02438{bottom:196.770000px;}
.y22_c02438{bottom:227.730000px;}
.y21_c02438{bottom:258.870000px;}
.y20_c02438{bottom:289.875000px;}
.y1f_c02438{bottom:321.015000px;}
.y1e_c02438{bottom:351.975000px;}
.y1d_c02438{bottom:383.115000px;}
.y1c_c02438{bottom:414.075000px;}
.y1b_c02438{bottom:445.215000px;}
.y1a_c02438{bottom:476.175000px;}
.y19_c02438{bottom:507.315000px;}
.y18_c02438{bottom:538.305000px;}
.y17_c02438{bottom:569.445000px;}
.y16_c02438{bottom:600.405000px;}
.y15_c02438{bottom:621.285000px;}
.y14_c02438{bottom:641.985000px;}
.y13_c02438{bottom:672.945000px;}
.y12_c02438{bottom:703.905000px;}
.y11_c02438{bottom:735.045000px;}
.y10_c02438{bottom:766.005000px;}
.yf_c02438{bottom:797.190000px;}
.ye_c02438{bottom:828.150000px;}
.yd_c02438{bottom:859.110000px;}
.yc_c02438{bottom:890.250000px;}
.yb_c02438{bottom:921.210000px;}
.ya_c02438{bottom:942.090000px;}
.y9_c02438{bottom:971.970000px;}
.y8_c02438{bottom:990.870000px;}
.y7_c02438{bottom:1009.770000px;}
.y6_c02438{bottom:1028.850000px;}
.y5_c02438{bottom:1047.750000px;}
.y4_c02438{bottom:1066.860000px;}
.h2_c02438{height:22.500000px;}
.h1_c02438{height:48.871406px;}
.h3_c02438{height:65.010937px;}
.h4_c02438{height:70.664062px;}
.h5_c02438{height:74.004654px;}
.h0_c02438{height:1188.000000px;}
.w1_c02438{width:66.636000px;}
.w0_c02438{width:918.000000px;}
.x0_c02438{left:0.000000px;}
.x3_c02438{left:16.560000px;}
.x1_c02438{left:127.656000px;}
.x7_c02438{left:131.976000px;}
.x5_c02438{left:181.650000px;}
.x8_c02438{left:185.970000px;}
.x6_c02438{left:187.050000px;}
.x4_c02438{left:244.650000px;}
.x2_c02438{left:820.950000px;}
@media print{
.v0_c02438{vertical-align:0.000000pt;}
.ls2_c02438{letter-spacing:-0.544000pt;}
.ls3_c02438{letter-spacing:-0.192000pt;}
.ls1_c02438{letter-spacing:0.000000pt;}
.ls0_c02438{letter-spacing:11.626667pt;}
.ws0_c02438{word-spacing:-15.808000pt;}
.ws1_c02438{word-spacing:0.000000pt;}
._4_c02438{margin-left:-1.530703pt;}
._2_c02438{width:0.942374pt;}
._3_c02438{width:1.883866pt;}
._c_c02438{width:3.136000pt;}
._5_c02438{width:4.946156pt;}
._0_c02438{width:6.535503pt;}
._1_c02438{width:7.478349pt;}
._6_c02438{width:8.832000pt;}
._a_c02438{width:13.312000pt;}
._b_c02438{width:14.400000pt;}
._7_c02438{width:17.152000pt;}
._8_c02438{width:32.576000pt;}
._9_c02438{width:33.681626pt;}
.fs0_c02438{font-size:58.880000pt;}
.fs1_c02438{font-size:64.000000pt;}
.y0_c02438{bottom:0.000000pt;}
.y3_c02438{bottom:4.160000pt;}
.y2_c02438{bottom:37.152000pt;}
.y1_c02438{bottom:67.072000pt;}
.y24_c02438{bottom:147.226667pt;}
.y23_c02438{bottom:174.906667pt;}
.y22_c02438{bottom:202.426667pt;}
.y21_c02438{bottom:230.106667pt;}
.y20_c02438{bottom:257.666667pt;}
.y1f_c02438{bottom:285.346667pt;}
.y1e_c02438{bottom:312.866667pt;}
.y1d_c02438{bottom:340.546667pt;}
.y1c_c02438{bottom:368.066667pt;}
.y1b_c02438{bottom:395.746667pt;}
.y1a_c02438{bottom:423.266667pt;}
.y19_c02438{bottom:450.946667pt;}
.y18_c02438{bottom:478.493333pt;}
.y17_c02438{bottom:506.173333pt;}
.y16_c02438{bottom:533.693333pt;}
.y15_c02438{bottom:552.253333pt;}
.y14_c02438{bottom:570.653333pt;}
.y13_c02438{bottom:598.173333pt;}
.y12_c02438{bottom:625.693333pt;}
.y11_c02438{bottom:653.373333pt;}
.y10_c02438{bottom:680.893333pt;}
.yf_c02438{bottom:708.613333pt;}
.ye_c02438{bottom:736.133333pt;}
.yd_c02438{bottom:763.653333pt;}
.yc_c02438{bottom:791.333333pt;}
.yb_c02438{bottom:818.853333pt;}
.ya_c02438{bottom:837.413333pt;}
.y9_c02438{bottom:863.973333pt;}
.y8_c02438{bottom:880.773333pt;}
.y7_c02438{bottom:897.573333pt;}
.y6_c02438{bottom:914.533333pt;}
.y5_c02438{bottom:931.333333pt;}
.y4_c02438{bottom:948.320000pt;}
.h2_c02438{height:20.000000pt;}
.h1_c02438{height:43.441250pt;}
.h3_c02438{height:57.787500pt;}
.h4_c02438{height:62.812500pt;}
.h5_c02438{height:65.781915pt;}
.h0_c02438{height:1056.000000pt;}
.w1_c02438{width:59.232000pt;}
.w0_c02438{width:816.000000pt;}
.x0_c02438{left:0.000000pt;}
.x3_c02438{left:14.720000pt;}
.x1_c02438{left:113.472000pt;}
.x7_c02438{left:117.312000pt;}
.x5_c02438{left:161.466667pt;}
.x8_c02438{left:165.306667pt;}
.x6_c02438{left:166.266667pt;}
.x4_c02438{left:217.466667pt;}
.x2_c02438{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02439 {
    display:none;
  }
  .loading-indicator_c02439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02439 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02439 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02439" -> "#page-container .classname_c02439")
 */
.pf_c02439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02439 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02439 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02439 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02439 {overflow:visible;}
  }
}
.c_c02439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02439 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02439:after { /* webkit #35443 */
  content: '';
}
.t_c02439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02439 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02439 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02439 { /* info for Javascript */
  display:none;
}
.l_c02439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02439:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02439 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02439.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02439;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02439{font-family:ff1_c02439;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02439;src:url('chunks/assets/font_10a854974fcf7be9ca23b357.woff2')format("woff");}.ff2_c02439{font-family:ff2_c02439;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:ff3_c02439;src:url('chunks/assets/font_ed32b42c7f52b8f45c2eff7a.woff2')format("woff");}.ff3_c02439{font-family:ff3_c02439;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02439{vertical-align:0.000000px;}
.ls0_c02439{letter-spacing:0.000000px;}
.sc__c02439{text-shadow:none;}
.sc0_c02439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02439{-webkit-text-stroke:0px transparent;}
.sc0_c02439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02439{word-spacing:0.000000px;}
._0_c02439{margin-left:-1.440000px;}
._2_c02439{width:1.260000px;}
._c_c02439{width:3.240000px;}
._1_c02439{width:4.248000px;}
._5_c02439{width:6.192000px;}
._d_c02439{width:9.108000px;}
._8_c02439{width:10.476000px;}
._9_c02439{width:11.700000px;}
._e_c02439{width:14.256000px;}
._6_c02439{width:15.840000px;}
._7_c02439{width:16.848000px;}
._a_c02439{width:19.944000px;}
._b_c02439{width:21.096000px;}
._3_c02439{width:22.824000px;}
._4_c02439{width:23.904000px;}
._12_c02439{width:26.514207px;}
._11_c02439{width:27.803388px;}
._10_c02439{width:38.835112px;}
._f_c02439{width:39.925308px;}
.fc1_c02439{color:rgb(192,80,77);}
.fc0_c02439{color:rgb(0,0,0);}
.fs0_c02439{font-size:66.240000px;}
.fs1_c02439{font-size:72.000000px;}
.y0_c02439{bottom:0.000000px;}
.y3_c02439{bottom:4.680000px;}
.y2_c02439{bottom:41.796000px;}
.y1_c02439{bottom:75.456000px;}
.y29_c02439{bottom:123.156000px;}
.y28_c02439{bottom:142.056000px;}
.y27_c02439{bottom:161.130000px;}
.y26_c02439{bottom:180.030000px;}
.y25_c02439{bottom:199.110000px;}
.y24_c02439{bottom:218.010000px;}
.y23_c02439{bottom:236.910000px;}
.y22_c02439{bottom:255.990000px;}
.y21_c02439{bottom:274.935000px;}
.y20_c02439{bottom:294.015000px;}
.y1f_c02439{bottom:312.915000px;}
.y1e_c02439{bottom:331.815000px;}
.y1d_c02439{bottom:350.895000px;}
.y1c_c02439{bottom:369.795000px;}
.y1b_c02439{bottom:388.875000px;}
.y1a_c02439{bottom:407.775000px;}
.y19_c02439{bottom:426.675000px;}
.y18_c02439{bottom:445.755000px;}
.y17_c02439{bottom:475.275000px;}
.y16_c02439{bottom:506.415000px;}
.y15_c02439{bottom:537.405000px;}
.y14_c02439{bottom:568.545000px;}
.y13_c02439{bottom:599.505000px;}
.y12_c02439{bottom:630.645000px;}
.y11_c02439{bottom:661.605000px;}
.y10_c02439{bottom:692.745000px;}
.yf_c02439{bottom:723.705000px;}
.ye_c02439{bottom:754.845000px;}
.yd_c02439{bottom:785.805000px;}
.yc_c02439{bottom:816.990000px;}
.yb_c02439{bottom:847.950000px;}
.ya_c02439{bottom:879.090000px;}
.y9_c02439{bottom:910.050000px;}
.y8_c02439{bottom:941.190000px;}
.y7_c02439{bottom:972.150000px;}
.y6_c02439{bottom:1003.290000px;}
.y5_c02439{bottom:1034.250000px;}
.y4_c02439{bottom:1065.420000px;}
.h2_c02439{height:22.500000px;}
.h1_c02439{height:48.871406px;}
.h6_c02439{height:59.383125px;}
.h4_c02439{height:64.546875px;}
.h5_c02439{height:65.010937px;}
.h3_c02439{height:70.664062px;}
.h0_c02439{height:1188.000000px;}
.w1_c02439{width:66.636000px;}
.w0_c02439{width:918.000000px;}
.x0_c02439{left:0.000000px;}
.x3_c02439{left:16.560000px;}
.x1_c02439{left:127.656000px;}
.x4_c02439{left:181.650000px;}
.x5_c02439{left:244.650000px;}
.x2_c02439{left:820.950000px;}
@media print{
.v0_c02439{vertical-align:0.000000pt;}
.ls0_c02439{letter-spacing:0.000000pt;}
.ws0_c02439{word-spacing:0.000000pt;}
._0_c02439{margin-left:-1.280000pt;}
._2_c02439{width:1.120000pt;}
._c_c02439{width:2.880000pt;}
._1_c02439{width:3.776000pt;}
._5_c02439{width:5.504000pt;}
._d_c02439{width:8.096000pt;}
._8_c02439{width:9.312000pt;}
._9_c02439{width:10.400000pt;}
._e_c02439{width:12.672000pt;}
._6_c02439{width:14.080000pt;}
._7_c02439{width:14.976000pt;}
._a_c02439{width:17.728000pt;}
._b_c02439{width:18.752000pt;}
._3_c02439{width:20.288000pt;}
._4_c02439{width:21.248000pt;}
._12_c02439{width:23.568184pt;}
._11_c02439{width:24.714122pt;}
._10_c02439{width:34.520100pt;}
._f_c02439{width:35.489162pt;}
.fs0_c02439{font-size:58.880000pt;}
.fs1_c02439{font-size:64.000000pt;}
.y0_c02439{bottom:0.000000pt;}
.y3_c02439{bottom:4.160000pt;}
.y2_c02439{bottom:37.152000pt;}
.y1_c02439{bottom:67.072000pt;}
.y29_c02439{bottom:109.472000pt;}
.y28_c02439{bottom:126.272000pt;}
.y27_c02439{bottom:143.226667pt;}
.y26_c02439{bottom:160.026667pt;}
.y25_c02439{bottom:176.986667pt;}
.y24_c02439{bottom:193.786667pt;}
.y23_c02439{bottom:210.586667pt;}
.y22_c02439{bottom:227.546667pt;}
.y21_c02439{bottom:244.386667pt;}
.y20_c02439{bottom:261.346667pt;}
.y1f_c02439{bottom:278.146667pt;}
.y1e_c02439{bottom:294.946667pt;}
.y1d_c02439{bottom:311.906667pt;}
.y1c_c02439{bottom:328.706667pt;}
.y1b_c02439{bottom:345.666667pt;}
.y1a_c02439{bottom:362.466667pt;}
.y19_c02439{bottom:379.266667pt;}
.y18_c02439{bottom:396.226667pt;}
.y17_c02439{bottom:422.466667pt;}
.y16_c02439{bottom:450.146667pt;}
.y15_c02439{bottom:477.693333pt;}
.y14_c02439{bottom:505.373333pt;}
.y13_c02439{bottom:532.893333pt;}
.y12_c02439{bottom:560.573333pt;}
.y11_c02439{bottom:588.093333pt;}
.y10_c02439{bottom:615.773333pt;}
.yf_c02439{bottom:643.293333pt;}
.ye_c02439{bottom:670.973333pt;}
.yd_c02439{bottom:698.493333pt;}
.yc_c02439{bottom:726.213333pt;}
.yb_c02439{bottom:753.733333pt;}
.ya_c02439{bottom:781.413333pt;}
.y9_c02439{bottom:808.933333pt;}
.y8_c02439{bottom:836.613333pt;}
.y7_c02439{bottom:864.133333pt;}
.y6_c02439{bottom:891.813333pt;}
.y5_c02439{bottom:919.333333pt;}
.y4_c02439{bottom:947.040000pt;}
.h2_c02439{height:20.000000pt;}
.h1_c02439{height:43.441250pt;}
.h6_c02439{height:52.785000pt;}
.h4_c02439{height:57.375000pt;}
.h5_c02439{height:57.787500pt;}
.h3_c02439{height:62.812500pt;}
.h0_c02439{height:1056.000000pt;}
.w1_c02439{width:59.232000pt;}
.w0_c02439{width:816.000000pt;}
.x0_c02439{left:0.000000pt;}
.x3_c02439{left:14.720000pt;}
.x1_c02439{left:113.472000pt;}
.x4_c02439{left:161.466667pt;}
.x5_c02439{left:217.466667pt;}
.x2_c02439{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02440 {
    display:none;
  }
  .loading-indicator_c02440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02440 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02440 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02440" -> "#page-container .classname_c02440")
 */
.pf_c02440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02440 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02440 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02440 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02440 {overflow:visible;}
  }
}
.c_c02440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02440 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02440:after { /* webkit #35443 */
  content: '';
}
.t_c02440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02440 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02440 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02440 { /* info for Javascript */
  display:none;
}
.l_c02440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02440:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02440 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02440.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02440;src:url('chunks/assets/font_d2f60a5a5c40aedb9d7b2974.woff2')format("woff");}.ff1_c02440{font-family:ff1_c02440;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02440;src:url('chunks/assets/font_b0241b4572beb5764a2b1e00.woff2')format("woff");}.ff2_c02440{font-family:ff2_c02440;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:ff3_c02440;src:url('chunks/assets/font_8462d5bdb23db64e7ffced68.woff2')format("woff");}.ff3_c02440{font-family:ff3_c02440;line-height:1.112305;font-style:normal;font-weight: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_c02440;src:url('chunks/assets/font_85d3aa0634801ddec68bb4a4.woff2')format("woff");}.ff4_c02440{font-family:ff4_c02440;line-height:1.402354;font-style:normal;font-weight: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_c02440;src:url('chunks/assets/font_60b8537c9dfa25a8d3329bd9.woff2')format("woff");}.ff5_c02440{font-family:ff5_c02440;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02440{vertical-align:0.000000px;}
.ls1_c02440{letter-spacing:0.000000px;}
.ls0_c02440{letter-spacing:13.080000px;}
.sc__c02440{text-shadow:none;}
.sc0_c02440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02440{-webkit-text-stroke:0px transparent;}
.sc0_c02440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02440{word-spacing:-18.000000px;}
.ws1_c02440{word-spacing:0.000000px;}
._0_c02440{margin-left:-1.192254px;}
._3_c02440{width:1.920099px;}
._2_c02440{width:3.113479px;}
._6_c02440{width:4.305534px;}
._7_c02440{width:5.828988px;}
._1_c02440{width:7.153788px;}
._4_c02440{width:8.942400px;}
._5_c02440{width:10.068612px;}
._b_c02440{width:12.254400px;}
._12_c02440{width:14.832000px;}
._13_c02440{width:16.056000px;}
._8_c02440{width:22.190466px;}
._a_c02440{width:25.039846px;}
._9_c02440{width:26.098229px;}
._10_c02440{width:27.613771px;}
._11_c02440{width:28.756866px;}
._f_c02440{width:35.173440px;}
._e_c02440{width:36.299454px;}
._d_c02440{width:47.759570px;}
._c_c02440{width:49.083708px;}
.fc1_c02440{color:rgb(192,80,77);}
.fc2_c02440{color:rgb(17,17,17);}
.fc0_c02440{color:rgb(0,0,0);}
.fs0_c02440{font-size:66.240000px;}
.fs1_c02440{font-size:72.000000px;}
.y0_c02440{bottom:0.000000px;}
.y3_c02440{bottom:4.680000px;}
.y2_c02440{bottom:41.796000px;}
.y1_c02440{bottom:75.456000px;}
.y2f_c02440{bottom:123.516000px;}
.y2e_c02440{bottom:154.470000px;}
.y2d_c02440{bottom:185.430000px;}
.y2c_c02440{bottom:216.570000px;}
.y2b_c02440{bottom:247.530000px;}
.y2a_c02440{bottom:278.715000px;}
.y29_c02440{bottom:309.675000px;}
.y28_c02440{bottom:340.815000px;}
.y27_c02440{bottom:371.775000px;}
.y26_c02440{bottom:402.915000px;}
.y25_c02440{bottom:433.875000px;}
.y24_c02440{bottom:454.755000px;}
.y23_c02440{bottom:475.455000px;}
.y22_c02440{bottom:496.155000px;}
.y21_c02440{bottom:516.495000px;}
.y20_c02440{bottom:535.425000px;}
.y1f_c02440{bottom:554.505000px;}
.y1e_c02440{bottom:573.405000px;}
.y1d_c02440{bottom:592.305000px;}
.y1c_c02440{bottom:611.385000px;}
.y1b_c02440{bottom:630.285000px;}
.y1a_c02440{bottom:649.365000px;}
.y19_c02440{bottom:668.265000px;}
.y18_c02440{bottom:687.165000px;}
.y17_c02440{bottom:706.245000px;}
.y16_c02440{bottom:725.145000px;}
.y15_c02440{bottom:744.225000px;}
.y14_c02440{bottom:763.125000px;}
.y13_c02440{bottom:782.025000px;}
.y12_c02440{bottom:801.150000px;}
.y11_c02440{bottom:820.050000px;}
.y10_c02440{bottom:839.130000px;}
.yf_c02440{bottom:858.030000px;}
.ye_c02440{bottom:877.110000px;}
.yd_c02440{bottom:896.010000px;}
.yc_c02440{bottom:914.910000px;}
.yb_c02440{bottom:933.990000px;}
.ya_c02440{bottom:952.890000px;}
.y9_c02440{bottom:971.970000px;}
.y8_c02440{bottom:990.870000px;}
.y7_c02440{bottom:1009.770000px;}
.y6_c02440{bottom:1028.850000px;}
.y5_c02440{bottom:1047.750000px;}
.y4_c02440{bottom:1066.860000px;}
.h2_c02440{height:22.500000px;}
.h1_c02440{height:48.871406px;}
.h3_c02440{height:65.010937px;}
.h4_c02440{height:70.664062px;}
.h5_c02440{height:74.004654px;}
.h0_c02440{height:1188.000000px;}
.w1_c02440{width:66.636000px;}
.w0_c02440{width:918.000000px;}
.x0_c02440{left:0.000000px;}
.x3_c02440{left:16.560000px;}
.x1_c02440{left:127.656000px;}
.x6_c02440{left:131.976000px;}
.x7_c02440{left:181.650000px;}
.x5_c02440{left:187.050000px;}
.x4_c02440{left:244.650000px;}
.x2_c02440{left:820.950000px;}
@media print{
.v0_c02440{vertical-align:0.000000pt;}
.ls1_c02440{letter-spacing:0.000000pt;}
.ls0_c02440{letter-spacing:11.626667pt;}
.ws0_c02440{word-spacing:-16.000000pt;}
.ws1_c02440{word-spacing:0.000000pt;}
._0_c02440{margin-left:-1.059781pt;}
._3_c02440{width:1.706755pt;}
._2_c02440{width:2.767537pt;}
._6_c02440{width:3.827141pt;}
._7_c02440{width:5.181322pt;}
._1_c02440{width:6.358922pt;}
._4_c02440{width:7.948800pt;}
._5_c02440{width:8.949878pt;}
._b_c02440{width:10.892800pt;}
._12_c02440{width:13.184000pt;}
._13_c02440{width:14.272000pt;}
._8_c02440{width:19.724859pt;}
._a_c02440{width:22.257641pt;}
._9_c02440{width:23.198426pt;}
._10_c02440{width:24.545574pt;}
._11_c02440{width:25.561659pt;}
._f_c02440{width:31.265280pt;}
._e_c02440{width:32.266181pt;}
._d_c02440{width:42.452951pt;}
._c_c02440{width:43.629962pt;}
.fs0_c02440{font-size:58.880000pt;}
.fs1_c02440{font-size:64.000000pt;}
.y0_c02440{bottom:0.000000pt;}
.y3_c02440{bottom:4.160000pt;}
.y2_c02440{bottom:37.152000pt;}
.y1_c02440{bottom:67.072000pt;}
.y2f_c02440{bottom:109.792000pt;}
.y2e_c02440{bottom:137.306667pt;}
.y2d_c02440{bottom:164.826667pt;}
.y2c_c02440{bottom:192.506667pt;}
.y2b_c02440{bottom:220.026667pt;}
.y2a_c02440{bottom:247.746667pt;}
.y29_c02440{bottom:275.266667pt;}
.y28_c02440{bottom:302.946667pt;}
.y27_c02440{bottom:330.466667pt;}
.y26_c02440{bottom:358.146667pt;}
.y25_c02440{bottom:385.666667pt;}
.y24_c02440{bottom:404.226667pt;}
.y23_c02440{bottom:422.626667pt;}
.y22_c02440{bottom:441.026667pt;}
.y21_c02440{bottom:459.106667pt;}
.y20_c02440{bottom:475.933333pt;}
.y1f_c02440{bottom:492.893333pt;}
.y1e_c02440{bottom:509.693333pt;}
.y1d_c02440{bottom:526.493333pt;}
.y1c_c02440{bottom:543.453333pt;}
.y1b_c02440{bottom:560.253333pt;}
.y1a_c02440{bottom:577.213333pt;}
.y19_c02440{bottom:594.013333pt;}
.y18_c02440{bottom:610.813333pt;}
.y17_c02440{bottom:627.773333pt;}
.y16_c02440{bottom:644.573333pt;}
.y15_c02440{bottom:661.533333pt;}
.y14_c02440{bottom:678.333333pt;}
.y13_c02440{bottom:695.133333pt;}
.y12_c02440{bottom:712.133333pt;}
.y11_c02440{bottom:728.933333pt;}
.y10_c02440{bottom:745.893333pt;}
.yf_c02440{bottom:762.693333pt;}
.ye_c02440{bottom:779.653333pt;}
.yd_c02440{bottom:796.453333pt;}
.yc_c02440{bottom:813.253333pt;}
.yb_c02440{bottom:830.213333pt;}
.ya_c02440{bottom:847.013333pt;}
.y9_c02440{bottom:863.973333pt;}
.y8_c02440{bottom:880.773333pt;}
.y7_c02440{bottom:897.573333pt;}
.y6_c02440{bottom:914.533333pt;}
.y5_c02440{bottom:931.333333pt;}
.y4_c02440{bottom:948.320000pt;}
.h2_c02440{height:20.000000pt;}
.h1_c02440{height:43.441250pt;}
.h3_c02440{height:57.787500pt;}
.h4_c02440{height:62.812500pt;}
.h5_c02440{height:65.781915pt;}
.h0_c02440{height:1056.000000pt;}
.w1_c02440{width:59.232000pt;}
.w0_c02440{width:816.000000pt;}
.x0_c02440{left:0.000000pt;}
.x3_c02440{left:14.720000pt;}
.x1_c02440{left:113.472000pt;}
.x6_c02440{left:117.312000pt;}
.x7_c02440{left:161.466667pt;}
.x5_c02440{left:166.266667pt;}
.x4_c02440{left:217.466667pt;}
.x2_c02440{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02441 {
    display:none;
  }
  .loading-indicator_c02441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02441 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02441 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02441" -> "#page-container .classname_c02441")
 */
.pf_c02441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02441 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02441 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02441 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02441 {overflow:visible;}
  }
}
.c_c02441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02441 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02441:after { /* webkit #35443 */
  content: '';
}
.t_c02441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02441 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02441 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02441 { /* info for Javascript */
  display:none;
}
.l_c02441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02441:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02441 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02441.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02441;src:url('chunks/assets/font_fbe5004b0fc4e978bb983be9.woff2')format("woff");}.ff1_c02441{font-family:ff1_c02441;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02441;src:url('chunks/assets/font_1d9f85f72d50118e466e5cff.woff2')format("woff");}.ff2_c02441{font-family:ff2_c02441;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:ff3_c02441;src:url('chunks/assets/font_0c565d6dac27a3a35320c60c.woff2')format("woff");}.ff3_c02441{font-family:ff3_c02441;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02441{vertical-align:0.000000px;}
.ls0_c02441{letter-spacing:0.000000px;}
.sc__c02441{text-shadow:none;}
.sc0_c02441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02441{-webkit-text-stroke:0px transparent;}
.sc0_c02441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02441{word-spacing:0.000000px;}
._b_c02441{margin-left:-2.472120px;}
._1_c02441{margin-left:-1.008000px;}
._2_c02441{width:1.920024px;}
._4_c02441{width:3.710442px;}
._c_c02441{width:4.824000px;}
._3_c02441{width:6.552000px;}
._0_c02441{width:8.424000px;}
._7_c02441{width:10.057291px;}
._9_c02441{width:11.128188px;}
._a_c02441{width:12.402075px;}
._6_c02441{width:13.958303px;}
._5_c02441{width:15.169225px;}
._d_c02441{width:17.833291px;}
._8_c02441{width:23.051454px;}
.fc1_c02441{color:rgb(192,80,77);}
.fc0_c02441{color:rgb(0,0,0);}
.fs0_c02441{font-size:66.240000px;}
.fs1_c02441{font-size:72.000000px;}
.y0_c02441{bottom:0.000000px;}
.y3_c02441{bottom:4.680000px;}
.y2_c02441{bottom:41.796000px;}
.y1_c02441{bottom:75.456000px;}
.y2d_c02441{bottom:119.736000px;}
.y2c_c02441{bottom:138.636000px;}
.y2b_c02441{bottom:157.710000px;}
.y2a_c02441{bottom:176.610000px;}
.y29_c02441{bottom:195.510000px;}
.y28_c02441{bottom:214.590000px;}
.y27_c02441{bottom:233.490000px;}
.y26_c02441{bottom:252.570000px;}
.y25_c02441{bottom:271.515000px;}
.y24_c02441{bottom:290.415000px;}
.y23_c02441{bottom:309.495000px;}
.y22_c02441{bottom:328.395000px;}
.y21_c02441{bottom:347.475000px;}
.y20_c02441{bottom:376.995000px;}
.y1f_c02441{bottom:408.135000px;}
.y1e_c02441{bottom:439.095000px;}
.y1d_c02441{bottom:470.235000px;}
.y1c_c02441{bottom:501.195000px;}
.y1b_c02441{bottom:532.335000px;}
.y1a_c02441{bottom:563.325000px;}
.y19_c02441{bottom:583.665000px;}
.y18_c02441{bottom:602.745000px;}
.y17_c02441{bottom:621.645000px;}
.y16_c02441{bottom:640.725000px;}
.y15_c02441{bottom:659.625000px;}
.y14_c02441{bottom:678.705000px;}
.y13_c02441{bottom:697.605000px;}
.y12_c02441{bottom:716.505000px;}
.y11_c02441{bottom:735.585000px;}
.y10_c02441{bottom:754.485000px;}
.yf_c02441{bottom:773.565000px;}
.ye_c02441{bottom:792.465000px;}
.yd_c02441{bottom:811.410000px;}
.yc_c02441{bottom:830.490000px;}
.yb_c02441{bottom:849.390000px;}
.ya_c02441{bottom:879.090000px;}
.y9_c02441{bottom:910.050000px;}
.y8_c02441{bottom:941.190000px;}
.y7_c02441{bottom:972.150000px;}
.y6_c02441{bottom:1003.290000px;}
.y5_c02441{bottom:1034.250000px;}
.y4_c02441{bottom:1065.420000px;}
.h2_c02441{height:22.500000px;}
.h1_c02441{height:48.871406px;}
.h6_c02441{height:59.383125px;}
.h5_c02441{height:64.546875px;}
.h4_c02441{height:65.010937px;}
.h3_c02441{height:70.664062px;}
.h0_c02441{height:1188.000000px;}
.w1_c02441{width:66.636000px;}
.w0_c02441{width:918.000000px;}
.x0_c02441{left:0.000000px;}
.x3_c02441{left:16.560000px;}
.x1_c02441{left:127.656000px;}
.x4_c02441{left:181.650000px;}
.x5_c02441{left:244.650000px;}
.x2_c02441{left:820.950000px;}
@media print{
.v0_c02441{vertical-align:0.000000pt;}
.ls0_c02441{letter-spacing:0.000000pt;}
.ws0_c02441{word-spacing:0.000000pt;}
._b_c02441{margin-left:-2.197440pt;}
._1_c02441{margin-left:-0.896000pt;}
._2_c02441{width:1.706688pt;}
._4_c02441{width:3.298171pt;}
._c_c02441{width:4.288000pt;}
._3_c02441{width:5.824000pt;}
._0_c02441{width:7.488000pt;}
._7_c02441{width:8.939814pt;}
._9_c02441{width:9.891722pt;}
._a_c02441{width:11.024067pt;}
._6_c02441{width:12.407380pt;}
._5_c02441{width:13.483756pt;}
._d_c02441{width:15.851814pt;}
._8_c02441{width:20.490181pt;}
.fs0_c02441{font-size:58.880000pt;}
.fs1_c02441{font-size:64.000000pt;}
.y0_c02441{bottom:0.000000pt;}
.y3_c02441{bottom:4.160000pt;}
.y2_c02441{bottom:37.152000pt;}
.y1_c02441{bottom:67.072000pt;}
.y2d_c02441{bottom:106.432000pt;}
.y2c_c02441{bottom:123.232000pt;}
.y2b_c02441{bottom:140.186667pt;}
.y2a_c02441{bottom:156.986667pt;}
.y29_c02441{bottom:173.786667pt;}
.y28_c02441{bottom:190.746667pt;}
.y27_c02441{bottom:207.546667pt;}
.y26_c02441{bottom:224.506667pt;}
.y25_c02441{bottom:241.346667pt;}
.y24_c02441{bottom:258.146667pt;}
.y23_c02441{bottom:275.106667pt;}
.y22_c02441{bottom:291.906667pt;}
.y21_c02441{bottom:308.866667pt;}
.y20_c02441{bottom:335.106667pt;}
.y1f_c02441{bottom:362.786667pt;}
.y1e_c02441{bottom:390.306667pt;}
.y1d_c02441{bottom:417.986667pt;}
.y1c_c02441{bottom:445.506667pt;}
.y1b_c02441{bottom:473.186667pt;}
.y1a_c02441{bottom:500.733333pt;}
.y19_c02441{bottom:518.813333pt;}
.y18_c02441{bottom:535.773333pt;}
.y17_c02441{bottom:552.573333pt;}
.y16_c02441{bottom:569.533333pt;}
.y15_c02441{bottom:586.333333pt;}
.y14_c02441{bottom:603.293333pt;}
.y13_c02441{bottom:620.093333pt;}
.y12_c02441{bottom:636.893333pt;}
.y11_c02441{bottom:653.853333pt;}
.y10_c02441{bottom:670.653333pt;}
.yf_c02441{bottom:687.613333pt;}
.ye_c02441{bottom:704.413333pt;}
.yd_c02441{bottom:721.253333pt;}
.yc_c02441{bottom:738.213333pt;}
.yb_c02441{bottom:755.013333pt;}
.ya_c02441{bottom:781.413333pt;}
.y9_c02441{bottom:808.933333pt;}
.y8_c02441{bottom:836.613333pt;}
.y7_c02441{bottom:864.133333pt;}
.y6_c02441{bottom:891.813333pt;}
.y5_c02441{bottom:919.333333pt;}
.y4_c02441{bottom:947.040000pt;}
.h2_c02441{height:20.000000pt;}
.h1_c02441{height:43.441250pt;}
.h6_c02441{height:52.785000pt;}
.h5_c02441{height:57.375000pt;}
.h4_c02441{height:57.787500pt;}
.h3_c02441{height:62.812500pt;}
.h0_c02441{height:1056.000000pt;}
.w1_c02441{width:59.232000pt;}
.w0_c02441{width:816.000000pt;}
.x0_c02441{left:0.000000pt;}
.x3_c02441{left:14.720000pt;}
.x1_c02441{left:113.472000pt;}
.x4_c02441{left:161.466667pt;}
.x5_c02441{left:217.466667pt;}
.x2_c02441{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02442 {
    display:none;
  }
  .loading-indicator_c02442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02442 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02442 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02442" -> "#page-container .classname_c02442")
 */
.pf_c02442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02442 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02442 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02442 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02442 {overflow:visible;}
  }
}
.c_c02442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02442 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02442:after { /* webkit #35443 */
  content: '';
}
.t_c02442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02442 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02442 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02442 { /* info for Javascript */
  display:none;
}
.l_c02442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02442:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02442 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02442.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02442;src:url('chunks/assets/font_2f02494bf375dcaea84cd5ea.woff2')format("woff");}.ff1_c02442{font-family:ff1_c02442;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02442;src:url('chunks/assets/font_93aa05b828a8c840f0f0f463.woff2')format("woff");}.ff2_c02442{font-family:ff2_c02442;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:ff3_c02442;src:url('chunks/assets/font_f6b8b29d6904a7be4afc27a2.woff2')format("woff");}.ff3_c02442{font-family:ff3_c02442;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02442{vertical-align:0.000000px;}
.ls0_c02442{letter-spacing:0.000000px;}
.sc__c02442{text-shadow:none;}
.sc0_c02442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02442{-webkit-text-stroke:0px transparent;}
.sc0_c02442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02442{word-spacing:0.000000px;}
._d_c02442{margin-left:-2.251895px;}
._1_c02442{margin-left:-1.126146px;}
._3_c02442{width:1.449530px;}
._4_c02442{width:2.715641px;}
._5_c02442{width:3.873980px;}
._6_c02442{width:5.076899px;}
._13_c02442{width:6.187899px;}
._10_c02442{width:7.200000px;}
._c_c02442{width:8.544563px;}
._2_c02442{width:9.870025px;}
._0_c02442{width:10.929600px;}
._a_c02442{width:12.254466px;}
._9_c02442{width:13.380546px;}
._b_c02442{width:14.967524px;}
._12_c02442{width:15.992476px;}
._11_c02442{width:25.416000px;}
._f_c02442{width:27.118146px;}
._e_c02442{width:28.152000px;}
._8_c02442{width:32.391095px;}
._7_c02442{width:34.246146px;}
.fc1_c02442{color:rgb(192,80,77);}
.fc0_c02442{color:rgb(0,0,0);}
.fs0_c02442{font-size:66.240000px;}
.fs1_c02442{font-size:72.000000px;}
.y0_c02442{bottom:0.000000px;}
.y3_c02442{bottom:4.680000px;}
.y2_c02442{bottom:41.796000px;}
.y1_c02442{bottom:75.456000px;}
.y28_c02442{bottom:140.616000px;}
.y27_c02442{bottom:171.750000px;}
.y26_c02442{bottom:202.710000px;}
.y25_c02442{bottom:233.850000px;}
.y24_c02442{bottom:264.810000px;}
.y23_c02442{bottom:295.995000px;}
.y22_c02442{bottom:316.335000px;}
.y21_c02442{bottom:335.415000px;}
.y20_c02442{bottom:354.315000px;}
.y1f_c02442{bottom:373.215000px;}
.y1e_c02442{bottom:392.295000px;}
.y1d_c02442{bottom:411.195000px;}
.y1c_c02442{bottom:440.895000px;}
.y1b_c02442{bottom:471.855000px;}
.y1a_c02442{bottom:502.995000px;}
.y19_c02442{bottom:533.985000px;}
.y18_c02442{bottom:565.125000px;}
.y17_c02442{bottom:596.085000px;}
.y16_c02442{bottom:627.225000px;}
.y15_c02442{bottom:658.185000px;}
.y14_c02442{bottom:689.325000px;}
.y13_c02442{bottom:720.285000px;}
.y12_c02442{bottom:751.425000px;}
.y11_c02442{bottom:782.385000px;}
.y10_c02442{bottom:813.570000px;}
.yf_c02442{bottom:844.530000px;}
.ye_c02442{bottom:875.670000px;}
.yd_c02442{bottom:896.010000px;}
.yc_c02442{bottom:914.910000px;}
.yb_c02442{bottom:933.990000px;}
.ya_c02442{bottom:952.890000px;}
.y9_c02442{bottom:971.970000px;}
.y8_c02442{bottom:990.870000px;}
.y7_c02442{bottom:1009.770000px;}
.y6_c02442{bottom:1028.850000px;}
.y5_c02442{bottom:1047.750000px;}
.y4_c02442{bottom:1066.860000px;}
.h2_c02442{height:22.500000px;}
.h1_c02442{height:48.871406px;}
.h3_c02442{height:65.010937px;}
.h4_c02442{height:70.664062px;}
.h0_c02442{height:1188.000000px;}
.w1_c02442{width:66.636000px;}
.w0_c02442{width:918.000000px;}
.x0_c02442{left:0.000000px;}
.x3_c02442{left:16.560000px;}
.x1_c02442{left:127.656000px;}
.x5_c02442{left:181.650000px;}
.x4_c02442{left:244.650000px;}
.x2_c02442{left:820.950000px;}
@media print{
.v0_c02442{vertical-align:0.000000pt;}
.ls0_c02442{letter-spacing:0.000000pt;}
.ws0_c02442{word-spacing:0.000000pt;}
._d_c02442{margin-left:-2.001684pt;}
._1_c02442{margin-left:-1.001019pt;}
._3_c02442{width:1.288471pt;}
._4_c02442{width:2.413903pt;}
._5_c02442{width:3.443538pt;}
._6_c02442{width:4.512799pt;}
._13_c02442{width:5.500355pt;}
._10_c02442{width:6.400000pt;}
._c_c02442{width:7.595167pt;}
._2_c02442{width:8.773356pt;}
._0_c02442{width:9.715200pt;}
._a_c02442{width:10.892859pt;}
._9_c02442{width:11.893819pt;}
._b_c02442{width:13.304466pt;}
._12_c02442{width:14.215534pt;}
._11_c02442{width:22.592000pt;}
._f_c02442{width:24.105019pt;}
._e_c02442{width:25.024000pt;}
._8_c02442{width:28.792084pt;}
._7_c02442{width:30.441019pt;}
.fs0_c02442{font-size:58.880000pt;}
.fs1_c02442{font-size:64.000000pt;}
.y0_c02442{bottom:0.000000pt;}
.y3_c02442{bottom:4.160000pt;}
.y2_c02442{bottom:37.152000pt;}
.y1_c02442{bottom:67.072000pt;}
.y28_c02442{bottom:124.992000pt;}
.y27_c02442{bottom:152.666667pt;}
.y26_c02442{bottom:180.186667pt;}
.y25_c02442{bottom:207.866667pt;}
.y24_c02442{bottom:235.386667pt;}
.y23_c02442{bottom:263.106667pt;}
.y22_c02442{bottom:281.186667pt;}
.y21_c02442{bottom:298.146667pt;}
.y20_c02442{bottom:314.946667pt;}
.y1f_c02442{bottom:331.746667pt;}
.y1e_c02442{bottom:348.706667pt;}
.y1d_c02442{bottom:365.506667pt;}
.y1c_c02442{bottom:391.906667pt;}
.y1b_c02442{bottom:419.426667pt;}
.y1a_c02442{bottom:447.106667pt;}
.y19_c02442{bottom:474.653333pt;}
.y18_c02442{bottom:502.333333pt;}
.y17_c02442{bottom:529.853333pt;}
.y16_c02442{bottom:557.533333pt;}
.y15_c02442{bottom:585.053333pt;}
.y14_c02442{bottom:612.733333pt;}
.y13_c02442{bottom:640.253333pt;}
.y12_c02442{bottom:667.933333pt;}
.y11_c02442{bottom:695.453333pt;}
.y10_c02442{bottom:723.173333pt;}
.yf_c02442{bottom:750.693333pt;}
.ye_c02442{bottom:778.373333pt;}
.yd_c02442{bottom:796.453333pt;}
.yc_c02442{bottom:813.253333pt;}
.yb_c02442{bottom:830.213333pt;}
.ya_c02442{bottom:847.013333pt;}
.y9_c02442{bottom:863.973333pt;}
.y8_c02442{bottom:880.773333pt;}
.y7_c02442{bottom:897.573333pt;}
.y6_c02442{bottom:914.533333pt;}
.y5_c02442{bottom:931.333333pt;}
.y4_c02442{bottom:948.320000pt;}
.h2_c02442{height:20.000000pt;}
.h1_c02442{height:43.441250pt;}
.h3_c02442{height:57.787500pt;}
.h4_c02442{height:62.812500pt;}
.h0_c02442{height:1056.000000pt;}
.w1_c02442{width:59.232000pt;}
.w0_c02442{width:816.000000pt;}
.x0_c02442{left:0.000000pt;}
.x3_c02442{left:14.720000pt;}
.x1_c02442{left:113.472000pt;}
.x5_c02442{left:161.466667pt;}
.x4_c02442{left:217.466667pt;}
.x2_c02442{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02443 {
    display:none;
  }
  .loading-indicator_c02443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02443 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02443 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02443" -> "#page-container .classname_c02443")
 */
.pf_c02443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02443 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02443 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02443 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02443 {overflow:visible;}
  }
}
.c_c02443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02443 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02443:after { /* webkit #35443 */
  content: '';
}
.t_c02443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02443 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02443 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02443 { /* info for Javascript */
  display:none;
}
.l_c02443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02443:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02443 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02443.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02443;src:url('chunks/assets/font_371e75858281c911a8ed40c9.woff2')format("woff");}.ff1_c02443{font-family:ff1_c02443;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02443;src:url('chunks/assets/font_14d63e9c9c52bd6f10c4277b.woff2')format("woff");}.ff2_c02443{font-family:ff2_c02443;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:ff3_c02443;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02443{font-family:ff3_c02443;line-height:1.311035;font-style:normal;font-weight: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_c02443;src:url('chunks/assets/font_ac90e6dc6a477dcd1069f821.woff2')format("woff");}.ff4_c02443{font-family:ff4_c02443;line-height:1.112305;font-style:normal;font-weight: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_c02443;src:url('chunks/assets/font_3226e2a3b2496734b9d7d5b3.woff2')format("woff");}.ff5_c02443{font-family:ff5_c02443;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02443{vertical-align:0.000000px;}
.ls2_c02443{letter-spacing:0.000000px;}
.ls1_c02443{letter-spacing:13.080000px;}
.ls0_c02443{letter-spacing:21.600000px;}
.sc__c02443{text-shadow:none;}
.sc0_c02443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02443{-webkit-text-stroke:0px transparent;}
.sc0_c02443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02443{word-spacing:0.000000px;}
._9_c02443{margin-left:-3.096000px;}
._1_c02443{margin-left:-1.224000px;}
._2_c02443{width:1.380024px;}
._8_c02443{width:2.520000px;}
._a_c02443{width:3.528000px;}
._6_c02443{width:4.536000px;}
._7_c02443{width:5.855976px;}
._f_c02443{width:7.512048px;}
._d_c02443{width:8.545225px;}
._5_c02443{width:11.304000px;}
._12_c02443{width:13.248000px;}
._11_c02443{width:14.832000px;}
._10_c02443{width:15.912000px;}
._c_c02443{width:20.988000px;}
._b_c02443{width:22.104000px;}
._0_c02443{width:23.616000px;}
._3_c02443{width:30.456000px;}
._4_c02443{width:31.464000px;}
._e_c02443{width:43.220425px;}
.fc1_c02443{color:rgb(192,80,77);}
.fc2_c02443{color:rgb(17,17,17);}
.fc0_c02443{color:rgb(0,0,0);}
.fs0_c02443{font-size:66.240000px;}
.fs1_c02443{font-size:72.000000px;}
.y0_c02443{bottom:0.000000px;}
.y3_c02443{bottom:4.680000px;}
.y2_c02443{bottom:41.796000px;}
.y1_c02443{bottom:75.456000px;}
.y26_c02443{bottom:138.996000px;}
.y25_c02443{bottom:169.950000px;}
.y24_c02443{bottom:201.090000px;}
.y23_c02443{bottom:232.050000px;}
.y22_c02443{bottom:263.190000px;}
.y21_c02443{bottom:284.115000px;}
.y20_c02443{bottom:304.815000px;}
.y1f_c02443{bottom:335.595000px;}
.y1e_c02443{bottom:366.735000px;}
.y1d_c02443{bottom:397.695000px;}
.y1c_c02443{bottom:428.835000px;}
.y1b_c02443{bottom:459.795000px;}
.y1a_c02443{bottom:490.935000px;}
.y19_c02443{bottom:511.275000px;}
.y18_c02443{bottom:530.175000px;}
.y17_c02443{bottom:549.285000px;}
.y16_c02443{bottom:568.185000px;}
.y15_c02443{bottom:587.265000px;}
.y14_c02443{bottom:606.165000px;}
.y13_c02443{bottom:625.065000px;}
.y12_c02443{bottom:644.145000px;}
.y11_c02443{bottom:663.045000px;}
.y10_c02443{bottom:692.745000px;}
.yf_c02443{bottom:723.705000px;}
.ye_c02443{bottom:754.845000px;}
.yd_c02443{bottom:785.805000px;}
.yc_c02443{bottom:816.990000px;}
.yb_c02443{bottom:847.950000px;}
.ya_c02443{bottom:879.090000px;}
.y9_c02443{bottom:910.050000px;}
.y8_c02443{bottom:941.190000px;}
.y7_c02443{bottom:972.150000px;}
.y6_c02443{bottom:1003.290000px;}
.y5_c02443{bottom:1034.250000px;}
.y4_c02443{bottom:1065.420000px;}
.h2_c02443{height:22.500000px;}
.h1_c02443{height:48.871406px;}
.h5_c02443{height:64.546875px;}
.h6_c02443{height:65.010937px;}
.h3_c02443{height:70.664062px;}
.h4_c02443{height:72.562500px;}
.h7_c02443{height:74.004654px;}
.h0_c02443{height:1188.000000px;}
.w1_c02443{width:66.636000px;}
.w0_c02443{width:918.000000px;}
.x0_c02443{left:0.000000px;}
.x3_c02443{left:16.560000px;}
.x1_c02443{left:127.656000px;}
.x7_c02443{left:131.976000px;}
.x4_c02443{left:181.650000px;}
.x6_c02443{left:187.050000px;}
.x5_c02443{left:244.650000px;}
.x2_c02443{left:820.950000px;}
@media print{
.v0_c02443{vertical-align:0.000000pt;}
.ls2_c02443{letter-spacing:0.000000pt;}
.ls1_c02443{letter-spacing:11.626667pt;}
.ls0_c02443{letter-spacing:19.200000pt;}
.ws0_c02443{word-spacing:0.000000pt;}
._9_c02443{margin-left:-2.752000pt;}
._1_c02443{margin-left:-1.088000pt;}
._2_c02443{width:1.226688pt;}
._8_c02443{width:2.240000pt;}
._a_c02443{width:3.136000pt;}
._6_c02443{width:4.032000pt;}
._7_c02443{width:5.205312pt;}
._f_c02443{width:6.677376pt;}
._d_c02443{width:7.595756pt;}
._5_c02443{width:10.048000pt;}
._12_c02443{width:11.776000pt;}
._11_c02443{width:13.184000pt;}
._10_c02443{width:14.144000pt;}
._c_c02443{width:18.656000pt;}
._b_c02443{width:19.648000pt;}
._0_c02443{width:20.992000pt;}
._3_c02443{width:27.072000pt;}
._4_c02443{width:27.968000pt;}
._e_c02443{width:38.418156pt;}
.fs0_c02443{font-size:58.880000pt;}
.fs1_c02443{font-size:64.000000pt;}
.y0_c02443{bottom:0.000000pt;}
.y3_c02443{bottom:4.160000pt;}
.y2_c02443{bottom:37.152000pt;}
.y1_c02443{bottom:67.072000pt;}
.y26_c02443{bottom:123.552000pt;}
.y25_c02443{bottom:151.066667pt;}
.y24_c02443{bottom:178.746667pt;}
.y23_c02443{bottom:206.266667pt;}
.y22_c02443{bottom:233.946667pt;}
.y21_c02443{bottom:252.546667pt;}
.y20_c02443{bottom:270.946667pt;}
.y1f_c02443{bottom:298.306667pt;}
.y1e_c02443{bottom:325.986667pt;}
.y1d_c02443{bottom:353.506667pt;}
.y1c_c02443{bottom:381.186667pt;}
.y1b_c02443{bottom:408.706667pt;}
.y1a_c02443{bottom:436.386667pt;}
.y19_c02443{bottom:454.466667pt;}
.y18_c02443{bottom:471.266667pt;}
.y17_c02443{bottom:488.253333pt;}
.y16_c02443{bottom:505.053333pt;}
.y15_c02443{bottom:522.013333pt;}
.y14_c02443{bottom:538.813333pt;}
.y13_c02443{bottom:555.613333pt;}
.y12_c02443{bottom:572.573333pt;}
.y11_c02443{bottom:589.373333pt;}
.y10_c02443{bottom:615.773333pt;}
.yf_c02443{bottom:643.293333pt;}
.ye_c02443{bottom:670.973333pt;}
.yd_c02443{bottom:698.493333pt;}
.yc_c02443{bottom:726.213333pt;}
.yb_c02443{bottom:753.733333pt;}
.ya_c02443{bottom:781.413333pt;}
.y9_c02443{bottom:808.933333pt;}
.y8_c02443{bottom:836.613333pt;}
.y7_c02443{bottom:864.133333pt;}
.y6_c02443{bottom:891.813333pt;}
.y5_c02443{bottom:919.333333pt;}
.y4_c02443{bottom:947.040000pt;}
.h2_c02443{height:20.000000pt;}
.h1_c02443{height:43.441250pt;}
.h5_c02443{height:57.375000pt;}
.h6_c02443{height:57.787500pt;}
.h3_c02443{height:62.812500pt;}
.h4_c02443{height:64.500000pt;}
.h7_c02443{height:65.781915pt;}
.h0_c02443{height:1056.000000pt;}
.w1_c02443{width:59.232000pt;}
.w0_c02443{width:816.000000pt;}
.x0_c02443{left:0.000000pt;}
.x3_c02443{left:14.720000pt;}
.x1_c02443{left:113.472000pt;}
.x7_c02443{left:117.312000pt;}
.x4_c02443{left:161.466667pt;}
.x6_c02443{left:166.266667pt;}
.x5_c02443{left:217.466667pt;}
.x2_c02443{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02444 {
    display:none;
  }
  .loading-indicator_c02444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02444 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02444 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02444" -> "#page-container .classname_c02444")
 */
.pf_c02444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02444 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02444 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02444 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02444 {overflow:visible;}
  }
}
.c_c02444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02444 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02444:after { /* webkit #35443 */
  content: '';
}
.t_c02444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02444 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02444 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02444 { /* info for Javascript */
  display:none;
}
.l_c02444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02444:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02444 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02444.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02444;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02444{font-family:ff1_c02444;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02444;src:url('chunks/assets/font_1bec1f6aff2735ce8f765b79.woff2')format("woff");}.ff2_c02444{font-family:ff2_c02444;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:ff3_c02444;src:url('chunks/assets/font_573c562f16146c500f868b51.woff2')format("woff");}.ff3_c02444{font-family:ff3_c02444;line-height:1.284180;font-style:normal;font-weight: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_c02444;src:url('chunks/assets/font_c956589840184b80bb90de42.woff2')format("woff");}.ff4_c02444{font-family:ff4_c02444;line-height:1.112305;font-style:normal;font-weight: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_c02444;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02444{font-family:ff5_c02444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02444{vertical-align:0.000000px;}
.ls0_c02444{letter-spacing:0.000000px;}
.ls1_c02444{letter-spacing:0.432000px;}
.sc__c02444{text-shadow:none;}
.sc0_c02444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02444{-webkit-text-stroke:0px transparent;}
.sc0_c02444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02444{word-spacing:-18.000000px;}
.ws1_c02444{word-spacing:0.000000px;}
._3_c02444{margin-left:-2.088000px;}
._6_c02444{margin-left:-1.008000px;}
._2_c02444{width:1.656000px;}
._4_c02444{width:2.664000px;}
._15_c02444{width:4.239625px;}
._14_c02444{width:5.365175px;}
._11_c02444{width:6.984000px;}
._13_c02444{width:8.064000px;}
._12_c02444{width:9.432000px;}
._0_c02444{width:11.664000px;}
._1_c02444{width:12.816000px;}
._f_c02444{width:14.040000px;}
._e_c02444{width:15.696000px;}
._10_c02444{width:16.704000px;}
._5_c02444{width:22.752000px;}
._7_c02444{width:23.760000px;}
._d_c02444{width:26.352000px;}
._8_c02444{width:28.368000px;}
._9_c02444{width:29.376000px;}
._a_c02444{width:30.528000px;}
._b_c02444{width:61.776000px;}
._c_c02444{width:62.784000px;}
.fc1_c02444{color:rgb(192,80,77);}
.fc0_c02444{color:rgb(0,0,0);}
.fs0_c02444{font-size:66.240000px;}
.fs1_c02444{font-size:72.000000px;}
.y0_c02444{bottom:0.000000px;}
.y3_c02444{bottom:4.680000px;}
.y2_c02444{bottom:41.796000px;}
.y1_c02444{bottom:75.456000px;}
.y25_c02444{bottom:161.310000px;}
.y24_c02444{bottom:181.830000px;}
.y23_c02444{bottom:200.730000px;}
.y22_c02444{bottom:219.810000px;}
.y21_c02444{bottom:238.710000px;}
.y20_c02444{bottom:257.610000px;}
.y1f_c02444{bottom:276.735000px;}
.y1e_c02444{bottom:306.255000px;}
.y1d_c02444{bottom:337.395000px;}
.y1c_c02444{bottom:368.355000px;}
.y1b_c02444{bottom:399.495000px;}
.y1a_c02444{bottom:430.455000px;}
.y19_c02444{bottom:450.975000px;}
.y18_c02444{bottom:469.875000px;}
.y17_c02444{bottom:488.775000px;}
.y16_c02444{bottom:507.855000px;}
.y15_c02444{bottom:537.405000px;}
.y14_c02444{bottom:568.545000px;}
.y13_c02444{bottom:599.505000px;}
.y12_c02444{bottom:630.645000px;}
.y11_c02444{bottom:661.605000px;}
.y10_c02444{bottom:692.745000px;}
.yf_c02444{bottom:723.705000px;}
.ye_c02444{bottom:754.845000px;}
.yd_c02444{bottom:785.805000px;}
.yc_c02444{bottom:816.990000px;}
.yb_c02444{bottom:847.950000px;}
.ya_c02444{bottom:879.090000px;}
.y9_c02444{bottom:910.050000px;}
.y8_c02444{bottom:941.190000px;}
.y7_c02444{bottom:972.150000px;}
.y6_c02444{bottom:1003.290000px;}
.y5_c02444{bottom:1034.250000px;}
.y4_c02444{bottom:1065.420000px;}
.h2_c02444{height:22.500000px;}
.h1_c02444{height:48.871406px;}
.h7_c02444{height:59.383125px;}
.h4_c02444{height:64.546875px;}
.h6_c02444{height:65.010937px;}
.h8_c02444{height:66.757500px;}
.h5_c02444{height:70.628906px;}
.h3_c02444{height:70.664062px;}
.h0_c02444{height:1188.000000px;}
.w1_c02444{width:66.636000px;}
.w0_c02444{width:918.000000px;}
.x0_c02444{left:0.000000px;}
.x3_c02444{left:16.560000px;}
.x1_c02444{left:127.656000px;}
.x4_c02444{left:181.650000px;}
.x5_c02444{left:244.650000px;}
.x2_c02444{left:820.950000px;}
@media print{
.v0_c02444{vertical-align:0.000000pt;}
.ls0_c02444{letter-spacing:0.000000pt;}
.ls1_c02444{letter-spacing:0.384000pt;}
.ws0_c02444{word-spacing:-16.000000pt;}
.ws1_c02444{word-spacing:0.000000pt;}
._3_c02444{margin-left:-1.856000pt;}
._6_c02444{margin-left:-0.896000pt;}
._2_c02444{width:1.472000pt;}
._4_c02444{width:2.368000pt;}
._15_c02444{width:3.768556pt;}
._14_c02444{width:4.769044pt;}
._11_c02444{width:6.208000pt;}
._13_c02444{width:7.168000pt;}
._12_c02444{width:8.384000pt;}
._0_c02444{width:10.368000pt;}
._1_c02444{width:11.392000pt;}
._f_c02444{width:12.480000pt;}
._e_c02444{width:13.952000pt;}
._10_c02444{width:14.848000pt;}
._5_c02444{width:20.224000pt;}
._7_c02444{width:21.120000pt;}
._d_c02444{width:23.424000pt;}
._8_c02444{width:25.216000pt;}
._9_c02444{width:26.112000pt;}
._a_c02444{width:27.136000pt;}
._b_c02444{width:54.912000pt;}
._c_c02444{width:55.808000pt;}
.fs0_c02444{font-size:58.880000pt;}
.fs1_c02444{font-size:64.000000pt;}
.y0_c02444{bottom:0.000000pt;}
.y3_c02444{bottom:4.160000pt;}
.y2_c02444{bottom:37.152000pt;}
.y1_c02444{bottom:67.072000pt;}
.y25_c02444{bottom:143.386667pt;}
.y24_c02444{bottom:161.626667pt;}
.y23_c02444{bottom:178.426667pt;}
.y22_c02444{bottom:195.386667pt;}
.y21_c02444{bottom:212.186667pt;}
.y20_c02444{bottom:228.986667pt;}
.y1f_c02444{bottom:245.986667pt;}
.y1e_c02444{bottom:272.226667pt;}
.y1d_c02444{bottom:299.906667pt;}
.y1c_c02444{bottom:327.426667pt;}
.y1b_c02444{bottom:355.106667pt;}
.y1a_c02444{bottom:382.626667pt;}
.y19_c02444{bottom:400.866667pt;}
.y18_c02444{bottom:417.666667pt;}
.y17_c02444{bottom:434.466667pt;}
.y16_c02444{bottom:451.426667pt;}
.y15_c02444{bottom:477.693333pt;}
.y14_c02444{bottom:505.373333pt;}
.y13_c02444{bottom:532.893333pt;}
.y12_c02444{bottom:560.573333pt;}
.y11_c02444{bottom:588.093333pt;}
.y10_c02444{bottom:615.773333pt;}
.yf_c02444{bottom:643.293333pt;}
.ye_c02444{bottom:670.973333pt;}
.yd_c02444{bottom:698.493333pt;}
.yc_c02444{bottom:726.213333pt;}
.yb_c02444{bottom:753.733333pt;}
.ya_c02444{bottom:781.413333pt;}
.y9_c02444{bottom:808.933333pt;}
.y8_c02444{bottom:836.613333pt;}
.y7_c02444{bottom:864.133333pt;}
.y6_c02444{bottom:891.813333pt;}
.y5_c02444{bottom:919.333333pt;}
.y4_c02444{bottom:947.040000pt;}
.h2_c02444{height:20.000000pt;}
.h1_c02444{height:43.441250pt;}
.h7_c02444{height:52.785000pt;}
.h4_c02444{height:57.375000pt;}
.h6_c02444{height:57.787500pt;}
.h8_c02444{height:59.340000pt;}
.h5_c02444{height:62.781250pt;}
.h3_c02444{height:62.812500pt;}
.h0_c02444{height:1056.000000pt;}
.w1_c02444{width:59.232000pt;}
.w0_c02444{width:816.000000pt;}
.x0_c02444{left:0.000000pt;}
.x3_c02444{left:14.720000pt;}
.x1_c02444{left:113.472000pt;}
.x4_c02444{left:161.466667pt;}
.x5_c02444{left:217.466667pt;}
.x2_c02444{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02445 {
    display:none;
  }
  .loading-indicator_c02445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02445 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02445 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02445" -> "#page-container .classname_c02445")
 */
.pf_c02445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02445 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02445 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02445 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02445 {overflow:visible;}
  }
}
.c_c02445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02445 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02445:after { /* webkit #35443 */
  content: '';
}
.t_c02445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02445 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02445 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02445 { /* info for Javascript */
  display:none;
}
.l_c02445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02445:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02445 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02445.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02445;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02445{font-family:ff1_c02445;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02445;src:url('chunks/assets/font_2bed4195751645c9d54dfb5f.woff2')format("woff");}.ff2_c02445{font-family:ff2_c02445;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:ff3_c02445;src:url('chunks/assets/font_2cff34e48ba90e11eb2ac31d.woff2')format("woff");}.ff3_c02445{font-family:ff3_c02445;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02445{vertical-align:0.000000px;}
.ls0_c02445{letter-spacing:0.000000px;}
.sc__c02445{text-shadow:none;}
.sc0_c02445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02445{-webkit-text-stroke:0px transparent;}
.sc0_c02445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02445{word-spacing:0.000000px;}
._9_c02445{margin-left:-2.255976px;}
._3_c02445{margin-left:-1.008000px;}
._0_c02445{width:1.656000px;}
._1_c02445{width:3.024000px;}
._e_c02445{width:4.325322px;}
._12_c02445{width:5.605350px;}
._11_c02445{width:6.638400px;}
._a_c02445{width:7.704000px;}
._d_c02445{width:8.771472px;}
._13_c02445{width:9.864000px;}
._4_c02445{width:11.592000px;}
._5_c02445{width:12.816000px;}
._c_c02445{width:14.189429px;}
._b_c02445{width:15.500425px;}
._6_c02445{width:16.848000px;}
._7_c02445{width:25.272000px;}
._8_c02445{width:26.784000px;}
._2_c02445{width:39.384000px;}
._f_c02445{width:41.532679px;}
._10_c02445{width:42.857479px;}
.fc1_c02445{color:rgb(192,80,77);}
.fc0_c02445{color:rgb(0,0,0);}
.fs0_c02445{font-size:66.240000px;}
.fs1_c02445{font-size:72.000000px;}
.y0_c02445{bottom:0.000000px;}
.y3_c02445{bottom:4.680000px;}
.y2_c02445{bottom:41.796000px;}
.y1_c02445{bottom:75.456000px;}
.y2a_c02445{bottom:126.936000px;}
.y29_c02445{bottom:157.890000px;}
.y28_c02445{bottom:189.030000px;}
.y27_c02445{bottom:219.990000px;}
.y26_c02445{bottom:251.130000px;}
.y25_c02445{bottom:282.135000px;}
.y24_c02445{bottom:313.275000px;}
.y23_c02445{bottom:344.235000px;}
.y22_c02445{bottom:375.375000px;}
.y21_c02445{bottom:406.335000px;}
.y20_c02445{bottom:426.675000px;}
.y1f_c02445{bottom:445.755000px;}
.y1e_c02445{bottom:464.655000px;}
.y1d_c02445{bottom:483.735000px;}
.y1c_c02445{bottom:502.635000px;}
.y1b_c02445{bottom:521.715000px;}
.y1a_c02445{bottom:540.645000px;}
.y19_c02445{bottom:559.545000px;}
.y18_c02445{bottom:578.625000px;}
.y17_c02445{bottom:597.525000px;}
.y16_c02445{bottom:616.605000px;}
.y15_c02445{bottom:635.505000px;}
.y14_c02445{bottom:654.405000px;}
.y13_c02445{bottom:673.485000px;}
.y12_c02445{bottom:692.385000px;}
.y11_c02445{bottom:711.465000px;}
.y10_c02445{bottom:730.365000px;}
.yf_c02445{bottom:749.265000px;}
.ye_c02445{bottom:768.345000px;}
.yd_c02445{bottom:787.245000px;}
.yc_c02445{bottom:816.990000px;}
.yb_c02445{bottom:847.950000px;}
.ya_c02445{bottom:879.090000px;}
.y9_c02445{bottom:910.050000px;}
.y8_c02445{bottom:941.190000px;}
.y7_c02445{bottom:972.150000px;}
.y6_c02445{bottom:1003.290000px;}
.y5_c02445{bottom:1034.250000px;}
.y4_c02445{bottom:1065.420000px;}
.h2_c02445{height:22.500000px;}
.h1_c02445{height:48.871406px;}
.h5_c02445{height:59.383125px;}
.h4_c02445{height:65.010937px;}
.h3_c02445{height:70.664062px;}
.h0_c02445{height:1188.000000px;}
.w1_c02445{width:66.636000px;}
.w0_c02445{width:918.000000px;}
.x0_c02445{left:0.000000px;}
.x3_c02445{left:16.560000px;}
.x1_c02445{left:127.656000px;}
.x4_c02445{left:181.650000px;}
.x5_c02445{left:244.650000px;}
.x2_c02445{left:820.950000px;}
@media print{
.v0_c02445{vertical-align:0.000000pt;}
.ls0_c02445{letter-spacing:0.000000pt;}
.ws0_c02445{word-spacing:0.000000pt;}
._9_c02445{margin-left:-2.005312pt;}
._3_c02445{margin-left:-0.896000pt;}
._0_c02445{width:1.472000pt;}
._1_c02445{width:2.688000pt;}
._e_c02445{width:3.844731pt;}
._12_c02445{width:4.982533pt;}
._11_c02445{width:5.900800pt;}
._a_c02445{width:6.848000pt;}
._d_c02445{width:7.796864pt;}
._13_c02445{width:8.768000pt;}
._4_c02445{width:10.304000pt;}
._5_c02445{width:11.392000pt;}
._c_c02445{width:12.612826pt;}
._b_c02445{width:13.778156pt;}
._6_c02445{width:14.976000pt;}
._7_c02445{width:22.464000pt;}
._8_c02445{width:23.808000pt;}
._2_c02445{width:35.008000pt;}
._f_c02445{width:36.917937pt;}
._10_c02445{width:38.095537pt;}
.fs0_c02445{font-size:58.880000pt;}
.fs1_c02445{font-size:64.000000pt;}
.y0_c02445{bottom:0.000000pt;}
.y3_c02445{bottom:4.160000pt;}
.y2_c02445{bottom:37.152000pt;}
.y1_c02445{bottom:67.072000pt;}
.y2a_c02445{bottom:112.832000pt;}
.y29_c02445{bottom:140.346667pt;}
.y28_c02445{bottom:168.026667pt;}
.y27_c02445{bottom:195.546667pt;}
.y26_c02445{bottom:223.226667pt;}
.y25_c02445{bottom:250.786667pt;}
.y24_c02445{bottom:278.466667pt;}
.y23_c02445{bottom:305.986667pt;}
.y22_c02445{bottom:333.666667pt;}
.y21_c02445{bottom:361.186667pt;}
.y20_c02445{bottom:379.266667pt;}
.y1f_c02445{bottom:396.226667pt;}
.y1e_c02445{bottom:413.026667pt;}
.y1d_c02445{bottom:429.986667pt;}
.y1c_c02445{bottom:446.786667pt;}
.y1b_c02445{bottom:463.746667pt;}
.y1a_c02445{bottom:480.573333pt;}
.y19_c02445{bottom:497.373333pt;}
.y18_c02445{bottom:514.333333pt;}
.y17_c02445{bottom:531.133333pt;}
.y16_c02445{bottom:548.093333pt;}
.y15_c02445{bottom:564.893333pt;}
.y14_c02445{bottom:581.693333pt;}
.y13_c02445{bottom:598.653333pt;}
.y12_c02445{bottom:615.453333pt;}
.y11_c02445{bottom:632.413333pt;}
.y10_c02445{bottom:649.213333pt;}
.yf_c02445{bottom:666.013333pt;}
.ye_c02445{bottom:682.973333pt;}
.yd_c02445{bottom:699.773333pt;}
.yc_c02445{bottom:726.213333pt;}
.yb_c02445{bottom:753.733333pt;}
.ya_c02445{bottom:781.413333pt;}
.y9_c02445{bottom:808.933333pt;}
.y8_c02445{bottom:836.613333pt;}
.y7_c02445{bottom:864.133333pt;}
.y6_c02445{bottom:891.813333pt;}
.y5_c02445{bottom:919.333333pt;}
.y4_c02445{bottom:947.040000pt;}
.h2_c02445{height:20.000000pt;}
.h1_c02445{height:43.441250pt;}
.h5_c02445{height:52.785000pt;}
.h4_c02445{height:57.787500pt;}
.h3_c02445{height:62.812500pt;}
.h0_c02445{height:1056.000000pt;}
.w1_c02445{width:59.232000pt;}
.w0_c02445{width:816.000000pt;}
.x0_c02445{left:0.000000pt;}
.x3_c02445{left:14.720000pt;}
.x1_c02445{left:113.472000pt;}
.x4_c02445{left:161.466667pt;}
.x5_c02445{left:217.466667pt;}
.x2_c02445{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02446 {
    display:none;
  }
  .loading-indicator_c02446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02446 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02446 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02446" -> "#page-container .classname_c02446")
 */
.pf_c02446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02446 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02446 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02446 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02446 {overflow:visible;}
  }
}
.c_c02446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02446 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02446:after { /* webkit #35443 */
  content: '';
}
.t_c02446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02446 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02446 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02446 { /* info for Javascript */
  display:none;
}
.l_c02446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02446:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02446 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02446.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02446;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02446{font-family:ff1_c02446;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02446;src:url('chunks/assets/font_e312edcc2c0c2eed51e1ff57.woff2')format("woff");}.ff2_c02446{font-family:ff2_c02446;line-height:1.112305;font-style:normal;font-weight: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_c02446;src:url('chunks/assets/font_911c39aad88d2dc4cff431a2.woff2')format("woff");}.ff3_c02446{font-family:ff3_c02446;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_c02446;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02446{font-family:ff4_c02446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02446{vertical-align:0.000000px;}
.ls2_c02446{letter-spacing:-0.288000px;}
.ls1_c02446{letter-spacing:0.000000px;}
.ls0_c02446{letter-spacing:20.160000px;}
.sc__c02446{text-shadow:none;}
.sc0_c02446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02446{-webkit-text-stroke:0px transparent;}
.sc0_c02446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02446{word-spacing:-17.712000px;}
.ws1_c02446{word-spacing:0.000000px;}
._1_c02446{margin-left:-1.390841px;}
._3_c02446{width:1.324204px;}
._5_c02446{width:3.113412px;}
._2_c02446{width:4.173584px;}
._0_c02446{width:5.365175px;}
._b_c02446{width:7.234825px;}
._c_c02446{width:8.568000px;}
._6_c02446{width:10.296000px;}
._7_c02446{width:11.563796px;}
._4_c02446{width:15.036612px;}
._a_c02446{width:19.800000px;}
._11_c02446{width:20.808000px;}
._10_c02446{width:22.104000px;}
._8_c02446{width:23.544000px;}
._9_c02446{width:24.624000px;}
._d_c02446{width:29.664000px;}
._f_c02446{width:30.744000px;}
._e_c02446{width:31.867796px;}
.fc1_c02446{color:rgb(192,80,77);}
.fc2_c02446{color:rgb(17,17,17);}
.fc0_c02446{color:rgb(0,0,0);}
.fs0_c02446{font-size:66.240000px;}
.fs1_c02446{font-size:72.000000px;}
.y0_c02446{bottom:0.000000px;}
.y3_c02446{bottom:4.680000px;}
.y2_c02446{bottom:41.796000px;}
.y1_c02446{bottom:75.456000px;}
.y26_c02446{bottom:130.536000px;}
.y25_c02446{bottom:161.310000px;}
.y24_c02446{bottom:192.450000px;}
.y23_c02446{bottom:223.410000px;}
.y22_c02446{bottom:254.550000px;}
.y21_c02446{bottom:274.935000px;}
.y20_c02446{bottom:294.015000px;}
.y1f_c02446{bottom:312.915000px;}
.y1e_c02446{bottom:342.615000px;}
.y1d_c02446{bottom:373.575000px;}
.y1c_c02446{bottom:404.535000px;}
.y1b_c02446{bottom:435.675000px;}
.y1a_c02446{bottom:466.635000px;}
.y19_c02446{bottom:497.775000px;}
.y18_c02446{bottom:528.735000px;}
.y17_c02446{bottom:559.905000px;}
.y16_c02446{bottom:590.865000px;}
.y15_c02446{bottom:622.005000px;}
.y14_c02446{bottom:652.965000px;}
.y13_c02446{bottom:684.105000px;}
.y12_c02446{bottom:714.705000px;}
.y11_c02446{bottom:746.205000px;}
.y10_c02446{bottom:777.165000px;}
.yf_c02446{bottom:808.350000px;}
.ye_c02446{bottom:839.310000px;}
.yd_c02446{bottom:870.450000px;}
.yc_c02446{bottom:901.410000px;}
.yb_c02446{bottom:932.550000px;}
.ya_c02446{bottom:952.890000px;}
.y9_c02446{bottom:971.970000px;}
.y8_c02446{bottom:990.870000px;}
.y7_c02446{bottom:1009.770000px;}
.y6_c02446{bottom:1028.850000px;}
.y5_c02446{bottom:1047.750000px;}
.y4_c02446{bottom:1066.860000px;}
.h2_c02446{height:22.500000px;}
.h1_c02446{height:48.871406px;}
.h3_c02446{height:59.383125px;}
.h4_c02446{height:65.010937px;}
.h5_c02446{height:70.664062px;}
.h6_c02446{height:72.562500px;}
.h0_c02446{height:1188.000000px;}
.w1_c02446{width:66.636000px;}
.w0_c02446{width:918.000000px;}
.x0_c02446{left:0.000000px;}
.x3_c02446{left:16.560000px;}
.x1_c02446{left:127.656000px;}
.x5_c02446{left:181.650000px;}
.x6_c02446{left:187.050000px;}
.x4_c02446{left:244.650000px;}
.x2_c02446{left:820.950000px;}
@media print{
.v0_c02446{vertical-align:0.000000pt;}
.ls2_c02446{letter-spacing:-0.256000pt;}
.ls1_c02446{letter-spacing:0.000000pt;}
.ls0_c02446{letter-spacing:17.920000pt;}
.ws0_c02446{word-spacing:-15.744000pt;}
.ws1_c02446{word-spacing:0.000000pt;}
._1_c02446{margin-left:-1.236303pt;}
._3_c02446{width:1.177070pt;}
._5_c02446{width:2.767478pt;}
._2_c02446{width:3.709852pt;}
._0_c02446{width:4.769044pt;}
._b_c02446{width:6.430956pt;}
._c_c02446{width:7.616000pt;}
._6_c02446{width:9.152000pt;}
._7_c02446{width:10.278930pt;}
._4_c02446{width:13.365878pt;}
._a_c02446{width:17.600000pt;}
._11_c02446{width:18.496000pt;}
._10_c02446{width:19.648000pt;}
._8_c02446{width:20.928000pt;}
._9_c02446{width:21.888000pt;}
._d_c02446{width:26.368000pt;}
._f_c02446{width:27.328000pt;}
._e_c02446{width:28.326930pt;}
.fs0_c02446{font-size:58.880000pt;}
.fs1_c02446{font-size:64.000000pt;}
.y0_c02446{bottom:0.000000pt;}
.y3_c02446{bottom:4.160000pt;}
.y2_c02446{bottom:37.152000pt;}
.y1_c02446{bottom:67.072000pt;}
.y26_c02446{bottom:116.032000pt;}
.y25_c02446{bottom:143.386667pt;}
.y24_c02446{bottom:171.066667pt;}
.y23_c02446{bottom:198.586667pt;}
.y22_c02446{bottom:226.266667pt;}
.y21_c02446{bottom:244.386667pt;}
.y20_c02446{bottom:261.346667pt;}
.y1f_c02446{bottom:278.146667pt;}
.y1e_c02446{bottom:304.546667pt;}
.y1d_c02446{bottom:332.066667pt;}
.y1c_c02446{bottom:359.586667pt;}
.y1b_c02446{bottom:387.266667pt;}
.y1a_c02446{bottom:414.786667pt;}
.y19_c02446{bottom:442.466667pt;}
.y18_c02446{bottom:469.986667pt;}
.y17_c02446{bottom:497.693333pt;}
.y16_c02446{bottom:525.213333pt;}
.y15_c02446{bottom:552.893333pt;}
.y14_c02446{bottom:580.413333pt;}
.y13_c02446{bottom:608.093333pt;}
.y12_c02446{bottom:635.293333pt;}
.y11_c02446{bottom:663.293333pt;}
.y10_c02446{bottom:690.813333pt;}
.yf_c02446{bottom:718.533333pt;}
.ye_c02446{bottom:746.053333pt;}
.yd_c02446{bottom:773.733333pt;}
.yc_c02446{bottom:801.253333pt;}
.yb_c02446{bottom:828.933333pt;}
.ya_c02446{bottom:847.013333pt;}
.y9_c02446{bottom:863.973333pt;}
.y8_c02446{bottom:880.773333pt;}
.y7_c02446{bottom:897.573333pt;}
.y6_c02446{bottom:914.533333pt;}
.y5_c02446{bottom:931.333333pt;}
.y4_c02446{bottom:948.320000pt;}
.h2_c02446{height:20.000000pt;}
.h1_c02446{height:43.441250pt;}
.h3_c02446{height:52.785000pt;}
.h4_c02446{height:57.787500pt;}
.h5_c02446{height:62.812500pt;}
.h6_c02446{height:64.500000pt;}
.h0_c02446{height:1056.000000pt;}
.w1_c02446{width:59.232000pt;}
.w0_c02446{width:816.000000pt;}
.x0_c02446{left:0.000000pt;}
.x3_c02446{left:14.720000pt;}
.x1_c02446{left:113.472000pt;}
.x5_c02446{left:161.466667pt;}
.x6_c02446{left:166.266667pt;}
.x4_c02446{left:217.466667pt;}
.x2_c02446{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02447 {
    display:none;
  }
  .loading-indicator_c02447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02447 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02447 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02447" -> "#page-container .classname_c02447")
 */
.pf_c02447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02447 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02447 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02447 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02447 {overflow:visible;}
  }
}
.c_c02447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02447 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02447:after { /* webkit #35443 */
  content: '';
}
.t_c02447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02447 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02447 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02447 { /* info for Javascript */
  display:none;
}
.l_c02447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02447:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02447 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02447.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02447;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02447{font-family:ff1_c02447;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02447;src:url('chunks/assets/font_abc561fd64ab59f3e1f85fc8.woff2')format("woff");}.ff2_c02447{font-family:ff2_c02447;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:ff3_c02447;src:url('chunks/assets/font_c8f588a824f9dd11869083fa.woff2')format("woff");}.ff3_c02447{font-family:ff3_c02447;line-height:1.402354;font-style:normal;font-weight: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_c02447;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02447{font-family:ff4_c02447;line-height:1.311035;font-style:normal;font-weight: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_c02447;src:url('chunks/assets/font_42a6b5b68db472f0ed0aecb6.woff2')format("woff");}.ff5_c02447{font-family:ff5_c02447;line-height:1.112305;font-style:normal;font-weight: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_c02447;src:url('chunks/assets/font_b925e9aece3af99a65bd94b8.woff2')format("woff");}.ff6_c02447{font-family:ff6_c02447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02447{vertical-align:0.000000px;}
.ls2_c02447{letter-spacing:0.000000px;}
.ls1_c02447{letter-spacing:5.760000px;}
.ls0_c02447{letter-spacing:13.080000px;}
.sc__c02447{text-shadow:none;}
.sc0_c02447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02447{-webkit-text-stroke:0px transparent;}
.sc0_c02447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02447{word-spacing:-18.000000px;}
.ws1_c02447{word-spacing:0.000000px;}
._0_c02447{margin-left:-1.080000px;}
._1_c02447{width:1.812000px;}
._b_c02447{width:3.264000px;}
._8_c02447{width:5.040000px;}
._9_c02447{width:6.408000px;}
._6_c02447{width:7.704000px;}
._7_c02447{width:8.964000px;}
._d_c02447{width:10.177854px;}
._2_c02447{width:11.448000px;}
._3_c02447{width:12.456000px;}
._e_c02447{width:13.533054px;}
._4_c02447{width:14.616000px;}
._5_c02447{width:16.584000px;}
._f_c02447{width:18.169854px;}
._a_c02447{width:19.476000px;}
._c_c02447{width:20.667079px;}
._10_c02447{width:23.760000px;}
._11_c02447{width:24.840000px;}
._12_c02447{width:34.560000px;}
._13_c02447{width:36.036000px;}
.fc1_c02447{color:rgb(192,80,77);}
.fc2_c02447{color:rgb(17,17,17);}
.fc0_c02447{color:rgb(0,0,0);}
.fs0_c02447{font-size:66.240000px;}
.fs1_c02447{font-size:72.000000px;}
.y0_c02447{bottom:0.000000px;}
.y3_c02447{bottom:4.680000px;}
.y2_c02447{bottom:41.796000px;}
.y1_c02447{bottom:75.456000px;}
.y2b_c02447{bottom:144.216000px;}
.y2a_c02447{bottom:175.170000px;}
.y29_c02447{bottom:206.130000px;}
.y28_c02447{bottom:237.270000px;}
.y27_c02447{bottom:257.610000px;}
.y26_c02447{bottom:276.735000px;}
.y25_c02447{bottom:295.635000px;}
.y24_c02447{bottom:314.715000px;}
.y23_c02447{bottom:333.615000px;}
.y22_c02447{bottom:352.515000px;}
.y21_c02447{bottom:371.595000px;}
.y20_c02447{bottom:390.495000px;}
.y1f_c02447{bottom:409.575000px;}
.y1e_c02447{bottom:428.475000px;}
.y1d_c02447{bottom:447.375000px;}
.y1c_c02447{bottom:466.455000px;}
.y1b_c02447{bottom:485.355000px;}
.y1a_c02447{bottom:504.435000px;}
.y19_c02447{bottom:523.335000px;}
.y18_c02447{bottom:542.265000px;}
.y17_c02447{bottom:561.345000px;}
.y16_c02447{bottom:580.245000px;}
.y15_c02447{bottom:599.325000px;}
.y14_c02447{bottom:618.225000px;}
.y13_c02447{bottom:637.305000px;}
.y12_c02447{bottom:656.205000px;}
.y11_c02447{bottom:675.105000px;}
.y10_c02447{bottom:694.185000px;}
.yf_c02447{bottom:723.705000px;}
.ye_c02447{bottom:754.845000px;}
.yd_c02447{bottom:785.805000px;}
.yc_c02447{bottom:816.990000px;}
.yb_c02447{bottom:847.950000px;}
.ya_c02447{bottom:879.090000px;}
.y9_c02447{bottom:910.050000px;}
.y8_c02447{bottom:941.190000px;}
.y7_c02447{bottom:972.150000px;}
.y6_c02447{bottom:1003.290000px;}
.y5_c02447{bottom:1034.250000px;}
.y4_c02447{bottom:1065.420000px;}
.h2_c02447{height:22.500000px;}
.h1_c02447{height:48.871406px;}
.h7_c02447{height:59.383125px;}
.h6_c02447{height:65.010937px;}
.h4_c02447{height:70.664062px;}
.h5_c02447{height:72.562500px;}
.h3_c02447{height:74.004654px;}
.h0_c02447{height:1188.000000px;}
.w1_c02447{width:66.636000px;}
.w0_c02447{width:918.000000px;}
.x0_c02447{left:0.000000px;}
.x3_c02447{left:16.560000px;}
.x1_c02447{left:127.656000px;}
.x4_c02447{left:131.976000px;}
.x5_c02447{left:181.650000px;}
.x6_c02447{left:244.650000px;}
.x2_c02447{left:820.950000px;}
@media print{
.v0_c02447{vertical-align:0.000000pt;}
.ls2_c02447{letter-spacing:0.000000pt;}
.ls1_c02447{letter-spacing:5.120000pt;}
.ls0_c02447{letter-spacing:11.626667pt;}
.ws0_c02447{word-spacing:-16.000000pt;}
.ws1_c02447{word-spacing:0.000000pt;}
._0_c02447{margin-left:-0.960000pt;}
._1_c02447{width:1.610667pt;}
._b_c02447{width:2.901333pt;}
._8_c02447{width:4.480000pt;}
._9_c02447{width:5.696000pt;}
._6_c02447{width:6.848000pt;}
._7_c02447{width:7.968000pt;}
._d_c02447{width:9.046981pt;}
._2_c02447{width:10.176000pt;}
._3_c02447{width:11.072000pt;}
._e_c02447{width:12.029381pt;}
._4_c02447{width:12.992000pt;}
._5_c02447{width:14.741333pt;}
._f_c02447{width:16.150981pt;}
._a_c02447{width:17.312000pt;}
._c_c02447{width:18.370737pt;}
._10_c02447{width:21.120000pt;}
._11_c02447{width:22.080000pt;}
._12_c02447{width:30.720000pt;}
._13_c02447{width:32.032000pt;}
.fs0_c02447{font-size:58.880000pt;}
.fs1_c02447{font-size:64.000000pt;}
.y0_c02447{bottom:0.000000pt;}
.y3_c02447{bottom:4.160000pt;}
.y2_c02447{bottom:37.152000pt;}
.y1_c02447{bottom:67.072000pt;}
.y2b_c02447{bottom:128.192000pt;}
.y2a_c02447{bottom:155.706667pt;}
.y29_c02447{bottom:183.226667pt;}
.y28_c02447{bottom:210.906667pt;}
.y27_c02447{bottom:228.986667pt;}
.y26_c02447{bottom:245.986667pt;}
.y25_c02447{bottom:262.786667pt;}
.y24_c02447{bottom:279.746667pt;}
.y23_c02447{bottom:296.546667pt;}
.y22_c02447{bottom:313.346667pt;}
.y21_c02447{bottom:330.306667pt;}
.y20_c02447{bottom:347.106667pt;}
.y1f_c02447{bottom:364.066667pt;}
.y1e_c02447{bottom:380.866667pt;}
.y1d_c02447{bottom:397.666667pt;}
.y1c_c02447{bottom:414.626667pt;}
.y1b_c02447{bottom:431.426667pt;}
.y1a_c02447{bottom:448.386667pt;}
.y19_c02447{bottom:465.186667pt;}
.y18_c02447{bottom:482.013333pt;}
.y17_c02447{bottom:498.973333pt;}
.y16_c02447{bottom:515.773333pt;}
.y15_c02447{bottom:532.733333pt;}
.y14_c02447{bottom:549.533333pt;}
.y13_c02447{bottom:566.493333pt;}
.y12_c02447{bottom:583.293333pt;}
.y11_c02447{bottom:600.093333pt;}
.y10_c02447{bottom:617.053333pt;}
.yf_c02447{bottom:643.293333pt;}
.ye_c02447{bottom:670.973333pt;}
.yd_c02447{bottom:698.493333pt;}
.yc_c02447{bottom:726.213333pt;}
.yb_c02447{bottom:753.733333pt;}
.ya_c02447{bottom:781.413333pt;}
.y9_c02447{bottom:808.933333pt;}
.y8_c02447{bottom:836.613333pt;}
.y7_c02447{bottom:864.133333pt;}
.y6_c02447{bottom:891.813333pt;}
.y5_c02447{bottom:919.333333pt;}
.y4_c02447{bottom:947.040000pt;}
.h2_c02447{height:20.000000pt;}
.h1_c02447{height:43.441250pt;}
.h7_c02447{height:52.785000pt;}
.h6_c02447{height:57.787500pt;}
.h4_c02447{height:62.812500pt;}
.h5_c02447{height:64.500000pt;}
.h3_c02447{height:65.781915pt;}
.h0_c02447{height:1056.000000pt;}
.w1_c02447{width:59.232000pt;}
.w0_c02447{width:816.000000pt;}
.x0_c02447{left:0.000000pt;}
.x3_c02447{left:14.720000pt;}
.x1_c02447{left:113.472000pt;}
.x4_c02447{left:117.312000pt;}
.x5_c02447{left:161.466667pt;}
.x6_c02447{left:217.466667pt;}
.x2_c02447{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02448 {
    display:none;
  }
  .loading-indicator_c02448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02448" -> "#page-container .classname_c02448")
 */
.pf_c02448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02448 {overflow:visible;}
  }
}
.c_c02448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02448:after { /* webkit #35443 */
  content: '';
}
.t_c02448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02448 { /* info for Javascript */
  display:none;
}
.l_c02448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02448:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02448 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02448.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02448;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02448{font-family:ff1_c02448;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02448;src:url('chunks/assets/font_4ff91d72253732e5e96ca7e5.woff2')format("woff");}.ff2_c02448{font-family:ff2_c02448;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:ff3_c02448;src:url('chunks/assets/font_2dba5aa7d6d3d3612982736c.woff2')format("woff");}.ff3_c02448{font-family:ff3_c02448;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02448{vertical-align:0.000000px;}
.ls0_c02448{letter-spacing:0.000000px;}
.sc__c02448{text-shadow:none;}
.sc0_c02448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02448{-webkit-text-stroke:0px transparent;}
.sc0_c02448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02448{word-spacing:0.000000px;}
._10_c02448{margin-left:-2.203200px;}
._3_c02448{margin-left:-1.080000px;}
._1_c02448{width:1.152000px;}
._5_c02448{width:2.571641px;}
._4_c02448{width:3.744000px;}
._b_c02448{width:5.100612px;}
._a_c02448{width:6.822588px;}
._9_c02448{width:7.995012px;}
._8_c02448{width:9.227454px;}
._c_c02448{width:10.872000px;}
._d_c02448{width:12.204000px;}
._0_c02448{width:13.680000px;}
._2_c02448{width:15.048000px;}
._e_c02448{width:22.392000px;}
._f_c02448{width:23.796000px;}
._6_c02448{width:56.986759px;}
._7_c02448{width:58.005683px;}
.fc1_c02448{color:rgb(192,80,77);}
.fc0_c02448{color:rgb(0,0,0);}
.fs0_c02448{font-size:66.240000px;}
.fs1_c02448{font-size:72.000000px;}
.y0_c02448{bottom:0.000000px;}
.y3_c02448{bottom:4.680000px;}
.y2_c02448{bottom:41.796000px;}
.y1_c02448{bottom:75.456000px;}
.y29_c02448{bottom:140.076000px;}
.y28_c02448{bottom:171.210000px;}
.y27_c02448{bottom:202.170000px;}
.y26_c02448{bottom:233.130000px;}
.y25_c02448{bottom:264.270000px;}
.y24_c02448{bottom:295.275000px;}
.y23_c02448{bottom:315.795000px;}
.y22_c02448{bottom:334.695000px;}
.y21_c02448{bottom:353.775000px;}
.y20_c02448{bottom:372.675000px;}
.y1f_c02448{bottom:391.575000px;}
.y1e_c02448{bottom:410.655000px;}
.y1d_c02448{bottom:429.555000px;}
.y1c_c02448{bottom:448.635000px;}
.y1b_c02448{bottom:467.535000px;}
.y1a_c02448{bottom:497.235000px;}
.y19_c02448{bottom:528.195000px;}
.y18_c02448{bottom:559.365000px;}
.y17_c02448{bottom:590.325000px;}
.y16_c02448{bottom:621.465000px;}
.y15_c02448{bottom:659.625000px;}
.y14_c02448{bottom:678.705000px;}
.y13_c02448{bottom:697.605000px;}
.y12_c02448{bottom:716.505000px;}
.y11_c02448{bottom:735.585000px;}
.y10_c02448{bottom:754.485000px;}
.yf_c02448{bottom:773.565000px;}
.ye_c02448{bottom:792.465000px;}
.yd_c02448{bottom:811.410000px;}
.yc_c02448{bottom:830.490000px;}
.yb_c02448{bottom:849.390000px;}
.ya_c02448{bottom:879.090000px;}
.y9_c02448{bottom:910.050000px;}
.y8_c02448{bottom:941.190000px;}
.y7_c02448{bottom:972.150000px;}
.y6_c02448{bottom:1003.290000px;}
.y5_c02448{bottom:1034.250000px;}
.y4_c02448{bottom:1065.420000px;}
.h2_c02448{height:22.500000px;}
.h1_c02448{height:48.871406px;}
.h5_c02448{height:59.383125px;}
.h6_c02448{height:64.546875px;}
.h4_c02448{height:65.010937px;}
.h3_c02448{height:70.664062px;}
.h0_c02448{height:1188.000000px;}
.w1_c02448{width:66.636000px;}
.w0_c02448{width:918.000000px;}
.x0_c02448{left:0.000000px;}
.x3_c02448{left:16.560000px;}
.x1_c02448{left:127.656000px;}
.x4_c02448{left:181.650000px;}
.x5_c02448{left:244.650000px;}
.x2_c02448{left:820.950000px;}
@media print{
.v0_c02448{vertical-align:0.000000pt;}
.ls0_c02448{letter-spacing:0.000000pt;}
.ws0_c02448{word-spacing:0.000000pt;}
._10_c02448{margin-left:-1.958400pt;}
._3_c02448{margin-left:-0.960000pt;}
._1_c02448{width:1.024000pt;}
._5_c02448{width:2.285903pt;}
._4_c02448{width:3.328000pt;}
._b_c02448{width:4.533878pt;}
._a_c02448{width:6.064522pt;}
._9_c02448{width:7.106678pt;}
._8_c02448{width:8.202181pt;}
._c_c02448{width:9.664000pt;}
._d_c02448{width:10.848000pt;}
._0_c02448{width:12.160000pt;}
._2_c02448{width:13.376000pt;}
._e_c02448{width:19.904000pt;}
._f_c02448{width:21.152000pt;}
._6_c02448{width:50.654897pt;}
._7_c02448{width:51.560607pt;}
.fs0_c02448{font-size:58.880000pt;}
.fs1_c02448{font-size:64.000000pt;}
.y0_c02448{bottom:0.000000pt;}
.y3_c02448{bottom:4.160000pt;}
.y2_c02448{bottom:37.152000pt;}
.y1_c02448{bottom:67.072000pt;}
.y29_c02448{bottom:124.512000pt;}
.y28_c02448{bottom:152.186667pt;}
.y27_c02448{bottom:179.706667pt;}
.y26_c02448{bottom:207.226667pt;}
.y25_c02448{bottom:234.906667pt;}
.y24_c02448{bottom:262.466667pt;}
.y23_c02448{bottom:280.706667pt;}
.y22_c02448{bottom:297.506667pt;}
.y21_c02448{bottom:314.466667pt;}
.y20_c02448{bottom:331.266667pt;}
.y1f_c02448{bottom:348.066667pt;}
.y1e_c02448{bottom:365.026667pt;}
.y1d_c02448{bottom:381.826667pt;}
.y1c_c02448{bottom:398.786667pt;}
.y1b_c02448{bottom:415.586667pt;}
.y1a_c02448{bottom:441.986667pt;}
.y19_c02448{bottom:469.506667pt;}
.y18_c02448{bottom:497.213333pt;}
.y17_c02448{bottom:524.733333pt;}
.y16_c02448{bottom:552.413333pt;}
.y15_c02448{bottom:586.333333pt;}
.y14_c02448{bottom:603.293333pt;}
.y13_c02448{bottom:620.093333pt;}
.y12_c02448{bottom:636.893333pt;}
.y11_c02448{bottom:653.853333pt;}
.y10_c02448{bottom:670.653333pt;}
.yf_c02448{bottom:687.613333pt;}
.ye_c02448{bottom:704.413333pt;}
.yd_c02448{bottom:721.253333pt;}
.yc_c02448{bottom:738.213333pt;}
.yb_c02448{bottom:755.013333pt;}
.ya_c02448{bottom:781.413333pt;}
.y9_c02448{bottom:808.933333pt;}
.y8_c02448{bottom:836.613333pt;}
.y7_c02448{bottom:864.133333pt;}
.y6_c02448{bottom:891.813333pt;}
.y5_c02448{bottom:919.333333pt;}
.y4_c02448{bottom:947.040000pt;}
.h2_c02448{height:20.000000pt;}
.h1_c02448{height:43.441250pt;}
.h5_c02448{height:52.785000pt;}
.h6_c02448{height:57.375000pt;}
.h4_c02448{height:57.787500pt;}
.h3_c02448{height:62.812500pt;}
.h0_c02448{height:1056.000000pt;}
.w1_c02448{width:59.232000pt;}
.w0_c02448{width:816.000000pt;}
.x0_c02448{left:0.000000pt;}
.x3_c02448{left:14.720000pt;}
.x1_c02448{left:113.472000pt;}
.x4_c02448{left:161.466667pt;}
.x5_c02448{left:217.466667pt;}
.x2_c02448{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02449 {
    display:none;
  }
  .loading-indicator_c02449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02449 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02449 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02449" -> "#page-container .classname_c02449")
 */
.pf_c02449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02449 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02449 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02449 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02449 {overflow:visible;}
  }
}
.c_c02449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02449 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02449:after { /* webkit #35443 */
  content: '';
}
.t_c02449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02449 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02449 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02449 { /* info for Javascript */
  display:none;
}
.l_c02449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02449:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02449 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02449.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02449;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02449{font-family:ff1_c02449;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02449;src:url('chunks/assets/font_b6ca95f88251846d900db4cd.woff2')format("woff");}.ff2_c02449{font-family:ff2_c02449;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:ff3_c02449;src:url('chunks/assets/font_49340858e60024a56fca4efb.woff2')format("woff");}.ff3_c02449{font-family:ff3_c02449;line-height:1.284180;font-style:normal;font-weight: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_c02449;src:url('chunks/assets/font_156f4254fefab88ad89204ec.woff2')format("woff");}.ff4_c02449{font-family:ff4_c02449;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02449{vertical-align:0.000000px;}
.ls0_c02449{letter-spacing:0.000000px;}
.sc__c02449{text-shadow:none;}
.sc0_c02449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02449{-webkit-text-stroke:0px transparent;}
.sc0_c02449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02449{word-spacing:-18.000000px;}
.ws1_c02449{word-spacing:0.000000px;}
._7_c02449{margin-left:-2.304000px;}
._1_c02449{margin-left:-1.008000px;}
._6_c02449{width:1.152000px;}
._f_c02449{width:2.808000px;}
._12_c02449{width:4.752000px;}
._4_c02449{width:6.480000px;}
._5_c02449{width:7.704000px;}
._8_c02449{width:8.784000px;}
._9_c02449{width:10.368000px;}
._a_c02449{width:11.520000px;}
._e_c02449{width:14.040000px;}
._d_c02449{width:15.696000px;}
._0_c02449{width:16.704000px;}
._b_c02449{width:19.584000px;}
._c_c02449{width:20.808000px;}
._10_c02449{width:22.392000px;}
._11_c02449{width:23.400000px;}
._13_c02449{width:26.640000px;}
._14_c02449{width:27.720000px;}
._2_c02449{width:38.160000px;}
._3_c02449{width:39.528000px;}
.fc1_c02449{color:rgb(192,80,77);}
.fc0_c02449{color:rgb(0,0,0);}
.fs0_c02449{font-size:66.240000px;}
.fs1_c02449{font-size:72.000000px;}
.y0_c02449{bottom:0.000000px;}
.y3_c02449{bottom:4.680000px;}
.y2_c02449{bottom:41.796000px;}
.y1_c02449{bottom:75.456000px;}
.y21_c02449{bottom:164.910000px;}
.y20_c02449{bottom:195.870000px;}
.y1f_c02449{bottom:226.830000px;}
.y1e_c02449{bottom:257.970000px;}
.y1d_c02449{bottom:288.975000px;}
.y1c_c02449{bottom:320.115000px;}
.y1b_c02449{bottom:351.075000px;}
.y1a_c02449{bottom:382.215000px;}
.y19_c02449{bottom:413.175000px;}
.y18_c02449{bottom:444.315000px;}
.y17_c02449{bottom:475.275000px;}
.y16_c02449{bottom:506.415000px;}
.y15_c02449{bottom:537.405000px;}
.y14_c02449{bottom:568.545000px;}
.y13_c02449{bottom:599.505000px;}
.y12_c02449{bottom:630.645000px;}
.y11_c02449{bottom:661.605000px;}
.y10_c02449{bottom:692.745000px;}
.yf_c02449{bottom:723.705000px;}
.ye_c02449{bottom:754.845000px;}
.yd_c02449{bottom:785.805000px;}
.yc_c02449{bottom:816.990000px;}
.yb_c02449{bottom:847.950000px;}
.ya_c02449{bottom:879.090000px;}
.y9_c02449{bottom:910.050000px;}
.y8_c02449{bottom:941.190000px;}
.y7_c02449{bottom:972.150000px;}
.y6_c02449{bottom:1003.290000px;}
.y5_c02449{bottom:1034.250000px;}
.y4_c02449{bottom:1065.420000px;}
.h2_c02449{height:22.500000px;}
.h1_c02449{height:48.871406px;}
.h4_c02449{height:64.546875px;}
.h3_c02449{height:70.664062px;}
.h0_c02449{height:1188.000000px;}
.w1_c02449{width:66.636000px;}
.w0_c02449{width:918.000000px;}
.x0_c02449{left:0.000000px;}
.x3_c02449{left:16.560000px;}
.x1_c02449{left:127.656000px;}
.x4_c02449{left:181.650000px;}
.x2_c02449{left:820.950000px;}
@media print{
.v0_c02449{vertical-align:0.000000pt;}
.ls0_c02449{letter-spacing:0.000000pt;}
.ws0_c02449{word-spacing:-16.000000pt;}
.ws1_c02449{word-spacing:0.000000pt;}
._7_c02449{margin-left:-2.048000pt;}
._1_c02449{margin-left:-0.896000pt;}
._6_c02449{width:1.024000pt;}
._f_c02449{width:2.496000pt;}
._12_c02449{width:4.224000pt;}
._4_c02449{width:5.760000pt;}
._5_c02449{width:6.848000pt;}
._8_c02449{width:7.808000pt;}
._9_c02449{width:9.216000pt;}
._a_c02449{width:10.240000pt;}
._e_c02449{width:12.480000pt;}
._d_c02449{width:13.952000pt;}
._0_c02449{width:14.848000pt;}
._b_c02449{width:17.408000pt;}
._c_c02449{width:18.496000pt;}
._10_c02449{width:19.904000pt;}
._11_c02449{width:20.800000pt;}
._13_c02449{width:23.680000pt;}
._14_c02449{width:24.640000pt;}
._2_c02449{width:33.920000pt;}
._3_c02449{width:35.136000pt;}
.fs0_c02449{font-size:58.880000pt;}
.fs1_c02449{font-size:64.000000pt;}
.y0_c02449{bottom:0.000000pt;}
.y3_c02449{bottom:4.160000pt;}
.y2_c02449{bottom:37.152000pt;}
.y1_c02449{bottom:67.072000pt;}
.y21_c02449{bottom:146.586667pt;}
.y20_c02449{bottom:174.106667pt;}
.y1f_c02449{bottom:201.626667pt;}
.y1e_c02449{bottom:229.306667pt;}
.y1d_c02449{bottom:256.866667pt;}
.y1c_c02449{bottom:284.546667pt;}
.y1b_c02449{bottom:312.066667pt;}
.y1a_c02449{bottom:339.746667pt;}
.y19_c02449{bottom:367.266667pt;}
.y18_c02449{bottom:394.946667pt;}
.y17_c02449{bottom:422.466667pt;}
.y16_c02449{bottom:450.146667pt;}
.y15_c02449{bottom:477.693333pt;}
.y14_c02449{bottom:505.373333pt;}
.y13_c02449{bottom:532.893333pt;}
.y12_c02449{bottom:560.573333pt;}
.y11_c02449{bottom:588.093333pt;}
.y10_c02449{bottom:615.773333pt;}
.yf_c02449{bottom:643.293333pt;}
.ye_c02449{bottom:670.973333pt;}
.yd_c02449{bottom:698.493333pt;}
.yc_c02449{bottom:726.213333pt;}
.yb_c02449{bottom:753.733333pt;}
.ya_c02449{bottom:781.413333pt;}
.y9_c02449{bottom:808.933333pt;}
.y8_c02449{bottom:836.613333pt;}
.y7_c02449{bottom:864.133333pt;}
.y6_c02449{bottom:891.813333pt;}
.y5_c02449{bottom:919.333333pt;}
.y4_c02449{bottom:947.040000pt;}
.h2_c02449{height:20.000000pt;}
.h1_c02449{height:43.441250pt;}
.h4_c02449{height:57.375000pt;}
.h3_c02449{height:62.812500pt;}
.h0_c02449{height:1056.000000pt;}
.w1_c02449{width:59.232000pt;}
.w0_c02449{width:816.000000pt;}
.x0_c02449{left:0.000000pt;}
.x3_c02449{left:14.720000pt;}
.x1_c02449{left:113.472000pt;}
.x4_c02449{left:161.466667pt;}
.x2_c02449{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02450 {
    display:none;
  }
  .loading-indicator_c02450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02450 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02450 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02450" -> "#page-container .classname_c02450")
 */
.pf_c02450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02450 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02450 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02450 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02450 {overflow:visible;}
  }
}
.c_c02450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02450 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02450:after { /* webkit #35443 */
  content: '';
}
.t_c02450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02450 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02450 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02450 { /* info for Javascript */
  display:none;
}
.l_c02450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02450:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02450 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02450.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02450;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02450{font-family:ff1_c02450;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02450;src:url('chunks/assets/font_120ed8b029f2ded56d091891.woff2')format("woff");}.ff2_c02450{font-family:ff2_c02450;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:ff3_c02450;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02450{font-family:ff3_c02450;line-height:1.311035;font-style:normal;font-weight: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_c02450;src:url('chunks/assets/font_e60150df17e6b07c3a000752.woff2')format("woff");}.ff4_c02450{font-family:ff4_c02450;line-height:1.112305;font-style:normal;font-weight: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_c02450;src:url('chunks/assets/font_389f4c2091d2ee1f41c2b8db.woff2')format("woff");}.ff5_c02450{font-family:ff5_c02450;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02450{vertical-align:0.000000px;}
.ls1_c02450{letter-spacing:0.000000px;}
.ls2_c02450{letter-spacing:0.720000px;}
.ls0_c02450{letter-spacing:13.080000px;}
.sc__c02450{text-shadow:none;}
.sc0_c02450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02450{-webkit-text-stroke:0px transparent;}
.sc0_c02450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02450{word-spacing:0.000000px;}
._4_c02450{margin-left:-2.160000px;}
._1_c02450{margin-left:-1.008000px;}
._2_c02450{width:1.296000px;}
._3_c02450{width:2.592000px;}
._d_c02450{width:4.332024px;}
._0_c02450{width:5.616000px;}
._c_c02450{width:7.416000px;}
._b_c02450{width:8.568000px;}
._5_c02450{width:10.728000px;}
._6_c02450{width:11.880000px;}
._14_c02450{width:13.032000px;}
._12_c02450{width:14.112000px;}
._7_c02450{width:15.264000px;}
._8_c02450{width:16.776000px;}
._9_c02450{width:22.176000px;}
._a_c02450{width:23.292000px;}
._e_c02450{width:24.840000px;}
._f_c02450{width:26.388000px;}
._13_c02450{width:27.756000px;}
._10_c02450{width:32.256000px;}
._11_c02450{width:33.912000px;}
.fc1_c02450{color:rgb(192,80,77);}
.fc2_c02450{color:rgb(17,17,17);}
.fc0_c02450{color:rgb(0,0,0);}
.fs0_c02450{font-size:66.240000px;}
.fs1_c02450{font-size:72.000000px;}
.y0_c02450{bottom:0.000000px;}
.y3_c02450{bottom:4.680000px;}
.y2_c02450{bottom:41.796000px;}
.y1_c02450{bottom:75.456000px;}
.y23_c02450{bottom:123.516000px;}
.y22_c02450{bottom:154.470000px;}
.y21_c02450{bottom:185.430000px;}
.y20_c02450{bottom:216.570000px;}
.y1f_c02450{bottom:247.530000px;}
.y1e_c02450{bottom:278.715000px;}
.y1d_c02450{bottom:309.675000px;}
.y1c_c02450{bottom:340.815000px;}
.y1b_c02450{bottom:371.775000px;}
.y1a_c02450{bottom:402.915000px;}
.y19_c02450{bottom:433.875000px;}
.y18_c02450{bottom:465.015000px;}
.y17_c02450{bottom:495.975000px;}
.y16_c02450{bottom:527.115000px;}
.y15_c02450{bottom:558.105000px;}
.y14_c02450{bottom:578.985000px;}
.y13_c02450{bottom:599.685000px;}
.y12_c02450{bottom:630.645000px;}
.y11_c02450{bottom:661.605000px;}
.y10_c02450{bottom:692.745000px;}
.yf_c02450{bottom:723.705000px;}
.ye_c02450{bottom:754.845000px;}
.yd_c02450{bottom:785.445000px;}
.yc_c02450{bottom:816.990000px;}
.yb_c02450{bottom:847.950000px;}
.ya_c02450{bottom:879.090000px;}
.y9_c02450{bottom:910.050000px;}
.y8_c02450{bottom:941.190000px;}
.y7_c02450{bottom:972.150000px;}
.y6_c02450{bottom:1003.290000px;}
.y5_c02450{bottom:1034.250000px;}
.y4_c02450{bottom:1065.420000px;}
.h2_c02450{height:22.500000px;}
.h1_c02450{height:48.871406px;}
.h3_c02450{height:70.664062px;}
.h4_c02450{height:72.562500px;}
.h5_c02450{height:74.004654px;}
.h0_c02450{height:1188.000000px;}
.w1_c02450{width:66.636000px;}
.w0_c02450{width:918.000000px;}
.x0_c02450{left:0.000000px;}
.x3_c02450{left:16.560000px;}
.x1_c02450{left:127.656000px;}
.x6_c02450{left:131.976000px;}
.x4_c02450{left:181.650000px;}
.x5_c02450{left:187.050000px;}
.x2_c02450{left:820.950000px;}
@media print{
.v0_c02450{vertical-align:0.000000pt;}
.ls1_c02450{letter-spacing:0.000000pt;}
.ls2_c02450{letter-spacing:0.640000pt;}
.ls0_c02450{letter-spacing:11.626667pt;}
.ws0_c02450{word-spacing:0.000000pt;}
._4_c02450{margin-left:-1.920000pt;}
._1_c02450{margin-left:-0.896000pt;}
._2_c02450{width:1.152000pt;}
._3_c02450{width:2.304000pt;}
._d_c02450{width:3.850688pt;}
._0_c02450{width:4.992000pt;}
._c_c02450{width:6.592000pt;}
._b_c02450{width:7.616000pt;}
._5_c02450{width:9.536000pt;}
._6_c02450{width:10.560000pt;}
._14_c02450{width:11.584000pt;}
._12_c02450{width:12.544000pt;}
._7_c02450{width:13.568000pt;}
._8_c02450{width:14.912000pt;}
._9_c02450{width:19.712000pt;}
._a_c02450{width:20.704000pt;}
._e_c02450{width:22.080000pt;}
._f_c02450{width:23.456000pt;}
._13_c02450{width:24.672000pt;}
._10_c02450{width:28.672000pt;}
._11_c02450{width:30.144000pt;}
.fs0_c02450{font-size:58.880000pt;}
.fs1_c02450{font-size:64.000000pt;}
.y0_c02450{bottom:0.000000pt;}
.y3_c02450{bottom:4.160000pt;}
.y2_c02450{bottom:37.152000pt;}
.y1_c02450{bottom:67.072000pt;}
.y23_c02450{bottom:109.792000pt;}
.y22_c02450{bottom:137.306667pt;}
.y21_c02450{bottom:164.826667pt;}
.y20_c02450{bottom:192.506667pt;}
.y1f_c02450{bottom:220.026667pt;}
.y1e_c02450{bottom:247.746667pt;}
.y1d_c02450{bottom:275.266667pt;}
.y1c_c02450{bottom:302.946667pt;}
.y1b_c02450{bottom:330.466667pt;}
.y1a_c02450{bottom:358.146667pt;}
.y19_c02450{bottom:385.666667pt;}
.y18_c02450{bottom:413.346667pt;}
.y17_c02450{bottom:440.866667pt;}
.y16_c02450{bottom:468.546667pt;}
.y15_c02450{bottom:496.093333pt;}
.y14_c02450{bottom:514.653333pt;}
.y13_c02450{bottom:533.053333pt;}
.y12_c02450{bottom:560.573333pt;}
.y11_c02450{bottom:588.093333pt;}
.y10_c02450{bottom:615.773333pt;}
.yf_c02450{bottom:643.293333pt;}
.ye_c02450{bottom:670.973333pt;}
.yd_c02450{bottom:698.173333pt;}
.yc_c02450{bottom:726.213333pt;}
.yb_c02450{bottom:753.733333pt;}
.ya_c02450{bottom:781.413333pt;}
.y9_c02450{bottom:808.933333pt;}
.y8_c02450{bottom:836.613333pt;}
.y7_c02450{bottom:864.133333pt;}
.y6_c02450{bottom:891.813333pt;}
.y5_c02450{bottom:919.333333pt;}
.y4_c02450{bottom:947.040000pt;}
.h2_c02450{height:20.000000pt;}
.h1_c02450{height:43.441250pt;}
.h3_c02450{height:62.812500pt;}
.h4_c02450{height:64.500000pt;}
.h5_c02450{height:65.781915pt;}
.h0_c02450{height:1056.000000pt;}
.w1_c02450{width:59.232000pt;}
.w0_c02450{width:816.000000pt;}
.x0_c02450{left:0.000000pt;}
.x3_c02450{left:14.720000pt;}
.x1_c02450{left:113.472000pt;}
.x6_c02450{left:117.312000pt;}
.x4_c02450{left:161.466667pt;}
.x5_c02450{left:166.266667pt;}
.x2_c02450{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02451 {
    display:none;
  }
  .loading-indicator_c02451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02451" -> "#page-container .classname_c02451")
 */
.pf_c02451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02451 {overflow:visible;}
  }
}
.c_c02451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02451:after { /* webkit #35443 */
  content: '';
}
.t_c02451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02451 { /* info for Javascript */
  display:none;
}
.l_c02451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02451:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02451 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02451.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02451;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02451{font-family:ff1_c02451;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02451;src:url('chunks/assets/font_8e3765fa98e6ad34a4f85b29.woff2')format("woff");}.ff2_c02451{font-family:ff2_c02451;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:ff3_c02451;src:url('chunks/assets/font_b359fe2c3eae91fdf3fb0011.woff2')format("woff");}.ff3_c02451{font-family:ff3_c02451;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02451{vertical-align:0.000000px;}
.ls0_c02451{letter-spacing:0.000000px;}
.sc__c02451{text-shadow:none;}
.sc0_c02451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02451{-webkit-text-stroke:0px transparent;}
.sc0_c02451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02451{word-spacing:0.000000px;}
._0_c02451{margin-left:-1.324734px;}
._3_c02451{width:1.257765px;}
._6_c02451{width:3.179388px;}
._2_c02451{width:5.233159px;}
._4_c02451{width:6.424949px;}
._13_c02451{width:7.484988px;}
._9_c02451{width:8.876425px;}
._a_c02451{width:10.133793px;}
._8_c02451{width:11.393346px;}
._7_c02451{width:12.585600px;}
._12_c02451{width:13.777788px;}
._1_c02451{width:15.500160px;}
._f_c02451{width:18.282041px;}
._11_c02451{width:24.292734px;}
._10_c02451{width:25.776000px;}
._c_c02451{width:26.959812px;}
._b_c02451{width:28.218041px;}
._5_c02451{width:30.006588px;}
._d_c02451{width:31.857996px;}
._e_c02451{width:33.077805px;}
.fc1_c02451{color:rgb(192,80,77);}
.fc0_c02451{color:rgb(0,0,0);}
.fs0_c02451{font-size:66.240000px;}
.fs1_c02451{font-size:72.000000px;}
.y0_c02451{bottom:0.000000px;}
.y3_c02451{bottom:4.680000px;}
.y2_c02451{bottom:41.796000px;}
.y1_c02451{bottom:75.456000px;}
.y30_c02451{bottom:111.096000px;}
.y2f_c02451{bottom:129.996000px;}
.y2e_c02451{bottom:149.076000px;}
.y2d_c02451{bottom:167.970000px;}
.y2c_c02451{bottom:186.870000px;}
.y2b_c02451{bottom:216.570000px;}
.y2a_c02451{bottom:247.530000px;}
.y29_c02451{bottom:278.715000px;}
.y28_c02451{bottom:309.675000px;}
.y27_c02451{bottom:340.815000px;}
.y26_c02451{bottom:371.775000px;}
.y25_c02451{bottom:402.915000px;}
.y24_c02451{bottom:433.875000px;}
.y23_c02451{bottom:465.015000px;}
.y22_c02451{bottom:485.355000px;}
.y21_c02451{bottom:504.435000px;}
.y20_c02451{bottom:523.335000px;}
.y1f_c02451{bottom:542.265000px;}
.y1e_c02451{bottom:561.345000px;}
.y1d_c02451{bottom:580.245000px;}
.y1c_c02451{bottom:599.325000px;}
.y1b_c02451{bottom:618.225000px;}
.y1a_c02451{bottom:637.305000px;}
.y19_c02451{bottom:656.205000px;}
.y18_c02451{bottom:675.105000px;}
.y17_c02451{bottom:694.185000px;}
.y16_c02451{bottom:713.085000px;}
.y15_c02451{bottom:732.165000px;}
.y14_c02451{bottom:751.065000px;}
.y13_c02451{bottom:769.965000px;}
.y12_c02451{bottom:789.045000px;}
.y11_c02451{bottom:807.990000px;}
.y10_c02451{bottom:827.070000px;}
.yf_c02451{bottom:845.970000px;}
.ye_c02451{bottom:864.870000px;}
.yd_c02451{bottom:883.950000px;}
.yc_c02451{bottom:902.850000px;}
.yb_c02451{bottom:921.930000px;}
.ya_c02451{bottom:940.830000px;}
.y9_c02451{bottom:959.730000px;}
.y8_c02451{bottom:978.810000px;}
.y7_c02451{bottom:997.710000px;}
.y6_c02451{bottom:1016.790000px;}
.y5_c02451{bottom:1035.690000px;}
.y4_c02451{bottom:1065.420000px;}
.h2_c02451{height:22.500000px;}
.h1_c02451{height:48.871406px;}
.h4_c02451{height:65.010937px;}
.h3_c02451{height:70.664062px;}
.h0_c02451{height:1188.000000px;}
.w1_c02451{width:66.636000px;}
.w0_c02451{width:918.000000px;}
.x0_c02451{left:0.000000px;}
.x3_c02451{left:16.560000px;}
.x1_c02451{left:127.656000px;}
.x4_c02451{left:181.650000px;}
.x5_c02451{left:244.650000px;}
.x2_c02451{left:820.950000px;}
@media print{
.v0_c02451{vertical-align:0.000000pt;}
.ls0_c02451{letter-spacing:0.000000pt;}
.ws0_c02451{word-spacing:0.000000pt;}
._0_c02451{margin-left:-1.177541pt;}
._3_c02451{width:1.118013pt;}
._6_c02451{width:2.826122pt;}
._2_c02451{width:4.651697pt;}
._4_c02451{width:5.711066pt;}
._13_c02451{width:6.653322pt;}
._9_c02451{width:7.890156pt;}
._a_c02451{width:9.007816pt;}
._8_c02451{width:10.127419pt;}
._7_c02451{width:11.187200pt;}
._12_c02451{width:12.246922pt;}
._1_c02451{width:13.777920pt;}
._f_c02451{width:16.250703pt;}
._11_c02451{width:21.593541pt;}
._10_c02451{width:22.912000pt;}
._c_c02451{width:23.964278pt;}
._b_c02451{width:25.082703pt;}
._5_c02451{width:26.672522pt;}
._d_c02451{width:28.318218pt;}
._e_c02451{width:29.402493pt;}
.fs0_c02451{font-size:58.880000pt;}
.fs1_c02451{font-size:64.000000pt;}
.y0_c02451{bottom:0.000000pt;}
.y3_c02451{bottom:4.160000pt;}
.y2_c02451{bottom:37.152000pt;}
.y1_c02451{bottom:67.072000pt;}
.y30_c02451{bottom:98.752000pt;}
.y2f_c02451{bottom:115.552000pt;}
.y2e_c02451{bottom:132.512000pt;}
.y2d_c02451{bottom:149.306667pt;}
.y2c_c02451{bottom:166.106667pt;}
.y2b_c02451{bottom:192.506667pt;}
.y2a_c02451{bottom:220.026667pt;}
.y29_c02451{bottom:247.746667pt;}
.y28_c02451{bottom:275.266667pt;}
.y27_c02451{bottom:302.946667pt;}
.y26_c02451{bottom:330.466667pt;}
.y25_c02451{bottom:358.146667pt;}
.y24_c02451{bottom:385.666667pt;}
.y23_c02451{bottom:413.346667pt;}
.y22_c02451{bottom:431.426667pt;}
.y21_c02451{bottom:448.386667pt;}
.y20_c02451{bottom:465.186667pt;}
.y1f_c02451{bottom:482.013333pt;}
.y1e_c02451{bottom:498.973333pt;}
.y1d_c02451{bottom:515.773333pt;}
.y1c_c02451{bottom:532.733333pt;}
.y1b_c02451{bottom:549.533333pt;}
.y1a_c02451{bottom:566.493333pt;}
.y19_c02451{bottom:583.293333pt;}
.y18_c02451{bottom:600.093333pt;}
.y17_c02451{bottom:617.053333pt;}
.y16_c02451{bottom:633.853333pt;}
.y15_c02451{bottom:650.813333pt;}
.y14_c02451{bottom:667.613333pt;}
.y13_c02451{bottom:684.413333pt;}
.y12_c02451{bottom:701.373333pt;}
.y11_c02451{bottom:718.213333pt;}
.y10_c02451{bottom:735.173333pt;}
.yf_c02451{bottom:751.973333pt;}
.ye_c02451{bottom:768.773333pt;}
.yd_c02451{bottom:785.733333pt;}
.yc_c02451{bottom:802.533333pt;}
.yb_c02451{bottom:819.493333pt;}
.ya_c02451{bottom:836.293333pt;}
.y9_c02451{bottom:853.093333pt;}
.y8_c02451{bottom:870.053333pt;}
.y7_c02451{bottom:886.853333pt;}
.y6_c02451{bottom:903.813333pt;}
.y5_c02451{bottom:920.613333pt;}
.y4_c02451{bottom:947.040000pt;}
.h2_c02451{height:20.000000pt;}
.h1_c02451{height:43.441250pt;}
.h4_c02451{height:57.787500pt;}
.h3_c02451{height:62.812500pt;}
.h0_c02451{height:1056.000000pt;}
.w1_c02451{width:59.232000pt;}
.w0_c02451{width:816.000000pt;}
.x0_c02451{left:0.000000pt;}
.x3_c02451{left:14.720000pt;}
.x1_c02451{left:113.472000pt;}
.x4_c02451{left:161.466667pt;}
.x5_c02451{left:217.466667pt;}
.x2_c02451{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02452 {
    display:none;
  }
  .loading-indicator_c02452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02452" -> "#page-container .classname_c02452")
 */
.pf_c02452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02452 {overflow:visible;}
  }
}
.c_c02452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02452:after { /* webkit #35443 */
  content: '';
}
.t_c02452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02452 { /* info for Javascript */
  display:none;
}
.l_c02452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02452:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02452 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02452.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02452;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02452{font-family:ff1_c02452;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02452;src:url('chunks/assets/font_acba04af92a5380b1a517877.woff2')format("woff");}.ff2_c02452{font-family:ff2_c02452;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:ff3_c02452;src:url('chunks/assets/font_2cfc2e255d23e691bbee54de.woff2')format("woff");}.ff3_c02452{font-family:ff3_c02452;line-height:1.112305;font-style:normal;font-weight: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_c02452;src:url('chunks/assets/font_b925e9aece3af99a65bd94b8.woff2')format("woff");}.ff4_c02452{font-family:ff4_c02452;line-height:1.284180;font-style:normal;font-weight: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_c02452;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c02452{font-family:ff5_c02452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02452{vertical-align:0.000000px;}
.ls0_c02452{letter-spacing:0.000000px;}
.sc__c02452{text-shadow:none;}
.sc0_c02452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02452{-webkit-text-stroke:0px transparent;}
.sc0_c02452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02452{word-spacing:-16.560000px;}
.ws1_c02452{word-spacing:0.000000px;}
._1_c02452{margin-left:-1.722571px;}
._3_c02452{width:1.126742px;}
._4_c02452{width:2.160484px;}
._11_c02452{width:3.179917px;}
._9_c02452{width:4.835388px;}
._0_c02452{width:5.895559px;}
._5_c02452{width:6.954736px;}
._a_c02452{width:8.942400px;}
._b_c02452{width:10.399812px;}
._10_c02452{width:11.403228px;}
._c_c02452{width:12.744000px;}
._d_c02452{width:13.993258px;}
._2_c02452{width:18.083520px;}
._6_c02452{width:19.606974px;}
._8_c02452{width:21.528000px;}
._7_c02452{width:22.786759px;}
._e_c02452{width:24.768000px;}
._f_c02452{width:41.267388px;}
.fc1_c02452{color:rgb(192,80,77);}
.fc0_c02452{color:rgb(0,0,0);}
.fs0_c02452{font-size:66.240000px;}
.fs1_c02452{font-size:72.000000px;}
.y0_c02452{bottom:0.000000px;}
.y3_c02452{bottom:4.680000px;}
.y2_c02452{bottom:41.796000px;}
.y1_c02452{bottom:75.456000px;}
.y31_c02452{bottom:140.436000px;}
.y30_c02452{bottom:159.330000px;}
.y2f_c02452{bottom:178.410000px;}
.y2e_c02452{bottom:197.310000px;}
.y2d_c02452{bottom:216.210000px;}
.y2c_c02452{bottom:235.290000px;}
.y2b_c02452{bottom:254.190000px;}
.y2a_c02452{bottom:273.315000px;}
.y29_c02452{bottom:292.215000px;}
.y28_c02452{bottom:311.115000px;}
.y27_c02452{bottom:330.195000px;}
.y26_c02452{bottom:349.095000px;}
.y25_c02452{bottom:368.175000px;}
.y24_c02452{bottom:387.075000px;}
.y23_c02452{bottom:405.975000px;}
.y22_c02452{bottom:425.055000px;}
.y21_c02452{bottom:443.955000px;}
.y20_c02452{bottom:463.035000px;}
.y1f_c02452{bottom:481.935000px;}
.y1e_c02452{bottom:501.015000px;}
.y1d_c02452{bottom:519.915000px;}
.y1c_c02452{bottom:538.845000px;}
.y1b_c02452{bottom:557.925000px;}
.y1a_c02452{bottom:576.825000px;}
.y19_c02452{bottom:595.905000px;}
.y18_c02452{bottom:614.805000px;}
.y17_c02452{bottom:644.325000px;}
.y16_c02452{bottom:675.465000px;}
.y15_c02452{bottom:706.425000px;}
.y14_c02452{bottom:737.565000px;}
.y13_c02452{bottom:768.525000px;}
.y12_c02452{bottom:799.710000px;}
.y11_c02452{bottom:820.050000px;}
.y10_c02452{bottom:839.130000px;}
.yf_c02452{bottom:858.030000px;}
.ye_c02452{bottom:877.110000px;}
.yd_c02452{bottom:896.010000px;}
.yc_c02452{bottom:914.910000px;}
.yb_c02452{bottom:933.990000px;}
.ya_c02452{bottom:952.890000px;}
.y9_c02452{bottom:971.970000px;}
.y8_c02452{bottom:990.870000px;}
.y7_c02452{bottom:1009.770000px;}
.y6_c02452{bottom:1028.850000px;}
.y5_c02452{bottom:1047.750000px;}
.y4_c02452{bottom:1066.860000px;}
.h2_c02452{height:22.500000px;}
.h1_c02452{height:48.871406px;}
.h5_c02452{height:59.383125px;}
.h3_c02452{height:65.010937px;}
.h6_c02452{height:66.757500px;}
.h4_c02452{height:70.664062px;}
.h0_c02452{height:1188.000000px;}
.w1_c02452{width:66.636000px;}
.w0_c02452{width:918.000000px;}
.x0_c02452{left:0.000000px;}
.x3_c02452{left:16.560000px;}
.x1_c02452{left:127.656000px;}
.x5_c02452{left:181.650000px;}
.x4_c02452{left:244.650000px;}
.x2_c02452{left:820.950000px;}
@media print{
.v0_c02452{vertical-align:0.000000pt;}
.ls0_c02452{letter-spacing:0.000000pt;}
.ws0_c02452{word-spacing:-14.720000pt;}
.ws1_c02452{word-spacing:0.000000pt;}
._1_c02452{margin-left:-1.531174pt;}
._3_c02452{width:1.001549pt;}
._4_c02452{width:1.920430pt;}
._11_c02452{width:2.826593pt;}
._9_c02452{width:4.298122pt;}
._0_c02452{width:5.240497pt;}
._5_c02452{width:6.181988pt;}
._a_c02452{width:7.948800pt;}
._b_c02452{width:9.244278pt;}
._10_c02452{width:10.136202pt;}
._c_c02452{width:11.328000pt;}
._d_c02452{width:12.438451pt;}
._2_c02452{width:16.074240pt;}
._6_c02452{width:17.428421pt;}
._8_c02452{width:19.136000pt;}
._7_c02452{width:20.254897pt;}
._e_c02452{width:22.016000pt;}
._f_c02452{width:36.682122pt;}
.fs0_c02452{font-size:58.880000pt;}
.fs1_c02452{font-size:64.000000pt;}
.y0_c02452{bottom:0.000000pt;}
.y3_c02452{bottom:4.160000pt;}
.y2_c02452{bottom:37.152000pt;}
.y1_c02452{bottom:67.072000pt;}
.y31_c02452{bottom:124.832000pt;}
.y30_c02452{bottom:141.626667pt;}
.y2f_c02452{bottom:158.586667pt;}
.y2e_c02452{bottom:175.386667pt;}
.y2d_c02452{bottom:192.186667pt;}
.y2c_c02452{bottom:209.146667pt;}
.y2b_c02452{bottom:225.946667pt;}
.y2a_c02452{bottom:242.946667pt;}
.y29_c02452{bottom:259.746667pt;}
.y28_c02452{bottom:276.546667pt;}
.y27_c02452{bottom:293.506667pt;}
.y26_c02452{bottom:310.306667pt;}
.y25_c02452{bottom:327.266667pt;}
.y24_c02452{bottom:344.066667pt;}
.y23_c02452{bottom:360.866667pt;}
.y22_c02452{bottom:377.826667pt;}
.y21_c02452{bottom:394.626667pt;}
.y20_c02452{bottom:411.586667pt;}
.y1f_c02452{bottom:428.386667pt;}
.y1e_c02452{bottom:445.346667pt;}
.y1d_c02452{bottom:462.146667pt;}
.y1c_c02452{bottom:478.973333pt;}
.y1b_c02452{bottom:495.933333pt;}
.y1a_c02452{bottom:512.733333pt;}
.y19_c02452{bottom:529.693333pt;}
.y18_c02452{bottom:546.493333pt;}
.y17_c02452{bottom:572.733333pt;}
.y16_c02452{bottom:600.413333pt;}
.y15_c02452{bottom:627.933333pt;}
.y14_c02452{bottom:655.613333pt;}
.y13_c02452{bottom:683.133333pt;}
.y12_c02452{bottom:710.853333pt;}
.y11_c02452{bottom:728.933333pt;}
.y10_c02452{bottom:745.893333pt;}
.yf_c02452{bottom:762.693333pt;}
.ye_c02452{bottom:779.653333pt;}
.yd_c02452{bottom:796.453333pt;}
.yc_c02452{bottom:813.253333pt;}
.yb_c02452{bottom:830.213333pt;}
.ya_c02452{bottom:847.013333pt;}
.y9_c02452{bottom:863.973333pt;}
.y8_c02452{bottom:880.773333pt;}
.y7_c02452{bottom:897.573333pt;}
.y6_c02452{bottom:914.533333pt;}
.y5_c02452{bottom:931.333333pt;}
.y4_c02452{bottom:948.320000pt;}
.h2_c02452{height:20.000000pt;}
.h1_c02452{height:43.441250pt;}
.h5_c02452{height:52.785000pt;}
.h3_c02452{height:57.787500pt;}
.h6_c02452{height:59.340000pt;}
.h4_c02452{height:62.812500pt;}
.h0_c02452{height:1056.000000pt;}
.w1_c02452{width:59.232000pt;}
.w0_c02452{width:816.000000pt;}
.x0_c02452{left:0.000000pt;}
.x3_c02452{left:14.720000pt;}
.x1_c02452{left:113.472000pt;}
.x5_c02452{left:161.466667pt;}
.x4_c02452{left:217.466667pt;}
.x2_c02452{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02453 {
    display:none;
  }
  .loading-indicator_c02453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02453" -> "#page-container .classname_c02453")
 */
.pf_c02453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02453 {overflow:visible;}
  }
}
.c_c02453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02453:after { /* webkit #35443 */
  content: '';
}
.t_c02453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02453 { /* info for Javascript */
  display:none;
}
.l_c02453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02453:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02453 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02453.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02453;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff1_c02453{font-family:ff1_c02453;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02453;src:url('chunks/assets/font_6dd9fb7530f54bfbaf9742ea.woff2')format("woff");}.ff2_c02453{font-family:ff2_c02453;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:ff3_c02453;src:url('chunks/assets/font_466ffc035f902f904cdf8775.woff2')format("woff");}.ff3_c02453{font-family:ff3_c02453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02453{vertical-align:0.000000px;}
.ls0_c02453{letter-spacing:0.000000px;}
.sc__c02453{text-shadow:none;}
.sc0_c02453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02453{-webkit-text-stroke:0px transparent;}
.sc0_c02453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02453{word-spacing:0.000000px;}
._0_c02453{margin-left:-1.258759px;}
._5_c02453{width:1.457412px;}
._4_c02453{width:2.583625px;}
._c_c02453{width:4.438146px;}
._d_c02453{width:5.497854px;}
._8_c02453{width:7.087746px;}
._9_c02453{width:8.213429px;}
._e_c02453{width:9.671504px;}
._f_c02453{width:11.393412px;}
._10_c02453{width:12.717683px;}
._a_c02453{width:14.914742px;}
._7_c02453{width:18.148700px;}
._6_c02453{width:19.474825px;}
._11_c02453{width:21.299288px;}
._3_c02453{width:22.455625px;}
._b_c02453{width:23.513279px;}
._2_c02453{width:24.840066px;}
._1_c02453{width:26.705451px;}
.fc1_c02453{color:rgb(192,80,77);}
.fc0_c02453{color:rgb(0,0,0);}
.fs0_c02453{font-size:66.240000px;}
.fs1_c02453{font-size:72.000000px;}
.y0_c02453{bottom:0.000000px;}
.y3_c02453{bottom:4.680000px;}
.y2_c02453{bottom:41.796000px;}
.y1_c02453{bottom:75.456000px;}
.y2f_c02453{bottom:142.056000px;}
.y2e_c02453{bottom:161.130000px;}
.y2d_c02453{bottom:180.030000px;}
.y2c_c02453{bottom:199.110000px;}
.y2b_c02453{bottom:218.010000px;}
.y2a_c02453{bottom:236.910000px;}
.y29_c02453{bottom:255.990000px;}
.y28_c02453{bottom:285.555000px;}
.y27_c02453{bottom:316.695000px;}
.y26_c02453{bottom:347.655000px;}
.y25_c02453{bottom:378.795000px;}
.y24_c02453{bottom:409.755000px;}
.y23_c02453{bottom:440.895000px;}
.y22_c02453{bottom:471.855000px;}
.y21_c02453{bottom:502.995000px;}
.y20_c02453{bottom:533.985000px;}
.y1f_c02453{bottom:554.505000px;}
.y1e_c02453{bottom:573.405000px;}
.y1d_c02453{bottom:592.305000px;}
.y1c_c02453{bottom:611.385000px;}
.y1b_c02453{bottom:630.285000px;}
.y1a_c02453{bottom:649.365000px;}
.y19_c02453{bottom:668.265000px;}
.y18_c02453{bottom:687.165000px;}
.y17_c02453{bottom:706.245000px;}
.y16_c02453{bottom:725.145000px;}
.y15_c02453{bottom:744.225000px;}
.y14_c02453{bottom:763.125000px;}
.y13_c02453{bottom:782.025000px;}
.y12_c02453{bottom:801.150000px;}
.y11_c02453{bottom:820.050000px;}
.y10_c02453{bottom:839.130000px;}
.yf_c02453{bottom:858.030000px;}
.ye_c02453{bottom:877.110000px;}
.yd_c02453{bottom:896.010000px;}
.yc_c02453{bottom:914.910000px;}
.yb_c02453{bottom:933.990000px;}
.ya_c02453{bottom:952.890000px;}
.y9_c02453{bottom:971.970000px;}
.y8_c02453{bottom:990.870000px;}
.y7_c02453{bottom:1009.770000px;}
.y6_c02453{bottom:1028.850000px;}
.y5_c02453{bottom:1047.750000px;}
.y4_c02453{bottom:1066.860000px;}
.h2_c02453{height:22.500000px;}
.h1_c02453{height:48.871406px;}
.h3_c02453{height:65.010937px;}
.h4_c02453{height:70.664062px;}
.h0_c02453{height:1188.000000px;}
.w1_c02453{width:66.636000px;}
.w0_c02453{width:918.000000px;}
.x0_c02453{left:0.000000px;}
.x3_c02453{left:16.560000px;}
.x1_c02453{left:127.656000px;}
.x5_c02453{left:181.650000px;}
.x4_c02453{left:244.650000px;}
.x2_c02453{left:820.950000px;}
@media print{
.v0_c02453{vertical-align:0.000000pt;}
.ls0_c02453{letter-spacing:0.000000pt;}
.ws0_c02453{word-spacing:0.000000pt;}
._0_c02453{margin-left:-1.118897pt;}
._5_c02453{width:1.295478pt;}
._4_c02453{width:2.296556pt;}
._c_c02453{width:3.945019pt;}
._d_c02453{width:4.886981pt;}
._8_c02453{width:6.300219pt;}
._9_c02453{width:7.300826pt;}
._e_c02453{width:8.596892pt;}
._f_c02453{width:10.127478pt;}
._10_c02453{width:11.304607pt;}
._a_c02453{width:13.257549pt;}
._7_c02453{width:16.132178pt;}
._6_c02453{width:17.310956pt;}
._11_c02453{width:18.932700pt;}
._3_c02453{width:19.960556pt;}
._b_c02453{width:20.900692pt;}
._2_c02453{width:22.080059pt;}
._1_c02453{width:23.738179pt;}
.fs0_c02453{font-size:58.880000pt;}
.fs1_c02453{font-size:64.000000pt;}
.y0_c02453{bottom:0.000000pt;}
.y3_c02453{bottom:4.160000pt;}
.y2_c02453{bottom:37.152000pt;}
.y1_c02453{bottom:67.072000pt;}
.y2f_c02453{bottom:126.272000pt;}
.y2e_c02453{bottom:143.226667pt;}
.y2d_c02453{bottom:160.026667pt;}
.y2c_c02453{bottom:176.986667pt;}
.y2b_c02453{bottom:193.786667pt;}
.y2a_c02453{bottom:210.586667pt;}
.y29_c02453{bottom:227.546667pt;}
.y28_c02453{bottom:253.826667pt;}
.y27_c02453{bottom:281.506667pt;}
.y26_c02453{bottom:309.026667pt;}
.y25_c02453{bottom:336.706667pt;}
.y24_c02453{bottom:364.226667pt;}
.y23_c02453{bottom:391.906667pt;}
.y22_c02453{bottom:419.426667pt;}
.y21_c02453{bottom:447.106667pt;}
.y20_c02453{bottom:474.653333pt;}
.y1f_c02453{bottom:492.893333pt;}
.y1e_c02453{bottom:509.693333pt;}
.y1d_c02453{bottom:526.493333pt;}
.y1c_c02453{bottom:543.453333pt;}
.y1b_c02453{bottom:560.253333pt;}
.y1a_c02453{bottom:577.213333pt;}
.y19_c02453{bottom:594.013333pt;}
.y18_c02453{bottom:610.813333pt;}
.y17_c02453{bottom:627.773333pt;}
.y16_c02453{bottom:644.573333pt;}
.y15_c02453{bottom:661.533333pt;}
.y14_c02453{bottom:678.333333pt;}
.y13_c02453{bottom:695.133333pt;}
.y12_c02453{bottom:712.133333pt;}
.y11_c02453{bottom:728.933333pt;}
.y10_c02453{bottom:745.893333pt;}
.yf_c02453{bottom:762.693333pt;}
.ye_c02453{bottom:779.653333pt;}
.yd_c02453{bottom:796.453333pt;}
.yc_c02453{bottom:813.253333pt;}
.yb_c02453{bottom:830.213333pt;}
.ya_c02453{bottom:847.013333pt;}
.y9_c02453{bottom:863.973333pt;}
.y8_c02453{bottom:880.773333pt;}
.y7_c02453{bottom:897.573333pt;}
.y6_c02453{bottom:914.533333pt;}
.y5_c02453{bottom:931.333333pt;}
.y4_c02453{bottom:948.320000pt;}
.h2_c02453{height:20.000000pt;}
.h1_c02453{height:43.441250pt;}
.h3_c02453{height:57.787500pt;}
.h4_c02453{height:62.812500pt;}
.h0_c02453{height:1056.000000pt;}
.w1_c02453{width:59.232000pt;}
.w0_c02453{width:816.000000pt;}
.x0_c02453{left:0.000000pt;}
.x3_c02453{left:14.720000pt;}
.x1_c02453{left:113.472000pt;}
.x5_c02453{left:161.466667pt;}
.x4_c02453{left:217.466667pt;}
.x2_c02453{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02454 {
    display:none;
  }
  .loading-indicator_c02454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02454" -> "#page-container .classname_c02454")
 */
.pf_c02454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02454 {overflow:visible;}
  }
}
.c_c02454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02454:after { /* webkit #35443 */
  content: '';
}
.t_c02454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02454 { /* info for Javascript */
  display:none;
}
.l_c02454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02454:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02454 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02454.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02454;src:url('chunks/assets/font_3e5987eee5b02fe26d59b4f3.woff2')format("woff");}.ff1_c02454{font-family:ff1_c02454;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02454;src:url('chunks/assets/font_95cb46a4b7ca64628696fab8.woff2')format("woff");}.ff2_c02454{font-family:ff2_c02454;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:ff3_c02454;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02454{font-family:ff3_c02454;line-height:1.311035;font-style:normal;font-weight: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_c02454;src:url('chunks/assets/font_e97a59f72525d9fdfb4ca2f9.woff2')format("woff");}.ff4_c02454{font-family:ff4_c02454;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02454{vertical-align:0.000000px;}
.ls1_c02454{letter-spacing:0.000000px;}
.ls0_c02454{letter-spacing:0.180000px;}
.sc__c02454{text-shadow:none;}
.sc0_c02454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02454{-webkit-text-stroke:0px transparent;}
.sc0_c02454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02454{word-spacing:-16.560000px;}
.ws1_c02454{word-spacing:0.000000px;}
._1_c02454{margin-left:-1.457412px;}
._4_c02454{width:1.921225px;}
._2_c02454{width:3.908425px;}
._0_c02454{width:5.630400px;}
._7_c02454{width:6.671388px;}
._a_c02454{width:8.546285px;}
._6_c02454{width:9.936066px;}
._5_c02454{width:11.062212px;}
._3_c02454{width:15.103382px;}
._8_c02454{width:19.512000px;}
._9_c02454{width:23.472000px;}
._c_c02454{width:32.789330px;}
._b_c02454{width:34.444866px;}
.fc1_c02454{color:rgb(192,80,77);}
.fc0_c02454{color:rgb(0,0,0);}
.fs0_c02454{font-size:66.240000px;}
.fs1_c02454{font-size:72.000000px;}
.y0_c02454{bottom:0.000000px;}
.y3_c02454{bottom:4.680000px;}
.y2_c02454{bottom:41.796000px;}
.y1_c02454{bottom:75.456000px;}
.y1a_c02454{bottom:564.765000px;}
.y19_c02454{bottom:583.665000px;}
.y18_c02454{bottom:602.745000px;}
.y17_c02454{bottom:621.645000px;}
.y16_c02454{bottom:640.725000px;}
.y15_c02454{bottom:659.625000px;}
.y14_c02454{bottom:678.705000px;}
.y13_c02454{bottom:697.605000px;}
.y12_c02454{bottom:727.125000px;}
.y11_c02454{bottom:758.265000px;}
.y10_c02454{bottom:789.225000px;}
.yf_c02454{bottom:820.410000px;}
.ye_c02454{bottom:851.370000px;}
.yd_c02454{bottom:882.510000px;}
.yc_c02454{bottom:913.470000px;}
.yb_c02454{bottom:933.990000px;}
.ya_c02454{bottom:952.890000px;}
.y9_c02454{bottom:971.970000px;}
.y8_c02454{bottom:990.870000px;}
.y7_c02454{bottom:1009.770000px;}
.y6_c02454{bottom:1028.850000px;}
.y5_c02454{bottom:1047.750000px;}
.y4_c02454{bottom:1066.860000px;}
.h2_c02454{height:22.500000px;}
.h1_c02454{height:48.871406px;}
.h6_c02454{height:59.383125px;}
.h3_c02454{height:65.010937px;}
.h4_c02454{height:66.757500px;}
.h5_c02454{height:70.664062px;}
.h0_c02454{height:1188.000000px;}
.w1_c02454{width:66.636000px;}
.w0_c02454{width:918.000000px;}
.x0_c02454{left:0.000000px;}
.x3_c02454{left:16.560000px;}
.x1_c02454{left:127.656000px;}
.x5_c02454{left:181.650000px;}
.x4_c02454{left:244.650000px;}
.x2_c02454{left:820.950000px;}
@media print{
.v0_c02454{vertical-align:0.000000pt;}
.ls1_c02454{letter-spacing:0.000000pt;}
.ls0_c02454{letter-spacing:0.160000pt;}
.ws0_c02454{word-spacing:-14.720000pt;}
.ws1_c02454{word-spacing:0.000000pt;}
._1_c02454{margin-left:-1.295478pt;}
._4_c02454{width:1.707756pt;}
._2_c02454{width:3.474156pt;}
._0_c02454{width:5.004800pt;}
._7_c02454{width:5.930122pt;}
._a_c02454{width:7.596698pt;}
._6_c02454{width:8.832059pt;}
._5_c02454{width:9.833078pt;}
._3_c02454{width:13.425229pt;}
._8_c02454{width:17.344000pt;}
._9_c02454{width:20.864000pt;}
._c_c02454{width:29.146071pt;}
._b_c02454{width:30.617659pt;}
.fs0_c02454{font-size:58.880000pt;}
.fs1_c02454{font-size:64.000000pt;}
.y0_c02454{bottom:0.000000pt;}
.y3_c02454{bottom:4.160000pt;}
.y2_c02454{bottom:37.152000pt;}
.y1_c02454{bottom:67.072000pt;}
.y1a_c02454{bottom:502.013333pt;}
.y19_c02454{bottom:518.813333pt;}
.y18_c02454{bottom:535.773333pt;}
.y17_c02454{bottom:552.573333pt;}
.y16_c02454{bottom:569.533333pt;}
.y15_c02454{bottom:586.333333pt;}
.y14_c02454{bottom:603.293333pt;}
.y13_c02454{bottom:620.093333pt;}
.y12_c02454{bottom:646.333333pt;}
.y11_c02454{bottom:674.013333pt;}
.y10_c02454{bottom:701.533333pt;}
.yf_c02454{bottom:729.253333pt;}
.ye_c02454{bottom:756.773333pt;}
.yd_c02454{bottom:784.453333pt;}
.yc_c02454{bottom:811.973333pt;}
.yb_c02454{bottom:830.213333pt;}
.ya_c02454{bottom:847.013333pt;}
.y9_c02454{bottom:863.973333pt;}
.y8_c02454{bottom:880.773333pt;}
.y7_c02454{bottom:897.573333pt;}
.y6_c02454{bottom:914.533333pt;}
.y5_c02454{bottom:931.333333pt;}
.y4_c02454{bottom:948.320000pt;}
.h2_c02454{height:20.000000pt;}
.h1_c02454{height:43.441250pt;}
.h6_c02454{height:52.785000pt;}
.h3_c02454{height:57.787500pt;}
.h4_c02454{height:59.340000pt;}
.h5_c02454{height:62.812500pt;}
.h0_c02454{height:1056.000000pt;}
.w1_c02454{width:59.232000pt;}
.w0_c02454{width:816.000000pt;}
.x0_c02454{left:0.000000pt;}
.x3_c02454{left:14.720000pt;}
.x1_c02454{left:113.472000pt;}
.x5_c02454{left:161.466667pt;}
.x4_c02454{left:217.466667pt;}
.x2_c02454{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02455 {
    display:none;
  }
  .loading-indicator_c02455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02455 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02455 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02455" -> "#page-container .classname_c02455")
 */
.pf_c02455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02455 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02455 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02455 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02455 {overflow:visible;}
  }
}
.c_c02455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02455 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02455:after { /* webkit #35443 */
  content: '';
}
.t_c02455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02455 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02455 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02455 { /* info for Javascript */
  display:none;
}
.l_c02455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02455:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02455 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02455.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02455;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02455{font-family:ff1_c02455;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02455;src:url('chunks/assets/font_2159701a6df3530a1ca67d20.woff2')format("woff");}.ff2_c02455{font-family:ff2_c02455;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:ff3_c02455;src:url('chunks/assets/font_9d1c8fb34dcba1336c753be7.woff2')format("woff");}.ff3_c02455{font-family:ff3_c02455;line-height:1.402354;font-style:normal;font-weight: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_c02455;src:url('chunks/assets/font_7f08d6e44530e3f1820fdad0.woff2')format("woff");}.ff4_c02455{font-family:ff4_c02455;line-height:1.284180;font-style:normal;font-weight: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_c02455;src:url('chunks/assets/font_7c21d65d9457f975d6e7e224.woff2')format("woff");}.ff5_c02455{font-family:ff5_c02455;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02455{vertical-align:0.000000px;}
.ls0_c02455{letter-spacing:0.000000px;}
.sc__c02455{text-shadow:none;}
.sc0_c02455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02455{-webkit-text-stroke:0px transparent;}
.sc0_c02455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02455{word-spacing:-18.000000px;}
.ws1_c02455{word-spacing:0.000000px;}
._0_c02455{margin-left:-2.040000px;}
._8_c02455{margin-left:-1.039548px;}
._2_c02455{width:1.224000px;}
._6_c02455{width:2.232000px;}
._7_c02455{width:3.744000px;}
._4_c02455{width:5.112000px;}
._5_c02455{width:6.408000px;}
._9_c02455{width:7.416000px;}
._a_c02455{width:8.496000px;}
._f_c02455{width:10.129874px;}
._1_c02455{width:11.448000px;}
._12_c02455{width:12.856188px;}
._e_c02455{width:13.976508px;}
._d_c02455{width:15.655548px;}
._11_c02455{width:20.184000px;}
._10_c02455{width:21.600000px;}
._b_c02455{width:23.400000px;}
._c_c02455{width:24.552000px;}
._3_c02455{width:28.584000px;}
.fc1_c02455{color:rgb(192,80,77);}
.fc2_c02455{color:rgb(17,17,17);}
.fc0_c02455{color:rgb(0,0,0);}
.fs0_c02455{font-size:66.240000px;}
.fs1_c02455{font-size:72.000000px;}
.y0_c02455{bottom:0.000000px;}
.y3_c02455{bottom:4.680000px;}
.y2_c02455{bottom:41.796000px;}
.y1_c02455{bottom:75.456000px;}
.y28_c02455{bottom:111.096000px;}
.y27_c02455{bottom:129.996000px;}
.y26_c02455{bottom:149.076000px;}
.y25_c02455{bottom:167.970000px;}
.y24_c02455{bottom:197.670000px;}
.y23_c02455{bottom:228.630000px;}
.y22_c02455{bottom:259.770000px;}
.y21_c02455{bottom:290.775000px;}
.y20_c02455{bottom:321.915000px;}
.y1f_c02455{bottom:352.875000px;}
.y1e_c02455{bottom:383.835000px;}
.y1d_c02455{bottom:413.895000px;}
.y1c_c02455{bottom:432.795000px;}
.y1b_c02455{bottom:451.695000px;}
.y1a_c02455{bottom:470.775000px;}
.y19_c02455{bottom:489.675000px;}
.y18_c02455{bottom:508.755000px;}
.y17_c02455{bottom:527.655000px;}
.y16_c02455{bottom:557.385000px;}
.y15_c02455{bottom:588.345000px;}
.y14_c02455{bottom:619.485000px;}
.y13_c02455{bottom:650.445000px;}
.y12_c02455{bottom:681.405000px;}
.y11_c02455{bottom:712.545000px;}
.y10_c02455{bottom:742.425000px;}
.yf_c02455{bottom:761.325000px;}
.ye_c02455{bottom:780.405000px;}
.yd_c02455{bottom:799.350000px;}
.yc_c02455{bottom:818.430000px;}
.yb_c02455{bottom:847.950000px;}
.ya_c02455{bottom:879.090000px;}
.y9_c02455{bottom:910.050000px;}
.y8_c02455{bottom:941.190000px;}
.y7_c02455{bottom:972.150000px;}
.y6_c02455{bottom:1003.290000px;}
.y5_c02455{bottom:1034.250000px;}
.y4_c02455{bottom:1065.420000px;}
.h2_c02455{height:22.500000px;}
.h1_c02455{height:48.871406px;}
.h6_c02455{height:64.546875px;}
.h5_c02455{height:65.010937px;}
.h4_c02455{height:70.664062px;}
.h3_c02455{height:74.004654px;}
.h0_c02455{height:1188.000000px;}
.w1_c02455{width:66.636000px;}
.w0_c02455{width:918.000000px;}
.x0_c02455{left:0.000000px;}
.x3_c02455{left:16.560000px;}
.x1_c02455{left:127.656000px;}
.x4_c02455{left:131.976000px;}
.x5_c02455{left:181.650000px;}
.x6_c02455{left:244.650000px;}
.x2_c02455{left:820.950000px;}
@media print{
.v0_c02455{vertical-align:0.000000pt;}
.ls0_c02455{letter-spacing:0.000000pt;}
.ws0_c02455{word-spacing:-16.000000pt;}
.ws1_c02455{word-spacing:0.000000pt;}
._0_c02455{margin-left:-1.813333pt;}
._8_c02455{margin-left:-0.924042pt;}
._2_c02455{width:1.088000pt;}
._6_c02455{width:1.984000pt;}
._7_c02455{width:3.328000pt;}
._4_c02455{width:4.544000pt;}
._5_c02455{width:5.696000pt;}
._9_c02455{width:6.592000pt;}
._a_c02455{width:7.552000pt;}
._f_c02455{width:9.004332pt;}
._1_c02455{width:10.176000pt;}
._12_c02455{width:11.427722pt;}
._e_c02455{width:12.423562pt;}
._d_c02455{width:13.916042pt;}
._11_c02455{width:17.941333pt;}
._10_c02455{width:19.200000pt;}
._b_c02455{width:20.800000pt;}
._c_c02455{width:21.824000pt;}
._3_c02455{width:25.408000pt;}
.fs0_c02455{font-size:58.880000pt;}
.fs1_c02455{font-size:64.000000pt;}
.y0_c02455{bottom:0.000000pt;}
.y3_c02455{bottom:4.160000pt;}
.y2_c02455{bottom:37.152000pt;}
.y1_c02455{bottom:67.072000pt;}
.y28_c02455{bottom:98.752000pt;}
.y27_c02455{bottom:115.552000pt;}
.y26_c02455{bottom:132.512000pt;}
.y25_c02455{bottom:149.306667pt;}
.y24_c02455{bottom:175.706667pt;}
.y23_c02455{bottom:203.226667pt;}
.y22_c02455{bottom:230.906667pt;}
.y21_c02455{bottom:258.466667pt;}
.y20_c02455{bottom:286.146667pt;}
.y1f_c02455{bottom:313.666667pt;}
.y1e_c02455{bottom:341.186667pt;}
.y1d_c02455{bottom:367.906667pt;}
.y1c_c02455{bottom:384.706667pt;}
.y1b_c02455{bottom:401.506667pt;}
.y1a_c02455{bottom:418.466667pt;}
.y19_c02455{bottom:435.266667pt;}
.y18_c02455{bottom:452.226667pt;}
.y17_c02455{bottom:469.026667pt;}
.y16_c02455{bottom:495.453333pt;}
.y15_c02455{bottom:522.973333pt;}
.y14_c02455{bottom:550.653333pt;}
.y13_c02455{bottom:578.173333pt;}
.y12_c02455{bottom:605.693333pt;}
.y11_c02455{bottom:633.373333pt;}
.y10_c02455{bottom:659.933333pt;}
.yf_c02455{bottom:676.733333pt;}
.ye_c02455{bottom:693.693333pt;}
.yd_c02455{bottom:710.533333pt;}
.yc_c02455{bottom:727.493333pt;}
.yb_c02455{bottom:753.733333pt;}
.ya_c02455{bottom:781.413333pt;}
.y9_c02455{bottom:808.933333pt;}
.y8_c02455{bottom:836.613333pt;}
.y7_c02455{bottom:864.133333pt;}
.y6_c02455{bottom:891.813333pt;}
.y5_c02455{bottom:919.333333pt;}
.y4_c02455{bottom:947.040000pt;}
.h2_c02455{height:20.000000pt;}
.h1_c02455{height:43.441250pt;}
.h6_c02455{height:57.375000pt;}
.h5_c02455{height:57.787500pt;}
.h4_c02455{height:62.812500pt;}
.h3_c02455{height:65.781915pt;}
.h0_c02455{height:1056.000000pt;}
.w1_c02455{width:59.232000pt;}
.w0_c02455{width:816.000000pt;}
.x0_c02455{left:0.000000pt;}
.x3_c02455{left:14.720000pt;}
.x1_c02455{left:113.472000pt;}
.x4_c02455{left:117.312000pt;}
.x5_c02455{left:161.466667pt;}
.x6_c02455{left:217.466667pt;}
.x2_c02455{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02456 {
    display:none;
  }
  .loading-indicator_c02456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02456 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02456 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02456" -> "#page-container .classname_c02456")
 */
.pf_c02456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02456 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02456 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02456 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02456 {overflow:visible;}
  }
}
.c_c02456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02456 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02456:after { /* webkit #35443 */
  content: '';
}
.t_c02456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02456 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02456 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02456 { /* info for Javascript */
  display:none;
}
.l_c02456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02456:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02456 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02456.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02456;src:url('chunks/assets/font_65ac066420c380b8699339d2.woff2')format("woff");}.ff1_c02456{font-family:ff1_c02456;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02456;src:url('chunks/assets/font_4820dd857c5342cf684990b9.woff2')format("woff");}.ff2_c02456{font-family:ff2_c02456;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:ff3_c02456;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02456{font-family:ff3_c02456;line-height:1.311035;font-style:normal;font-weight: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_c02456;src:url('chunks/assets/font_66a5d6caf3f4f55425b12acb.woff2')format("woff");}.ff4_c02456{font-family:ff4_c02456;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02456{vertical-align:0.000000px;}
.ls0_c02456{letter-spacing:0.000000px;}
.sc__c02456{text-shadow:none;}
.sc0_c02456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02456{-webkit-text-stroke:0px transparent;}
.sc0_c02456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02456{word-spacing:0.000000px;}
._1_c02456{margin-left:-1.192121px;}
._3_c02456{width:1.125616px;}
._2_c02456{width:2.782212px;}
._0_c02456{width:4.702775px;}
._8_c02456{width:6.491388px;}
._a_c02456{width:7.551625px;}
._4_c02456{width:9.406212px;}
._5_c02456{width:10.928871px;}
._e_c02456{width:12.057204px;}
._7_c02456{width:13.248795px;}
._6_c02456{width:14.307509px;}
._9_c02456{width:15.433059px;}
._b_c02456{width:18.216000px;}
._d_c02456{width:19.406002px;}
._c_c02456{width:20.799625px;}
.fc1_c02456{color:rgb(192,80,77);}
.fc0_c02456{color:rgb(0,0,0);}
.fs0_c02456{font-size:66.240000px;}
.fs1_c02456{font-size:72.000000px;}
.y0_c02456{bottom:0.000000px;}
.y3_c02456{bottom:4.680000px;}
.y2_c02456{bottom:41.796000px;}
.y1_c02456{bottom:75.456000px;}
.y2e_c02456{bottom:124.956000px;}
.y2d_c02456{bottom:143.856000px;}
.y2c_c02456{bottom:162.750000px;}
.y2b_c02456{bottom:181.830000px;}
.y2a_c02456{bottom:200.730000px;}
.y29_c02456{bottom:230.430000px;}
.y28_c02456{bottom:261.390000px;}
.y27_c02456{bottom:292.575000px;}
.y26_c02456{bottom:323.535000px;}
.y25_c02456{bottom:354.675000px;}
.y24_c02456{bottom:375.015000px;}
.y23_c02456{bottom:393.915000px;}
.y22_c02456{bottom:412.995000px;}
.y21_c02456{bottom:431.895000px;}
.y20_c02456{bottom:450.975000px;}
.y1f_c02456{bottom:469.875000px;}
.y1e_c02456{bottom:488.775000px;}
.y1d_c02456{bottom:518.475000px;}
.y1c_c02456{bottom:549.465000px;}
.y1b_c02456{bottom:580.605000px;}
.y1a_c02456{bottom:611.565000px;}
.y19_c02456{bottom:642.705000px;}
.y18_c02456{bottom:673.665000px;}
.y17_c02456{bottom:704.805000px;}
.y16_c02456{bottom:725.145000px;}
.y15_c02456{bottom:744.225000px;}
.y14_c02456{bottom:763.125000px;}
.y13_c02456{bottom:782.025000px;}
.y12_c02456{bottom:801.150000px;}
.y11_c02456{bottom:820.050000px;}
.y10_c02456{bottom:839.130000px;}
.yf_c02456{bottom:858.030000px;}
.ye_c02456{bottom:877.110000px;}
.yd_c02456{bottom:896.010000px;}
.yc_c02456{bottom:914.910000px;}
.yb_c02456{bottom:933.990000px;}
.ya_c02456{bottom:952.890000px;}
.y9_c02456{bottom:971.970000px;}
.y8_c02456{bottom:990.870000px;}
.y7_c02456{bottom:1009.770000px;}
.y6_c02456{bottom:1028.850000px;}
.y5_c02456{bottom:1047.750000px;}
.y4_c02456{bottom:1066.860000px;}
.h2_c02456{height:22.500000px;}
.h1_c02456{height:48.871406px;}
.h5_c02456{height:59.383125px;}
.h7_c02456{height:64.546875px;}
.h3_c02456{height:65.010937px;}
.h4_c02456{height:66.757500px;}
.h6_c02456{height:70.664062px;}
.h0_c02456{height:1188.000000px;}
.w1_c02456{width:66.636000px;}
.w0_c02456{width:918.000000px;}
.x0_c02456{left:0.000000px;}
.x3_c02456{left:16.560000px;}
.x1_c02456{left:127.656000px;}
.x5_c02456{left:181.650000px;}
.x4_c02456{left:244.650000px;}
.x2_c02456{left:820.950000px;}
@media print{
.v0_c02456{vertical-align:0.000000pt;}
.ls0_c02456{letter-spacing:0.000000pt;}
.ws0_c02456{word-spacing:0.000000pt;}
._1_c02456{margin-left:-1.059663pt;}
._3_c02456{width:1.000548pt;}
._2_c02456{width:2.473078pt;}
._0_c02456{width:4.180244pt;}
._8_c02456{width:5.770122pt;}
._a_c02456{width:6.712556pt;}
._4_c02456{width:8.361078pt;}
._5_c02456{width:9.714552pt;}
._e_c02456{width:10.717514pt;}
._7_c02456{width:11.776707pt;}
._6_c02456{width:12.717786pt;}
._9_c02456{width:13.718275pt;}
._b_c02456{width:16.192000pt;}
._d_c02456{width:17.249779pt;}
._c_c02456{width:18.488556pt;}
.fs0_c02456{font-size:58.880000pt;}
.fs1_c02456{font-size:64.000000pt;}
.y0_c02456{bottom:0.000000pt;}
.y3_c02456{bottom:4.160000pt;}
.y2_c02456{bottom:37.152000pt;}
.y1_c02456{bottom:67.072000pt;}
.y2e_c02456{bottom:111.072000pt;}
.y2d_c02456{bottom:127.872000pt;}
.y2c_c02456{bottom:144.666667pt;}
.y2b_c02456{bottom:161.626667pt;}
.y2a_c02456{bottom:178.426667pt;}
.y29_c02456{bottom:204.826667pt;}
.y28_c02456{bottom:232.346667pt;}
.y27_c02456{bottom:260.066667pt;}
.y26_c02456{bottom:287.586667pt;}
.y25_c02456{bottom:315.266667pt;}
.y24_c02456{bottom:333.346667pt;}
.y23_c02456{bottom:350.146667pt;}
.y22_c02456{bottom:367.106667pt;}
.y21_c02456{bottom:383.906667pt;}
.y20_c02456{bottom:400.866667pt;}
.y1f_c02456{bottom:417.666667pt;}
.y1e_c02456{bottom:434.466667pt;}
.y1d_c02456{bottom:460.866667pt;}
.y1c_c02456{bottom:488.413333pt;}
.y1b_c02456{bottom:516.093333pt;}
.y1a_c02456{bottom:543.613333pt;}
.y19_c02456{bottom:571.293333pt;}
.y18_c02456{bottom:598.813333pt;}
.y17_c02456{bottom:626.493333pt;}
.y16_c02456{bottom:644.573333pt;}
.y15_c02456{bottom:661.533333pt;}
.y14_c02456{bottom:678.333333pt;}
.y13_c02456{bottom:695.133333pt;}
.y12_c02456{bottom:712.133333pt;}
.y11_c02456{bottom:728.933333pt;}
.y10_c02456{bottom:745.893333pt;}
.yf_c02456{bottom:762.693333pt;}
.ye_c02456{bottom:779.653333pt;}
.yd_c02456{bottom:796.453333pt;}
.yc_c02456{bottom:813.253333pt;}
.yb_c02456{bottom:830.213333pt;}
.ya_c02456{bottom:847.013333pt;}
.y9_c02456{bottom:863.973333pt;}
.y8_c02456{bottom:880.773333pt;}
.y7_c02456{bottom:897.573333pt;}
.y6_c02456{bottom:914.533333pt;}
.y5_c02456{bottom:931.333333pt;}
.y4_c02456{bottom:948.320000pt;}
.h2_c02456{height:20.000000pt;}
.h1_c02456{height:43.441250pt;}
.h5_c02456{height:52.785000pt;}
.h7_c02456{height:57.375000pt;}
.h3_c02456{height:57.787500pt;}
.h4_c02456{height:59.340000pt;}
.h6_c02456{height:62.812500pt;}
.h0_c02456{height:1056.000000pt;}
.w1_c02456{width:59.232000pt;}
.w0_c02456{width:816.000000pt;}
.x0_c02456{left:0.000000pt;}
.x3_c02456{left:14.720000pt;}
.x1_c02456{left:113.472000pt;}
.x5_c02456{left:161.466667pt;}
.x4_c02456{left:217.466667pt;}
.x2_c02456{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02457 {
    display:none;
  }
  .loading-indicator_c02457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02457 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02457 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02457" -> "#page-container .classname_c02457")
 */
.pf_c02457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02457 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02457 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02457 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02457 {overflow:visible;}
  }
}
.c_c02457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02457 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02457:after { /* webkit #35443 */
  content: '';
}
.t_c02457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02457 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02457 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02457 { /* info for Javascript */
  display:none;
}
.l_c02457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02457:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02457 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02457.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02457;src:url('chunks/assets/font_10f3e03e2c438560ca66e5d9.woff2')format("woff");}.ff1_c02457{font-family:ff1_c02457;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02457;src:url('chunks/assets/font_44600f774c4bc34dc2f59bc9.woff2')format("woff");}.ff2_c02457{font-family:ff2_c02457;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:ff3_c02457;src:url('chunks/assets/font_4a3d1c840b56c4155732b39b.woff2')format("woff");}.ff3_c02457{font-family:ff3_c02457;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02457{vertical-align:0.000000px;}
.ls0_c02457{letter-spacing:0.000000px;}
.sc__c02457{text-shadow:none;}
.sc0_c02457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02457{-webkit-text-stroke:0px transparent;}
.sc0_c02457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02457{word-spacing:0.000000px;}
._1_c02457{margin-left:-1.126146px;}
._2_c02457{width:1.136148px;}
._0_c02457{width:2.649600px;}
._9_c02457{width:4.040375px;}
._4_c02457{width:5.233159px;}
._5_c02457{width:6.413754px;}
._e_c02457{width:7.721087px;}
._10_c02457{width:9.604800px;}
._7_c02457{width:10.731476px;}
._6_c02457{width:12.254400px;}
._8_c02457{width:13.645175px;}
._b_c02457{width:15.280508px;}
._3_c02457{width:17.731189px;}
._a_c02457{width:23.051388px;}
._f_c02457{width:24.111691px;}
._c_c02457{width:34.632000px;}
._d_c02457{width:35.712000px;}
.fc1_c02457{color:rgb(192,80,77);}
.fc2_c02457{color:rgb(17,17,17);}
.fc0_c02457{color:rgb(0,0,0);}
.fs0_c02457{font-size:66.240000px;}
.fs1_c02457{font-size:72.000000px;}
.y0_c02457{bottom:0.000000px;}
.y3_c02457{bottom:4.680000px;}
.y2_c02457{bottom:41.796000px;}
.y1_c02457{bottom:75.456000px;}
.y2c_c02457{bottom:127.476000px;}
.y2b_c02457{bottom:146.376000px;}
.y2a_c02457{bottom:165.450000px;}
.y29_c02457{bottom:184.350000px;}
.y28_c02457{bottom:203.430000px;}
.y27_c02457{bottom:222.330000px;}
.y26_c02457{bottom:251.850000px;}
.y25_c02457{bottom:283.035000px;}
.y24_c02457{bottom:313.995000px;}
.y23_c02457{bottom:345.135000px;}
.y22_c02457{bottom:376.095000px;}
.y21_c02457{bottom:405.975000px;}
.y20_c02457{bottom:425.055000px;}
.y1f_c02457{bottom:443.955000px;}
.y1e_c02457{bottom:463.035000px;}
.y1d_c02457{bottom:481.935000px;}
.y1c_c02457{bottom:501.015000px;}
.y1b_c02457{bottom:519.915000px;}
.y1a_c02457{bottom:549.465000px;}
.y19_c02457{bottom:580.605000px;}
.y18_c02457{bottom:611.565000px;}
.y17_c02457{bottom:642.705000px;}
.y16_c02457{bottom:673.665000px;}
.y15_c02457{bottom:704.805000px;}
.y14_c02457{bottom:735.765000px;}
.y13_c02457{bottom:766.905000px;}
.y12_c02457{bottom:787.785000px;}
.y11_c02457{bottom:818.610000px;}
.y10_c02457{bottom:839.130000px;}
.yf_c02457{bottom:858.030000px;}
.ye_c02457{bottom:877.110000px;}
.yd_c02457{bottom:896.010000px;}
.yc_c02457{bottom:914.910000px;}
.yb_c02457{bottom:933.990000px;}
.ya_c02457{bottom:952.890000px;}
.y9_c02457{bottom:971.970000px;}
.y8_c02457{bottom:990.870000px;}
.y7_c02457{bottom:1009.770000px;}
.y6_c02457{bottom:1028.850000px;}
.y5_c02457{bottom:1047.750000px;}
.y4_c02457{bottom:1066.860000px;}
.h2_c02457{height:22.500000px;}
.h1_c02457{height:48.871406px;}
.h3_c02457{height:65.010937px;}
.h4_c02457{height:70.664062px;}
.h5_c02457{height:74.004654px;}
.h0_c02457{height:1188.000000px;}
.w1_c02457{width:66.636000px;}
.w0_c02457{width:918.000000px;}
.x0_c02457{left:0.000000px;}
.x3_c02457{left:16.560000px;}
.x1_c02457{left:127.656000px;}
.x7_c02457{left:131.976000px;}
.x5_c02457{left:181.650000px;}
.x6_c02457{left:187.050000px;}
.x4_c02457{left:244.650000px;}
.x2_c02457{left:820.950000px;}
@media print{
.v0_c02457{vertical-align:0.000000pt;}
.ls0_c02457{letter-spacing:0.000000pt;}
.ws0_c02457{word-spacing:0.000000pt;}
._1_c02457{margin-left:-1.001019pt;}
._2_c02457{width:1.009910pt;}
._0_c02457{width:2.355200pt;}
._9_c02457{width:3.591444pt;}
._4_c02457{width:4.651697pt;}
._5_c02457{width:5.701115pt;}
._e_c02457{width:6.863188pt;}
._10_c02457{width:8.537600pt;}
._7_c02457{width:9.539090pt;}
._6_c02457{width:10.892800pt;}
._8_c02457{width:12.129044pt;}
._b_c02457{width:13.582674pt;}
._3_c02457{width:15.761057pt;}
._a_c02457{width:20.490122pt;}
._f_c02457{width:21.432614pt;}
._c_c02457{width:30.784000pt;}
._d_c02457{width:31.744000pt;}
.fs0_c02457{font-size:58.880000pt;}
.fs1_c02457{font-size:64.000000pt;}
.y0_c02457{bottom:0.000000pt;}
.y3_c02457{bottom:4.160000pt;}
.y2_c02457{bottom:37.152000pt;}
.y1_c02457{bottom:67.072000pt;}
.y2c_c02457{bottom:113.312000pt;}
.y2b_c02457{bottom:130.112000pt;}
.y2a_c02457{bottom:147.066667pt;}
.y29_c02457{bottom:163.866667pt;}
.y28_c02457{bottom:180.826667pt;}
.y27_c02457{bottom:197.626667pt;}
.y26_c02457{bottom:223.866667pt;}
.y25_c02457{bottom:251.586667pt;}
.y24_c02457{bottom:279.106667pt;}
.y23_c02457{bottom:306.786667pt;}
.y22_c02457{bottom:334.306667pt;}
.y21_c02457{bottom:360.866667pt;}
.y20_c02457{bottom:377.826667pt;}
.y1f_c02457{bottom:394.626667pt;}
.y1e_c02457{bottom:411.586667pt;}
.y1d_c02457{bottom:428.386667pt;}
.y1c_c02457{bottom:445.346667pt;}
.y1b_c02457{bottom:462.146667pt;}
.y1a_c02457{bottom:488.413333pt;}
.y19_c02457{bottom:516.093333pt;}
.y18_c02457{bottom:543.613333pt;}
.y17_c02457{bottom:571.293333pt;}
.y16_c02457{bottom:598.813333pt;}
.y15_c02457{bottom:626.493333pt;}
.y14_c02457{bottom:654.013333pt;}
.y13_c02457{bottom:681.693333pt;}
.y12_c02457{bottom:700.253333pt;}
.y11_c02457{bottom:727.653333pt;}
.y10_c02457{bottom:745.893333pt;}
.yf_c02457{bottom:762.693333pt;}
.ye_c02457{bottom:779.653333pt;}
.yd_c02457{bottom:796.453333pt;}
.yc_c02457{bottom:813.253333pt;}
.yb_c02457{bottom:830.213333pt;}
.ya_c02457{bottom:847.013333pt;}
.y9_c02457{bottom:863.973333pt;}
.y8_c02457{bottom:880.773333pt;}
.y7_c02457{bottom:897.573333pt;}
.y6_c02457{bottom:914.533333pt;}
.y5_c02457{bottom:931.333333pt;}
.y4_c02457{bottom:948.320000pt;}
.h2_c02457{height:20.000000pt;}
.h1_c02457{height:43.441250pt;}
.h3_c02457{height:57.787500pt;}
.h4_c02457{height:62.812500pt;}
.h5_c02457{height:65.781915pt;}
.h0_c02457{height:1056.000000pt;}
.w1_c02457{width:59.232000pt;}
.w0_c02457{width:816.000000pt;}
.x0_c02457{left:0.000000pt;}
.x3_c02457{left:14.720000pt;}
.x1_c02457{left:113.472000pt;}
.x7_c02457{left:117.312000pt;}
.x5_c02457{left:161.466667pt;}
.x6_c02457{left:166.266667pt;}
.x4_c02457{left:217.466667pt;}
.x2_c02457{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02458 {
    display:none;
  }
  .loading-indicator_c02458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02458 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02458 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02458" -> "#page-container .classname_c02458")
 */
.pf_c02458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02458 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02458 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02458 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02458 {overflow:visible;}
  }
}
.c_c02458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02458 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02458:after { /* webkit #35443 */
  content: '';
}
.t_c02458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02458 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02458 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02458 { /* info for Javascript */
  display:none;
}
.l_c02458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02458:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02458 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02458.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02458;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02458{font-family:ff1_c02458;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02458;src:url('chunks/assets/font_f1eb39d90b7a4a1574eef433.woff2')format("woff");}.ff2_c02458{font-family:ff2_c02458;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:ff3_c02458;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02458{font-family:ff3_c02458;line-height:1.311035;font-style:normal;font-weight: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_c02458;src:url('chunks/assets/font_5ad2a0e9944ff8e400adaa45.woff2')format("woff");}.ff4_c02458{font-family:ff4_c02458;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02458{vertical-align:0.000000px;}
.ls2_c02458{letter-spacing:-0.720000px;}
.ls1_c02458{letter-spacing:0.000000px;}
.ls0_c02458{letter-spacing:8.640000px;}
.sc__c02458{text-shadow:none;}
.sc0_c02458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02458{-webkit-text-stroke:0px transparent;}
.sc0_c02458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02458{word-spacing:0.000000px;}
._0_c02458{margin-left:-1.324800px;}
._7_c02458{width:1.124358px;}
._a_c02458{width:2.262361px;}
._b_c02458{width:3.353639px;}
._c_c02458{width:4.680000px;}
._3_c02458{width:6.585846px;}
._2_c02458{width:7.882759px;}
._e_c02458{width:9.472254px;}
._10_c02458{width:10.797252px;}
._6_c02458{width:11.857225px;}
._f_c02458{width:12.983570px;}
._4_c02458{width:14.175691px;}
._5_c02458{width:15.433059px;}
._d_c02458{width:22.320000px;}
._1_c02458{width:31.795200px;}
._8_c02458{width:33.318521px;}
._9_c02458{width:34.644447px;}
.fc1_c02458{color:rgb(192,80,77);}
.fc0_c02458{color:rgb(0,0,0);}
.fs0_c02458{font-size:66.240000px;}
.fs1_c02458{font-size:72.000000px;}
.y0_c02458{bottom:0.000000px;}
.y3_c02458{bottom:4.680000px;}
.y2_c02458{bottom:41.796000px;}
.y1_c02458{bottom:75.456000px;}
.y2f_c02458{bottom:111.096000px;}
.y2e_c02458{bottom:129.996000px;}
.y2d_c02458{bottom:149.076000px;}
.y2c_c02458{bottom:167.970000px;}
.y2b_c02458{bottom:186.870000px;}
.y2a_c02458{bottom:205.950000px;}
.y29_c02458{bottom:224.850000px;}
.y28_c02458{bottom:243.930000px;}
.y27_c02458{bottom:262.830000px;}
.y26_c02458{bottom:281.955000px;}
.y25_c02458{bottom:300.855000px;}
.y24_c02458{bottom:319.755000px;}
.y23_c02458{bottom:338.835000px;}
.y22_c02458{bottom:368.355000px;}
.y21_c02458{bottom:399.495000px;}
.y20_c02458{bottom:430.455000px;}
.y1f_c02458{bottom:461.595000px;}
.y1e_c02458{bottom:492.555000px;}
.y1d_c02458{bottom:522.435000px;}
.y1c_c02458{bottom:541.545000px;}
.y1b_c02458{bottom:560.445000px;}
.y1a_c02458{bottom:579.525000px;}
.y19_c02458{bottom:598.425000px;}
.y18_c02458{bottom:617.325000px;}
.y17_c02458{bottom:636.405000px;}
.y16_c02458{bottom:655.305000px;}
.y15_c02458{bottom:674.385000px;}
.y14_c02458{bottom:693.285000px;}
.y13_c02458{bottom:722.805000px;}
.y12_c02458{bottom:753.945000px;}
.y11_c02458{bottom:784.905000px;}
.y10_c02458{bottom:816.090000px;}
.yf_c02458{bottom:847.050000px;}
.ye_c02458{bottom:877.110000px;}
.yd_c02458{bottom:896.010000px;}
.yc_c02458{bottom:914.910000px;}
.yb_c02458{bottom:933.990000px;}
.ya_c02458{bottom:952.890000px;}
.y9_c02458{bottom:971.970000px;}
.y8_c02458{bottom:990.870000px;}
.y7_c02458{bottom:1009.770000px;}
.y6_c02458{bottom:1028.850000px;}
.y5_c02458{bottom:1047.750000px;}
.y4_c02458{bottom:1066.860000px;}
.h2_c02458{height:22.500000px;}
.h1_c02458{height:48.871406px;}
.h3_c02458{height:65.010937px;}
.h5_c02458{height:66.757500px;}
.h4_c02458{height:70.664062px;}
.h0_c02458{height:1188.000000px;}
.w1_c02458{width:66.636000px;}
.w0_c02458{width:918.000000px;}
.x0_c02458{left:0.000000px;}
.x3_c02458{left:16.560000px;}
.x1_c02458{left:127.656000px;}
.x5_c02458{left:181.650000px;}
.x4_c02458{left:244.650000px;}
.x2_c02458{left:820.950000px;}
@media print{
.v0_c02458{vertical-align:0.000000pt;}
.ls2_c02458{letter-spacing:-0.640000pt;}
.ls1_c02458{letter-spacing:0.000000pt;}
.ls0_c02458{letter-spacing:7.680000pt;}
.ws0_c02458{word-spacing:0.000000pt;}
._0_c02458{margin-left:-1.177600pt;}
._7_c02458{width:0.999429pt;}
._a_c02458{width:2.010988pt;}
._b_c02458{width:2.981012pt;}
._c_c02458{width:4.160000pt;}
._3_c02458{width:5.854085pt;}
._2_c02458{width:7.006897pt;}
._e_c02458{width:8.419781pt;}
._10_c02458{width:9.597558pt;}
._6_c02458{width:10.539756pt;}
._f_c02458{width:11.540951pt;}
._4_c02458{width:12.600614pt;}
._5_c02458{width:13.718275pt;}
._d_c02458{width:19.840000pt;}
._1_c02458{width:28.262400pt;}
._8_c02458{width:29.616463pt;}
._9_c02458{width:30.795064pt;}
.fs0_c02458{font-size:58.880000pt;}
.fs1_c02458{font-size:64.000000pt;}
.y0_c02458{bottom:0.000000pt;}
.y3_c02458{bottom:4.160000pt;}
.y2_c02458{bottom:37.152000pt;}
.y1_c02458{bottom:67.072000pt;}
.y2f_c02458{bottom:98.752000pt;}
.y2e_c02458{bottom:115.552000pt;}
.y2d_c02458{bottom:132.512000pt;}
.y2c_c02458{bottom:149.306667pt;}
.y2b_c02458{bottom:166.106667pt;}
.y2a_c02458{bottom:183.066667pt;}
.y29_c02458{bottom:199.866667pt;}
.y28_c02458{bottom:216.826667pt;}
.y27_c02458{bottom:233.626667pt;}
.y26_c02458{bottom:250.626667pt;}
.y25_c02458{bottom:267.426667pt;}
.y24_c02458{bottom:284.226667pt;}
.y23_c02458{bottom:301.186667pt;}
.y22_c02458{bottom:327.426667pt;}
.y21_c02458{bottom:355.106667pt;}
.y20_c02458{bottom:382.626667pt;}
.y1f_c02458{bottom:410.306667pt;}
.y1e_c02458{bottom:437.826667pt;}
.y1d_c02458{bottom:464.386667pt;}
.y1c_c02458{bottom:481.373333pt;}
.y1b_c02458{bottom:498.173333pt;}
.y1a_c02458{bottom:515.133333pt;}
.y19_c02458{bottom:531.933333pt;}
.y18_c02458{bottom:548.733333pt;}
.y17_c02458{bottom:565.693333pt;}
.y16_c02458{bottom:582.493333pt;}
.y15_c02458{bottom:599.453333pt;}
.y14_c02458{bottom:616.253333pt;}
.y13_c02458{bottom:642.493333pt;}
.y12_c02458{bottom:670.173333pt;}
.y11_c02458{bottom:697.693333pt;}
.y10_c02458{bottom:725.413333pt;}
.yf_c02458{bottom:752.933333pt;}
.ye_c02458{bottom:779.653333pt;}
.yd_c02458{bottom:796.453333pt;}
.yc_c02458{bottom:813.253333pt;}
.yb_c02458{bottom:830.213333pt;}
.ya_c02458{bottom:847.013333pt;}
.y9_c02458{bottom:863.973333pt;}
.y8_c02458{bottom:880.773333pt;}
.y7_c02458{bottom:897.573333pt;}
.y6_c02458{bottom:914.533333pt;}
.y5_c02458{bottom:931.333333pt;}
.y4_c02458{bottom:948.320000pt;}
.h2_c02458{height:20.000000pt;}
.h1_c02458{height:43.441250pt;}
.h3_c02458{height:57.787500pt;}
.h5_c02458{height:59.340000pt;}
.h4_c02458{height:62.812500pt;}
.h0_c02458{height:1056.000000pt;}
.w1_c02458{width:59.232000pt;}
.w0_c02458{width:816.000000pt;}
.x0_c02458{left:0.000000pt;}
.x3_c02458{left:14.720000pt;}
.x1_c02458{left:113.472000pt;}
.x5_c02458{left:161.466667pt;}
.x4_c02458{left:217.466667pt;}
.x2_c02458{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02459 {
    display:none;
  }
  .loading-indicator_c02459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02459 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02459 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02459" -> "#page-container .classname_c02459")
 */
.pf_c02459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02459 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02459 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02459 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02459 {overflow:visible;}
  }
}
.c_c02459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02459 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02459:after { /* webkit #35443 */
  content: '';
}
.t_c02459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02459 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02459 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02459 { /* info for Javascript */
  display:none;
}
.l_c02459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02459:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02459 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02459.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02459;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02459{font-family:ff1_c02459;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02459;src:url('chunks/assets/font_75d360a033615bf0d53d1fe1.woff2')format("woff");}.ff2_c02459{font-family:ff2_c02459;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:ff3_c02459;src:url('chunks/assets/font_3e7983da5f24b63d12765156.woff2')format("woff");}.ff3_c02459{font-family:ff3_c02459;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02459{vertical-align:0.000000px;}
.ls0_c02459{letter-spacing:0.000000px;}
.sc__c02459{text-shadow:none;}
.sc0_c02459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02459{-webkit-text-stroke:0px transparent;}
.sc0_c02459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02459{word-spacing:0.000000px;}
._2_c02459{margin-left:-1.368000px;}
._3_c02459{width:1.152000px;}
._6_c02459{width:2.427708px;}
._5_c02459{width:3.908425px;}
._10_c02459{width:5.736563px;}
._9_c02459{width:6.756679px;}
._a_c02459{width:8.014775px;}
._e_c02459{width:9.207691px;}
._f_c02459{width:10.887062px;}
._c_c02459{width:12.164988px;}
._d_c02459{width:13.182091px;}
._4_c02459{width:14.760000px;}
._1_c02459{width:15.984000px;}
._7_c02459{width:18.481291px;}
._8_c02459{width:19.625809px;}
._b_c02459{width:21.342191px;}
._11_c02459{width:24.111625px;}
._12_c02459{width:26.002722px;}
._13_c02459{width:27.493278px;}
._0_c02459{width:29.376000px;}
.fc1_c02459{color:rgb(192,80,77);}
.fc0_c02459{color:rgb(0,0,0);}
.fs0_c02459{font-size:66.240000px;}
.fs1_c02459{font-size:72.000000px;}
.y0_c02459{bottom:0.000000px;}
.y3_c02459{bottom:4.680000px;}
.y2_c02459{bottom:41.796000px;}
.y1_c02459{bottom:75.456000px;}
.y2b_c02459{bottom:113.076000px;}
.y2a_c02459{bottom:144.216000px;}
.y29_c02459{bottom:175.170000px;}
.y28_c02459{bottom:206.130000px;}
.y27_c02459{bottom:237.270000px;}
.y26_c02459{bottom:268.230000px;}
.y25_c02459{bottom:298.335000px;}
.y24_c02459{bottom:317.235000px;}
.y23_c02459{bottom:336.135000px;}
.y22_c02459{bottom:355.215000px;}
.y21_c02459{bottom:374.115000px;}
.y20_c02459{bottom:393.195000px;}
.y1f_c02459{bottom:412.095000px;}
.y1e_c02459{bottom:430.995000px;}
.y1d_c02459{bottom:450.075000px;}
.y1c_c02459{bottom:468.975000px;}
.y1b_c02459{bottom:488.055000px;}
.y1a_c02459{bottom:506.955000px;}
.y19_c02459{bottom:525.855000px;}
.y18_c02459{bottom:544.965000px;}
.y17_c02459{bottom:563.865000px;}
.y16_c02459{bottom:582.945000px;}
.y15_c02459{bottom:601.845000px;}
.y14_c02459{bottom:631.545000px;}
.y13_c02459{bottom:662.505000px;}
.y12_c02459{bottom:693.645000px;}
.y11_c02459{bottom:724.605000px;}
.y10_c02459{bottom:755.745000px;}
.yf_c02459{bottom:785.625000px;}
.ye_c02459{bottom:804.570000px;}
.yd_c02459{bottom:823.470000px;}
.yc_c02459{bottom:842.550000px;}
.yb_c02459{bottom:861.450000px;}
.ya_c02459{bottom:880.530000px;}
.y9_c02459{bottom:910.050000px;}
.y8_c02459{bottom:941.190000px;}
.y7_c02459{bottom:972.150000px;}
.y6_c02459{bottom:1003.290000px;}
.y5_c02459{bottom:1034.250000px;}
.y4_c02459{bottom:1065.420000px;}
.h2_c02459{height:22.500000px;}
.h1_c02459{height:48.871406px;}
.h4_c02459{height:65.010937px;}
.h3_c02459{height:70.664062px;}
.h0_c02459{height:1188.000000px;}
.w1_c02459{width:66.636000px;}
.w0_c02459{width:918.000000px;}
.x0_c02459{left:0.000000px;}
.x3_c02459{left:16.560000px;}
.x1_c02459{left:127.656000px;}
.x4_c02459{left:181.650000px;}
.x5_c02459{left:244.650000px;}
.x2_c02459{left:820.950000px;}
@media print{
.v0_c02459{vertical-align:0.000000pt;}
.ls0_c02459{letter-spacing:0.000000pt;}
.ws0_c02459{word-spacing:0.000000pt;}
._2_c02459{margin-left:-1.216000pt;}
._3_c02459{width:1.024000pt;}
._6_c02459{width:2.157962pt;}
._5_c02459{width:3.474156pt;}
._10_c02459{width:5.099167pt;}
._9_c02459{width:6.005937pt;}
._a_c02459{width:7.124244pt;}
._e_c02459{width:8.184614pt;}
._f_c02459{width:9.677389pt;}
._c_c02459{width:10.813322pt;}
._d_c02459{width:11.717414pt;}
._4_c02459{width:13.120000pt;}
._1_c02459{width:14.208000pt;}
._7_c02459{width:16.427814pt;}
._8_c02459{width:17.445164pt;}
._b_c02459{width:18.970836pt;}
._11_c02459{width:21.432556pt;}
._12_c02459{width:23.113531pt;}
._13_c02459{width:24.438469pt;}
._0_c02459{width:26.112000pt;}
.fs0_c02459{font-size:58.880000pt;}
.fs1_c02459{font-size:64.000000pt;}
.y0_c02459{bottom:0.000000pt;}
.y3_c02459{bottom:4.160000pt;}
.y2_c02459{bottom:37.152000pt;}
.y1_c02459{bottom:67.072000pt;}
.y2b_c02459{bottom:100.512000pt;}
.y2a_c02459{bottom:128.192000pt;}
.y29_c02459{bottom:155.706667pt;}
.y28_c02459{bottom:183.226667pt;}
.y27_c02459{bottom:210.906667pt;}
.y26_c02459{bottom:238.426667pt;}
.y25_c02459{bottom:265.186667pt;}
.y24_c02459{bottom:281.986667pt;}
.y23_c02459{bottom:298.786667pt;}
.y22_c02459{bottom:315.746667pt;}
.y21_c02459{bottom:332.546667pt;}
.y20_c02459{bottom:349.506667pt;}
.y1f_c02459{bottom:366.306667pt;}
.y1e_c02459{bottom:383.106667pt;}
.y1d_c02459{bottom:400.066667pt;}
.y1c_c02459{bottom:416.866667pt;}
.y1b_c02459{bottom:433.826667pt;}
.y1a_c02459{bottom:450.626667pt;}
.y19_c02459{bottom:467.426667pt;}
.y18_c02459{bottom:484.413333pt;}
.y17_c02459{bottom:501.213333pt;}
.y16_c02459{bottom:518.173333pt;}
.y15_c02459{bottom:534.973333pt;}
.y14_c02459{bottom:561.373333pt;}
.y13_c02459{bottom:588.893333pt;}
.y12_c02459{bottom:616.573333pt;}
.y11_c02459{bottom:644.093333pt;}
.y10_c02459{bottom:671.773333pt;}
.yf_c02459{bottom:698.333333pt;}
.ye_c02459{bottom:715.173333pt;}
.yd_c02459{bottom:731.973333pt;}
.yc_c02459{bottom:748.933333pt;}
.yb_c02459{bottom:765.733333pt;}
.ya_c02459{bottom:782.693333pt;}
.y9_c02459{bottom:808.933333pt;}
.y8_c02459{bottom:836.613333pt;}
.y7_c02459{bottom:864.133333pt;}
.y6_c02459{bottom:891.813333pt;}
.y5_c02459{bottom:919.333333pt;}
.y4_c02459{bottom:947.040000pt;}
.h2_c02459{height:20.000000pt;}
.h1_c02459{height:43.441250pt;}
.h4_c02459{height:57.787500pt;}
.h3_c02459{height:62.812500pt;}
.h0_c02459{height:1056.000000pt;}
.w1_c02459{width:59.232000pt;}
.w0_c02459{width:816.000000pt;}
.x0_c02459{left:0.000000pt;}
.x3_c02459{left:14.720000pt;}
.x1_c02459{left:113.472000pt;}
.x4_c02459{left:161.466667pt;}
.x5_c02459{left:217.466667pt;}
.x2_c02459{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02460 {
    display:none;
  }
  .loading-indicator_c02460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02460 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02460 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02460" -> "#page-container .classname_c02460")
 */
.pf_c02460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02460 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02460 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02460 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02460 {overflow:visible;}
  }
}
.c_c02460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02460 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02460:after { /* webkit #35443 */
  content: '';
}
.t_c02460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02460 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02460 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02460 { /* info for Javascript */
  display:none;
}
.l_c02460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02460:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02460 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02460.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02460;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02460{font-family:ff1_c02460;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02460;src:url('chunks/assets/font_5db8a64fc2a32dceead06579.woff2')format("woff");}.ff2_c02460{font-family:ff2_c02460;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:ff3_c02460;src:url('chunks/assets/font_2cc917afb198b985e8cac6e2.woff2')format("woff");}.ff3_c02460{font-family:ff3_c02460;line-height:1.112305;font-style:normal;font-weight: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_c02460;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02460{font-family:ff4_c02460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02460{vertical-align:0.000000px;}
.ls0_c02460{letter-spacing:0.000000px;}
.ls1_c02460{letter-spacing:0.256200px;}
.sc__c02460{text-shadow:none;}
.sc0_c02460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02460{-webkit-text-stroke:0px transparent;}
.sc0_c02460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02460{word-spacing:-15.226440px;}
.ws1_c02460{word-spacing:0.000000px;}
._0_c02460{margin-left:-1.439520px;}
._8_c02460{width:1.984387px;}
._7_c02460{width:3.709175px;}
._c_c02460{width:5.051801px;}
._1_c02460{width:6.208999px;}
._e_c02460{width:8.147388px;}
._9_c02460{width:9.406212px;}
._a_c02460{width:11.293020px;}
._13_c02460{width:12.652171px;}
._11_c02460{width:13.976441px;}
._f_c02460{width:15.433788px;}
._10_c02460{width:16.734637px;}
._12_c02460{width:18.547332px;}
._b_c02460{width:20.600375px;}
._d_c02460{width:22.330166px;}
._2_c02460{width:23.647812px;}
._4_c02460{width:25.653236px;}
._3_c02460{width:26.743332px;}
._6_c02460{width:27.952883px;}
._5_c02460{width:29.079625px;}
.fc1_c02460{color:rgb(192,80,77);}
.fc0_c02460{color:rgb(0,0,0);}
.fs0_c02460{font-size:66.240000px;}
.fs1_c02460{font-size:72.000000px;}
.y0_c02460{bottom:0.000000px;}
.y3_c02460{bottom:4.680000px;}
.y2_c02460{bottom:41.796000px;}
.y1_c02460{bottom:75.456000px;}
.y32_c02460{bottom:111.996000px;}
.y31_c02460{bottom:130.896000px;}
.y30_c02460{bottom:149.796000px;}
.y2f_c02460{bottom:168.870000px;}
.y2e_c02460{bottom:187.770000px;}
.y2d_c02460{bottom:206.850000px;}
.y2c_c02460{bottom:225.750000px;}
.y2b_c02460{bottom:244.830000px;}
.y2a_c02460{bottom:263.730000px;}
.y29_c02460{bottom:282.675000px;}
.y28_c02460{bottom:301.755000px;}
.y27_c02460{bottom:320.655000px;}
.y26_c02460{bottom:339.735000px;}
.y25_c02460{bottom:358.635000px;}
.y24_c02460{bottom:377.535000px;}
.y23_c02460{bottom:396.615000px;}
.y22_c02460{bottom:415.515000px;}
.y21_c02460{bottom:434.595000px;}
.y20_c02460{bottom:464.115000px;}
.y1f_c02460{bottom:495.255000px;}
.y1e_c02460{bottom:526.215000px;}
.y1d_c02460{bottom:557.385000px;}
.y1c_c02460{bottom:588.345000px;}
.y1b_c02460{bottom:618.225000px;}
.y1a_c02460{bottom:637.305000px;}
.y19_c02460{bottom:656.205000px;}
.y18_c02460{bottom:675.105000px;}
.y17_c02460{bottom:694.185000px;}
.y16_c02460{bottom:713.085000px;}
.y15_c02460{bottom:732.165000px;}
.y14_c02460{bottom:751.065000px;}
.y13_c02460{bottom:769.965000px;}
.y12_c02460{bottom:789.045000px;}
.y11_c02460{bottom:807.990000px;}
.y10_c02460{bottom:827.070000px;}
.yf_c02460{bottom:845.970000px;}
.ye_c02460{bottom:864.870000px;}
.yd_c02460{bottom:883.950000px;}
.yc_c02460{bottom:902.850000px;}
.yb_c02460{bottom:921.930000px;}
.ya_c02460{bottom:940.830000px;}
.y9_c02460{bottom:959.730000px;}
.y8_c02460{bottom:978.810000px;}
.y7_c02460{bottom:997.710000px;}
.y6_c02460{bottom:1016.790000px;}
.y5_c02460{bottom:1035.690000px;}
.y4_c02460{bottom:1065.420000px;}
.h2_c02460{height:22.500000px;}
.h1_c02460{height:48.871406px;}
.h5_c02460{height:59.383125px;}
.h4_c02460{height:65.010937px;}
.h6_c02460{height:66.757500px;}
.h3_c02460{height:70.664062px;}
.h0_c02460{height:1188.000000px;}
.w1_c02460{width:66.636000px;}
.w0_c02460{width:918.000000px;}
.x0_c02460{left:0.000000px;}
.x3_c02460{left:16.560000px;}
.x1_c02460{left:127.656000px;}
.x4_c02460{left:181.650000px;}
.x5_c02460{left:244.650000px;}
.x2_c02460{left:820.950000px;}
@media print{
.v0_c02460{vertical-align:0.000000pt;}
.ls0_c02460{letter-spacing:0.000000pt;}
.ls1_c02460{letter-spacing:0.227733pt;}
.ws0_c02460{word-spacing:-13.534613pt;}
.ws1_c02460{word-spacing:0.000000pt;}
._0_c02460{margin-left:-1.279573pt;}
._8_c02460{width:1.763900pt;}
._7_c02460{width:3.297044pt;}
._c_c02460{width:4.490490pt;}
._1_c02460{width:5.519110pt;}
._e_c02460{width:7.242122pt;}
._9_c02460{width:8.361078pt;}
._a_c02460{width:10.038240pt;}
._13_c02460{width:11.246374pt;}
._11_c02460{width:12.423503pt;}
._f_c02460{width:13.718922pt;}
._10_c02460{width:14.875233pt;}
._12_c02460{width:16.486518pt;}
._b_c02460{width:18.311444pt;}
._d_c02460{width:19.849037pt;}
._2_c02460{width:21.020278pt;}
._4_c02460{width:22.802877pt;}
._3_c02460{width:23.771851pt;}
._6_c02460{width:24.847007pt;}
._5_c02460{width:25.848556pt;}
.fs0_c02460{font-size:58.880000pt;}
.fs1_c02460{font-size:64.000000pt;}
.y0_c02460{bottom:0.000000pt;}
.y3_c02460{bottom:4.160000pt;}
.y2_c02460{bottom:37.152000pt;}
.y1_c02460{bottom:67.072000pt;}
.y32_c02460{bottom:99.552000pt;}
.y31_c02460{bottom:116.352000pt;}
.y30_c02460{bottom:133.152000pt;}
.y2f_c02460{bottom:150.106667pt;}
.y2e_c02460{bottom:166.906667pt;}
.y2d_c02460{bottom:183.866667pt;}
.y2c_c02460{bottom:200.666667pt;}
.y2b_c02460{bottom:217.626667pt;}
.y2a_c02460{bottom:234.426667pt;}
.y29_c02460{bottom:251.266667pt;}
.y28_c02460{bottom:268.226667pt;}
.y27_c02460{bottom:285.026667pt;}
.y26_c02460{bottom:301.986667pt;}
.y25_c02460{bottom:318.786667pt;}
.y24_c02460{bottom:335.586667pt;}
.y23_c02460{bottom:352.546667pt;}
.y22_c02460{bottom:369.346667pt;}
.y21_c02460{bottom:386.306667pt;}
.y20_c02460{bottom:412.546667pt;}
.y1f_c02460{bottom:440.226667pt;}
.y1e_c02460{bottom:467.746667pt;}
.y1d_c02460{bottom:495.453333pt;}
.y1c_c02460{bottom:522.973333pt;}
.y1b_c02460{bottom:549.533333pt;}
.y1a_c02460{bottom:566.493333pt;}
.y19_c02460{bottom:583.293333pt;}
.y18_c02460{bottom:600.093333pt;}
.y17_c02460{bottom:617.053333pt;}
.y16_c02460{bottom:633.853333pt;}
.y15_c02460{bottom:650.813333pt;}
.y14_c02460{bottom:667.613333pt;}
.y13_c02460{bottom:684.413333pt;}
.y12_c02460{bottom:701.373333pt;}
.y11_c02460{bottom:718.213333pt;}
.y10_c02460{bottom:735.173333pt;}
.yf_c02460{bottom:751.973333pt;}
.ye_c02460{bottom:768.773333pt;}
.yd_c02460{bottom:785.733333pt;}
.yc_c02460{bottom:802.533333pt;}
.yb_c02460{bottom:819.493333pt;}
.ya_c02460{bottom:836.293333pt;}
.y9_c02460{bottom:853.093333pt;}
.y8_c02460{bottom:870.053333pt;}
.y7_c02460{bottom:886.853333pt;}
.y6_c02460{bottom:903.813333pt;}
.y5_c02460{bottom:920.613333pt;}
.y4_c02460{bottom:947.040000pt;}
.h2_c02460{height:20.000000pt;}
.h1_c02460{height:43.441250pt;}
.h5_c02460{height:52.785000pt;}
.h4_c02460{height:57.787500pt;}
.h6_c02460{height:59.340000pt;}
.h3_c02460{height:62.812500pt;}
.h0_c02460{height:1056.000000pt;}
.w1_c02460{width:59.232000pt;}
.w0_c02460{width:816.000000pt;}
.x0_c02460{left:0.000000pt;}
.x3_c02460{left:14.720000pt;}
.x1_c02460{left:113.472000pt;}
.x4_c02460{left:161.466667pt;}
.x5_c02460{left:217.466667pt;}
.x2_c02460{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02461 {
    display:none;
  }
  .loading-indicator_c02461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02461 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02461 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02461" -> "#page-container .classname_c02461")
 */
.pf_c02461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02461 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02461 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02461 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02461 {overflow:visible;}
  }
}
.c_c02461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02461 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02461:after { /* webkit #35443 */
  content: '';
}
.t_c02461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02461 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02461 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02461 { /* info for Javascript */
  display:none;
}
.l_c02461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02461:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02461 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02461.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02461;src:url('chunks/assets/font_f1c39f8623304218d7e22def.woff2')format("woff");}.ff1_c02461{font-family:ff1_c02461;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02461;src:url('chunks/assets/font_8a82b083ed9c1ea0f12c07ed.woff2')format("woff");}.ff2_c02461{font-family:ff2_c02461;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:ff3_c02461;src:url('chunks/assets/font_5936a1ee785d35f6afb66299.woff2')format("woff");}.ff3_c02461{font-family:ff3_c02461;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02461{vertical-align:0.000000px;}
.ls0_c02461{letter-spacing:0.000000px;}
.sc__c02461{text-shadow:none;}
.sc0_c02461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02461{-webkit-text-stroke:0px transparent;}
.sc0_c02461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02461{word-spacing:0.000000px;}
._2_c02461{margin-left:-1.325264px;}
._0_c02461{width:1.059641px;}
._1_c02461{width:2.451476px;}
._16_c02461{width:3.974400px;}
._11_c02461{width:5.432210px;}
._14_c02461{width:6.624464px;}
._f_c02461{width:7.750212px;}
._e_c02461{width:8.810317px;}
._d_c02461{width:10.440000px;}
._5_c02461{width:12.585600px;}
._6_c02461{width:13.711812px;}
._15_c02461{width:15.036546px;}
._7_c02461{width:17.819289px;}
._a_c02461{width:19.671889px;}
._3_c02461{width:21.925241px;}
._4_c02461{width:23.317142px;}
._10_c02461{width:24.573649px;}
._b_c02461{width:30.384000px;}
._c_c02461{width:31.896000px;}
._8_c02461{width:38.816441px;}
._9_c02461{width:39.877871px;}
._12_c02461{width:43.254654px;}
._13_c02461{width:44.978351px;}
.fc1_c02461{color:rgb(192,80,77);}
.fc0_c02461{color:rgb(0,0,0);}
.fs0_c02461{font-size:66.240000px;}
.fs1_c02461{font-size:72.000000px;}
.y0_c02461{bottom:0.000000px;}
.y3_c02461{bottom:4.680000px;}
.y2_c02461{bottom:41.796000px;}
.y1_c02461{bottom:75.456000px;}
.y2f_c02461{bottom:132.696000px;}
.y2e_c02461{bottom:151.590000px;}
.y2d_c02461{bottom:170.490000px;}
.y2c_c02461{bottom:189.570000px;}
.y2b_c02461{bottom:208.470000px;}
.y2a_c02461{bottom:227.550000px;}
.y29_c02461{bottom:257.070000px;}
.y28_c02461{bottom:288.255000px;}
.y27_c02461{bottom:319.215000px;}
.y26_c02461{bottom:350.355000px;}
.y25_c02461{bottom:380.235000px;}
.y24_c02461{bottom:399.135000px;}
.y23_c02461{bottom:418.215000px;}
.y22_c02461{bottom:437.115000px;}
.y21_c02461{bottom:456.015000px;}
.y20_c02461{bottom:475.095000px;}
.y1f_c02461{bottom:493.995000px;}
.y1e_c02461{bottom:513.075000px;}
.y1d_c02461{bottom:531.975000px;}
.y1c_c02461{bottom:550.905000px;}
.y1b_c02461{bottom:569.985000px;}
.y1a_c02461{bottom:588.885000px;}
.y19_c02461{bottom:607.965000px;}
.y18_c02461{bottom:626.865000px;}
.y17_c02461{bottom:645.765000px;}
.y16_c02461{bottom:664.845000px;}
.y15_c02461{bottom:683.745000px;}
.y14_c02461{bottom:702.825000px;}
.y13_c02461{bottom:732.345000px;}
.y12_c02461{bottom:763.485000px;}
.y11_c02461{bottom:794.445000px;}
.y10_c02461{bottom:825.630000px;}
.yf_c02461{bottom:856.590000px;}
.ye_c02461{bottom:877.110000px;}
.yd_c02461{bottom:896.010000px;}
.yc_c02461{bottom:914.910000px;}
.yb_c02461{bottom:933.990000px;}
.ya_c02461{bottom:952.890000px;}
.y9_c02461{bottom:971.970000px;}
.y8_c02461{bottom:990.870000px;}
.y7_c02461{bottom:1009.770000px;}
.y6_c02461{bottom:1028.850000px;}
.y5_c02461{bottom:1047.750000px;}
.y4_c02461{bottom:1066.860000px;}
.h2_c02461{height:22.500000px;}
.h1_c02461{height:48.871406px;}
.h3_c02461{height:65.010937px;}
.h4_c02461{height:70.664062px;}
.h0_c02461{height:1188.000000px;}
.w1_c02461{width:66.636000px;}
.w0_c02461{width:918.000000px;}
.x0_c02461{left:0.000000px;}
.x3_c02461{left:16.560000px;}
.x1_c02461{left:127.656000px;}
.x5_c02461{left:180.750000px;}
.x4_c02461{left:244.650000px;}
.x2_c02461{left:820.950000px;}
@media print{
.v0_c02461{vertical-align:0.000000pt;}
.ls0_c02461{letter-spacing:0.000000pt;}
.ws0_c02461{word-spacing:0.000000pt;}
._2_c02461{margin-left:-1.178012pt;}
._0_c02461{width:0.941903pt;}
._1_c02461{width:2.179090pt;}
._16_c02461{width:3.532800pt;}
._11_c02461{width:4.828631pt;}
._14_c02461{width:5.888412pt;}
._f_c02461{width:6.889078pt;}
._e_c02461{width:7.831393pt;}
._d_c02461{width:9.280000pt;}
._5_c02461{width:11.187200pt;}
._6_c02461{width:12.188278pt;}
._15_c02461{width:13.365819pt;}
._7_c02461{width:15.839368pt;}
._a_c02461{width:17.486124pt;}
._3_c02461{width:19.489103pt;}
._4_c02461{width:20.726349pt;}
._10_c02461{width:21.843244pt;}
._b_c02461{width:27.008000pt;}
._c_c02461{width:28.352000pt;}
._8_c02461{width:34.503503pt;}
._9_c02461{width:35.446996pt;}
._12_c02461{width:38.448581pt;}
._13_c02461{width:39.980756pt;}
.fs0_c02461{font-size:58.880000pt;}
.fs1_c02461{font-size:64.000000pt;}
.y0_c02461{bottom:0.000000pt;}
.y3_c02461{bottom:4.160000pt;}
.y2_c02461{bottom:37.152000pt;}
.y1_c02461{bottom:67.072000pt;}
.y2f_c02461{bottom:117.952000pt;}
.y2e_c02461{bottom:134.746667pt;}
.y2d_c02461{bottom:151.546667pt;}
.y2c_c02461{bottom:168.506667pt;}
.y2b_c02461{bottom:185.306667pt;}
.y2a_c02461{bottom:202.266667pt;}
.y29_c02461{bottom:228.506667pt;}
.y28_c02461{bottom:256.226667pt;}
.y27_c02461{bottom:283.746667pt;}
.y26_c02461{bottom:311.426667pt;}
.y25_c02461{bottom:337.986667pt;}
.y24_c02461{bottom:354.786667pt;}
.y23_c02461{bottom:371.746667pt;}
.y22_c02461{bottom:388.546667pt;}
.y21_c02461{bottom:405.346667pt;}
.y20_c02461{bottom:422.306667pt;}
.y1f_c02461{bottom:439.106667pt;}
.y1e_c02461{bottom:456.066667pt;}
.y1d_c02461{bottom:472.866667pt;}
.y1c_c02461{bottom:489.693333pt;}
.y1b_c02461{bottom:506.653333pt;}
.y1a_c02461{bottom:523.453333pt;}
.y19_c02461{bottom:540.413333pt;}
.y18_c02461{bottom:557.213333pt;}
.y17_c02461{bottom:574.013333pt;}
.y16_c02461{bottom:590.973333pt;}
.y15_c02461{bottom:607.773333pt;}
.y14_c02461{bottom:624.733333pt;}
.y13_c02461{bottom:650.973333pt;}
.y12_c02461{bottom:678.653333pt;}
.y11_c02461{bottom:706.173333pt;}
.y10_c02461{bottom:733.893333pt;}
.yf_c02461{bottom:761.413333pt;}
.ye_c02461{bottom:779.653333pt;}
.yd_c02461{bottom:796.453333pt;}
.yc_c02461{bottom:813.253333pt;}
.yb_c02461{bottom:830.213333pt;}
.ya_c02461{bottom:847.013333pt;}
.y9_c02461{bottom:863.973333pt;}
.y8_c02461{bottom:880.773333pt;}
.y7_c02461{bottom:897.573333pt;}
.y6_c02461{bottom:914.533333pt;}
.y5_c02461{bottom:931.333333pt;}
.y4_c02461{bottom:948.320000pt;}
.h2_c02461{height:20.000000pt;}
.h1_c02461{height:43.441250pt;}
.h3_c02461{height:57.787500pt;}
.h4_c02461{height:62.812500pt;}
.h0_c02461{height:1056.000000pt;}
.w1_c02461{width:59.232000pt;}
.w0_c02461{width:816.000000pt;}
.x0_c02461{left:0.000000pt;}
.x3_c02461{left:14.720000pt;}
.x1_c02461{left:113.472000pt;}
.x5_c02461{left:160.666667pt;}
.x4_c02461{left:217.466667pt;}
.x2_c02461{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02462 {
    display:none;
  }
  .loading-indicator_c02462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02462" -> "#page-container .classname_c02462")
 */
.pf_c02462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02462 {overflow:visible;}
  }
}
.c_c02462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02462:after { /* webkit #35443 */
  content: '';
}
.t_c02462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02462 { /* info for Javascript */
  display:none;
}
.l_c02462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02462;src:url('chunks/assets/font_3e66985b9dca52e18559e39e.woff2')format("woff");}.ff1_c02462{font-family:ff1_c02462;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02462;src:url('chunks/assets/font_e98378160e975e6f0aeba30e.woff2')format("woff");}.ff2_c02462{font-family:ff2_c02462;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:ff3_c02462;src:url('chunks/assets/font_834778640a6a9a2aa09ac997.woff2')format("woff");}.ff3_c02462{font-family:ff3_c02462;line-height:1.112305;font-style:normal;font-weight: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_c02462;src:url('chunks/assets/font_2449bb2678e9e7c53cf6cf7c.woff2')format("woff");}.ff4_c02462{font-family:ff4_c02462;line-height:0.783691;font-style:normal;font-weight: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_c02462;src:url('chunks/assets/font_e6810b16308414898a973d02.woff2')format("woff");}.ff5_c02462{font-family:ff5_c02462;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02462{vertical-align:0.000000px;}
.ls2_c02462{letter-spacing:0.000000px;}
.ls0_c02462{letter-spacing:0.288000px;}
.ls1_c02462{letter-spacing:23.904000px;}
.sc__c02462{text-shadow:none;}
.sc0_c02462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02462{-webkit-text-stroke:0px transparent;}
.sc0_c02462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02462{word-spacing:0.000000px;}
._0_c02462{margin-left:-1.059575px;}
._2_c02462{width:1.191724px;}
._1_c02462{width:2.318400px;}
._4_c02462{width:3.888000px;}
._5_c02462{width:5.216276px;}
._e_c02462{width:6.375724px;}
._7_c02462{width:8.619575px;}
._6_c02462{width:9.936000px;}
._a_c02462{width:14.506759px;}
._f_c02462{width:16.344000px;}
._b_c02462{width:18.216066px;}
._9_c02462{width:21.651641px;}
._8_c02462{width:22.824000px;}
._3_c02462{width:29.410229px;}
._c_c02462{width:31.069771px;}
._d_c02462{width:32.328000px;}
.fc1_c02462{color:rgb(192,80,77);}
.fc0_c02462{color:rgb(0,0,0);}
.fs0_c02462{font-size:66.240000px;}
.fs1_c02462{font-size:72.000000px;}
.y0_c02462{bottom:0.000000px;}
.y3_c02462{bottom:4.680000px;}
.y2_c02462{bottom:41.796000px;}
.y1_c02462{bottom:75.456000px;}
.y26_c02462{bottom:132.876000px;}
.y25_c02462{bottom:164.010000px;}
.y24_c02462{bottom:194.970000px;}
.y23_c02462{bottom:226.110000px;}
.y22_c02462{bottom:257.070000px;}
.y21_c02462{bottom:288.255000px;}
.y20_c02462{bottom:319.215000px;}
.y1f_c02462{bottom:350.355000px;}
.y1e_c02462{bottom:381.315000px;}
.y1d_c02462{bottom:412.455000px;}
.y1c_c02462{bottom:443.415000px;}
.y1b_c02462{bottom:474.555000px;}
.y1a_c02462{bottom:505.515000px;}
.y19_c02462{bottom:536.685000px;}
.y18_c02462{bottom:567.645000px;}
.y17_c02462{bottom:598.785000px;}
.y16_c02462{bottom:629.745000px;}
.y15_c02462{bottom:660.705000px;}
.y14_c02462{bottom:691.845000px;}
.y13_c02462{bottom:712.185000px;}
.y12_c02462{bottom:731.265000px;}
.y11_c02462{bottom:750.165000px;}
.y10_c02462{bottom:769.245000px;}
.yf_c02462{bottom:798.810000px;}
.ye_c02462{bottom:829.950000px;}
.yd_c02462{bottom:860.910000px;}
.yc_c02462{bottom:892.050000px;}
.yb_c02462{bottom:923.010000px;}
.ya_c02462{bottom:952.890000px;}
.y9_c02462{bottom:971.970000px;}
.y8_c02462{bottom:990.870000px;}
.y7_c02462{bottom:1009.770000px;}
.y6_c02462{bottom:1028.850000px;}
.y5_c02462{bottom:1047.750000px;}
.y4_c02462{bottom:1066.860000px;}
.h2_c02462{height:22.500000px;}
.h1_c02462{height:48.871406px;}
.h4_c02462{height:59.383125px;}
.h3_c02462{height:65.010937px;}
.h5_c02462{height:70.664062px;}
.h6_c02462{height:74.004654px;}
.h0_c02462{height:1188.000000px;}
.w1_c02462{width:66.636000px;}
.w0_c02462{width:918.000000px;}
.x0_c02462{left:0.000000px;}
.x3_c02462{left:16.560000px;}
.x1_c02462{left:127.656000px;}
.x5_c02462{left:180.750000px;}
.x6_c02462{left:208.650000px;}
.x7_c02462{left:235.650000px;}
.x4_c02462{left:244.650000px;}
.x2_c02462{left:820.950000px;}
@media print{
.v0_c02462{vertical-align:0.000000pt;}
.ls2_c02462{letter-spacing:0.000000pt;}
.ls0_c02462{letter-spacing:0.256000pt;}
.ls1_c02462{letter-spacing:21.248000pt;}
.ws0_c02462{word-spacing:0.000000pt;}
._0_c02462{margin-left:-0.941844pt;}
._2_c02462{width:1.059310pt;}
._1_c02462{width:2.060800pt;}
._4_c02462{width:3.456000pt;}
._5_c02462{width:4.636690pt;}
._e_c02462{width:5.667310pt;}
._7_c02462{width:7.661844pt;}
._6_c02462{width:8.832000pt;}
._a_c02462{width:12.894897pt;}
._f_c02462{width:14.528000pt;}
._b_c02462{width:16.192059pt;}
._9_c02462{width:19.245903pt;}
._8_c02462{width:20.288000pt;}
._3_c02462{width:26.142426pt;}
._c_c02462{width:27.617574pt;}
._d_c02462{width:28.736000pt;}
.fs0_c02462{font-size:58.880000pt;}
.fs1_c02462{font-size:64.000000pt;}
.y0_c02462{bottom:0.000000pt;}
.y3_c02462{bottom:4.160000pt;}
.y2_c02462{bottom:37.152000pt;}
.y1_c02462{bottom:67.072000pt;}
.y26_c02462{bottom:118.112000pt;}
.y25_c02462{bottom:145.786667pt;}
.y24_c02462{bottom:173.306667pt;}
.y23_c02462{bottom:200.986667pt;}
.y22_c02462{bottom:228.506667pt;}
.y21_c02462{bottom:256.226667pt;}
.y20_c02462{bottom:283.746667pt;}
.y1f_c02462{bottom:311.426667pt;}
.y1e_c02462{bottom:338.946667pt;}
.y1d_c02462{bottom:366.626667pt;}
.y1c_c02462{bottom:394.146667pt;}
.y1b_c02462{bottom:421.826667pt;}
.y1a_c02462{bottom:449.346667pt;}
.y19_c02462{bottom:477.053333pt;}
.y18_c02462{bottom:504.573333pt;}
.y17_c02462{bottom:532.253333pt;}
.y16_c02462{bottom:559.773333pt;}
.y15_c02462{bottom:587.293333pt;}
.y14_c02462{bottom:614.973333pt;}
.y13_c02462{bottom:633.053333pt;}
.y12_c02462{bottom:650.013333pt;}
.y11_c02462{bottom:666.813333pt;}
.y10_c02462{bottom:683.773333pt;}
.yf_c02462{bottom:710.053333pt;}
.ye_c02462{bottom:737.733333pt;}
.yd_c02462{bottom:765.253333pt;}
.yc_c02462{bottom:792.933333pt;}
.yb_c02462{bottom:820.453333pt;}
.ya_c02462{bottom:847.013333pt;}
.y9_c02462{bottom:863.973333pt;}
.y8_c02462{bottom:880.773333pt;}
.y7_c02462{bottom:897.573333pt;}
.y6_c02462{bottom:914.533333pt;}
.y5_c02462{bottom:931.333333pt;}
.y4_c02462{bottom:948.320000pt;}
.h2_c02462{height:20.000000pt;}
.h1_c02462{height:43.441250pt;}
.h4_c02462{height:52.785000pt;}
.h3_c02462{height:57.787500pt;}
.h5_c02462{height:62.812500pt;}
.h6_c02462{height:65.781915pt;}
.h0_c02462{height:1056.000000pt;}
.w1_c02462{width:59.232000pt;}
.w0_c02462{width:816.000000pt;}
.x0_c02462{left:0.000000pt;}
.x3_c02462{left:14.720000pt;}
.x1_c02462{left:113.472000pt;}
.x5_c02462{left:160.666667pt;}
.x6_c02462{left:185.466667pt;}
.x7_c02462{left:209.466667pt;}
.x4_c02462{left:217.466667pt;}
.x2_c02462{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02463 {
    display:none;
  }
  .loading-indicator_c02463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02463" -> "#page-container .classname_c02463")
 */
.pf_c02463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02463 {overflow:visible;}
  }
}
.c_c02463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02463:after { /* webkit #35443 */
  content: '';
}
.t_c02463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02463 { /* info for Javascript */
  display:none;
}
.l_c02463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02463;src:url('chunks/assets/font_5c7ec1e893e7e0be227520ed.woff2')format("woff");}.ff1_c02463{font-family:ff1_c02463;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02463;src:url('chunks/assets/font_51b800ecf9aeeae41da28dae.woff2')format("woff");}.ff2_c02463{font-family:ff2_c02463;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:ff3_c02463;src:url('chunks/assets/font_2449bb2678e9e7c53cf6cf7c.woff2')format("woff");}.ff3_c02463{font-family:ff3_c02463;line-height:0.783691;font-style:normal;font-weight: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_c02463;src:url('chunks/assets/font_43282cab4f909cb068878882.woff2')format("woff");}.ff4_c02463{font-family:ff4_c02463;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02463{vertical-align:0.000000px;}
.ls2_c02463{letter-spacing:0.000000px;}
.ls0_c02463{letter-spacing:0.288000px;}
.ls1_c02463{letter-spacing:23.904000px;}
.sc__c02463{text-shadow:none;}
.sc0_c02463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02463{-webkit-text-stroke:0px transparent;}
.sc0_c02463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02463{word-spacing:0.000000px;}
._0_c02463{margin-left:-1.080000px;}
._1_c02463{width:1.236024px;}
._2_c02463{width:2.483928px;}
._3_c02463{width:3.648000px;}
._4_c02463{width:4.979976px;}
._d_c02463{width:7.056000px;}
._6_c02463{width:8.784000px;}
._7_c02463{width:9.864000px;}
._8_c02463{width:10.944000px;}
._a_c02463{width:12.600000px;}
._5_c02463{width:14.760000px;}
._9_c02463{width:19.296000px;}
._b_c02463{width:22.392000px;}
._c_c02463{width:23.544000px;}
.fc1_c02463{color:rgb(192,80,77);}
.fc2_c02463{color:rgb(17,17,17);}
.fc0_c02463{color:rgb(0,0,0);}
.fs0_c02463{font-size:66.240000px;}
.fs1_c02463{font-size:72.000000px;}
.y0_c02463{bottom:0.000000px;}
.y3_c02463{bottom:4.680000px;}
.y2_c02463{bottom:41.796000px;}
.y1_c02463{bottom:75.456000px;}
.y22_c02463{bottom:133.776000px;}
.y21_c02463{bottom:164.910000px;}
.y20_c02463{bottom:195.870000px;}
.y1f_c02463{bottom:227.010000px;}
.y1e_c02463{bottom:257.970000px;}
.y1d_c02463{bottom:289.155000px;}
.y1c_c02463{bottom:320.115000px;}
.y1b_c02463{bottom:351.255000px;}
.y1a_c02463{bottom:382.215000px;}
.y19_c02463{bottom:413.355000px;}
.y18_c02463{bottom:444.315000px;}
.y17_c02463{bottom:475.275000px;}
.y16_c02463{bottom:506.415000px;}
.y15_c02463{bottom:537.405000px;}
.y14_c02463{bottom:568.545000px;}
.y13_c02463{bottom:589.425000px;}
.y12_c02463{bottom:610.125000px;}
.y11_c02463{bottom:630.825000px;}
.y10_c02463{bottom:661.605000px;}
.yf_c02463{bottom:700.485000px;}
.ye_c02463{bottom:731.445000px;}
.yd_c02463{bottom:770.325000px;}
.yc_c02463{bottom:801.510000px;}
.yb_c02463{bottom:832.470000px;}
.ya_c02463{bottom:871.350000px;}
.y9_c02463{bottom:902.310000px;}
.y8_c02463{bottom:941.190000px;}
.y7_c02463{bottom:972.150000px;}
.y6_c02463{bottom:1003.290000px;}
.y5_c02463{bottom:1034.250000px;}
.y4_c02463{bottom:1065.420000px;}
.h2_c02463{height:22.500000px;}
.h1_c02463{height:48.871406px;}
.h3_c02463{height:70.664062px;}
.h4_c02463{height:74.004654px;}
.h0_c02463{height:1188.000000px;}
.w1_c02463{width:66.636000px;}
.w0_c02463{width:918.000000px;}
.x0_c02463{left:0.000000px;}
.x3_c02463{left:16.560000px;}
.x1_c02463{left:127.656000px;}
.x8_c02463{left:131.976000px;}
.x4_c02463{left:181.650000px;}
.x9_c02463{left:185.970000px;}
.x7_c02463{left:187.050000px;}
.x5_c02463{left:208.650000px;}
.x6_c02463{left:235.650000px;}
.x2_c02463{left:820.950000px;}
@media print{
.v0_c02463{vertical-align:0.000000pt;}
.ls2_c02463{letter-spacing:0.000000pt;}
.ls0_c02463{letter-spacing:0.256000pt;}
.ls1_c02463{letter-spacing:21.248000pt;}
.ws0_c02463{word-spacing:0.000000pt;}
._0_c02463{margin-left:-0.960000pt;}
._1_c02463{width:1.098688pt;}
._2_c02463{width:2.207936pt;}
._3_c02463{width:3.242667pt;}
._4_c02463{width:4.426645pt;}
._d_c02463{width:6.272000pt;}
._6_c02463{width:7.808000pt;}
._7_c02463{width:8.768000pt;}
._8_c02463{width:9.728000pt;}
._a_c02463{width:11.200000pt;}
._5_c02463{width:13.120000pt;}
._9_c02463{width:17.152000pt;}
._b_c02463{width:19.904000pt;}
._c_c02463{width:20.928000pt;}
.fs0_c02463{font-size:58.880000pt;}
.fs1_c02463{font-size:64.000000pt;}
.y0_c02463{bottom:0.000000pt;}
.y3_c02463{bottom:4.160000pt;}
.y2_c02463{bottom:37.152000pt;}
.y1_c02463{bottom:67.072000pt;}
.y22_c02463{bottom:118.912000pt;}
.y21_c02463{bottom:146.586667pt;}
.y20_c02463{bottom:174.106667pt;}
.y1f_c02463{bottom:201.786667pt;}
.y1e_c02463{bottom:229.306667pt;}
.y1d_c02463{bottom:257.026667pt;}
.y1c_c02463{bottom:284.546667pt;}
.y1b_c02463{bottom:312.226667pt;}
.y1a_c02463{bottom:339.746667pt;}
.y19_c02463{bottom:367.426667pt;}
.y18_c02463{bottom:394.946667pt;}
.y17_c02463{bottom:422.466667pt;}
.y16_c02463{bottom:450.146667pt;}
.y15_c02463{bottom:477.693333pt;}
.y14_c02463{bottom:505.373333pt;}
.y13_c02463{bottom:523.933333pt;}
.y12_c02463{bottom:542.333333pt;}
.y11_c02463{bottom:560.733333pt;}
.y10_c02463{bottom:588.093333pt;}
.yf_c02463{bottom:622.653333pt;}
.ye_c02463{bottom:650.173333pt;}
.yd_c02463{bottom:684.733333pt;}
.yc_c02463{bottom:712.453333pt;}
.yb_c02463{bottom:739.973333pt;}
.ya_c02463{bottom:774.533333pt;}
.y9_c02463{bottom:802.053333pt;}
.y8_c02463{bottom:836.613333pt;}
.y7_c02463{bottom:864.133333pt;}
.y6_c02463{bottom:891.813333pt;}
.y5_c02463{bottom:919.333333pt;}
.y4_c02463{bottom:947.040000pt;}
.h2_c02463{height:20.000000pt;}
.h1_c02463{height:43.441250pt;}
.h3_c02463{height:62.812500pt;}
.h4_c02463{height:65.781915pt;}
.h0_c02463{height:1056.000000pt;}
.w1_c02463{width:59.232000pt;}
.w0_c02463{width:816.000000pt;}
.x0_c02463{left:0.000000pt;}
.x3_c02463{left:14.720000pt;}
.x1_c02463{left:113.472000pt;}
.x8_c02463{left:117.312000pt;}
.x4_c02463{left:161.466667pt;}
.x9_c02463{left:165.306667pt;}
.x7_c02463{left:166.266667pt;}
.x5_c02463{left:185.466667pt;}
.x6_c02463{left:209.466667pt;}
.x2_c02463{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02464 {
    display:none;
  }
  .loading-indicator_c02464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02464" -> "#page-container .classname_c02464")
 */
.pf_c02464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02464 {overflow:visible;}
  }
}
.c_c02464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02464:after { /* webkit #35443 */
  content: '';
}
.t_c02464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02464 { /* info for Javascript */
  display:none;
}
.l_c02464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02464;src:url('chunks/assets/font_e90a743d00850c5cfaaff3e6.woff2')format("woff");}.ff1_c02464{font-family:ff1_c02464;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02464;src:url('chunks/assets/font_55067d95d6d4993319539173.woff2')format("woff");}.ff2_c02464{font-family:ff2_c02464;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:ff3_c02464;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02464{font-family:ff3_c02464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02464{vertical-align:0.000000px;}
.ls3_c02464{letter-spacing:-0.720000px;}
.ls2_c02464{letter-spacing:0.000000px;}
.ls0_c02464{letter-spacing:2.160000px;}
.ls1_c02464{letter-spacing:9.360000px;}
.sc__c02464{text-shadow:none;}
.sc0_c02464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02464{-webkit-text-stroke:0px transparent;}
.sc0_c02464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02464{word-spacing:0.000000px;}
._1_c02464{margin-left:-1.326787px;}
._f_c02464{width:1.106870px;}
._2_c02464{width:2.119879px;}
._3_c02464{width:3.511780px;}
._6_c02464{width:4.702841px;}
._7_c02464{width:5.830511px;}
._e_c02464{width:7.220425px;}
._a_c02464{width:8.485543px;}
._5_c02464{width:9.768943px;}
._4_c02464{width:11.055191px;}
._b_c02464{width:12.055812px;}
._12_c02464{width:13.401688px;}
._15_c02464{width:14.487339px;}
._0_c02464{width:18.481225px;}
._16_c02464{width:19.514186px;}
._c_c02464{width:20.733054px;}
._d_c02464{width:22.588171px;}
._10_c02464{width:24.111559px;}
._11_c02464{width:25.839562px;}
._9_c02464{width:29.007556px;}
._8_c02464{width:30.406478px;}
._14_c02464{width:32.651948px;}
._13_c02464{width:33.752592px;}
.fc1_c02464{color:rgb(192,80,77);}
.fc0_c02464{color:rgb(0,0,0);}
.fs0_c02464{font-size:66.240000px;}
.fs1_c02464{font-size:72.000000px;}
.y0_c02464{bottom:0.000000px;}
.y3_c02464{bottom:4.680000px;}
.y2_c02464{bottom:41.796000px;}
.y1_c02464{bottom:75.456000px;}
.y31_c02464{bottom:114.876000px;}
.y30_c02464{bottom:145.836000px;}
.y2f_c02464{bottom:176.970000px;}
.y2e_c02464{bottom:197.310000px;}
.y2d_c02464{bottom:216.210000px;}
.y2c_c02464{bottom:235.290000px;}
.y2b_c02464{bottom:254.190000px;}
.y2a_c02464{bottom:273.315000px;}
.y29_c02464{bottom:292.215000px;}
.y28_c02464{bottom:321.915000px;}
.y27_c02464{bottom:352.875000px;}
.y26_c02464{bottom:383.835000px;}
.y25_c02464{bottom:414.975000px;}
.y24_c02464{bottom:445.935000px;}
.y23_c02464{bottom:477.075000px;}
.y22_c02464{bottom:497.415000px;}
.y21_c02464{bottom:516.495000px;}
.y20_c02464{bottom:535.425000px;}
.y1f_c02464{bottom:554.505000px;}
.y1e_c02464{bottom:573.405000px;}
.y1d_c02464{bottom:592.305000px;}
.y1c_c02464{bottom:611.385000px;}
.y1b_c02464{bottom:630.285000px;}
.y1a_c02464{bottom:649.365000px;}
.y19_c02464{bottom:668.265000px;}
.y18_c02464{bottom:687.165000px;}
.y17_c02464{bottom:706.245000px;}
.y16_c02464{bottom:725.145000px;}
.y15_c02464{bottom:744.225000px;}
.y14_c02464{bottom:763.125000px;}
.y13_c02464{bottom:782.025000px;}
.y12_c02464{bottom:801.150000px;}
.y11_c02464{bottom:820.050000px;}
.y10_c02464{bottom:839.130000px;}
.yf_c02464{bottom:858.030000px;}
.ye_c02464{bottom:877.110000px;}
.yd_c02464{bottom:896.010000px;}
.yc_c02464{bottom:914.910000px;}
.yb_c02464{bottom:933.990000px;}
.ya_c02464{bottom:952.890000px;}
.y9_c02464{bottom:971.970000px;}
.y8_c02464{bottom:990.870000px;}
.y7_c02464{bottom:1009.770000px;}
.y6_c02464{bottom:1028.850000px;}
.y5_c02464{bottom:1047.750000px;}
.y4_c02464{bottom:1066.860000px;}
.h2_c02464{height:22.500000px;}
.h1_c02464{height:48.871406px;}
.h3_c02464{height:65.010937px;}
.h4_c02464{height:66.757500px;}
.h5_c02464{height:70.664062px;}
.h0_c02464{height:1188.000000px;}
.w1_c02464{width:66.636000px;}
.w0_c02464{width:918.000000px;}
.x0_c02464{left:0.000000px;}
.x3_c02464{left:16.560000px;}
.x1_c02464{left:127.656000px;}
.x5_c02464{left:180.750000px;}
.x4_c02464{left:244.650000px;}
.x2_c02464{left:820.950000px;}
@media print{
.v0_c02464{vertical-align:0.000000pt;}
.ls3_c02464{letter-spacing:-0.640000pt;}
.ls2_c02464{letter-spacing:0.000000pt;}
.ls0_c02464{letter-spacing:1.920000pt;}
.ls1_c02464{letter-spacing:8.320000pt;}
.ws0_c02464{word-spacing:0.000000pt;}
._1_c02464{margin-left:-1.179366pt;}
._f_c02464{width:0.983885pt;}
._2_c02464{width:1.884337pt;}
._3_c02464{width:3.121582pt;}
._6_c02464{width:4.180303pt;}
._7_c02464{width:5.182676pt;}
._e_c02464{width:6.418156pt;}
._a_c02464{width:7.542705pt;}
._5_c02464{width:8.683505pt;}
._4_c02464{width:9.826836pt;}
._b_c02464{width:10.716278pt;}
._12_c02464{width:11.912612pt;}
._15_c02464{width:12.877635pt;}
._0_c02464{width:16.427756pt;}
._16_c02464{width:17.345943pt;}
._c_c02464{width:18.429381pt;}
._d_c02464{width:20.078374pt;}
._10_c02464{width:21.432497pt;}
._11_c02464{width:22.968499pt;}
._9_c02464{width:25.784494pt;}
._8_c02464{width:27.027981pt;}
._14_c02464{width:29.023954pt;}
._13_c02464{width:30.002304pt;}
.fs0_c02464{font-size:58.880000pt;}
.fs1_c02464{font-size:64.000000pt;}
.y0_c02464{bottom:0.000000pt;}
.y3_c02464{bottom:4.160000pt;}
.y2_c02464{bottom:37.152000pt;}
.y1_c02464{bottom:67.072000pt;}
.y31_c02464{bottom:102.112000pt;}
.y30_c02464{bottom:129.632000pt;}
.y2f_c02464{bottom:157.306667pt;}
.y2e_c02464{bottom:175.386667pt;}
.y2d_c02464{bottom:192.186667pt;}
.y2c_c02464{bottom:209.146667pt;}
.y2b_c02464{bottom:225.946667pt;}
.y2a_c02464{bottom:242.946667pt;}
.y29_c02464{bottom:259.746667pt;}
.y28_c02464{bottom:286.146667pt;}
.y27_c02464{bottom:313.666667pt;}
.y26_c02464{bottom:341.186667pt;}
.y25_c02464{bottom:368.866667pt;}
.y24_c02464{bottom:396.386667pt;}
.y23_c02464{bottom:424.066667pt;}
.y22_c02464{bottom:442.146667pt;}
.y21_c02464{bottom:459.106667pt;}
.y20_c02464{bottom:475.933333pt;}
.y1f_c02464{bottom:492.893333pt;}
.y1e_c02464{bottom:509.693333pt;}
.y1d_c02464{bottom:526.493333pt;}
.y1c_c02464{bottom:543.453333pt;}
.y1b_c02464{bottom:560.253333pt;}
.y1a_c02464{bottom:577.213333pt;}
.y19_c02464{bottom:594.013333pt;}
.y18_c02464{bottom:610.813333pt;}
.y17_c02464{bottom:627.773333pt;}
.y16_c02464{bottom:644.573333pt;}
.y15_c02464{bottom:661.533333pt;}
.y14_c02464{bottom:678.333333pt;}
.y13_c02464{bottom:695.133333pt;}
.y12_c02464{bottom:712.133333pt;}
.y11_c02464{bottom:728.933333pt;}
.y10_c02464{bottom:745.893333pt;}
.yf_c02464{bottom:762.693333pt;}
.ye_c02464{bottom:779.653333pt;}
.yd_c02464{bottom:796.453333pt;}
.yc_c02464{bottom:813.253333pt;}
.yb_c02464{bottom:830.213333pt;}
.ya_c02464{bottom:847.013333pt;}
.y9_c02464{bottom:863.973333pt;}
.y8_c02464{bottom:880.773333pt;}
.y7_c02464{bottom:897.573333pt;}
.y6_c02464{bottom:914.533333pt;}
.y5_c02464{bottom:931.333333pt;}
.y4_c02464{bottom:948.320000pt;}
.h2_c02464{height:20.000000pt;}
.h1_c02464{height:43.441250pt;}
.h3_c02464{height:57.787500pt;}
.h4_c02464{height:59.340000pt;}
.h5_c02464{height:62.812500pt;}
.h0_c02464{height:1056.000000pt;}
.w1_c02464{width:59.232000pt;}
.w0_c02464{width:816.000000pt;}
.x0_c02464{left:0.000000pt;}
.x3_c02464{left:14.720000pt;}
.x1_c02464{left:113.472000pt;}
.x5_c02464{left:160.666667pt;}
.x4_c02464{left:217.466667pt;}
.x2_c02464{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02465 {
    display:none;
  }
  .loading-indicator_c02465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02465" -> "#page-container .classname_c02465")
 */
.pf_c02465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02465 {overflow:visible;}
  }
}
.c_c02465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02465:after { /* webkit #35443 */
  content: '';
}
.t_c02465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02465 { /* info for Javascript */
  display:none;
}
.l_c02465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02465;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02465{font-family:ff1_c02465;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02465;src:url('chunks/assets/font_e1d75e41608a3c50962b06e2.woff2')format("woff");}.ff2_c02465{font-family:ff2_c02465;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:ff3_c02465;src:url('chunks/assets/font_5f903bd5a7a895f0b0538863.woff2')format("woff");}.ff3_c02465{font-family:ff3_c02465;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02465{vertical-align:0.000000px;}
.ls0_c02465{letter-spacing:0.000000px;}
.ls1_c02465{letter-spacing:0.109200px;}
.sc__c02465{text-shadow:none;}
.sc0_c02465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02465{-webkit-text-stroke:0px transparent;}
.sc0_c02465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02465{word-spacing:-16.669200px;}
.ws1_c02465{word-spacing:0.000000px;}
._8_c02465{margin-left:-1.152000px;}
._1_c02465{width:1.152000px;}
._11_c02465{width:2.185788px;}
._6_c02465{width:3.240000px;}
._7_c02465{width:4.392000px;}
._15_c02465{width:6.425412px;}
._5_c02465{width:7.560000px;}
._3_c02465{width:8.568000px;}
._4_c02465{width:9.576000px;}
._9_c02465{width:11.160000px;}
._16_c02465{width:12.204066px;}
._a_c02465{width:13.932000px;}
._b_c02465{width:14.940000px;}
._c_c02465{width:16.452000px;}
._14_c02465{width:17.951437px;}
._13_c02465{width:19.076988px;}
._f_c02465{width:21.024000px;}
._10_c02465{width:22.104000px;}
._0_c02465{width:24.120000px;}
._2_c02465{width:25.200000px;}
._d_c02465{width:33.624000px;}
._e_c02465{width:34.632000px;}
._12_c02465{width:39.767652px;}
.fc1_c02465{color:rgb(192,80,77);}
.fc0_c02465{color:rgb(0,0,0);}
.fs0_c02465{font-size:66.240000px;}
.fs1_c02465{font-size:72.000000px;}
.y0_c02465{bottom:0.000000px;}
.y3_c02465{bottom:4.680000px;}
.y2_c02465{bottom:41.796000px;}
.y1_c02465{bottom:75.456000px;}
.y2a_c02465{bottom:128.376000px;}
.y29_c02465{bottom:147.276000px;}
.y28_c02465{bottom:166.350000px;}
.y27_c02465{bottom:185.250000px;}
.y26_c02465{bottom:204.150000px;}
.y25_c02465{bottom:223.230000px;}
.y24_c02465{bottom:242.130000px;}
.y23_c02465{bottom:261.210000px;}
.y22_c02465{bottom:280.155000px;}
.y21_c02465{bottom:299.055000px;}
.y20_c02465{bottom:318.135000px;}
.y1f_c02465{bottom:337.035000px;}
.y1e_c02465{bottom:356.115000px;}
.y1d_c02465{bottom:375.015000px;}
.y1c_c02465{bottom:393.915000px;}
.y1b_c02465{bottom:412.995000px;}
.y1a_c02465{bottom:431.895000px;}
.y19_c02465{bottom:450.975000px;}
.y18_c02465{bottom:469.875000px;}
.y17_c02465{bottom:488.775000px;}
.y16_c02465{bottom:507.855000px;}
.y15_c02465{bottom:537.405000px;}
.y14_c02465{bottom:568.545000px;}
.y13_c02465{bottom:599.505000px;}
.y12_c02465{bottom:630.645000px;}
.y11_c02465{bottom:661.605000px;}
.y10_c02465{bottom:692.745000px;}
.yf_c02465{bottom:723.705000px;}
.ye_c02465{bottom:754.845000px;}
.yd_c02465{bottom:785.805000px;}
.yc_c02465{bottom:816.990000px;}
.yb_c02465{bottom:847.950000px;}
.ya_c02465{bottom:879.090000px;}
.y9_c02465{bottom:910.050000px;}
.y8_c02465{bottom:941.190000px;}
.y7_c02465{bottom:972.150000px;}
.y6_c02465{bottom:1003.290000px;}
.y5_c02465{bottom:1034.250000px;}
.y4_c02465{bottom:1065.420000px;}
.h2_c02465{height:22.500000px;}
.h1_c02465{height:48.871406px;}
.h5_c02465{height:59.383125px;}
.h4_c02465{height:64.546875px;}
.h6_c02465{height:65.010937px;}
.h3_c02465{height:70.664062px;}
.h0_c02465{height:1188.000000px;}
.w1_c02465{width:66.636000px;}
.w0_c02465{width:918.000000px;}
.x0_c02465{left:0.000000px;}
.x3_c02465{left:16.560000px;}
.x1_c02465{left:127.656000px;}
.x4_c02465{left:180.750000px;}
.x5_c02465{left:244.650000px;}
.x2_c02465{left:820.950000px;}
@media print{
.v0_c02465{vertical-align:0.000000pt;}
.ls0_c02465{letter-spacing:0.000000pt;}
.ls1_c02465{letter-spacing:0.097067pt;}
.ws0_c02465{word-spacing:-14.817067pt;}
.ws1_c02465{word-spacing:0.000000pt;}
._8_c02465{margin-left:-1.024000pt;}
._1_c02465{width:1.024000pt;}
._11_c02465{width:1.942922pt;}
._6_c02465{width:2.880000pt;}
._7_c02465{width:3.904000pt;}
._15_c02465{width:5.711478pt;}
._5_c02465{width:6.720000pt;}
._3_c02465{width:7.616000pt;}
._4_c02465{width:8.512000pt;}
._9_c02465{width:9.920000pt;}
._16_c02465{width:10.848059pt;}
._a_c02465{width:12.384000pt;}
._b_c02465{width:13.280000pt;}
._c_c02465{width:14.624000pt;}
._14_c02465{width:15.956833pt;}
._13_c02465{width:16.957322pt;}
._f_c02465{width:18.688000pt;}
._10_c02465{width:19.648000pt;}
._0_c02465{width:21.440000pt;}
._2_c02465{width:22.400000pt;}
._d_c02465{width:29.888000pt;}
._e_c02465{width:30.784000pt;}
._12_c02465{width:35.349024pt;}
.fs0_c02465{font-size:58.880000pt;}
.fs1_c02465{font-size:64.000000pt;}
.y0_c02465{bottom:0.000000pt;}
.y3_c02465{bottom:4.160000pt;}
.y2_c02465{bottom:37.152000pt;}
.y1_c02465{bottom:67.072000pt;}
.y2a_c02465{bottom:114.112000pt;}
.y29_c02465{bottom:130.912000pt;}
.y28_c02465{bottom:147.866667pt;}
.y27_c02465{bottom:164.666667pt;}
.y26_c02465{bottom:181.466667pt;}
.y25_c02465{bottom:198.426667pt;}
.y24_c02465{bottom:215.226667pt;}
.y23_c02465{bottom:232.186667pt;}
.y22_c02465{bottom:249.026667pt;}
.y21_c02465{bottom:265.826667pt;}
.y20_c02465{bottom:282.786667pt;}
.y1f_c02465{bottom:299.586667pt;}
.y1e_c02465{bottom:316.546667pt;}
.y1d_c02465{bottom:333.346667pt;}
.y1c_c02465{bottom:350.146667pt;}
.y1b_c02465{bottom:367.106667pt;}
.y1a_c02465{bottom:383.906667pt;}
.y19_c02465{bottom:400.866667pt;}
.y18_c02465{bottom:417.666667pt;}
.y17_c02465{bottom:434.466667pt;}
.y16_c02465{bottom:451.426667pt;}
.y15_c02465{bottom:477.693333pt;}
.y14_c02465{bottom:505.373333pt;}
.y13_c02465{bottom:532.893333pt;}
.y12_c02465{bottom:560.573333pt;}
.y11_c02465{bottom:588.093333pt;}
.y10_c02465{bottom:615.773333pt;}
.yf_c02465{bottom:643.293333pt;}
.ye_c02465{bottom:670.973333pt;}
.yd_c02465{bottom:698.493333pt;}
.yc_c02465{bottom:726.213333pt;}
.yb_c02465{bottom:753.733333pt;}
.ya_c02465{bottom:781.413333pt;}
.y9_c02465{bottom:808.933333pt;}
.y8_c02465{bottom:836.613333pt;}
.y7_c02465{bottom:864.133333pt;}
.y6_c02465{bottom:891.813333pt;}
.y5_c02465{bottom:919.333333pt;}
.y4_c02465{bottom:947.040000pt;}
.h2_c02465{height:20.000000pt;}
.h1_c02465{height:43.441250pt;}
.h5_c02465{height:52.785000pt;}
.h4_c02465{height:57.375000pt;}
.h6_c02465{height:57.787500pt;}
.h3_c02465{height:62.812500pt;}
.h0_c02465{height:1056.000000pt;}
.w1_c02465{width:59.232000pt;}
.w0_c02465{width:816.000000pt;}
.x0_c02465{left:0.000000pt;}
.x3_c02465{left:14.720000pt;}
.x1_c02465{left:113.472000pt;}
.x4_c02465{left:160.666667pt;}
.x5_c02465{left:217.466667pt;}
.x2_c02465{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02466 {
    display:none;
  }
  .loading-indicator_c02466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02466" -> "#page-container .classname_c02466")
 */
.pf_c02466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02466 {overflow:visible;}
  }
}
.c_c02466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02466:after { /* webkit #35443 */
  content: '';
}
.t_c02466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02466 { /* info for Javascript */
  display:none;
}
.l_c02466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02466;src:url('chunks/assets/font_f92eef65ba27cf4373ef563f.woff2')format("woff");}.ff1_c02466{font-family:ff1_c02466;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02466;src:url('chunks/assets/font_8af7f811e13b0a11b2e1e193.woff2')format("woff");}.ff2_c02466{font-family:ff2_c02466;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:ff3_c02466;src:url('chunks/assets/font_e3f944b7397f0387be326e47.woff2')format("woff");}.ff3_c02466{font-family:ff3_c02466;line-height:1.112305;font-style:normal;font-weight: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_c02466;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02466{font-family:ff4_c02466;line-height:1.311035;font-style:normal;font-weight: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_c02466;src:url('chunks/assets/font_cb5185a1e9362587812f46b3.woff2')format("woff");}.ff5_c02466{font-family:ff5_c02466;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02466{vertical-align:0.000000px;}
.ls1_c02466{letter-spacing:0.000000px;}
.ls0_c02466{letter-spacing:15.840000px;}
.sc__c02466{text-shadow:none;}
.sc0_c02466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02466{-webkit-text-stroke:0px transparent;}
.sc0_c02466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02466{word-spacing:0.000000px;}
._2_c02466{margin-left:-1.192850px;}
._8_c02466{width:1.192188px;}
._4_c02466{width:2.717430px;}
._3_c02466{width:3.841788px;}
._c_c02466{width:4.903813px;}
._d_c02466{width:6.689975px;}
._0_c02466{width:7.882825px;}
._1_c02466{width:8.940612px;}
._a_c02466{width:10.995575px;}
._b_c02466{width:12.329847px;}
._9_c02466{width:14.440188px;}
._e_c02466{width:20.088000px;}
._7_c02466{width:22.190400px;}
._6_c02466{width:23.316612px;}
._5_c02466{width:31.000188px;}
._f_c02466{width:37.296000px;}
._10_c02466{width:38.359250px;}
.fc1_c02466{color:rgb(192,80,77);}
.fc2_c02466{color:rgb(17,17,17);}
.fc0_c02466{color:rgb(0,0,0);}
.fs0_c02466{font-size:66.240000px;}
.fs1_c02466{font-size:72.000000px;}
.y0_c02466{bottom:0.000000px;}
.y3_c02466{bottom:4.680000px;}
.y2_c02466{bottom:41.796000px;}
.y1_c02466{bottom:75.456000px;}
.y31_c02466{bottom:135.576000px;}
.y30_c02466{bottom:166.530000px;}
.y2f_c02466{bottom:197.670000px;}
.y2e_c02466{bottom:228.630000px;}
.y2d_c02466{bottom:259.770000px;}
.y2c_c02466{bottom:290.775000px;}
.y2b_c02466{bottom:311.655000px;}
.y2a_c02466{bottom:332.355000px;}
.y29_c02466{bottom:363.135000px;}
.y28_c02466{bottom:383.655000px;}
.y27_c02466{bottom:402.555000px;}
.y26_c02466{bottom:421.635000px;}
.y25_c02466{bottom:440.535000px;}
.y24_c02466{bottom:459.615000px;}
.y23_c02466{bottom:478.515000px;}
.y22_c02466{bottom:497.415000px;}
.y21_c02466{bottom:516.495000px;}
.y20_c02466{bottom:535.425000px;}
.y1f_c02466{bottom:554.505000px;}
.y1e_c02466{bottom:573.405000px;}
.y1d_c02466{bottom:592.305000px;}
.y1c_c02466{bottom:611.385000px;}
.y1b_c02466{bottom:630.285000px;}
.y1a_c02466{bottom:649.365000px;}
.y19_c02466{bottom:668.265000px;}
.y18_c02466{bottom:687.165000px;}
.y17_c02466{bottom:706.245000px;}
.y16_c02466{bottom:725.145000px;}
.y15_c02466{bottom:744.225000px;}
.y14_c02466{bottom:763.125000px;}
.y13_c02466{bottom:782.025000px;}
.y12_c02466{bottom:801.150000px;}
.y11_c02466{bottom:820.050000px;}
.y10_c02466{bottom:839.130000px;}
.yf_c02466{bottom:858.030000px;}
.ye_c02466{bottom:877.110000px;}
.yd_c02466{bottom:896.010000px;}
.yc_c02466{bottom:914.910000px;}
.yb_c02466{bottom:933.990000px;}
.ya_c02466{bottom:952.890000px;}
.y9_c02466{bottom:971.970000px;}
.y8_c02466{bottom:990.870000px;}
.y7_c02466{bottom:1009.770000px;}
.y6_c02466{bottom:1028.850000px;}
.y5_c02466{bottom:1047.750000px;}
.y4_c02466{bottom:1066.860000px;}
.h2_c02466{height:22.500000px;}
.h1_c02466{height:48.871406px;}
.h3_c02466{height:65.010937px;}
.h4_c02466{height:66.757500px;}
.h5_c02466{height:70.664062px;}
.h6_c02466{height:74.004654px;}
.h0_c02466{height:1188.000000px;}
.w1_c02466{width:66.636000px;}
.w0_c02466{width:918.000000px;}
.x0_c02466{left:0.000000px;}
.x3_c02466{left:16.560000px;}
.x1_c02466{left:127.656000px;}
.x7_c02466{left:131.976000px;}
.x5_c02466{left:181.650000px;}
.x8_c02466{left:185.970000px;}
.x6_c02466{left:187.050000px;}
.x4_c02466{left:244.650000px;}
.x2_c02466{left:820.950000px;}
@media print{
.v0_c02466{vertical-align:0.000000pt;}
.ls1_c02466{letter-spacing:0.000000pt;}
.ls0_c02466{letter-spacing:14.080000pt;}
.ws0_c02466{word-spacing:0.000000pt;}
._2_c02466{margin-left:-1.060311pt;}
._8_c02466{width:1.059722pt;}
._4_c02466{width:2.415493pt;}
._3_c02466{width:3.414922pt;}
._c_c02466{width:4.358945pt;}
._d_c02466{width:5.946644pt;}
._0_c02466{width:7.006956pt;}
._1_c02466{width:7.947210pt;}
._a_c02466{width:9.773844pt;}
._b_c02466{width:10.959864pt;}
._9_c02466{width:12.835722pt;}
._e_c02466{width:17.856000pt;}
._7_c02466{width:19.724800pt;}
._6_c02466{width:20.725878pt;}
._5_c02466{width:27.555722pt;}
._f_c02466{width:33.152000pt;}
._10_c02466{width:34.097111pt;}
.fs0_c02466{font-size:58.880000pt;}
.fs1_c02466{font-size:64.000000pt;}
.y0_c02466{bottom:0.000000pt;}
.y3_c02466{bottom:4.160000pt;}
.y2_c02466{bottom:37.152000pt;}
.y1_c02466{bottom:67.072000pt;}
.y31_c02466{bottom:120.512000pt;}
.y30_c02466{bottom:148.026667pt;}
.y2f_c02466{bottom:175.706667pt;}
.y2e_c02466{bottom:203.226667pt;}
.y2d_c02466{bottom:230.906667pt;}
.y2c_c02466{bottom:258.466667pt;}
.y2b_c02466{bottom:277.026667pt;}
.y2a_c02466{bottom:295.426667pt;}
.y29_c02466{bottom:322.786667pt;}
.y28_c02466{bottom:341.026667pt;}
.y27_c02466{bottom:357.826667pt;}
.y26_c02466{bottom:374.786667pt;}
.y25_c02466{bottom:391.586667pt;}
.y24_c02466{bottom:408.546667pt;}
.y23_c02466{bottom:425.346667pt;}
.y22_c02466{bottom:442.146667pt;}
.y21_c02466{bottom:459.106667pt;}
.y20_c02466{bottom:475.933333pt;}
.y1f_c02466{bottom:492.893333pt;}
.y1e_c02466{bottom:509.693333pt;}
.y1d_c02466{bottom:526.493333pt;}
.y1c_c02466{bottom:543.453333pt;}
.y1b_c02466{bottom:560.253333pt;}
.y1a_c02466{bottom:577.213333pt;}
.y19_c02466{bottom:594.013333pt;}
.y18_c02466{bottom:610.813333pt;}
.y17_c02466{bottom:627.773333pt;}
.y16_c02466{bottom:644.573333pt;}
.y15_c02466{bottom:661.533333pt;}
.y14_c02466{bottom:678.333333pt;}
.y13_c02466{bottom:695.133333pt;}
.y12_c02466{bottom:712.133333pt;}
.y11_c02466{bottom:728.933333pt;}
.y10_c02466{bottom:745.893333pt;}
.yf_c02466{bottom:762.693333pt;}
.ye_c02466{bottom:779.653333pt;}
.yd_c02466{bottom:796.453333pt;}
.yc_c02466{bottom:813.253333pt;}
.yb_c02466{bottom:830.213333pt;}
.ya_c02466{bottom:847.013333pt;}
.y9_c02466{bottom:863.973333pt;}
.y8_c02466{bottom:880.773333pt;}
.y7_c02466{bottom:897.573333pt;}
.y6_c02466{bottom:914.533333pt;}
.y5_c02466{bottom:931.333333pt;}
.y4_c02466{bottom:948.320000pt;}
.h2_c02466{height:20.000000pt;}
.h1_c02466{height:43.441250pt;}
.h3_c02466{height:57.787500pt;}
.h4_c02466{height:59.340000pt;}
.h5_c02466{height:62.812500pt;}
.h6_c02466{height:65.781915pt;}
.h0_c02466{height:1056.000000pt;}
.w1_c02466{width:59.232000pt;}
.w0_c02466{width:816.000000pt;}
.x0_c02466{left:0.000000pt;}
.x3_c02466{left:14.720000pt;}
.x1_c02466{left:113.472000pt;}
.x7_c02466{left:117.312000pt;}
.x5_c02466{left:161.466667pt;}
.x8_c02466{left:165.306667pt;}
.x6_c02466{left:166.266667pt;}
.x4_c02466{left:217.466667pt;}
.x2_c02466{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02467 {
    display:none;
  }
  .loading-indicator_c02467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02467" -> "#page-container .classname_c02467")
 */
.pf_c02467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02467 {overflow:visible;}
  }
}
.c_c02467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02467:after { /* webkit #35443 */
  content: '';
}
.t_c02467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02467 { /* info for Javascript */
  display:none;
}
.l_c02467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02467;src:url('chunks/assets/font_d2f60a5a5c40aedb9d7b2974.woff2')format("woff");}.ff1_c02467{font-family:ff1_c02467;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02467;src:url('chunks/assets/font_465485dfa121a8486aa8dd35.woff2')format("woff");}.ff2_c02467{font-family:ff2_c02467;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:ff3_c02467;src:url('chunks/assets/font_d53f99296aafe6b7d39ff2c5.woff2')format("woff");}.ff3_c02467{font-family:ff3_c02467;line-height:1.284180;font-style:normal;font-weight: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_c02467;src:url('chunks/assets/font_c08b2657dbbbeb7f188e3818.woff2')format("woff");}.ff4_c02467{font-family:ff4_c02467;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02467{vertical-align:0.000000px;}
.ls0_c02467{letter-spacing:0.000000px;}
.sc__c02467{text-shadow:none;}
.sc0_c02467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02467{-webkit-text-stroke:0px transparent;}
.sc0_c02467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02467{word-spacing:0.000000px;}
._9_c02467{margin-left:-2.226041px;}
._5_c02467{margin-left:-1.152000px;}
._2_c02467{width:1.224000px;}
._6_c02467{width:3.149760px;}
._0_c02467{width:4.824000px;}
._1_c02467{width:6.192000px;}
._8_c02467{width:7.580791px;}
._7_c02467{width:8.677175px;}
._b_c02467{width:10.402825px;}
._f_c02467{width:11.860618px;}
._e_c02467{width:13.671691px;}
._a_c02467{width:16.416000px;}
._c_c02467{width:25.056000px;}
._3_c02467{width:26.208000px;}
._4_c02467{width:27.864000px;}
._d_c02467{width:28.972734px;}
.fc1_c02467{color:rgb(192,80,77);}
.fc0_c02467{color:rgb(0,0,0);}
.fs0_c02467{font-size:66.240000px;}
.fs1_c02467{font-size:72.000000px;}
.y0_c02467{bottom:0.000000px;}
.y3_c02467{bottom:4.680000px;}
.y2_c02467{bottom:41.796000px;}
.y1_c02467{bottom:75.456000px;}
.y2b_c02467{bottom:111.996000px;}
.y2a_c02467{bottom:130.896000px;}
.y29_c02467{bottom:149.796000px;}
.y28_c02467{bottom:168.870000px;}
.y27_c02467{bottom:187.770000px;}
.y26_c02467{bottom:217.470000px;}
.y25_c02467{bottom:248.430000px;}
.y24_c02467{bottom:279.615000px;}
.y23_c02467{bottom:310.575000px;}
.y22_c02467{bottom:341.715000px;}
.y21_c02467{bottom:371.595000px;}
.y20_c02467{bottom:390.495000px;}
.y1f_c02467{bottom:409.575000px;}
.y1e_c02467{bottom:428.475000px;}
.y1d_c02467{bottom:447.375000px;}
.y1c_c02467{bottom:466.455000px;}
.y1b_c02467{bottom:485.355000px;}
.y1a_c02467{bottom:515.055000px;}
.y19_c02467{bottom:546.045000px;}
.y18_c02467{bottom:577.185000px;}
.y17_c02467{bottom:608.145000px;}
.y16_c02467{bottom:639.285000px;}
.y15_c02467{bottom:670.245000px;}
.y14_c02467{bottom:701.385000px;}
.y13_c02467{bottom:721.725000px;}
.y12_c02467{bottom:740.625000px;}
.y11_c02467{bottom:759.705000px;}
.y10_c02467{bottom:778.605000px;}
.yf_c02467{bottom:797.730000px;}
.ye_c02467{bottom:816.630000px;}
.yd_c02467{bottom:835.710000px;}
.yc_c02467{bottom:854.610000px;}
.yb_c02467{bottom:873.510000px;}
.ya_c02467{bottom:892.590000px;}
.y9_c02467{bottom:911.490000px;}
.y8_c02467{bottom:941.190000px;}
.y7_c02467{bottom:972.150000px;}
.y6_c02467{bottom:1003.290000px;}
.y5_c02467{bottom:1034.250000px;}
.y4_c02467{bottom:1065.420000px;}
.h2_c02467{height:22.500000px;}
.h1_c02467{height:48.871406px;}
.h4_c02467{height:65.010937px;}
.h3_c02467{height:70.664062px;}
.h0_c02467{height:1188.000000px;}
.w1_c02467{width:66.636000px;}
.w0_c02467{width:918.000000px;}
.x0_c02467{left:0.000000px;}
.x3_c02467{left:16.560000px;}
.x1_c02467{left:127.656000px;}
.x4_c02467{left:181.650000px;}
.x5_c02467{left:244.650000px;}
.x2_c02467{left:820.950000px;}
@media print{
.v0_c02467{vertical-align:0.000000pt;}
.ls0_c02467{letter-spacing:0.000000pt;}
.ws0_c02467{word-spacing:0.000000pt;}
._9_c02467{margin-left:-1.978703pt;}
._5_c02467{margin-left:-1.024000pt;}
._2_c02467{width:1.088000pt;}
._6_c02467{width:2.799787pt;}
._0_c02467{width:4.288000pt;}
._1_c02467{width:5.504000pt;}
._8_c02467{width:6.738481pt;}
._7_c02467{width:7.713044pt;}
._b_c02467{width:9.246956pt;}
._f_c02467{width:10.542771pt;}
._e_c02467{width:12.152614pt;}
._a_c02467{width:14.592000pt;}
._c_c02467{width:22.272000pt;}
._3_c02467{width:23.296000pt;}
._4_c02467{width:24.768000pt;}
._d_c02467{width:25.753541pt;}
.fs0_c02467{font-size:58.880000pt;}
.fs1_c02467{font-size:64.000000pt;}
.y0_c02467{bottom:0.000000pt;}
.y3_c02467{bottom:4.160000pt;}
.y2_c02467{bottom:37.152000pt;}
.y1_c02467{bottom:67.072000pt;}
.y2b_c02467{bottom:99.552000pt;}
.y2a_c02467{bottom:116.352000pt;}
.y29_c02467{bottom:133.152000pt;}
.y28_c02467{bottom:150.106667pt;}
.y27_c02467{bottom:166.906667pt;}
.y26_c02467{bottom:193.306667pt;}
.y25_c02467{bottom:220.826667pt;}
.y24_c02467{bottom:248.546667pt;}
.y23_c02467{bottom:276.066667pt;}
.y22_c02467{bottom:303.746667pt;}
.y21_c02467{bottom:330.306667pt;}
.y20_c02467{bottom:347.106667pt;}
.y1f_c02467{bottom:364.066667pt;}
.y1e_c02467{bottom:380.866667pt;}
.y1d_c02467{bottom:397.666667pt;}
.y1c_c02467{bottom:414.626667pt;}
.y1b_c02467{bottom:431.426667pt;}
.y1a_c02467{bottom:457.826667pt;}
.y19_c02467{bottom:485.373333pt;}
.y18_c02467{bottom:513.053333pt;}
.y17_c02467{bottom:540.573333pt;}
.y16_c02467{bottom:568.253333pt;}
.y15_c02467{bottom:595.773333pt;}
.y14_c02467{bottom:623.453333pt;}
.y13_c02467{bottom:641.533333pt;}
.y12_c02467{bottom:658.333333pt;}
.y11_c02467{bottom:675.293333pt;}
.y10_c02467{bottom:692.093333pt;}
.yf_c02467{bottom:709.093333pt;}
.ye_c02467{bottom:725.893333pt;}
.yd_c02467{bottom:742.853333pt;}
.yc_c02467{bottom:759.653333pt;}
.yb_c02467{bottom:776.453333pt;}
.ya_c02467{bottom:793.413333pt;}
.y9_c02467{bottom:810.213333pt;}
.y8_c02467{bottom:836.613333pt;}
.y7_c02467{bottom:864.133333pt;}
.y6_c02467{bottom:891.813333pt;}
.y5_c02467{bottom:919.333333pt;}
.y4_c02467{bottom:947.040000pt;}
.h2_c02467{height:20.000000pt;}
.h1_c02467{height:43.441250pt;}
.h4_c02467{height:57.787500pt;}
.h3_c02467{height:62.812500pt;}
.h0_c02467{height:1056.000000pt;}
.w1_c02467{width:59.232000pt;}
.w0_c02467{width:816.000000pt;}
.x0_c02467{left:0.000000pt;}
.x3_c02467{left:14.720000pt;}
.x1_c02467{left:113.472000pt;}
.x4_c02467{left:161.466667pt;}
.x5_c02467{left:217.466667pt;}
.x2_c02467{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02468 {
    display:none;
  }
  .loading-indicator_c02468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02468" -> "#page-container .classname_c02468")
 */
.pf_c02468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02468 {overflow:visible;}
  }
}
.c_c02468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02468:after { /* webkit #35443 */
  content: '';
}
.t_c02468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02468 { /* info for Javascript */
  display:none;
}
.l_c02468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02468;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02468{font-family:ff1_c02468;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02468;src:url('chunks/assets/font_63a2012b8f141ff08ee16023.woff2')format("woff");}.ff2_c02468{font-family:ff2_c02468;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:ff3_c02468;src:url('chunks/assets/font_70d2b69275668a2555242950.woff2')format("woff");}.ff3_c02468{font-family:ff3_c02468;line-height:1.112305;font-style:normal;font-weight: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_c02468;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02468{font-family:ff4_c02468;line-height:1.311035;font-style:normal;font-weight: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_c02468;src:url('chunks/assets/font_b78e964d1d9fe64469a76aec.woff2')format("woff");}.ff5_c02468{font-family:ff5_c02468;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02468{vertical-align:0.000000px;}
.ls1_c02468{letter-spacing:0.000000px;}
.ls2_c02468{letter-spacing:0.305400px;}
.ls0_c02468{letter-spacing:12.960000px;}
.sc__c02468{text-shadow:none;}
.sc0_c02468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02468{-webkit-text-stroke:0px transparent;}
.sc0_c02468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02468{word-spacing:-18.000000px;}
.ws0_c02468{word-spacing:-16.865400px;}
.ws2_c02468{word-spacing:0.000000px;}
._0_c02468{margin-left:-1.457346px;}
._2_c02468{width:1.062745px;}
._1_c02468{width:2.782212px;}
._5_c02468{width:4.485981px;}
._3_c02468{width:5.630466px;}
._d_c02468{width:6.674019px;}
._c_c02468{width:8.545225px;}
._b_c02468{width:9.670775px;}
._12_c02468{width:10.999483px;}
._a_c02468{width:12.054488px;}
._9_c02468{width:13.182025px;}
._11_c02468{width:14.241600px;}
._6_c02468{width:16.649346px;}
._e_c02468{width:20.160000px;}
._f_c02468{width:21.528000px;}
._10_c02468{width:22.968000px;}
._4_c02468{width:32.324988px;}
._8_c02468{width:37.800000px;}
._7_c02468{width:39.041346px;}
.fc1_c02468{color:rgb(192,80,77);}
.fc0_c02468{color:rgb(0,0,0);}
.fs0_c02468{font-size:66.240000px;}
.fs1_c02468{font-size:72.000000px;}
.y0_c02468{bottom:0.000000px;}
.y3_c02468{bottom:4.680000px;}
.y2_c02468{bottom:41.796000px;}
.y1_c02468{bottom:75.456000px;}
.y2d_c02468{bottom:119.736000px;}
.y2c_c02468{bottom:138.636000px;}
.y2b_c02468{bottom:157.710000px;}
.y2a_c02468{bottom:176.610000px;}
.y29_c02468{bottom:195.510000px;}
.y28_c02468{bottom:225.210000px;}
.y27_c02468{bottom:256.170000px;}
.y26_c02468{bottom:287.355000px;}
.y25_c02468{bottom:318.315000px;}
.y24_c02468{bottom:349.455000px;}
.y23_c02468{bottom:380.415000px;}
.y22_c02468{bottom:411.555000px;}
.y21_c02468{bottom:431.895000px;}
.y20_c02468{bottom:450.975000px;}
.y1f_c02468{bottom:469.875000px;}
.y1e_c02468{bottom:488.775000px;}
.y1d_c02468{bottom:507.855000px;}
.y1c_c02468{bottom:526.755000px;}
.y1b_c02468{bottom:545.865000px;}
.y1a_c02468{bottom:564.765000px;}
.y19_c02468{bottom:583.665000px;}
.y18_c02468{bottom:613.365000px;}
.y17_c02468{bottom:644.325000px;}
.y16_c02468{bottom:675.465000px;}
.y15_c02468{bottom:706.425000px;}
.y14_c02468{bottom:737.565000px;}
.y13_c02468{bottom:768.525000px;}
.y12_c02468{bottom:799.710000px;}
.y11_c02468{bottom:820.050000px;}
.y10_c02468{bottom:839.130000px;}
.yf_c02468{bottom:858.030000px;}
.ye_c02468{bottom:877.110000px;}
.yd_c02468{bottom:896.010000px;}
.yc_c02468{bottom:914.910000px;}
.yb_c02468{bottom:933.990000px;}
.ya_c02468{bottom:952.890000px;}
.y9_c02468{bottom:971.970000px;}
.y8_c02468{bottom:990.870000px;}
.y7_c02468{bottom:1009.770000px;}
.y6_c02468{bottom:1028.850000px;}
.y5_c02468{bottom:1047.750000px;}
.y4_c02468{bottom:1066.860000px;}
.h2_c02468{height:22.500000px;}
.h1_c02468{height:48.871406px;}
.h5_c02468{height:59.383125px;}
.h3_c02468{height:65.010937px;}
.h6_c02468{height:66.757500px;}
.h4_c02468{height:70.664062px;}
.h0_c02468{height:1188.000000px;}
.w1_c02468{width:66.636000px;}
.w0_c02468{width:918.000000px;}
.x0_c02468{left:0.000000px;}
.x3_c02468{left:16.560000px;}
.x1_c02468{left:127.656000px;}
.x5_c02468{left:180.750000px;}
.x4_c02468{left:244.650000px;}
.x2_c02468{left:820.950000px;}
@media print{
.v0_c02468{vertical-align:0.000000pt;}
.ls1_c02468{letter-spacing:0.000000pt;}
.ls2_c02468{letter-spacing:0.271467pt;}
.ls0_c02468{letter-spacing:11.520000pt;}
.ws1_c02468{word-spacing:-16.000000pt;}
.ws0_c02468{word-spacing:-14.991467pt;}
.ws2_c02468{word-spacing:0.000000pt;}
._0_c02468{margin-left:-1.295419pt;}
._2_c02468{width:0.944662pt;}
._1_c02468{width:2.473078pt;}
._5_c02468{width:3.987539pt;}
._3_c02468{width:5.004859pt;}
._d_c02468{width:5.932461pt;}
._c_c02468{width:7.595756pt;}
._b_c02468{width:8.596244pt;}
._12_c02468{width:9.777318pt;}
._a_c02468{width:10.715100pt;}
._9_c02468{width:11.717356pt;}
._11_c02468{width:12.659200pt;}
._6_c02468{width:14.799419pt;}
._e_c02468{width:17.920000pt;}
._f_c02468{width:19.136000pt;}
._10_c02468{width:20.416000pt;}
._4_c02468{width:28.733322pt;}
._8_c02468{width:33.600000pt;}
._7_c02468{width:34.703419pt;}
.fs0_c02468{font-size:58.880000pt;}
.fs1_c02468{font-size:64.000000pt;}
.y0_c02468{bottom:0.000000pt;}
.y3_c02468{bottom:4.160000pt;}
.y2_c02468{bottom:37.152000pt;}
.y1_c02468{bottom:67.072000pt;}
.y2d_c02468{bottom:106.432000pt;}
.y2c_c02468{bottom:123.232000pt;}
.y2b_c02468{bottom:140.186667pt;}
.y2a_c02468{bottom:156.986667pt;}
.y29_c02468{bottom:173.786667pt;}
.y28_c02468{bottom:200.186667pt;}
.y27_c02468{bottom:227.706667pt;}
.y26_c02468{bottom:255.426667pt;}
.y25_c02468{bottom:282.946667pt;}
.y24_c02468{bottom:310.626667pt;}
.y23_c02468{bottom:338.146667pt;}
.y22_c02468{bottom:365.826667pt;}
.y21_c02468{bottom:383.906667pt;}
.y20_c02468{bottom:400.866667pt;}
.y1f_c02468{bottom:417.666667pt;}
.y1e_c02468{bottom:434.466667pt;}
.y1d_c02468{bottom:451.426667pt;}
.y1c_c02468{bottom:468.226667pt;}
.y1b_c02468{bottom:485.213333pt;}
.y1a_c02468{bottom:502.013333pt;}
.y19_c02468{bottom:518.813333pt;}
.y18_c02468{bottom:545.213333pt;}
.y17_c02468{bottom:572.733333pt;}
.y16_c02468{bottom:600.413333pt;}
.y15_c02468{bottom:627.933333pt;}
.y14_c02468{bottom:655.613333pt;}
.y13_c02468{bottom:683.133333pt;}
.y12_c02468{bottom:710.853333pt;}
.y11_c02468{bottom:728.933333pt;}
.y10_c02468{bottom:745.893333pt;}
.yf_c02468{bottom:762.693333pt;}
.ye_c02468{bottom:779.653333pt;}
.yd_c02468{bottom:796.453333pt;}
.yc_c02468{bottom:813.253333pt;}
.yb_c02468{bottom:830.213333pt;}
.ya_c02468{bottom:847.013333pt;}
.y9_c02468{bottom:863.973333pt;}
.y8_c02468{bottom:880.773333pt;}
.y7_c02468{bottom:897.573333pt;}
.y6_c02468{bottom:914.533333pt;}
.y5_c02468{bottom:931.333333pt;}
.y4_c02468{bottom:948.320000pt;}
.h2_c02468{height:20.000000pt;}
.h1_c02468{height:43.441250pt;}
.h5_c02468{height:52.785000pt;}
.h3_c02468{height:57.787500pt;}
.h6_c02468{height:59.340000pt;}
.h4_c02468{height:62.812500pt;}
.h0_c02468{height:1056.000000pt;}
.w1_c02468{width:59.232000pt;}
.w0_c02468{width:816.000000pt;}
.x0_c02468{left:0.000000pt;}
.x3_c02468{left:14.720000pt;}
.x1_c02468{left:113.472000pt;}
.x5_c02468{left:160.666667pt;}
.x4_c02468{left:217.466667pt;}
.x2_c02468{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02469 {
    display:none;
  }
  .loading-indicator_c02469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02469" -> "#page-container .classname_c02469")
 */
.pf_c02469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02469 {overflow:visible;}
  }
}
.c_c02469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02469:after { /* webkit #35443 */
  content: '';
}
.t_c02469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02469 { /* info for Javascript */
  display:none;
}
.l_c02469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02469;src:url('chunks/assets/font_430ce836ab0229d61a7178b4.woff2')format("woff");}.ff1_c02469{font-family:ff1_c02469;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02469;src:url('chunks/assets/font_4d4bc950860bb969c5dc8048.woff2')format("woff");}.ff2_c02469{font-family:ff2_c02469;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:ff3_c02469;src:url('chunks/assets/font_901efdb99dcdfaf46d594774.woff2')format("woff");}.ff3_c02469{font-family:ff3_c02469;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02469{vertical-align:0.000000px;}
.ls0_c02469{letter-spacing:0.000000px;}
.sc__c02469{text-shadow:none;}
.sc0_c02469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02469{-webkit-text-stroke:0px transparent;}
.sc0_c02469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02469{word-spacing:0.000000px;}
._1_c02469{margin-left:-1.191591px;}
._2_c02469{width:1.192121px;}
._10_c02469{width:2.282365px;}
._5_c02469{width:3.311404px;}
._4_c02469{width:4.636204px;}
._7_c02469{width:5.697700px;}
._f_c02469{width:7.352971px;}
._0_c02469{width:9.008441px;}
._3_c02469{width:10.200563px;}
._6_c02469{width:11.857159px;}
._9_c02469{width:12.888000px;}
._a_c02469{width:14.068403px;}
._e_c02469{width:15.649226px;}
._d_c02469{width:16.671591px;}
._8_c02469{width:17.950908px;}
._12_c02469{width:19.224000px;}
._11_c02469{width:20.520000px;}
._b_c02469{width:21.960000px;}
._c_c02469{width:23.503879px;}
._13_c02469{width:25.280243px;}
.fc1_c02469{color:rgb(192,80,77);}
.fc0_c02469{color:rgb(0,0,0);}
.fs0_c02469{font-size:66.240000px;}
.fs1_c02469{font-size:72.000000px;}
.y0_c02469{bottom:0.000000px;}
.y3_c02469{bottom:4.680000px;}
.y2_c02469{bottom:41.796000px;}
.y1_c02469{bottom:75.456000px;}
.y2d_c02469{bottom:122.256000px;}
.y2c_c02469{bottom:141.336000px;}
.y2b_c02469{bottom:160.230000px;}
.y2a_c02469{bottom:179.130000px;}
.y29_c02469{bottom:198.210000px;}
.y28_c02469{bottom:227.730000px;}
.y27_c02469{bottom:258.870000px;}
.y26_c02469{bottom:289.875000px;}
.y25_c02469{bottom:321.015000px;}
.y24_c02469{bottom:351.975000px;}
.y23_c02469{bottom:383.115000px;}
.y22_c02469{bottom:412.995000px;}
.y21_c02469{bottom:431.895000px;}
.y20_c02469{bottom:450.975000px;}
.y1f_c02469{bottom:469.875000px;}
.y1e_c02469{bottom:488.775000px;}
.y1d_c02469{bottom:507.855000px;}
.y1c_c02469{bottom:526.755000px;}
.y1b_c02469{bottom:545.865000px;}
.y1a_c02469{bottom:564.765000px;}
.y19_c02469{bottom:583.665000px;}
.y18_c02469{bottom:613.365000px;}
.y17_c02469{bottom:644.325000px;}
.y16_c02469{bottom:675.465000px;}
.y15_c02469{bottom:706.425000px;}
.y14_c02469{bottom:737.565000px;}
.y13_c02469{bottom:768.525000px;}
.y12_c02469{bottom:799.710000px;}
.y11_c02469{bottom:820.050000px;}
.y10_c02469{bottom:839.130000px;}
.yf_c02469{bottom:858.030000px;}
.ye_c02469{bottom:877.110000px;}
.yd_c02469{bottom:896.010000px;}
.yc_c02469{bottom:914.910000px;}
.yb_c02469{bottom:933.990000px;}
.ya_c02469{bottom:952.890000px;}
.y9_c02469{bottom:971.970000px;}
.y8_c02469{bottom:990.870000px;}
.y7_c02469{bottom:1009.770000px;}
.y6_c02469{bottom:1028.850000px;}
.y5_c02469{bottom:1047.750000px;}
.y4_c02469{bottom:1066.860000px;}
.h2_c02469{height:22.500000px;}
.h1_c02469{height:48.871406px;}
.h4_c02469{height:59.383125px;}
.h3_c02469{height:65.010937px;}
.h5_c02469{height:70.664062px;}
.h0_c02469{height:1188.000000px;}
.w1_c02469{width:66.636000px;}
.w0_c02469{width:918.000000px;}
.x0_c02469{left:0.000000px;}
.x3_c02469{left:16.560000px;}
.x1_c02469{left:127.656000px;}
.x5_c02469{left:180.750000px;}
.x4_c02469{left:244.650000px;}
.x2_c02469{left:820.950000px;}
@media print{
.v0_c02469{vertical-align:0.000000pt;}
.ls0_c02469{letter-spacing:0.000000pt;}
.ws0_c02469{word-spacing:0.000000pt;}
._1_c02469{margin-left:-1.059192pt;}
._2_c02469{width:1.059663pt;}
._10_c02469{width:2.028769pt;}
._5_c02469{width:2.943470pt;}
._4_c02469{width:4.121070pt;}
._7_c02469{width:5.064622pt;}
._f_c02469{width:6.535974pt;}
._0_c02469{width:8.007503pt;}
._3_c02469{width:9.067167pt;}
._6_c02469{width:10.539697pt;}
._9_c02469{width:11.456000pt;}
._a_c02469{width:12.505247pt;}
._e_c02469{width:13.910423pt;}
._d_c02469{width:14.819192pt;}
._8_c02469{width:15.956362pt;}
._12_c02469{width:17.088000pt;}
._11_c02469{width:18.240000pt;}
._b_c02469{width:19.520000pt;}
._c_c02469{width:20.892337pt;}
._13_c02469{width:22.471327pt;}
.fs0_c02469{font-size:58.880000pt;}
.fs1_c02469{font-size:64.000000pt;}
.y0_c02469{bottom:0.000000pt;}
.y3_c02469{bottom:4.160000pt;}
.y2_c02469{bottom:37.152000pt;}
.y1_c02469{bottom:67.072000pt;}
.y2d_c02469{bottom:108.672000pt;}
.y2c_c02469{bottom:125.632000pt;}
.y2b_c02469{bottom:142.426667pt;}
.y2a_c02469{bottom:159.226667pt;}
.y29_c02469{bottom:176.186667pt;}
.y28_c02469{bottom:202.426667pt;}
.y27_c02469{bottom:230.106667pt;}
.y26_c02469{bottom:257.666667pt;}
.y25_c02469{bottom:285.346667pt;}
.y24_c02469{bottom:312.866667pt;}
.y23_c02469{bottom:340.546667pt;}
.y22_c02469{bottom:367.106667pt;}
.y21_c02469{bottom:383.906667pt;}
.y20_c02469{bottom:400.866667pt;}
.y1f_c02469{bottom:417.666667pt;}
.y1e_c02469{bottom:434.466667pt;}
.y1d_c02469{bottom:451.426667pt;}
.y1c_c02469{bottom:468.226667pt;}
.y1b_c02469{bottom:485.213333pt;}
.y1a_c02469{bottom:502.013333pt;}
.y19_c02469{bottom:518.813333pt;}
.y18_c02469{bottom:545.213333pt;}
.y17_c02469{bottom:572.733333pt;}
.y16_c02469{bottom:600.413333pt;}
.y15_c02469{bottom:627.933333pt;}
.y14_c02469{bottom:655.613333pt;}
.y13_c02469{bottom:683.133333pt;}
.y12_c02469{bottom:710.853333pt;}
.y11_c02469{bottom:728.933333pt;}
.y10_c02469{bottom:745.893333pt;}
.yf_c02469{bottom:762.693333pt;}
.ye_c02469{bottom:779.653333pt;}
.yd_c02469{bottom:796.453333pt;}
.yc_c02469{bottom:813.253333pt;}
.yb_c02469{bottom:830.213333pt;}
.ya_c02469{bottom:847.013333pt;}
.y9_c02469{bottom:863.973333pt;}
.y8_c02469{bottom:880.773333pt;}
.y7_c02469{bottom:897.573333pt;}
.y6_c02469{bottom:914.533333pt;}
.y5_c02469{bottom:931.333333pt;}
.y4_c02469{bottom:948.320000pt;}
.h2_c02469{height:20.000000pt;}
.h1_c02469{height:43.441250pt;}
.h4_c02469{height:52.785000pt;}
.h3_c02469{height:57.787500pt;}
.h5_c02469{height:62.812500pt;}
.h0_c02469{height:1056.000000pt;}
.w1_c02469{width:59.232000pt;}
.w0_c02469{width:816.000000pt;}
.x0_c02469{left:0.000000pt;}
.x3_c02469{left:14.720000pt;}
.x1_c02469{left:113.472000pt;}
.x5_c02469{left:160.666667pt;}
.x4_c02469{left:217.466667pt;}
.x2_c02469{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02470 {
    display:none;
  }
  .loading-indicator_c02470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02470" -> "#page-container .classname_c02470")
 */
.pf_c02470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02470 {overflow:visible;}
  }
}
.c_c02470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02470:after { /* webkit #35443 */
  content: '';
}
.t_c02470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02470 { /* info for Javascript */
  display:none;
}
.l_c02470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02470;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02470{font-family:ff1_c02470;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02470;src:url('chunks/assets/font_863f523b8d67982e0a4dcc9b.woff2')format("woff");}.ff2_c02470{font-family:ff2_c02470;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:ff3_c02470;src:url('chunks/assets/font_04fbfde8edbc6f9ddd3feac5.woff2')format("woff");}.ff3_c02470{font-family:ff3_c02470;line-height:1.112305;font-style:normal;font-weight: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_c02470;src:url('chunks/assets/font_fda7e11ee7ffeccfa07364f2.woff2')format("woff");}.ff4_c02470{font-family:ff4_c02470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02470{vertical-align:0.000000px;}
.ls0_c02470{letter-spacing:0.000000px;}
.ls1_c02470{letter-spacing:0.072000px;}
.ls2_c02470{letter-spacing:0.792000px;}
.sc__c02470{text-shadow:none;}
.sc0_c02470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02470{-webkit-text-stroke:0px transparent;}
.sc0_c02470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02470{word-spacing:-16.560000px;}
.ws1_c02470{word-spacing:0.000000px;}
._1_c02470{margin-left:-1.192717px;}
._4_c02470{width:1.193976px;}
._7_c02470{width:2.520000px;}
._6_c02470{width:3.672000px;}
._0_c02470{width:5.100612px;}
._2_c02470{width:6.358709px;}
._3_c02470{width:8.280795px;}
._b_c02470{width:9.472717px;}
._a_c02470{width:11.657975px;}
._e_c02470{width:13.116050px;}
._8_c02470{width:15.408000px;}
._9_c02470{width:16.416000px;}
._5_c02470{width:18.613175px;}
._c_c02470{width:19.872464px;}
._d_c02470{width:20.931641px;}
._f_c02470{width:22.388988px;}
._11_c02470{width:26.342565px;}
._10_c02470{width:27.400717px;}
.fc1_c02470{color:rgb(192,80,77);}
.fc0_c02470{color:rgb(0,0,0);}
.fs0_c02470{font-size:66.240000px;}
.fs1_c02470{font-size:72.000000px;}
.y0_c02470{bottom:0.000000px;}
.y3_c02470{bottom:4.680000px;}
.y2_c02470{bottom:41.796000px;}
.y1_c02470{bottom:75.456000px;}
.y2d_c02470{bottom:130.356000px;}
.y2c_c02470{bottom:161.310000px;}
.y2b_c02470{bottom:192.450000px;}
.y2a_c02470{bottom:223.410000px;}
.y29_c02470{bottom:254.550000px;}
.y28_c02470{bottom:285.555000px;}
.y27_c02470{bottom:316.695000px;}
.y26_c02470{bottom:337.035000px;}
.y25_c02470{bottom:356.115000px;}
.y24_c02470{bottom:375.015000px;}
.y23_c02470{bottom:393.915000px;}
.y22_c02470{bottom:412.995000px;}
.y21_c02470{bottom:431.895000px;}
.y20_c02470{bottom:450.975000px;}
.y1f_c02470{bottom:469.875000px;}
.y1e_c02470{bottom:488.775000px;}
.y1d_c02470{bottom:507.855000px;}
.y1c_c02470{bottom:526.755000px;}
.y1b_c02470{bottom:545.865000px;}
.y1a_c02470{bottom:564.765000px;}
.y19_c02470{bottom:583.665000px;}
.y18_c02470{bottom:602.745000px;}
.y17_c02470{bottom:621.645000px;}
.y16_c02470{bottom:640.725000px;}
.y15_c02470{bottom:659.625000px;}
.y14_c02470{bottom:678.705000px;}
.y13_c02470{bottom:697.605000px;}
.y12_c02470{bottom:716.505000px;}
.y11_c02470{bottom:735.585000px;}
.y10_c02470{bottom:754.485000px;}
.yf_c02470{bottom:784.185000px;}
.ye_c02470{bottom:815.190000px;}
.yd_c02470{bottom:846.330000px;}
.yc_c02470{bottom:877.290000px;}
.yb_c02470{bottom:908.430000px;}
.ya_c02470{bottom:939.390000px;}
.y9_c02470{bottom:970.530000px;}
.y8_c02470{bottom:990.870000px;}
.y7_c02470{bottom:1009.770000px;}
.y6_c02470{bottom:1028.850000px;}
.y5_c02470{bottom:1047.750000px;}
.y4_c02470{bottom:1066.860000px;}
.h2_c02470{height:22.500000px;}
.h1_c02470{height:48.871406px;}
.h5_c02470{height:59.383125px;}
.h3_c02470{height:65.010937px;}
.h4_c02470{height:70.664062px;}
.h0_c02470{height:1188.000000px;}
.w1_c02470{width:66.636000px;}
.w0_c02470{width:918.000000px;}
.x0_c02470{left:0.000000px;}
.x3_c02470{left:16.560000px;}
.x1_c02470{left:127.656000px;}
.x5_c02470{left:180.750000px;}
.x4_c02470{left:244.650000px;}
.x2_c02470{left:820.950000px;}
@media print{
.v0_c02470{vertical-align:0.000000pt;}
.ls0_c02470{letter-spacing:0.000000pt;}
.ls1_c02470{letter-spacing:0.064000pt;}
.ls2_c02470{letter-spacing:0.704000pt;}
.ws0_c02470{word-spacing:-14.720000pt;}
.ws1_c02470{word-spacing:0.000000pt;}
._1_c02470{margin-left:-1.060193pt;}
._4_c02470{width:1.061312pt;}
._7_c02470{width:2.240000pt;}
._6_c02470{width:3.264000pt;}
._0_c02470{width:4.533878pt;}
._2_c02470{width:5.652186pt;}
._3_c02470{width:7.360707pt;}
._b_c02470{width:8.420193pt;}
._a_c02470{width:10.362644pt;}
._e_c02470{width:11.658711pt;}
._8_c02470{width:13.696000pt;}
._9_c02470{width:14.592000pt;}
._5_c02470{width:16.545044pt;}
._c_c02470{width:17.664412pt;}
._d_c02470{width:18.605903pt;}
._f_c02470{width:19.901322pt;}
._11_c02470{width:23.415613pt;}
._10_c02470{width:24.356193pt;}
.fs0_c02470{font-size:58.880000pt;}
.fs1_c02470{font-size:64.000000pt;}
.y0_c02470{bottom:0.000000pt;}
.y3_c02470{bottom:4.160000pt;}
.y2_c02470{bottom:37.152000pt;}
.y1_c02470{bottom:67.072000pt;}
.y2d_c02470{bottom:115.872000pt;}
.y2c_c02470{bottom:143.386667pt;}
.y2b_c02470{bottom:171.066667pt;}
.y2a_c02470{bottom:198.586667pt;}
.y29_c02470{bottom:226.266667pt;}
.y28_c02470{bottom:253.826667pt;}
.y27_c02470{bottom:281.506667pt;}
.y26_c02470{bottom:299.586667pt;}
.y25_c02470{bottom:316.546667pt;}
.y24_c02470{bottom:333.346667pt;}
.y23_c02470{bottom:350.146667pt;}
.y22_c02470{bottom:367.106667pt;}
.y21_c02470{bottom:383.906667pt;}
.y20_c02470{bottom:400.866667pt;}
.y1f_c02470{bottom:417.666667pt;}
.y1e_c02470{bottom:434.466667pt;}
.y1d_c02470{bottom:451.426667pt;}
.y1c_c02470{bottom:468.226667pt;}
.y1b_c02470{bottom:485.213333pt;}
.y1a_c02470{bottom:502.013333pt;}
.y19_c02470{bottom:518.813333pt;}
.y18_c02470{bottom:535.773333pt;}
.y17_c02470{bottom:552.573333pt;}
.y16_c02470{bottom:569.533333pt;}
.y15_c02470{bottom:586.333333pt;}
.y14_c02470{bottom:603.293333pt;}
.y13_c02470{bottom:620.093333pt;}
.y12_c02470{bottom:636.893333pt;}
.y11_c02470{bottom:653.853333pt;}
.y10_c02470{bottom:670.653333pt;}
.yf_c02470{bottom:697.053333pt;}
.ye_c02470{bottom:724.613333pt;}
.yd_c02470{bottom:752.293333pt;}
.yc_c02470{bottom:779.813333pt;}
.yb_c02470{bottom:807.493333pt;}
.ya_c02470{bottom:835.013333pt;}
.y9_c02470{bottom:862.693333pt;}
.y8_c02470{bottom:880.773333pt;}
.y7_c02470{bottom:897.573333pt;}
.y6_c02470{bottom:914.533333pt;}
.y5_c02470{bottom:931.333333pt;}
.y4_c02470{bottom:948.320000pt;}
.h2_c02470{height:20.000000pt;}
.h1_c02470{height:43.441250pt;}
.h5_c02470{height:52.785000pt;}
.h3_c02470{height:57.787500pt;}
.h4_c02470{height:62.812500pt;}
.h0_c02470{height:1056.000000pt;}
.w1_c02470{width:59.232000pt;}
.w0_c02470{width:816.000000pt;}
.x0_c02470{left:0.000000pt;}
.x3_c02470{left:14.720000pt;}
.x1_c02470{left:113.472000pt;}
.x5_c02470{left:160.666667pt;}
.x4_c02470{left:217.466667pt;}
.x2_c02470{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02471 {
    display:none;
  }
  .loading-indicator_c02471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02471 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02471 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02471" -> "#page-container .classname_c02471")
 */
.pf_c02471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02471 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02471 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02471 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02471 {overflow:visible;}
  }
}
.c_c02471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02471 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02471:after { /* webkit #35443 */
  content: '';
}
.t_c02471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02471 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02471 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02471 { /* info for Javascript */
  display:none;
}
.l_c02471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02471:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02471 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02471.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02471;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02471{font-family:ff1_c02471;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02471;src:url('chunks/assets/font_d4cfdee0a0f09c483f26fd25.woff2')format("woff");}.ff2_c02471{font-family:ff2_c02471;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:ff3_c02471;src:url('chunks/assets/font_ff0cc0de37423ab4294bb112.woff2')format("woff");}.ff3_c02471{font-family:ff3_c02471;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02471{vertical-align:0.000000px;}
.ls0_c02471{letter-spacing:0.000000px;}
.sc__c02471{text-shadow:none;}
.sc0_c02471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02471{-webkit-text-stroke:0px transparent;}
.sc0_c02471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02471{word-spacing:0.000000px;}
._1_c02471{margin-left:-1.324204px;}
._7_c02471{width:1.111397px;}
._6_c02471{width:2.119812px;}
._a_c02471{width:3.600000px;}
._10_c02471{width:4.617469px;}
._2_c02471{width:5.628876px;}
._0_c02471{width:6.822588px;}
._11_c02471{width:8.545291px;}
._12_c02471{width:10.368000px;}
._d_c02471{width:12.725064px;}
._8_c02471{width:14.472000px;}
._9_c02471{width:15.624000px;}
._3_c02471{width:19.606841px;}
._b_c02471{width:22.235620px;}
._5_c02471{width:23.250637px;}
._4_c02471{width:24.375591px;}
._e_c02471{width:31.464000px;}
._f_c02471{width:32.656254px;}
._c_c02471{width:33.715829px;}
.fc1_c02471{color:rgb(192,80,77);}
.fc0_c02471{color:rgb(0,0,0);}
.fs0_c02471{font-size:66.240000px;}
.fs1_c02471{font-size:72.000000px;}
.y0_c02471{bottom:0.000000px;}
.y3_c02471{bottom:4.680000px;}
.y2_c02471{bottom:41.796000px;}
.y1_c02471{bottom:75.456000px;}
.y2b_c02471{bottom:144.216000px;}
.y2a_c02471{bottom:175.170000px;}
.y29_c02471{bottom:206.130000px;}
.y28_c02471{bottom:237.270000px;}
.y27_c02471{bottom:268.230000px;}
.y26_c02471{bottom:299.415000px;}
.y25_c02471{bottom:330.375000px;}
.y24_c02471{bottom:350.895000px;}
.y23_c02471{bottom:369.795000px;}
.y22_c02471{bottom:388.875000px;}
.y21_c02471{bottom:407.775000px;}
.y20_c02471{bottom:426.675000px;}
.y1f_c02471{bottom:445.755000px;}
.y1e_c02471{bottom:464.655000px;}
.y1d_c02471{bottom:483.735000px;}
.y1c_c02471{bottom:502.635000px;}
.y1b_c02471{bottom:521.715000px;}
.y1a_c02471{bottom:540.645000px;}
.y19_c02471{bottom:559.545000px;}
.y18_c02471{bottom:578.625000px;}
.y17_c02471{bottom:608.145000px;}
.y16_c02471{bottom:639.285000px;}
.y15_c02471{bottom:670.245000px;}
.y14_c02471{bottom:701.385000px;}
.y13_c02471{bottom:732.345000px;}
.y12_c02471{bottom:763.485000px;}
.y11_c02471{bottom:794.445000px;}
.y10_c02471{bottom:825.630000px;}
.yf_c02471{bottom:845.970000px;}
.ye_c02471{bottom:864.870000px;}
.yd_c02471{bottom:883.950000px;}
.yc_c02471{bottom:902.850000px;}
.yb_c02471{bottom:921.930000px;}
.ya_c02471{bottom:940.830000px;}
.y9_c02471{bottom:959.730000px;}
.y8_c02471{bottom:978.810000px;}
.y7_c02471{bottom:997.710000px;}
.y6_c02471{bottom:1016.790000px;}
.y5_c02471{bottom:1035.690000px;}
.y4_c02471{bottom:1065.420000px;}
.h2_c02471{height:22.500000px;}
.h1_c02471{height:48.871406px;}
.h5_c02471{height:64.546875px;}
.h4_c02471{height:65.010937px;}
.h3_c02471{height:70.664062px;}
.h0_c02471{height:1188.000000px;}
.w1_c02471{width:66.636000px;}
.w0_c02471{width:918.000000px;}
.x0_c02471{left:0.000000px;}
.x3_c02471{left:16.560000px;}
.x1_c02471{left:127.656000px;}
.x4_c02471{left:181.650000px;}
.x5_c02471{left:244.650000px;}
.x2_c02471{left:820.950000px;}
@media print{
.v0_c02471{vertical-align:0.000000pt;}
.ls0_c02471{letter-spacing:0.000000pt;}
.ws0_c02471{word-spacing:0.000000pt;}
._1_c02471{margin-left:-1.177070pt;}
._7_c02471{width:0.987908pt;}
._6_c02471{width:1.884278pt;}
._a_c02471{width:3.200000pt;}
._10_c02471{width:4.104417pt;}
._2_c02471{width:5.003446pt;}
._0_c02471{width:6.064522pt;}
._11_c02471{width:7.595814pt;}
._12_c02471{width:9.216000pt;}
._d_c02471{width:11.311168pt;}
._8_c02471{width:12.864000pt;}
._9_c02471{width:13.888000pt;}
._3_c02471{width:17.428303pt;}
._b_c02471{width:19.764995pt;}
._5_c02471{width:20.667233pt;}
._4_c02471{width:21.667192pt;}
._e_c02471{width:27.968000pt;}
._f_c02471{width:29.027781pt;}
._c_c02471{width:29.969626pt;}
.fs0_c02471{font-size:58.880000pt;}
.fs1_c02471{font-size:64.000000pt;}
.y0_c02471{bottom:0.000000pt;}
.y3_c02471{bottom:4.160000pt;}
.y2_c02471{bottom:37.152000pt;}
.y1_c02471{bottom:67.072000pt;}
.y2b_c02471{bottom:128.192000pt;}
.y2a_c02471{bottom:155.706667pt;}
.y29_c02471{bottom:183.226667pt;}
.y28_c02471{bottom:210.906667pt;}
.y27_c02471{bottom:238.426667pt;}
.y26_c02471{bottom:266.146667pt;}
.y25_c02471{bottom:293.666667pt;}
.y24_c02471{bottom:311.906667pt;}
.y23_c02471{bottom:328.706667pt;}
.y22_c02471{bottom:345.666667pt;}
.y21_c02471{bottom:362.466667pt;}
.y20_c02471{bottom:379.266667pt;}
.y1f_c02471{bottom:396.226667pt;}
.y1e_c02471{bottom:413.026667pt;}
.y1d_c02471{bottom:429.986667pt;}
.y1c_c02471{bottom:446.786667pt;}
.y1b_c02471{bottom:463.746667pt;}
.y1a_c02471{bottom:480.573333pt;}
.y19_c02471{bottom:497.373333pt;}
.y18_c02471{bottom:514.333333pt;}
.y17_c02471{bottom:540.573333pt;}
.y16_c02471{bottom:568.253333pt;}
.y15_c02471{bottom:595.773333pt;}
.y14_c02471{bottom:623.453333pt;}
.y13_c02471{bottom:650.973333pt;}
.y12_c02471{bottom:678.653333pt;}
.y11_c02471{bottom:706.173333pt;}
.y10_c02471{bottom:733.893333pt;}
.yf_c02471{bottom:751.973333pt;}
.ye_c02471{bottom:768.773333pt;}
.yd_c02471{bottom:785.733333pt;}
.yc_c02471{bottom:802.533333pt;}
.yb_c02471{bottom:819.493333pt;}
.ya_c02471{bottom:836.293333pt;}
.y9_c02471{bottom:853.093333pt;}
.y8_c02471{bottom:870.053333pt;}
.y7_c02471{bottom:886.853333pt;}
.y6_c02471{bottom:903.813333pt;}
.y5_c02471{bottom:920.613333pt;}
.y4_c02471{bottom:947.040000pt;}
.h2_c02471{height:20.000000pt;}
.h1_c02471{height:43.441250pt;}
.h5_c02471{height:57.375000pt;}
.h4_c02471{height:57.787500pt;}
.h3_c02471{height:62.812500pt;}
.h0_c02471{height:1056.000000pt;}
.w1_c02471{width:59.232000pt;}
.w0_c02471{width:816.000000pt;}
.x0_c02471{left:0.000000pt;}
.x3_c02471{left:14.720000pt;}
.x1_c02471{left:113.472000pt;}
.x4_c02471{left:161.466667pt;}
.x5_c02471{left:217.466667pt;}
.x2_c02471{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02472 {
    display:none;
  }
  .loading-indicator_c02472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02472 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02472 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02472" -> "#page-container .classname_c02472")
 */
.pf_c02472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02472 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02472 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02472 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02472 {overflow:visible;}
  }
}
.c_c02472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02472 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02472:after { /* webkit #35443 */
  content: '';
}
.t_c02472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02472 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02472 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02472 { /* info for Javascript */
  display:none;
}
.l_c02472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02472:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02472 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02472.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02472;src:url('chunks/assets/font_4b94b5bb97badc282be8e203.woff2')format("woff");}.ff1_c02472{font-family:ff1_c02472;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02472;src:url('chunks/assets/font_730c5a83685bb62803650cb5.woff2')format("woff");}.ff2_c02472{font-family:ff2_c02472;line-height:1.112305;font-style:normal;font-weight: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_c02472;src:url('chunks/assets/font_0613405c62e2e41ed31f353b.woff2')format("woff");}.ff3_c02472{font-family:ff3_c02472;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_c02472;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02472{font-family:ff4_c02472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02472{vertical-align:0.000000px;}
.ls1_c02472{letter-spacing:0.000000px;}
.ls0_c02472{letter-spacing:7.920000px;}
.sc__c02472{text-shadow:none;}
.sc0_c02472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02472{-webkit-text-stroke:0px transparent;}
.sc0_c02472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02472{word-spacing:0.000000px;}
._1_c02472{margin-left:-2.317804px;}
._0_c02472{margin-left:-1.126212px;}
._6_c02472{width:1.125153px;}
._3_c02472{width:2.387687px;}
._5_c02472{width:3.908359px;}
._12_c02472{width:5.022052px;}
._b_c02472{width:6.027575px;}
._14_c02472{width:7.292425px;}
._8_c02472{width:8.345975px;}
._7_c02472{width:9.406212px;}
._10_c02472{width:11.658108px;}
._f_c02472{width:13.048883px;}
._13_c02472{width:14.506825px;}
._11_c02472{width:17.619575px;}
._2_c02472{width:19.606775px;}
._4_c02472{width:20.932834px;}
._16_c02472{width:22.798212px;}
._15_c02472{width:23.832000px;}
._e_c02472{width:25.568905px;}
._c_c02472{width:31.331388px;}
._d_c02472{width:32.735344px;}
._9_c02472{width:36.432066px;}
._a_c02472{width:38.418670px;}
.fc1_c02472{color:rgb(192,80,77);}
.fc0_c02472{color:rgb(0,0,0);}
.fs0_c02472{font-size:66.240000px;}
.fs1_c02472{font-size:72.000000px;}
.y0_c02472{bottom:0.000000px;}
.y3_c02472{bottom:4.680000px;}
.y2_c02472{bottom:41.796000px;}
.y1_c02472{bottom:75.456000px;}
.y31_c02472{bottom:116.316000px;}
.y30_c02472{bottom:135.216000px;}
.y2f_c02472{bottom:154.110000px;}
.y2e_c02472{bottom:173.190000px;}
.y2d_c02472{bottom:202.710000px;}
.y2c_c02472{bottom:233.850000px;}
.y2b_c02472{bottom:264.810000px;}
.y2a_c02472{bottom:295.995000px;}
.y29_c02472{bottom:326.955000px;}
.y28_c02472{bottom:358.095000px;}
.y27_c02472{bottom:389.055000px;}
.y26_c02472{bottom:420.195000px;}
.y25_c02472{bottom:440.535000px;}
.y24_c02472{bottom:459.615000px;}
.y23_c02472{bottom:478.515000px;}
.y22_c02472{bottom:497.415000px;}
.y21_c02472{bottom:516.495000px;}
.y20_c02472{bottom:535.425000px;}
.y1f_c02472{bottom:554.505000px;}
.y1e_c02472{bottom:573.405000px;}
.y1d_c02472{bottom:592.305000px;}
.y1c_c02472{bottom:611.385000px;}
.y1b_c02472{bottom:630.285000px;}
.y1a_c02472{bottom:649.365000px;}
.y19_c02472{bottom:668.265000px;}
.y18_c02472{bottom:687.165000px;}
.y17_c02472{bottom:706.245000px;}
.y16_c02472{bottom:725.145000px;}
.y15_c02472{bottom:744.225000px;}
.y14_c02472{bottom:763.125000px;}
.y13_c02472{bottom:782.025000px;}
.y12_c02472{bottom:801.150000px;}
.y11_c02472{bottom:820.050000px;}
.y10_c02472{bottom:839.130000px;}
.yf_c02472{bottom:858.030000px;}
.ye_c02472{bottom:877.110000px;}
.yd_c02472{bottom:896.010000px;}
.yc_c02472{bottom:914.910000px;}
.yb_c02472{bottom:933.990000px;}
.ya_c02472{bottom:952.890000px;}
.y9_c02472{bottom:971.970000px;}
.y8_c02472{bottom:990.870000px;}
.y7_c02472{bottom:1009.770000px;}
.y6_c02472{bottom:1028.850000px;}
.y5_c02472{bottom:1047.750000px;}
.y4_c02472{bottom:1066.860000px;}
.h2_c02472{height:22.500000px;}
.h1_c02472{height:48.871406px;}
.h3_c02472{height:59.383125px;}
.h4_c02472{height:65.010937px;}
.h6_c02472{height:66.757500px;}
.h5_c02472{height:70.664062px;}
.h0_c02472{height:1188.000000px;}
.w1_c02472{width:66.636000px;}
.w0_c02472{width:918.000000px;}
.x0_c02472{left:0.000000px;}
.x3_c02472{left:16.560000px;}
.x1_c02472{left:127.656000px;}
.x5_c02472{left:180.750000px;}
.x4_c02472{left:244.650000px;}
.x2_c02472{left:820.950000px;}
@media print{
.v0_c02472{vertical-align:0.000000pt;}
.ls1_c02472{letter-spacing:0.000000pt;}
.ls0_c02472{letter-spacing:7.040000pt;}
.ws0_c02472{word-spacing:0.000000pt;}
._1_c02472{margin-left:-2.060270pt;}
._0_c02472{margin-left:-1.001078pt;}
._6_c02472{width:1.000136pt;}
._3_c02472{width:2.122388pt;}
._5_c02472{width:3.474097pt;}
._12_c02472{width:4.464046pt;}
._b_c02472{width:5.357844pt;}
._14_c02472{width:6.482156pt;}
._8_c02472{width:7.418644pt;}
._7_c02472{width:8.361078pt;}
._10_c02472{width:10.362762pt;}
._f_c02472{width:11.599007pt;}
._13_c02472{width:12.894956pt;}
._11_c02472{width:15.661844pt;}
._2_c02472{width:17.428244pt;}
._4_c02472{width:18.606963pt;}
._16_c02472{width:20.265078pt;}
._15_c02472{width:21.184000pt;}
._e_c02472{width:22.727916pt;}
._c_c02472{width:27.850122pt;}
._d_c02472{width:29.098084pt;}
._9_c02472{width:32.384059pt;}
._a_c02472{width:34.149929pt;}
.fs0_c02472{font-size:58.880000pt;}
.fs1_c02472{font-size:64.000000pt;}
.y0_c02472{bottom:0.000000pt;}
.y3_c02472{bottom:4.160000pt;}
.y2_c02472{bottom:37.152000pt;}
.y1_c02472{bottom:67.072000pt;}
.y31_c02472{bottom:103.392000pt;}
.y30_c02472{bottom:120.192000pt;}
.y2f_c02472{bottom:136.986667pt;}
.y2e_c02472{bottom:153.946667pt;}
.y2d_c02472{bottom:180.186667pt;}
.y2c_c02472{bottom:207.866667pt;}
.y2b_c02472{bottom:235.386667pt;}
.y2a_c02472{bottom:263.106667pt;}
.y29_c02472{bottom:290.626667pt;}
.y28_c02472{bottom:318.306667pt;}
.y27_c02472{bottom:345.826667pt;}
.y26_c02472{bottom:373.506667pt;}
.y25_c02472{bottom:391.586667pt;}
.y24_c02472{bottom:408.546667pt;}
.y23_c02472{bottom:425.346667pt;}
.y22_c02472{bottom:442.146667pt;}
.y21_c02472{bottom:459.106667pt;}
.y20_c02472{bottom:475.933333pt;}
.y1f_c02472{bottom:492.893333pt;}
.y1e_c02472{bottom:509.693333pt;}
.y1d_c02472{bottom:526.493333pt;}
.y1c_c02472{bottom:543.453333pt;}
.y1b_c02472{bottom:560.253333pt;}
.y1a_c02472{bottom:577.213333pt;}
.y19_c02472{bottom:594.013333pt;}
.y18_c02472{bottom:610.813333pt;}
.y17_c02472{bottom:627.773333pt;}
.y16_c02472{bottom:644.573333pt;}
.y15_c02472{bottom:661.533333pt;}
.y14_c02472{bottom:678.333333pt;}
.y13_c02472{bottom:695.133333pt;}
.y12_c02472{bottom:712.133333pt;}
.y11_c02472{bottom:728.933333pt;}
.y10_c02472{bottom:745.893333pt;}
.yf_c02472{bottom:762.693333pt;}
.ye_c02472{bottom:779.653333pt;}
.yd_c02472{bottom:796.453333pt;}
.yc_c02472{bottom:813.253333pt;}
.yb_c02472{bottom:830.213333pt;}
.ya_c02472{bottom:847.013333pt;}
.y9_c02472{bottom:863.973333pt;}
.y8_c02472{bottom:880.773333pt;}
.y7_c02472{bottom:897.573333pt;}
.y6_c02472{bottom:914.533333pt;}
.y5_c02472{bottom:931.333333pt;}
.y4_c02472{bottom:948.320000pt;}
.h2_c02472{height:20.000000pt;}
.h1_c02472{height:43.441250pt;}
.h3_c02472{height:52.785000pt;}
.h4_c02472{height:57.787500pt;}
.h6_c02472{height:59.340000pt;}
.h5_c02472{height:62.812500pt;}
.h0_c02472{height:1056.000000pt;}
.w1_c02472{width:59.232000pt;}
.w0_c02472{width:816.000000pt;}
.x0_c02472{left:0.000000pt;}
.x3_c02472{left:14.720000pt;}
.x1_c02472{left:113.472000pt;}
.x5_c02472{left:160.666667pt;}
.x4_c02472{left:217.466667pt;}
.x2_c02472{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02473 {
    display:none;
  }
  .loading-indicator_c02473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02473" -> "#page-container .classname_c02473")
 */
.pf_c02473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02473 {overflow:visible;}
  }
}
.c_c02473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02473:after { /* webkit #35443 */
  content: '';
}
.t_c02473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02473 { /* info for Javascript */
  display:none;
}
.l_c02473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02473;src:url('chunks/assets/font_9bde844e8d1da9775d0cb80b.woff2')format("woff");}.ff1_c02473{font-family:ff1_c02473;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02473;src:url('chunks/assets/font_311504fd3220a9b19e60f5e3.woff2')format("woff");}.ff2_c02473{font-family:ff2_c02473;line-height:1.112305;font-style:normal;font-weight: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_c02473;src:url('chunks/assets/font_4cdb75c03eac57b3f58c0e9d.woff2')format("woff");}.ff3_c02473{font-family:ff3_c02473;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_c02473;src:url('chunks/assets/font_c1a0bcf0e46dbc89bd2336d7.woff2')format("woff");}.ff4_c02473{font-family:ff4_c02473;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02473{vertical-align:0.000000px;}
.ls1_c02473{letter-spacing:-0.612000px;}
.ls0_c02473{letter-spacing:0.000000px;}
.sc__c02473{text-shadow:none;}
.sc0_c02473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02473{-webkit-text-stroke:0px transparent;}
.sc0_c02473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02473{word-spacing:0.000000px;}
._c_c02473{margin-left:-2.500188px;}
._1_c02473{margin-left:-1.059708px;}
._2_c02473{width:1.125484px;}
._e_c02473{width:2.318400px;}
._4_c02473{width:3.974400px;}
._5_c02473{width:5.299200px;}
._9_c02473{width:6.690637px;}
._6_c02473{width:7.749616px;}
._0_c02473{width:9.273666px;}
._3_c02473{width:10.996188px;}
._8_c02473{width:12.055879px;}
._7_c02473{width:13.115388px;}
._f_c02473{width:14.572866px;}
._a_c02473{width:21.462025px;}
._d_c02473{width:23.400000px;}
._b_c02473{width:24.984000px;}
.fc1_c02473{color:rgb(192,80,77);}
.fc0_c02473{color:rgb(0,0,0);}
.fs0_c02473{font-size:66.240000px;}
.fs1_c02473{font-size:72.000000px;}
.y0_c02473{bottom:0.000000px;}
.y3_c02473{bottom:4.680000px;}
.y2_c02473{bottom:41.796000px;}
.y1_c02473{bottom:75.456000px;}
.y2d_c02473{bottom:156.990000px;}
.y2c_c02473{bottom:188.130000px;}
.y2b_c02473{bottom:219.090000px;}
.y2a_c02473{bottom:250.230000px;}
.y29_c02473{bottom:270.570000px;}
.y28_c02473{bottom:289.695000px;}
.y27_c02473{bottom:308.595000px;}
.y26_c02473{bottom:327.495000px;}
.y25_c02473{bottom:346.575000px;}
.y24_c02473{bottom:365.475000px;}
.y23_c02473{bottom:384.555000px;}
.y22_c02473{bottom:403.455000px;}
.y21_c02473{bottom:422.535000px;}
.y20_c02473{bottom:441.435000px;}
.y1f_c02473{bottom:460.335000px;}
.y1e_c02473{bottom:479.415000px;}
.y1d_c02473{bottom:498.315000px;}
.y1c_c02473{bottom:528.015000px;}
.y1b_c02473{bottom:559.005000px;}
.y1a_c02473{bottom:590.145000px;}
.y19_c02473{bottom:621.105000px;}
.y18_c02473{bottom:652.245000px;}
.y17_c02473{bottom:683.205000px;}
.y16_c02473{bottom:714.345000px;}
.y15_c02473{bottom:744.225000px;}
.y14_c02473{bottom:763.125000px;}
.y13_c02473{bottom:782.025000px;}
.y12_c02473{bottom:801.150000px;}
.y11_c02473{bottom:820.050000px;}
.y10_c02473{bottom:839.130000px;}
.yf_c02473{bottom:858.030000px;}
.ye_c02473{bottom:877.110000px;}
.yd_c02473{bottom:896.010000px;}
.yc_c02473{bottom:914.910000px;}
.yb_c02473{bottom:933.990000px;}
.ya_c02473{bottom:952.890000px;}
.y9_c02473{bottom:971.970000px;}
.y8_c02473{bottom:990.870000px;}
.y7_c02473{bottom:1009.770000px;}
.y6_c02473{bottom:1028.850000px;}
.y5_c02473{bottom:1047.750000px;}
.y4_c02473{bottom:1066.860000px;}
.h2_c02473{height:22.500000px;}
.h1_c02473{height:48.871406px;}
.h3_c02473{height:65.010937px;}
.h4_c02473{height:70.664062px;}
.h0_c02473{height:1188.000000px;}
.w1_c02473{width:66.636000px;}
.w0_c02473{width:918.000000px;}
.x0_c02473{left:0.000000px;}
.x3_c02473{left:16.560000px;}
.x1_c02473{left:127.656000px;}
.x5_c02473{left:180.750000px;}
.x4_c02473{left:244.650000px;}
.x2_c02473{left:820.950000px;}
@media print{
.v0_c02473{vertical-align:0.000000pt;}
.ls1_c02473{letter-spacing:-0.544000pt;}
.ls0_c02473{letter-spacing:0.000000pt;}
.ws0_c02473{word-spacing:0.000000pt;}
._c_c02473{margin-left:-2.222389pt;}
._1_c02473{margin-left:-0.941962pt;}
._2_c02473{width:1.000430pt;}
._e_c02473{width:2.060800pt;}
._4_c02473{width:3.532800pt;}
._5_c02473{width:4.710400pt;}
._9_c02473{width:5.947233pt;}
._6_c02473{width:6.888548pt;}
._0_c02473{width:8.243259pt;}
._3_c02473{width:9.774389pt;}
._8_c02473{width:10.716337pt;}
._7_c02473{width:11.658122pt;}
._f_c02473{width:12.953659pt;}
._a_c02473{width:19.077356pt;}
._d_c02473{width:20.800000pt;}
._b_c02473{width:22.208000pt;}
.fs0_c02473{font-size:58.880000pt;}
.fs1_c02473{font-size:64.000000pt;}
.y0_c02473{bottom:0.000000pt;}
.y3_c02473{bottom:4.160000pt;}
.y2_c02473{bottom:37.152000pt;}
.y1_c02473{bottom:67.072000pt;}
.y2d_c02473{bottom:139.546667pt;}
.y2c_c02473{bottom:167.226667pt;}
.y2b_c02473{bottom:194.746667pt;}
.y2a_c02473{bottom:222.426667pt;}
.y29_c02473{bottom:240.506667pt;}
.y28_c02473{bottom:257.506667pt;}
.y27_c02473{bottom:274.306667pt;}
.y26_c02473{bottom:291.106667pt;}
.y25_c02473{bottom:308.066667pt;}
.y24_c02473{bottom:324.866667pt;}
.y23_c02473{bottom:341.826667pt;}
.y22_c02473{bottom:358.626667pt;}
.y21_c02473{bottom:375.586667pt;}
.y20_c02473{bottom:392.386667pt;}
.y1f_c02473{bottom:409.186667pt;}
.y1e_c02473{bottom:426.146667pt;}
.y1d_c02473{bottom:442.946667pt;}
.y1c_c02473{bottom:469.346667pt;}
.y1b_c02473{bottom:496.893333pt;}
.y1a_c02473{bottom:524.573333pt;}
.y19_c02473{bottom:552.093333pt;}
.y18_c02473{bottom:579.773333pt;}
.y17_c02473{bottom:607.293333pt;}
.y16_c02473{bottom:634.973333pt;}
.y15_c02473{bottom:661.533333pt;}
.y14_c02473{bottom:678.333333pt;}
.y13_c02473{bottom:695.133333pt;}
.y12_c02473{bottom:712.133333pt;}
.y11_c02473{bottom:728.933333pt;}
.y10_c02473{bottom:745.893333pt;}
.yf_c02473{bottom:762.693333pt;}
.ye_c02473{bottom:779.653333pt;}
.yd_c02473{bottom:796.453333pt;}
.yc_c02473{bottom:813.253333pt;}
.yb_c02473{bottom:830.213333pt;}
.ya_c02473{bottom:847.013333pt;}
.y9_c02473{bottom:863.973333pt;}
.y8_c02473{bottom:880.773333pt;}
.y7_c02473{bottom:897.573333pt;}
.y6_c02473{bottom:914.533333pt;}
.y5_c02473{bottom:931.333333pt;}
.y4_c02473{bottom:948.320000pt;}
.h2_c02473{height:20.000000pt;}
.h1_c02473{height:43.441250pt;}
.h3_c02473{height:57.787500pt;}
.h4_c02473{height:62.812500pt;}
.h0_c02473{height:1056.000000pt;}
.w1_c02473{width:59.232000pt;}
.w0_c02473{width:816.000000pt;}
.x0_c02473{left:0.000000pt;}
.x3_c02473{left:14.720000pt;}
.x1_c02473{left:113.472000pt;}
.x5_c02473{left:160.666667pt;}
.x4_c02473{left:217.466667pt;}
.x2_c02473{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02474 {
    display:none;
  }
  .loading-indicator_c02474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02474 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02474 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02474" -> "#page-container .classname_c02474")
 */
.pf_c02474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02474 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02474 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02474 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02474 {overflow:visible;}
  }
}
.c_c02474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02474 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02474:after { /* webkit #35443 */
  content: '';
}
.t_c02474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02474 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02474 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02474 { /* info for Javascript */
  display:none;
}
.l_c02474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02474:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02474 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02474.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02474;src:url('chunks/assets/font_c3d86259765a43afca692c25.woff2')format("woff");}.ff1_c02474{font-family:ff1_c02474;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02474;src:url('chunks/assets/font_d30f9ae34a7f36fd0ef4d6af.woff2')format("woff");}.ff2_c02474{font-family:ff2_c02474;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:ff3_c02474;src:url('chunks/assets/font_09ed03dec3df0b960c10f3b8.woff2')format("woff");}.ff3_c02474{font-family:ff3_c02474;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02474{vertical-align:0.000000px;}
.ls2_c02474{letter-spacing:-0.457800px;}
.ls0_c02474{letter-spacing:0.000000px;}
.ls1_c02474{letter-spacing:0.109200px;}
.sc__c02474{text-shadow:none;}
.sc0_c02474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02474{-webkit-text-stroke:0px transparent;}
.sc0_c02474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02474{word-spacing:-18.000000px;}
.ws1_c02474{word-spacing:0.000000px;}
._3_c02474{margin-left:-1.224000px;}
._1_c02474{width:1.404000px;}
._0_c02474{width:2.520000px;}
._2_c02474{width:3.564000px;}
._f_c02474{width:4.788000px;}
._13_c02474{width:6.027575px;}
._14_c02474{width:7.252966px;}
._15_c02474{width:8.813264px;}
._5_c02474{width:10.232508px;}
._7_c02474{width:11.248171px;}
._6_c02474{width:12.254400px;}
._a_c02474{width:14.175691px;}
._c_c02474{width:16.272000px;}
._9_c02474{width:19.803476px;}
._8_c02474{width:20.931641px;}
._11_c02474{width:22.254025px;}
._10_c02474{width:23.846400px;}
._12_c02474{width:25.100389px;}
._16_c02474{width:26.363388px;}
._17_c02474{width:27.535522px;}
._d_c02474{width:30.456000px;}
._e_c02474{width:31.896000px;}
._b_c02474{width:34.603200px;}
._4_c02474{width:36.100800px;}
.fc1_c02474{color:rgb(192,80,77);}
.fc0_c02474{color:rgb(0,0,0);}
.fs0_c02474{font-size:66.240000px;}
.fs1_c02474{font-size:72.000000px;}
.y0_c02474{bottom:0.000000px;}
.y3_c02474{bottom:4.680000px;}
.y2_c02474{bottom:41.796000px;}
.y1_c02474{bottom:75.456000px;}
.y2a_c02474{bottom:124.776000px;}
.y29_c02474{bottom:143.676000px;}
.y28_c02474{bottom:162.570000px;}
.y27_c02474{bottom:181.650000px;}
.y26_c02474{bottom:200.550000px;}
.y25_c02474{bottom:245.190000px;}
.y24_c02474{bottom:276.375000px;}
.y23_c02474{bottom:307.335000px;}
.y22_c02474{bottom:338.475000px;}
.y21_c02474{bottom:369.435000px;}
.y20_c02474{bottom:399.315000px;}
.y1f_c02474{bottom:418.395000px;}
.y1e_c02474{bottom:437.295000px;}
.y1d_c02474{bottom:456.195000px;}
.y1c_c02474{bottom:475.275000px;}
.y1b_c02474{bottom:494.175000px;}
.y1a_c02474{bottom:513.255000px;}
.y19_c02474{bottom:532.155000px;}
.y18_c02474{bottom:551.085000px;}
.y17_c02474{bottom:570.165000px;}
.y16_c02474{bottom:614.805000px;}
.y15_c02474{bottom:645.765000px;}
.y14_c02474{bottom:676.905000px;}
.y13_c02474{bottom:707.865000px;}
.y12_c02474{bottom:739.005000px;}
.y11_c02474{bottom:769.965000px;}
.y10_c02474{bottom:799.890000px;}
.yf_c02474{bottom:818.970000px;}
.ye_c02474{bottom:837.870000px;}
.yd_c02474{bottom:856.770000px;}
.yc_c02474{bottom:875.850000px;}
.yb_c02474{bottom:894.750000px;}
.ya_c02474{bottom:913.830000px;}
.y9_c02474{bottom:932.730000px;}
.y8_c02474{bottom:951.630000px;}
.y7_c02474{bottom:970.710000px;}
.y6_c02474{bottom:989.610000px;}
.y5_c02474{bottom:1034.250000px;}
.y4_c02474{bottom:1065.420000px;}
.h2_c02474{height:22.500000px;}
.h1_c02474{height:48.871406px;}
.h5_c02474{height:59.383125px;}
.h6_c02474{height:64.546875px;}
.h4_c02474{height:65.010937px;}
.h3_c02474{height:70.664062px;}
.h0_c02474{height:1188.000000px;}
.w1_c02474{width:66.636000px;}
.w0_c02474{width:918.000000px;}
.x0_c02474{left:0.000000px;}
.x3_c02474{left:16.560000px;}
.x1_c02474{left:127.656000px;}
.x4_c02474{left:180.750000px;}
.x5_c02474{left:244.650000px;}
.x2_c02474{left:820.950000px;}
@media print{
.v0_c02474{vertical-align:0.000000pt;}
.ls2_c02474{letter-spacing:-0.406933pt;}
.ls0_c02474{letter-spacing:0.000000pt;}
.ls1_c02474{letter-spacing:0.097067pt;}
.ws0_c02474{word-spacing:-16.000000pt;}
.ws1_c02474{word-spacing:0.000000pt;}
._3_c02474{margin-left:-1.088000pt;}
._1_c02474{width:1.248000pt;}
._0_c02474{width:2.240000pt;}
._2_c02474{width:3.168000pt;}
._f_c02474{width:4.256000pt;}
._13_c02474{width:5.357844pt;}
._14_c02474{width:6.447081pt;}
._15_c02474{width:7.834012pt;}
._5_c02474{width:9.095562pt;}
._7_c02474{width:9.998374pt;}
._6_c02474{width:10.892800pt;}
._a_c02474{width:12.600614pt;}
._c_c02474{width:14.464000pt;}
._9_c02474{width:17.603090pt;}
._8_c02474{width:18.605903pt;}
._11_c02474{width:19.781356pt;}
._10_c02474{width:21.196800pt;}
._12_c02474{width:22.311457pt;}
._16_c02474{width:23.434122pt;}
._17_c02474{width:24.476019pt;}
._d_c02474{width:27.072000pt;}
._e_c02474{width:28.352000pt;}
._b_c02474{width:30.758400pt;}
._4_c02474{width:32.089600pt;}
.fs0_c02474{font-size:58.880000pt;}
.fs1_c02474{font-size:64.000000pt;}
.y0_c02474{bottom:0.000000pt;}
.y3_c02474{bottom:4.160000pt;}
.y2_c02474{bottom:37.152000pt;}
.y1_c02474{bottom:67.072000pt;}
.y2a_c02474{bottom:110.912000pt;}
.y29_c02474{bottom:127.712000pt;}
.y28_c02474{bottom:144.506667pt;}
.y27_c02474{bottom:161.466667pt;}
.y26_c02474{bottom:178.266667pt;}
.y25_c02474{bottom:217.946667pt;}
.y24_c02474{bottom:245.666667pt;}
.y23_c02474{bottom:273.186667pt;}
.y22_c02474{bottom:300.866667pt;}
.y21_c02474{bottom:328.386667pt;}
.y20_c02474{bottom:354.946667pt;}
.y1f_c02474{bottom:371.906667pt;}
.y1e_c02474{bottom:388.706667pt;}
.y1d_c02474{bottom:405.506667pt;}
.y1c_c02474{bottom:422.466667pt;}
.y1b_c02474{bottom:439.266667pt;}
.y1a_c02474{bottom:456.226667pt;}
.y19_c02474{bottom:473.026667pt;}
.y18_c02474{bottom:489.853333pt;}
.y17_c02474{bottom:506.813333pt;}
.y16_c02474{bottom:546.493333pt;}
.y15_c02474{bottom:574.013333pt;}
.y14_c02474{bottom:601.693333pt;}
.y13_c02474{bottom:629.213333pt;}
.y12_c02474{bottom:656.893333pt;}
.y11_c02474{bottom:684.413333pt;}
.y10_c02474{bottom:711.013333pt;}
.yf_c02474{bottom:727.973333pt;}
.ye_c02474{bottom:744.773333pt;}
.yd_c02474{bottom:761.573333pt;}
.yc_c02474{bottom:778.533333pt;}
.yb_c02474{bottom:795.333333pt;}
.ya_c02474{bottom:812.293333pt;}
.y9_c02474{bottom:829.093333pt;}
.y8_c02474{bottom:845.893333pt;}
.y7_c02474{bottom:862.853333pt;}
.y6_c02474{bottom:879.653333pt;}
.y5_c02474{bottom:919.333333pt;}
.y4_c02474{bottom:947.040000pt;}
.h2_c02474{height:20.000000pt;}
.h1_c02474{height:43.441250pt;}
.h5_c02474{height:52.785000pt;}
.h6_c02474{height:57.375000pt;}
.h4_c02474{height:57.787500pt;}
.h3_c02474{height:62.812500pt;}
.h0_c02474{height:1056.000000pt;}
.w1_c02474{width:59.232000pt;}
.w0_c02474{width:816.000000pt;}
.x0_c02474{left:0.000000pt;}
.x3_c02474{left:14.720000pt;}
.x1_c02474{left:113.472000pt;}
.x4_c02474{left:160.666667pt;}
.x5_c02474{left:217.466667pt;}
.x2_c02474{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02475 {
    display:none;
  }
  .loading-indicator_c02475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02475 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02475 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02475" -> "#page-container .classname_c02475")
 */
.pf_c02475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02475 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02475 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02475 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02475 {overflow:visible;}
  }
}
.c_c02475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02475 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02475:after { /* webkit #35443 */
  content: '';
}
.t_c02475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02475 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02475 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02475 { /* info for Javascript */
  display:none;
}
.l_c02475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02475:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02475 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02475.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02475;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02475{font-family:ff1_c02475;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02475;src:url('chunks/assets/font_2f30e25046f51cd601b0148c.woff2')format("woff");}.ff2_c02475{font-family:ff2_c02475;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:ff3_c02475;src:url('chunks/assets/font_06e20f94e368524b6ff7a418.woff2')format("woff");}.ff3_c02475{font-family:ff3_c02475;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02475{vertical-align:0.000000px;}
.ls2_c02475{letter-spacing:-0.567600px;}
.ls0_c02475{letter-spacing:0.000000px;}
.ls1_c02475{letter-spacing:0.262200px;}
.sc__c02475{text-shadow:none;}
.sc0_c02475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02475{-webkit-text-stroke:0px transparent;}
.sc0_c02475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02475{word-spacing:-16.560000px;}
.ws1_c02475{word-spacing:0.000000px;}
._1_c02475{margin-left:-1.258229px;}
._2_c02475{width:1.128067px;}
._0_c02475{width:2.185788px;}
._5_c02475{width:3.324917px;}
._4_c02475{width:4.369323px;}
._13_c02475{width:5.385444px;}
._6_c02475{width:6.491388px;}
._e_c02475{width:7.617600px;}
._a_c02475{width:8.943725px;}
._8_c02475{width:10.067486px;}
._7_c02475{width:11.526025px;}
._11_c02475{width:13.314108px;}
._12_c02475{width:14.440784px;}
._10_c02475{width:18.414720px;}
._9_c02475{width:20.137159px;}
._3_c02475{width:21.594041px;}
._d_c02475{width:23.323236px;}
._c_c02475{width:24.634325px;}
._b_c02475{width:26.694588px;}
._f_c02475{width:27.886841px;}
.fc1_c02475{color:rgb(192,80,77);}
.fc0_c02475{color:rgb(0,0,0);}
.fs0_c02475{font-size:66.240000px;}
.fs1_c02475{font-size:72.000000px;}
.y0_c02475{bottom:0.000000px;}
.y3_c02475{bottom:4.680000px;}
.y2_c02475{bottom:41.796000px;}
.y1_c02475{bottom:75.456000px;}
.y33_c02475{bottom:149.256000px;}
.y32_c02475{bottom:180.390000px;}
.y31_c02475{bottom:211.350000px;}
.y30_c02475{bottom:231.870000px;}
.y2f_c02475{bottom:250.770000px;}
.y2e_c02475{bottom:269.670000px;}
.y2d_c02475{bottom:288.795000px;}
.y2c_c02475{bottom:307.695000px;}
.y2b_c02475{bottom:326.775000px;}
.y2a_c02475{bottom:345.675000px;}
.y29_c02475{bottom:364.575000px;}
.y28_c02475{bottom:383.655000px;}
.y27_c02475{bottom:402.555000px;}
.y26_c02475{bottom:421.635000px;}
.y25_c02475{bottom:440.535000px;}
.y24_c02475{bottom:459.615000px;}
.y23_c02475{bottom:478.515000px;}
.y22_c02475{bottom:497.415000px;}
.y21_c02475{bottom:516.495000px;}
.y20_c02475{bottom:535.425000px;}
.y1f_c02475{bottom:554.505000px;}
.y1e_c02475{bottom:573.405000px;}
.y1d_c02475{bottom:592.305000px;}
.y1c_c02475{bottom:611.385000px;}
.y1b_c02475{bottom:630.285000px;}
.y1a_c02475{bottom:649.365000px;}
.y19_c02475{bottom:668.265000px;}
.y18_c02475{bottom:687.165000px;}
.y17_c02475{bottom:706.245000px;}
.y16_c02475{bottom:725.145000px;}
.y15_c02475{bottom:744.225000px;}
.y14_c02475{bottom:763.125000px;}
.y13_c02475{bottom:782.025000px;}
.y12_c02475{bottom:801.150000px;}
.y11_c02475{bottom:820.050000px;}
.y10_c02475{bottom:839.130000px;}
.yf_c02475{bottom:858.030000px;}
.ye_c02475{bottom:877.110000px;}
.yd_c02475{bottom:896.010000px;}
.yc_c02475{bottom:914.910000px;}
.yb_c02475{bottom:933.990000px;}
.ya_c02475{bottom:952.890000px;}
.y9_c02475{bottom:971.970000px;}
.y8_c02475{bottom:990.870000px;}
.y7_c02475{bottom:1009.770000px;}
.y6_c02475{bottom:1028.850000px;}
.y5_c02475{bottom:1047.750000px;}
.y4_c02475{bottom:1066.860000px;}
.h2_c02475{height:22.500000px;}
.h1_c02475{height:48.871406px;}
.h4_c02475{height:59.383125px;}
.h3_c02475{height:65.010937px;}
.h5_c02475{height:70.664062px;}
.h0_c02475{height:1188.000000px;}
.w1_c02475{width:66.636000px;}
.w0_c02475{width:918.000000px;}
.x0_c02475{left:0.000000px;}
.x3_c02475{left:16.560000px;}
.x1_c02475{left:127.656000px;}
.x5_c02475{left:180.750000px;}
.x4_c02475{left:244.650000px;}
.x2_c02475{left:820.950000px;}
@media print{
.v0_c02475{vertical-align:0.000000pt;}
.ls2_c02475{letter-spacing:-0.504533pt;}
.ls0_c02475{letter-spacing:0.000000pt;}
.ls1_c02475{letter-spacing:0.233067pt;}
.ws0_c02475{word-spacing:-14.720000pt;}
.ws1_c02475{word-spacing:0.000000pt;}
._1_c02475{margin-left:-1.118426pt;}
._2_c02475{width:1.002726pt;}
._0_c02475{width:1.942922pt;}
._5_c02475{width:2.955482pt;}
._4_c02475{width:3.883843pt;}
._13_c02475{width:4.787062pt;}
._6_c02475{width:5.770122pt;}
._e_c02475{width:6.771200pt;}
._a_c02475{width:7.949978pt;}
._8_c02475{width:8.948877pt;}
._7_c02475{width:10.245356pt;}
._11_c02475{width:11.834762pt;}
._12_c02475{width:12.836252pt;}
._10_c02475{width:16.368640pt;}
._9_c02475{width:17.899697pt;}
._3_c02475{width:19.194703pt;}
._d_c02475{width:20.731766pt;}
._c_c02475{width:21.897178pt;}
._b_c02475{width:23.728522pt;}
._f_c02475{width:24.788303pt;}
.fs0_c02475{font-size:58.880000pt;}
.fs1_c02475{font-size:64.000000pt;}
.y0_c02475{bottom:0.000000pt;}
.y3_c02475{bottom:4.160000pt;}
.y2_c02475{bottom:37.152000pt;}
.y1_c02475{bottom:67.072000pt;}
.y33_c02475{bottom:132.672000pt;}
.y32_c02475{bottom:160.346667pt;}
.y31_c02475{bottom:187.866667pt;}
.y30_c02475{bottom:206.106667pt;}
.y2f_c02475{bottom:222.906667pt;}
.y2e_c02475{bottom:239.706667pt;}
.y2d_c02475{bottom:256.706667pt;}
.y2c_c02475{bottom:273.506667pt;}
.y2b_c02475{bottom:290.466667pt;}
.y2a_c02475{bottom:307.266667pt;}
.y29_c02475{bottom:324.066667pt;}
.y28_c02475{bottom:341.026667pt;}
.y27_c02475{bottom:357.826667pt;}
.y26_c02475{bottom:374.786667pt;}
.y25_c02475{bottom:391.586667pt;}
.y24_c02475{bottom:408.546667pt;}
.y23_c02475{bottom:425.346667pt;}
.y22_c02475{bottom:442.146667pt;}
.y21_c02475{bottom:459.106667pt;}
.y20_c02475{bottom:475.933333pt;}
.y1f_c02475{bottom:492.893333pt;}
.y1e_c02475{bottom:509.693333pt;}
.y1d_c02475{bottom:526.493333pt;}
.y1c_c02475{bottom:543.453333pt;}
.y1b_c02475{bottom:560.253333pt;}
.y1a_c02475{bottom:577.213333pt;}
.y19_c02475{bottom:594.013333pt;}
.y18_c02475{bottom:610.813333pt;}
.y17_c02475{bottom:627.773333pt;}
.y16_c02475{bottom:644.573333pt;}
.y15_c02475{bottom:661.533333pt;}
.y14_c02475{bottom:678.333333pt;}
.y13_c02475{bottom:695.133333pt;}
.y12_c02475{bottom:712.133333pt;}
.y11_c02475{bottom:728.933333pt;}
.y10_c02475{bottom:745.893333pt;}
.yf_c02475{bottom:762.693333pt;}
.ye_c02475{bottom:779.653333pt;}
.yd_c02475{bottom:796.453333pt;}
.yc_c02475{bottom:813.253333pt;}
.yb_c02475{bottom:830.213333pt;}
.ya_c02475{bottom:847.013333pt;}
.y9_c02475{bottom:863.973333pt;}
.y8_c02475{bottom:880.773333pt;}
.y7_c02475{bottom:897.573333pt;}
.y6_c02475{bottom:914.533333pt;}
.y5_c02475{bottom:931.333333pt;}
.y4_c02475{bottom:948.320000pt;}
.h2_c02475{height:20.000000pt;}
.h1_c02475{height:43.441250pt;}
.h4_c02475{height:52.785000pt;}
.h3_c02475{height:57.787500pt;}
.h5_c02475{height:62.812500pt;}
.h0_c02475{height:1056.000000pt;}
.w1_c02475{width:59.232000pt;}
.w0_c02475{width:816.000000pt;}
.x0_c02475{left:0.000000pt;}
.x3_c02475{left:14.720000pt;}
.x1_c02475{left:113.472000pt;}
.x5_c02475{left:160.666667pt;}
.x4_c02475{left:217.466667pt;}
.x2_c02475{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02476 {
    display:none;
  }
  .loading-indicator_c02476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02476 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02476 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02476" -> "#page-container .classname_c02476")
 */
.pf_c02476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02476 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02476 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02476 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02476 {overflow:visible;}
  }
}
.c_c02476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02476 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02476:after { /* webkit #35443 */
  content: '';
}
.t_c02476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02476 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02476 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02476 { /* info for Javascript */
  display:none;
}
.l_c02476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02476:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02476 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02476.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02476;src:url('chunks/assets/font_5e4ddc77dc958b0a617b28da.woff2')format("woff");}.ff1_c02476{font-family:ff1_c02476;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02476;src:url('chunks/assets/font_870c818dd89a5eb032434e3f.woff2')format("woff");}.ff2_c02476{font-family:ff2_c02476;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:ff3_c02476;src:url('chunks/assets/font_2449bb2678e9e7c53cf6cf7c.woff2')format("woff");}.ff3_c02476{font-family:ff3_c02476;line-height:0.783691;font-style:normal;font-weight: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_c02476;src:url('chunks/assets/font_f0f81dbe1d90c89c096ba930.woff2')format("woff");}.ff4_c02476{font-family:ff4_c02476;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02476{vertical-align:0.000000px;}
.ls2_c02476{letter-spacing:0.000000px;}
.ls0_c02476{letter-spacing:0.288000px;}
.ls1_c02476{letter-spacing:23.904000px;}
.sc__c02476{text-shadow:none;}
.sc0_c02476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02476{-webkit-text-stroke:0px transparent;}
.sc0_c02476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02476{word-spacing:0.000000px;}
._4_c02476{margin-left:-1.152000px;}
._3_c02476{width:1.512000px;}
._9_c02476{width:3.528000px;}
._a_c02476{width:5.112000px;}
._1_c02476{width:6.192000px;}
._2_c02476{width:7.812000px;}
._e_c02476{width:9.008441px;}
._6_c02476{width:11.952000px;}
._7_c02476{width:14.184000px;}
._8_c02476{width:15.264000px;}
._5_c02476{width:16.488000px;}
._d_c02476{width:20.304000px;}
._b_c02476{width:40.176000px;}
._c_c02476{width:41.544000px;}
._0_c02476{width:43.344000px;}
.fc1_c02476{color:rgb(192,80,77);}
.fc0_c02476{color:rgb(0,0,0);}
.fs0_c02476{font-size:66.240000px;}
.fs1_c02476{font-size:72.000000px;}
.y0_c02476{bottom:0.000000px;}
.y3_c02476{bottom:4.680000px;}
.y2_c02476{bottom:41.796000px;}
.y1_c02476{bottom:75.456000px;}
.y22_c02476{bottom:116.316000px;}
.y21_c02476{bottom:135.216000px;}
.y20_c02476{bottom:164.910000px;}
.y1f_c02476{bottom:195.870000px;}
.y1e_c02476{bottom:227.010000px;}
.y1d_c02476{bottom:257.970000px;}
.y1c_c02476{bottom:289.155000px;}
.y1b_c02476{bottom:320.115000px;}
.y1a_c02476{bottom:351.255000px;}
.y19_c02476{bottom:382.215000px;}
.y18_c02476{bottom:413.355000px;}
.y17_c02476{bottom:444.315000px;}
.y16_c02476{bottom:475.275000px;}
.y15_c02476{bottom:506.415000px;}
.y14_c02476{bottom:537.405000px;}
.y13_c02476{bottom:568.545000px;}
.y12_c02476{bottom:607.425000px;}
.y11_c02476{bottom:638.385000px;}
.y10_c02476{bottom:669.345000px;}
.yf_c02476{bottom:708.225000px;}
.ye_c02476{bottom:739.365000px;}
.yd_c02476{bottom:778.065000px;}
.yc_c02476{bottom:809.250000px;}
.yb_c02476{bottom:847.950000px;}
.ya_c02476{bottom:879.090000px;}
.y9_c02476{bottom:910.050000px;}
.y8_c02476{bottom:941.190000px;}
.y7_c02476{bottom:972.150000px;}
.y6_c02476{bottom:1003.290000px;}
.y5_c02476{bottom:1034.250000px;}
.y4_c02476{bottom:1065.420000px;}
.h2_c02476{height:22.500000px;}
.h1_c02476{height:48.871406px;}
.h5_c02476{height:65.010937px;}
.h3_c02476{height:70.664062px;}
.h4_c02476{height:74.004654px;}
.h0_c02476{height:1188.000000px;}
.w1_c02476{width:66.636000px;}
.w0_c02476{width:918.000000px;}
.x0_c02476{left:0.000000px;}
.x3_c02476{left:16.560000px;}
.x1_c02476{left:127.656000px;}
.x4_c02476{left:180.750000px;}
.x5_c02476{left:208.650000px;}
.x6_c02476{left:235.650000px;}
.x7_c02476{left:244.650000px;}
.x2_c02476{left:820.950000px;}
@media print{
.v0_c02476{vertical-align:0.000000pt;}
.ls2_c02476{letter-spacing:0.000000pt;}
.ls0_c02476{letter-spacing:0.256000pt;}
.ls1_c02476{letter-spacing:21.248000pt;}
.ws0_c02476{word-spacing:0.000000pt;}
._4_c02476{margin-left:-1.024000pt;}
._3_c02476{width:1.344000pt;}
._9_c02476{width:3.136000pt;}
._a_c02476{width:4.544000pt;}
._1_c02476{width:5.504000pt;}
._2_c02476{width:6.944000pt;}
._e_c02476{width:8.007503pt;}
._6_c02476{width:10.624000pt;}
._7_c02476{width:12.608000pt;}
._8_c02476{width:13.568000pt;}
._5_c02476{width:14.656000pt;}
._d_c02476{width:18.048000pt;}
._b_c02476{width:35.712000pt;}
._c_c02476{width:36.928000pt;}
._0_c02476{width:38.528000pt;}
.fs0_c02476{font-size:58.880000pt;}
.fs1_c02476{font-size:64.000000pt;}
.y0_c02476{bottom:0.000000pt;}
.y3_c02476{bottom:4.160000pt;}
.y2_c02476{bottom:37.152000pt;}
.y1_c02476{bottom:67.072000pt;}
.y22_c02476{bottom:103.392000pt;}
.y21_c02476{bottom:120.192000pt;}
.y20_c02476{bottom:146.586667pt;}
.y1f_c02476{bottom:174.106667pt;}
.y1e_c02476{bottom:201.786667pt;}
.y1d_c02476{bottom:229.306667pt;}
.y1c_c02476{bottom:257.026667pt;}
.y1b_c02476{bottom:284.546667pt;}
.y1a_c02476{bottom:312.226667pt;}
.y19_c02476{bottom:339.746667pt;}
.y18_c02476{bottom:367.426667pt;}
.y17_c02476{bottom:394.946667pt;}
.y16_c02476{bottom:422.466667pt;}
.y15_c02476{bottom:450.146667pt;}
.y14_c02476{bottom:477.693333pt;}
.y13_c02476{bottom:505.373333pt;}
.y12_c02476{bottom:539.933333pt;}
.y11_c02476{bottom:567.453333pt;}
.y10_c02476{bottom:594.973333pt;}
.yf_c02476{bottom:629.533333pt;}
.ye_c02476{bottom:657.213333pt;}
.yd_c02476{bottom:691.613333pt;}
.yc_c02476{bottom:719.333333pt;}
.yb_c02476{bottom:753.733333pt;}
.ya_c02476{bottom:781.413333pt;}
.y9_c02476{bottom:808.933333pt;}
.y8_c02476{bottom:836.613333pt;}
.y7_c02476{bottom:864.133333pt;}
.y6_c02476{bottom:891.813333pt;}
.y5_c02476{bottom:919.333333pt;}
.y4_c02476{bottom:947.040000pt;}
.h2_c02476{height:20.000000pt;}
.h1_c02476{height:43.441250pt;}
.h5_c02476{height:57.787500pt;}
.h3_c02476{height:62.812500pt;}
.h4_c02476{height:65.781915pt;}
.h0_c02476{height:1056.000000pt;}
.w1_c02476{width:59.232000pt;}
.w0_c02476{width:816.000000pt;}
.x0_c02476{left:0.000000pt;}
.x3_c02476{left:14.720000pt;}
.x1_c02476{left:113.472000pt;}
.x4_c02476{left:160.666667pt;}
.x5_c02476{left:185.466667pt;}
.x6_c02476{left:209.466667pt;}
.x7_c02476{left:217.466667pt;}
.x2_c02476{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02477 {
    display:none;
  }
  .loading-indicator_c02477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02477 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02477 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02477" -> "#page-container .classname_c02477")
 */
.pf_c02477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02477 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02477 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02477 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02477 {overflow:visible;}
  }
}
.c_c02477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02477 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02477:after { /* webkit #35443 */
  content: '';
}
.t_c02477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02477 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02477 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02477 { /* info for Javascript */
  display:none;
}
.l_c02477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02477:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02477 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02477.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02477;src:url('chunks/assets/font_fbe5004b0fc4e978bb983be9.woff2')format("woff");}.ff1_c02477{font-family:ff1_c02477;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02477;src:url('chunks/assets/font_474ed47cd4cfc05141508741.woff2')format("woff");}.ff2_c02477{font-family:ff2_c02477;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:ff3_c02477;src:url('chunks/assets/font_1f9d854fa21bdf6488a72d45.woff2')format("woff");}.ff3_c02477{font-family:ff3_c02477;line-height:1.311035;font-style:normal;font-weight: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_c02477;src:url('chunks/assets/font_a94f4e4fabb1ee950a99157b.woff2')format("woff");}.ff4_c02477{font-family:ff4_c02477;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02477{vertical-align:0.000000px;}
.ls2_c02477{letter-spacing:0.000000px;}
.ls0_c02477{letter-spacing:0.262080px;}
.ls1_c02477{letter-spacing:7.920000px;}
.sc__c02477{text-shadow:none;}
.sc0_c02477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02477{-webkit-text-stroke:0px transparent;}
.sc0_c02477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02477{word-spacing:0.000000px;}
._1_c02477{margin-left:-1.523984px;}
._4_c02477{width:1.080000px;}
._e_c02477{width:2.520000px;}
._c_c02477{width:3.643266px;}
._a_c02477{width:4.884581px;}
._9_c02477{width:6.027575px;}
._d_c02477{width:7.740115px;}
._b_c02477{width:9.151747px;}
._3_c02477{width:10.440000px;}
._2_c02477{width:11.891984px;}
._5_c02477{width:12.936024px;}
._7_c02477{width:14.843984px;}
._6_c02477{width:15.912000px;}
._11_c02477{width:19.224000px;}
._12_c02477{width:20.232000px;}
._8_c02477{width:21.528000px;}
._0_c02477{width:23.979012px;}
._f_c02477{width:31.896000px;}
._10_c02477{width:33.048000px;}
.fc1_c02477{color:rgb(192,80,77);}
.fc0_c02477{color:rgb(0,0,0);}
.fs0_c02477{font-size:66.240000px;}
.fs1_c02477{font-size:72.000000px;}
.y0_c02477{bottom:0.000000px;}
.y3_c02477{bottom:4.680000px;}
.y2_c02477{bottom:41.796000px;}
.y1_c02477{bottom:75.456000px;}
.y2a_c02477{bottom:121.356000px;}
.y29_c02477{bottom:140.436000px;}
.y28_c02477{bottom:159.330000px;}
.y27_c02477{bottom:178.410000px;}
.y26_c02477{bottom:197.310000px;}
.y25_c02477{bottom:216.210000px;}
.y24_c02477{bottom:235.290000px;}
.y23_c02477{bottom:254.190000px;}
.y22_c02477{bottom:273.315000px;}
.y21_c02477{bottom:292.215000px;}
.y20_c02477{bottom:311.115000px;}
.y1f_c02477{bottom:340.815000px;}
.y1e_c02477{bottom:371.775000px;}
.y1d_c02477{bottom:402.915000px;}
.y1c_c02477{bottom:433.875000px;}
.y1b_c02477{bottom:465.015000px;}
.y1a_c02477{bottom:495.975000px;}
.y19_c02477{bottom:527.115000px;}
.y18_c02477{bottom:558.105000px;}
.y17_c02477{bottom:589.245000px;}
.y16_c02477{bottom:620.205000px;}
.y15_c02477{bottom:651.345000px;}
.y14_c02477{bottom:682.305000px;}
.y13_c02477{bottom:713.445000px;}
.y12_c02477{bottom:743.325000px;}
.y11_c02477{bottom:762.225000px;}
.y10_c02477{bottom:781.305000px;}
.yf_c02477{bottom:800.250000px;}
.ye_c02477{bottom:819.150000px;}
.yd_c02477{bottom:838.230000px;}
.yc_c02477{bottom:857.130000px;}
.yb_c02477{bottom:876.210000px;}
.ya_c02477{bottom:905.730000px;}
.y9_c02477{bottom:936.870000px;}
.y8_c02477{bottom:967.830000px;}
.y7_c02477{bottom:998.970000px;}
.y6_c02477{bottom:1028.850000px;}
.y5_c02477{bottom:1047.750000px;}
.y4_c02477{bottom:1066.860000px;}
.h2_c02477{height:22.500000px;}
.h1_c02477{height:48.871406px;}
.h7_c02477{height:59.383125px;}
.h6_c02477{height:64.546875px;}
.h4_c02477{height:65.010937px;}
.h3_c02477{height:66.757500px;}
.h5_c02477{height:70.664062px;}
.h0_c02477{height:1188.000000px;}
.w1_c02477{width:66.636000px;}
.w0_c02477{width:918.000000px;}
.x0_c02477{left:0.000000px;}
.x3_c02477{left:16.560000px;}
.x1_c02477{left:127.656000px;}
.x5_c02477{left:181.650000px;}
.x4_c02477{left:244.650000px;}
.x2_c02477{left:820.950000px;}
@media print{
.v0_c02477{vertical-align:0.000000pt;}
.ls2_c02477{letter-spacing:0.000000pt;}
.ls0_c02477{letter-spacing:0.232960pt;}
.ls1_c02477{letter-spacing:7.040000pt;}
.ws0_c02477{word-spacing:0.000000pt;}
._1_c02477{margin-left:-1.354652pt;}
._4_c02477{width:0.960000pt;}
._e_c02477{width:2.240000pt;}
._c_c02477{width:3.238459pt;}
._a_c02477{width:4.341850pt;}
._9_c02477{width:5.357844pt;}
._d_c02477{width:6.880102pt;}
._b_c02477{width:8.134886pt;}
._3_c02477{width:9.280000pt;}
._2_c02477{width:10.570652pt;}
._5_c02477{width:11.498688pt;}
._7_c02477{width:13.194652pt;}
._6_c02477{width:14.144000pt;}
._11_c02477{width:17.088000pt;}
._12_c02477{width:17.984000pt;}
._8_c02477{width:19.136000pt;}
._0_c02477{width:21.314678pt;}
._f_c02477{width:28.352000pt;}
._10_c02477{width:29.376000pt;}
.fs0_c02477{font-size:58.880000pt;}
.fs1_c02477{font-size:64.000000pt;}
.y0_c02477{bottom:0.000000pt;}
.y3_c02477{bottom:4.160000pt;}
.y2_c02477{bottom:37.152000pt;}
.y1_c02477{bottom:67.072000pt;}
.y2a_c02477{bottom:107.872000pt;}
.y29_c02477{bottom:124.832000pt;}
.y28_c02477{bottom:141.626667pt;}
.y27_c02477{bottom:158.586667pt;}
.y26_c02477{bottom:175.386667pt;}
.y25_c02477{bottom:192.186667pt;}
.y24_c02477{bottom:209.146667pt;}
.y23_c02477{bottom:225.946667pt;}
.y22_c02477{bottom:242.946667pt;}
.y21_c02477{bottom:259.746667pt;}
.y20_c02477{bottom:276.546667pt;}
.y1f_c02477{bottom:302.946667pt;}
.y1e_c02477{bottom:330.466667pt;}
.y1d_c02477{bottom:358.146667pt;}
.y1c_c02477{bottom:385.666667pt;}
.y1b_c02477{bottom:413.346667pt;}
.y1a_c02477{bottom:440.866667pt;}
.y19_c02477{bottom:468.546667pt;}
.y18_c02477{bottom:496.093333pt;}
.y17_c02477{bottom:523.773333pt;}
.y16_c02477{bottom:551.293333pt;}
.y15_c02477{bottom:578.973333pt;}
.y14_c02477{bottom:606.493333pt;}
.y13_c02477{bottom:634.173333pt;}
.y12_c02477{bottom:660.733333pt;}
.y11_c02477{bottom:677.533333pt;}
.y10_c02477{bottom:694.493333pt;}
.yf_c02477{bottom:711.333333pt;}
.ye_c02477{bottom:728.133333pt;}
.yd_c02477{bottom:745.093333pt;}
.yc_c02477{bottom:761.893333pt;}
.yb_c02477{bottom:778.853333pt;}
.ya_c02477{bottom:805.093333pt;}
.y9_c02477{bottom:832.773333pt;}
.y8_c02477{bottom:860.293333pt;}
.y7_c02477{bottom:887.973333pt;}
.y6_c02477{bottom:914.533333pt;}
.y5_c02477{bottom:931.333333pt;}
.y4_c02477{bottom:948.320000pt;}
.h2_c02477{height:20.000000pt;}
.h1_c02477{height:43.441250pt;}
.h7_c02477{height:52.785000pt;}
.h6_c02477{height:57.375000pt;}
.h4_c02477{height:57.787500pt;}
.h3_c02477{height:59.340000pt;}
.h5_c02477{height:62.812500pt;}
.h0_c02477{height:1056.000000pt;}
.w1_c02477{width:59.232000pt;}
.w0_c02477{width:816.000000pt;}
.x0_c02477{left:0.000000pt;}
.x3_c02477{left:14.720000pt;}
.x1_c02477{left:113.472000pt;}
.x5_c02477{left:161.466667pt;}
.x4_c02477{left:217.466667pt;}
.x2_c02477{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02478 {
    display:none;
  }
  .loading-indicator_c02478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02478 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02478 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02478" -> "#page-container .classname_c02478")
 */
.pf_c02478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02478 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02478 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02478 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02478 {overflow:visible;}
  }
}
.c_c02478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02478 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02478:after { /* webkit #35443 */
  content: '';
}
.t_c02478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02478 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02478 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02478 { /* info for Javascript */
  display:none;
}
.l_c02478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02478:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02478 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02478.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02478;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02478{font-family:ff1_c02478;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02478;src:url('chunks/assets/font_030c539edd46b090508a5cb3.woff2')format("woff");}.ff2_c02478{font-family:ff2_c02478;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:ff3_c02478;src:url('chunks/assets/font_86eef712ff0e2cf9debd1d2d.woff2')format("woff");}.ff3_c02478{font-family:ff3_c02478;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02478{vertical-align:0.000000px;}
.ls0_c02478{letter-spacing:0.000000px;}
.sc__c02478{text-shadow:none;}
.sc0_c02478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02478{-webkit-text-stroke:0px transparent;}
.sc0_c02478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02478{word-spacing:0.000000px;}
._1_c02478{margin-left:-1.059575px;}
._2_c02478{width:1.059641px;}
._3_c02478{width:3.179388px;}
._0_c02478{width:4.636800px;}
._4_c02478{width:6.292800px;}
._5_c02478{width:7.948866px;}
._c_c02478{width:9.006587px;}
._8_c02478{width:10.133991px;}
._7_c02478{width:11.725209px;}
._6_c02478{width:12.982775px;}
._d_c02478{width:19.011012px;}
._9_c02478{width:22.389054px;}
._a_c02478{width:25.560000px;}
._b_c02478{width:26.640000px;}
.fc1_c02478{color:rgb(192,80,77);}
.fc0_c02478{color:rgb(0,0,0);}
.fs0_c02478{font-size:66.240000px;}
.fs1_c02478{font-size:72.000000px;}
.y0_c02478{bottom:0.000000px;}
.y3_c02478{bottom:4.680000px;}
.y2_c02478{bottom:41.796000px;}
.y1_c02478{bottom:75.456000px;}
.y2b_c02478{bottom:124.776000px;}
.y2a_c02478{bottom:155.910000px;}
.y29_c02478{bottom:185.790000px;}
.y28_c02478{bottom:204.690000px;}
.y27_c02478{bottom:223.770000px;}
.y26_c02478{bottom:242.670000px;}
.y25_c02478{bottom:261.570000px;}
.y24_c02478{bottom:280.695000px;}
.y23_c02478{bottom:299.595000px;}
.y22_c02478{bottom:318.675000px;}
.y21_c02478{bottom:363.135000px;}
.y20_c02478{bottom:394.275000px;}
.y1f_c02478{bottom:425.235000px;}
.y1e_c02478{bottom:455.295000px;}
.y1d_c02478{bottom:474.195000px;}
.y1c_c02478{bottom:493.095000px;}
.y1b_c02478{bottom:512.175000px;}
.y1a_c02478{bottom:531.075000px;}
.y19_c02478{bottom:550.185000px;}
.y18_c02478{bottom:569.085000px;}
.y17_c02478{bottom:587.985000px;}
.y16_c02478{bottom:617.685000px;}
.y15_c02478{bottom:648.645000px;}
.y14_c02478{bottom:679.785000px;}
.y13_c02478{bottom:710.745000px;}
.y12_c02478{bottom:741.885000px;}
.y11_c02478{bottom:772.845000px;}
.y10_c02478{bottom:804.030000px;}
.yf_c02478{bottom:834.990000px;}
.ye_c02478{bottom:866.130000px;}
.yd_c02478{bottom:896.010000px;}
.yc_c02478{bottom:914.910000px;}
.yb_c02478{bottom:933.990000px;}
.ya_c02478{bottom:952.890000px;}
.y9_c02478{bottom:971.970000px;}
.y8_c02478{bottom:990.870000px;}
.y7_c02478{bottom:1009.770000px;}
.y6_c02478{bottom:1028.850000px;}
.y5_c02478{bottom:1047.750000px;}
.y4_c02478{bottom:1066.860000px;}
.h2_c02478{height:22.500000px;}
.h1_c02478{height:48.871406px;}
.h5_c02478{height:59.383125px;}
.h3_c02478{height:65.010937px;}
.h4_c02478{height:70.664062px;}
.h0_c02478{height:1188.000000px;}
.w1_c02478{width:66.636000px;}
.w0_c02478{width:918.000000px;}
.x0_c02478{left:0.000000px;}
.x3_c02478{left:16.560000px;}
.x1_c02478{left:127.656000px;}
.x5_c02478{left:180.750000px;}
.x4_c02478{left:244.650000px;}
.x2_c02478{left:820.950000px;}
@media print{
.v0_c02478{vertical-align:0.000000pt;}
.ls0_c02478{letter-spacing:0.000000pt;}
.ws0_c02478{word-spacing:0.000000pt;}
._1_c02478{margin-left:-0.941844pt;}
._2_c02478{width:0.941903pt;}
._3_c02478{width:2.826122pt;}
._0_c02478{width:4.121600pt;}
._4_c02478{width:5.593600pt;}
._5_c02478{width:7.065659pt;}
._c_c02478{width:8.005855pt;}
._8_c02478{width:9.007992pt;}
._7_c02478{width:10.422408pt;}
._6_c02478{width:11.540244pt;}
._d_c02478{width:16.898678pt;}
._9_c02478{width:19.901381pt;}
._a_c02478{width:22.720000pt;}
._b_c02478{width:23.680000pt;}
.fs0_c02478{font-size:58.880000pt;}
.fs1_c02478{font-size:64.000000pt;}
.y0_c02478{bottom:0.000000pt;}
.y3_c02478{bottom:4.160000pt;}
.y2_c02478{bottom:37.152000pt;}
.y1_c02478{bottom:67.072000pt;}
.y2b_c02478{bottom:110.912000pt;}
.y2a_c02478{bottom:138.586667pt;}
.y29_c02478{bottom:165.146667pt;}
.y28_c02478{bottom:181.946667pt;}
.y27_c02478{bottom:198.906667pt;}
.y26_c02478{bottom:215.706667pt;}
.y25_c02478{bottom:232.506667pt;}
.y24_c02478{bottom:249.506667pt;}
.y23_c02478{bottom:266.306667pt;}
.y22_c02478{bottom:283.266667pt;}
.y21_c02478{bottom:322.786667pt;}
.y20_c02478{bottom:350.466667pt;}
.y1f_c02478{bottom:377.986667pt;}
.y1e_c02478{bottom:404.706667pt;}
.y1d_c02478{bottom:421.506667pt;}
.y1c_c02478{bottom:438.306667pt;}
.y1b_c02478{bottom:455.266667pt;}
.y1a_c02478{bottom:472.066667pt;}
.y19_c02478{bottom:489.053333pt;}
.y18_c02478{bottom:505.853333pt;}
.y17_c02478{bottom:522.653333pt;}
.y16_c02478{bottom:549.053333pt;}
.y15_c02478{bottom:576.573333pt;}
.y14_c02478{bottom:604.253333pt;}
.y13_c02478{bottom:631.773333pt;}
.y12_c02478{bottom:659.453333pt;}
.y11_c02478{bottom:686.973333pt;}
.y10_c02478{bottom:714.693333pt;}
.yf_c02478{bottom:742.213333pt;}
.ye_c02478{bottom:769.893333pt;}
.yd_c02478{bottom:796.453333pt;}
.yc_c02478{bottom:813.253333pt;}
.yb_c02478{bottom:830.213333pt;}
.ya_c02478{bottom:847.013333pt;}
.y9_c02478{bottom:863.973333pt;}
.y8_c02478{bottom:880.773333pt;}
.y7_c02478{bottom:897.573333pt;}
.y6_c02478{bottom:914.533333pt;}
.y5_c02478{bottom:931.333333pt;}
.y4_c02478{bottom:948.320000pt;}
.h2_c02478{height:20.000000pt;}
.h1_c02478{height:43.441250pt;}
.h5_c02478{height:52.785000pt;}
.h3_c02478{height:57.787500pt;}
.h4_c02478{height:62.812500pt;}
.h0_c02478{height:1056.000000pt;}
.w1_c02478{width:59.232000pt;}
.w0_c02478{width:816.000000pt;}
.x0_c02478{left:0.000000pt;}
.x3_c02478{left:14.720000pt;}
.x1_c02478{left:113.472000pt;}
.x5_c02478{left:160.666667pt;}
.x4_c02478{left:217.466667pt;}
.x2_c02478{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02479 {
    display:none;
  }
  .loading-indicator_c02479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02479 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02479 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02479" -> "#page-container .classname_c02479")
 */
.pf_c02479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02479 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02479 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02479 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02479 {overflow:visible;}
  }
}
.c_c02479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02479 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02479:after { /* webkit #35443 */
  content: '';
}
.t_c02479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02479 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02479 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02479 { /* info for Javascript */
  display:none;
}
.l_c02479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02479:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02479 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02479.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02479;src:url('chunks/assets/font_f1c39f8623304218d7e22def.woff2')format("woff");}.ff1_c02479{font-family:ff1_c02479;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02479;src:url('chunks/assets/font_dfcb93efea1dd874d5976317.woff2')format("woff");}.ff2_c02479{font-family:ff2_c02479;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:ff3_c02479;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02479{font-family:ff3_c02479;line-height:1.311035;font-style:normal;font-weight: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_c02479;src:url('chunks/assets/font_eaf4af78eb5c48e895a472a5.woff2')format("woff");}.ff4_c02479{font-family:ff4_c02479;line-height:1.112305;font-style:normal;font-weight: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_c02479;src:url('chunks/assets/font_b723ef0a8cd42e73418aaf36.woff2')format("woff");}.ff5_c02479{font-family:ff5_c02479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02479{vertical-align:0.000000px;}
.ls2_c02479{letter-spacing:0.000000px;}
.ls0_c02479{letter-spacing:4.320000px;}
.ls1_c02479{letter-spacing:15.840000px;}
.sc__c02479{text-shadow:none;}
.sc0_c02479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02479{-webkit-text-stroke:0px transparent;}
.sc0_c02479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02479{word-spacing:-18.000000px;}
.ws1_c02479{word-spacing:-16.560000px;}
.ws2_c02479{word-spacing:0.000000px;}
._15_c02479{margin-left:-2.104883px;}
._0_c02479{margin-left:-1.008000px;}
._1_c02479{width:1.008000px;}
._12_c02479{width:2.318400px;}
._2_c02479{width:4.248000px;}
._5_c02479{width:6.094212px;}
._a_c02479{width:7.862201px;}
._8_c02479{width:8.942400px;}
._9_c02479{width:10.224480px;}
._e_c02479{width:11.375520px;}
._c_c02479{width:12.495856px;}
._b_c02479{width:13.711812px;}
._11_c02479{width:15.104575px;}
._10_c02479{width:16.344000px;}
._d_c02479{width:17.747554px;}
._4_c02479{width:18.760188px;}
._7_c02479{width:20.858472px;}
._6_c02479{width:22.006212px;}
._16_c02479{width:23.125870px;}
._f_c02479{width:26.424000px;}
._17_c02479{width:27.798013px;}
._18_c02479{width:28.971245px;}
._13_c02479{width:34.842041px;}
._14_c02479{width:35.866164px;}
._3_c02479{width:38.551812px;}
.fc1_c02479{color:rgb(192,80,77);}
.fc0_c02479{color:rgb(0,0,0);}
.fs0_c02479{font-size:66.240000px;}
.fs1_c02479{font-size:72.000000px;}
.y0_c02479{bottom:0.000000px;}
.y3_c02479{bottom:4.680000px;}
.y2_c02479{bottom:41.796000px;}
.y1_c02479{bottom:75.456000px;}
.y2e_c02479{bottom:136.656000px;}
.y2d_c02479{bottom:155.550000px;}
.y2c_c02479{bottom:174.630000px;}
.y2b_c02479{bottom:193.530000px;}
.y2a_c02479{bottom:212.430000px;}
.y29_c02479{bottom:231.510000px;}
.y28_c02479{bottom:250.410000px;}
.y27_c02479{bottom:269.490000px;}
.y26_c02479{bottom:288.435000px;}
.y25_c02479{bottom:307.335000px;}
.y24_c02479{bottom:326.415000px;}
.y23_c02479{bottom:345.315000px;}
.y22_c02479{bottom:364.395000px;}
.y21_c02479{bottom:383.295000px;}
.y20_c02479{bottom:402.195000px;}
.y1f_c02479{bottom:421.275000px;}
.y1e_c02479{bottom:440.175000px;}
.y1d_c02479{bottom:459.255000px;}
.y1c_c02479{bottom:478.155000px;}
.y1b_c02479{bottom:497.055000px;}
.y1a_c02479{bottom:516.135000px;}
.y19_c02479{bottom:535.065000px;}
.y18_c02479{bottom:564.765000px;}
.y17_c02479{bottom:595.725000px;}
.y16_c02479{bottom:626.865000px;}
.y15_c02479{bottom:657.825000px;}
.y14_c02479{bottom:688.965000px;}
.y13_c02479{bottom:719.925000px;}
.y12_c02479{bottom:751.065000px;}
.y11_c02479{bottom:780.945000px;}
.y10_c02479{bottom:799.890000px;}
.yf_c02479{bottom:818.970000px;}
.ye_c02479{bottom:837.870000px;}
.yd_c02479{bottom:856.770000px;}
.yc_c02479{bottom:875.850000px;}
.yb_c02479{bottom:894.750000px;}
.ya_c02479{bottom:913.830000px;}
.y9_c02479{bottom:932.730000px;}
.y8_c02479{bottom:951.630000px;}
.y7_c02479{bottom:970.710000px;}
.y6_c02479{bottom:989.610000px;}
.y5_c02479{bottom:1034.250000px;}
.y4_c02479{bottom:1065.420000px;}
.h2_c02479{height:22.500000px;}
.h1_c02479{height:48.871406px;}
.h5_c02479{height:59.383125px;}
.h6_c02479{height:65.010937px;}
.h7_c02479{height:66.757500px;}
.h4_c02479{height:70.664062px;}
.h3_c02479{height:72.562500px;}
.h0_c02479{height:1188.000000px;}
.w1_c02479{width:66.636000px;}
.w0_c02479{width:918.000000px;}
.x0_c02479{left:0.000000px;}
.x3_c02479{left:16.560000px;}
.x1_c02479{left:127.656000px;}
.x4_c02479{left:180.750000px;}
.x5_c02479{left:244.650000px;}
.x2_c02479{left:820.950000px;}
@media print{
.v0_c02479{vertical-align:0.000000pt;}
.ls2_c02479{letter-spacing:0.000000pt;}
.ls0_c02479{letter-spacing:3.840000pt;}
.ls1_c02479{letter-spacing:14.080000pt;}
.ws0_c02479{word-spacing:-16.000000pt;}
.ws1_c02479{word-spacing:-14.720000pt;}
.ws2_c02479{word-spacing:0.000000pt;}
._15_c02479{margin-left:-1.871007pt;}
._0_c02479{margin-left:-0.896000pt;}
._1_c02479{width:0.896000pt;}
._12_c02479{width:2.060800pt;}
._2_c02479{width:3.776000pt;}
._5_c02479{width:5.417078pt;}
._a_c02479{width:6.988623pt;}
._8_c02479{width:7.948800pt;}
._9_c02479{width:9.088427pt;}
._e_c02479{width:10.111573pt;}
._c_c02479{width:11.107428pt;}
._b_c02479{width:12.188278pt;}
._11_c02479{width:13.426289pt;}
._10_c02479{width:14.528000pt;}
._d_c02479{width:15.775603pt;}
._4_c02479{width:16.675722pt;}
._7_c02479{width:18.540864pt;}
._6_c02479{width:19.561078pt;}
._16_c02479{width:20.556329pt;}
._f_c02479{width:23.488000pt;}
._17_c02479{width:24.709345pt;}
._18_c02479{width:25.752218pt;}
._13_c02479{width:30.970703pt;}
._14_c02479{width:31.881034pt;}
._3_c02479{width:34.268278pt;}
.fs0_c02479{font-size:58.880000pt;}
.fs1_c02479{font-size:64.000000pt;}
.y0_c02479{bottom:0.000000pt;}
.y3_c02479{bottom:4.160000pt;}
.y2_c02479{bottom:37.152000pt;}
.y1_c02479{bottom:67.072000pt;}
.y2e_c02479{bottom:121.472000pt;}
.y2d_c02479{bottom:138.266667pt;}
.y2c_c02479{bottom:155.226667pt;}
.y2b_c02479{bottom:172.026667pt;}
.y2a_c02479{bottom:188.826667pt;}
.y29_c02479{bottom:205.786667pt;}
.y28_c02479{bottom:222.586667pt;}
.y27_c02479{bottom:239.546667pt;}
.y26_c02479{bottom:256.386667pt;}
.y25_c02479{bottom:273.186667pt;}
.y24_c02479{bottom:290.146667pt;}
.y23_c02479{bottom:306.946667pt;}
.y22_c02479{bottom:323.906667pt;}
.y21_c02479{bottom:340.706667pt;}
.y20_c02479{bottom:357.506667pt;}
.y1f_c02479{bottom:374.466667pt;}
.y1e_c02479{bottom:391.266667pt;}
.y1d_c02479{bottom:408.226667pt;}
.y1c_c02479{bottom:425.026667pt;}
.y1b_c02479{bottom:441.826667pt;}
.y1a_c02479{bottom:458.786667pt;}
.y19_c02479{bottom:475.613333pt;}
.y18_c02479{bottom:502.013333pt;}
.y17_c02479{bottom:529.533333pt;}
.y16_c02479{bottom:557.213333pt;}
.y15_c02479{bottom:584.733333pt;}
.y14_c02479{bottom:612.413333pt;}
.y13_c02479{bottom:639.933333pt;}
.y12_c02479{bottom:667.613333pt;}
.y11_c02479{bottom:694.173333pt;}
.y10_c02479{bottom:711.013333pt;}
.yf_c02479{bottom:727.973333pt;}
.ye_c02479{bottom:744.773333pt;}
.yd_c02479{bottom:761.573333pt;}
.yc_c02479{bottom:778.533333pt;}
.yb_c02479{bottom:795.333333pt;}
.ya_c02479{bottom:812.293333pt;}
.y9_c02479{bottom:829.093333pt;}
.y8_c02479{bottom:845.893333pt;}
.y7_c02479{bottom:862.853333pt;}
.y6_c02479{bottom:879.653333pt;}
.y5_c02479{bottom:919.333333pt;}
.y4_c02479{bottom:947.040000pt;}
.h2_c02479{height:20.000000pt;}
.h1_c02479{height:43.441250pt;}
.h5_c02479{height:52.785000pt;}
.h6_c02479{height:57.787500pt;}
.h7_c02479{height:59.340000pt;}
.h4_c02479{height:62.812500pt;}
.h3_c02479{height:64.500000pt;}
.h0_c02479{height:1056.000000pt;}
.w1_c02479{width:59.232000pt;}
.w0_c02479{width:816.000000pt;}
.x0_c02479{left:0.000000pt;}
.x3_c02479{left:14.720000pt;}
.x1_c02479{left:113.472000pt;}
.x4_c02479{left:160.666667pt;}
.x5_c02479{left:217.466667pt;}
.x2_c02479{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02480 {
    display:none;
  }
  .loading-indicator_c02480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02480 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02480 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02480" -> "#page-container .classname_c02480")
 */
.pf_c02480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02480 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02480 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02480 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02480 {overflow:visible;}
  }
}
.c_c02480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02480 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02480:after { /* webkit #35443 */
  content: '';
}
.t_c02480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02480 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02480 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02480 { /* info for Javascript */
  display:none;
}
.l_c02480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02480:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02480 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02480.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02480;src:url('chunks/assets/font_530b1cae8c4f3da4bbad5272.woff2')format("woff");}.ff1_c02480{font-family:ff1_c02480;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02480;src:url('chunks/assets/font_0c91dd529a40618db7d4a956.woff2')format("woff");}.ff2_c02480{font-family:ff2_c02480;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:ff3_c02480;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02480{font-family:ff3_c02480;line-height:1.311035;font-style:normal;font-weight: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_c02480;src:url('chunks/assets/font_035ecc5362c5638ed9067fa0.woff2')format("woff");}.ff4_c02480{font-family:ff4_c02480;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02480{vertical-align:0.000000px;}
.ls1_c02480{letter-spacing:0.000000px;}
.ls0_c02480{letter-spacing:13.680000px;}
.sc__c02480{text-shadow:none;}
.sc0_c02480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02480{-webkit-text-stroke:0px transparent;}
.sc0_c02480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02480{word-spacing:0.000000px;}
._1_c02480{margin-left:-1.258163px;}
._3_c02480{width:1.125484px;}
._2_c02480{width:2.186516px;}
._0_c02480{width:3.709175px;}
._c_c02480{width:4.968000px;}
._4_c02480{width:6.120000px;}
._5_c02480{width:7.416000px;}
._a_c02480{width:8.784052px;}
._10_c02480{width:10.220550px;}
._b_c02480{width:12.910841px;}
._8_c02480{width:14.112000px;}
._9_c02480{width:15.506516px;}
._f_c02480{width:20.400529px;}
._e_c02480{width:21.660612px;}
._d_c02480{width:23.647150px;}
._6_c02480{width:42.840000px;}
._7_c02480{width:44.117032px;}
.fc1_c02480{color:rgb(192,80,77);}
.fc0_c02480{color:rgb(0,0,0);}
.fs0_c02480{font-size:66.240000px;}
.fs1_c02480{font-size:72.000000px;}
.y0_c02480{bottom:0.000000px;}
.y3_c02480{bottom:4.680000px;}
.y2_c02480{bottom:41.796000px;}
.y1_c02480{bottom:75.456000px;}
.y30_c02480{bottom:113.256000px;}
.y2f_c02480{bottom:132.336000px;}
.y2e_c02480{bottom:151.230000px;}
.y2d_c02480{bottom:170.310000px;}
.y2c_c02480{bottom:189.210000px;}
.y2b_c02480{bottom:208.110000px;}
.y2a_c02480{bottom:227.190000px;}
.y29_c02480{bottom:246.090000px;}
.y28_c02480{bottom:265.170000px;}
.y27_c02480{bottom:284.115000px;}
.y26_c02480{bottom:303.015000px;}
.y25_c02480{bottom:322.095000px;}
.y24_c02480{bottom:340.995000px;}
.y23_c02480{bottom:360.075000px;}
.y22_c02480{bottom:378.975000px;}
.y21_c02480{bottom:397.875000px;}
.y20_c02480{bottom:416.955000px;}
.y1f_c02480{bottom:435.855000px;}
.y1e_c02480{bottom:454.935000px;}
.y1d_c02480{bottom:473.835000px;}
.y1c_c02480{bottom:492.915000px;}
.y1b_c02480{bottom:511.815000px;}
.y1a_c02480{bottom:530.715000px;}
.y19_c02480{bottom:549.825000px;}
.y18_c02480{bottom:568.725000px;}
.y17_c02480{bottom:598.425000px;}
.y16_c02480{bottom:629.385000px;}
.y15_c02480{bottom:660.525000px;}
.y14_c02480{bottom:690.405000px;}
.y13_c02480{bottom:709.305000px;}
.y12_c02480{bottom:728.385000px;}
.y11_c02480{bottom:747.285000px;}
.y10_c02480{bottom:766.185000px;}
.yf_c02480{bottom:785.265000px;}
.ye_c02480{bottom:804.210000px;}
.yd_c02480{bottom:823.290000px;}
.yc_c02480{bottom:842.190000px;}
.yb_c02480{bottom:861.090000px;}
.ya_c02480{bottom:905.730000px;}
.y9_c02480{bottom:936.870000px;}
.y8_c02480{bottom:967.830000px;}
.y7_c02480{bottom:998.970000px;}
.y6_c02480{bottom:1028.850000px;}
.y5_c02480{bottom:1047.750000px;}
.y4_c02480{bottom:1066.860000px;}
.h2_c02480{height:22.500000px;}
.h1_c02480{height:48.871406px;}
.h6_c02480{height:59.383125px;}
.h3_c02480{height:65.010937px;}
.h5_c02480{height:66.757500px;}
.h4_c02480{height:70.664062px;}
.h0_c02480{height:1188.000000px;}
.w1_c02480{width:66.636000px;}
.w0_c02480{width:918.000000px;}
.x0_c02480{left:0.000000px;}
.x3_c02480{left:16.560000px;}
.x1_c02480{left:127.656000px;}
.x5_c02480{left:180.750000px;}
.x4_c02480{left:244.650000px;}
.x2_c02480{left:820.950000px;}
@media print{
.v0_c02480{vertical-align:0.000000pt;}
.ls1_c02480{letter-spacing:0.000000pt;}
.ls0_c02480{letter-spacing:12.160000pt;}
.ws0_c02480{word-spacing:0.000000pt;}
._1_c02480{margin-left:-1.118367pt;}
._3_c02480{width:1.000430pt;}
._2_c02480{width:1.943570pt;}
._0_c02480{width:3.297044pt;}
._c_c02480{width:4.416000pt;}
._4_c02480{width:5.440000pt;}
._5_c02480{width:6.592000pt;}
._a_c02480{width:7.808046pt;}
._10_c02480{width:9.084933pt;}
._b_c02480{width:11.476303pt;}
._8_c02480{width:12.544000pt;}
._9_c02480{width:13.783570pt;}
._f_c02480{width:18.133804pt;}
._e_c02480{width:19.253878pt;}
._d_c02480{width:21.019689pt;}
._6_c02480{width:38.080000pt;}
._7_c02480{width:39.215140pt;}
.fs0_c02480{font-size:58.880000pt;}
.fs1_c02480{font-size:64.000000pt;}
.y0_c02480{bottom:0.000000pt;}
.y3_c02480{bottom:4.160000pt;}
.y2_c02480{bottom:37.152000pt;}
.y1_c02480{bottom:67.072000pt;}
.y30_c02480{bottom:100.672000pt;}
.y2f_c02480{bottom:117.632000pt;}
.y2e_c02480{bottom:134.426667pt;}
.y2d_c02480{bottom:151.386667pt;}
.y2c_c02480{bottom:168.186667pt;}
.y2b_c02480{bottom:184.986667pt;}
.y2a_c02480{bottom:201.946667pt;}
.y29_c02480{bottom:218.746667pt;}
.y28_c02480{bottom:235.706667pt;}
.y27_c02480{bottom:252.546667pt;}
.y26_c02480{bottom:269.346667pt;}
.y25_c02480{bottom:286.306667pt;}
.y24_c02480{bottom:303.106667pt;}
.y23_c02480{bottom:320.066667pt;}
.y22_c02480{bottom:336.866667pt;}
.y21_c02480{bottom:353.666667pt;}
.y20_c02480{bottom:370.626667pt;}
.y1f_c02480{bottom:387.426667pt;}
.y1e_c02480{bottom:404.386667pt;}
.y1d_c02480{bottom:421.186667pt;}
.y1c_c02480{bottom:438.146667pt;}
.y1b_c02480{bottom:454.946667pt;}
.y1a_c02480{bottom:471.746667pt;}
.y19_c02480{bottom:488.733333pt;}
.y18_c02480{bottom:505.533333pt;}
.y17_c02480{bottom:531.933333pt;}
.y16_c02480{bottom:559.453333pt;}
.y15_c02480{bottom:587.133333pt;}
.y14_c02480{bottom:613.693333pt;}
.y13_c02480{bottom:630.493333pt;}
.y12_c02480{bottom:647.453333pt;}
.y11_c02480{bottom:664.253333pt;}
.y10_c02480{bottom:681.053333pt;}
.yf_c02480{bottom:698.013333pt;}
.ye_c02480{bottom:714.853333pt;}
.yd_c02480{bottom:731.813333pt;}
.yc_c02480{bottom:748.613333pt;}
.yb_c02480{bottom:765.413333pt;}
.ya_c02480{bottom:805.093333pt;}
.y9_c02480{bottom:832.773333pt;}
.y8_c02480{bottom:860.293333pt;}
.y7_c02480{bottom:887.973333pt;}
.y6_c02480{bottom:914.533333pt;}
.y5_c02480{bottom:931.333333pt;}
.y4_c02480{bottom:948.320000pt;}
.h2_c02480{height:20.000000pt;}
.h1_c02480{height:43.441250pt;}
.h6_c02480{height:52.785000pt;}
.h3_c02480{height:57.787500pt;}
.h5_c02480{height:59.340000pt;}
.h4_c02480{height:62.812500pt;}
.h0_c02480{height:1056.000000pt;}
.w1_c02480{width:59.232000pt;}
.w0_c02480{width:816.000000pt;}
.x0_c02480{left:0.000000pt;}
.x3_c02480{left:14.720000pt;}
.x1_c02480{left:113.472000pt;}
.x5_c02480{left:160.666667pt;}
.x4_c02480{left:217.466667pt;}
.x2_c02480{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02481 {
    display:none;
  }
  .loading-indicator_c02481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02481 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02481 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02481" -> "#page-container .classname_c02481")
 */
.pf_c02481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02481 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02481 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02481 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02481 {overflow:visible;}
  }
}
.c_c02481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02481 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02481:after { /* webkit #35443 */
  content: '';
}
.t_c02481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02481 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02481 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02481 { /* info for Javascript */
  display:none;
}
.l_c02481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02481:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02481 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02481.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02481;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02481{font-family:ff1_c02481;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02481;src:url('chunks/assets/font_d7d89c07b8120f15bd9f3d32.woff2')format("woff");}.ff2_c02481{font-family:ff2_c02481;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:ff3_c02481;src:url('chunks/assets/font_49ad0a310970df0e4980c699.woff2')format("woff");}.ff3_c02481{font-family:ff3_c02481;line-height:1.112305;font-style:normal;font-weight: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_c02481;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02481{font-family:ff4_c02481;line-height:1.311035;font-style:normal;font-weight: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_c02481;src:url('chunks/assets/font_b632d7439bf7bbfdc4dae276.woff2')format("woff");}.ff5_c02481{font-family:ff5_c02481;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02481{vertical-align:0.000000px;}
.ls0_c02481{letter-spacing:0.000000px;}
.sc__c02481{text-shadow:none;}
.sc0_c02481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02481{-webkit-text-stroke:0px transparent;}
.sc0_c02481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02481{word-spacing:-16.560000px;}
.ws1_c02481{word-spacing:0.000000px;}
._1_c02481{margin-left:-1.589429px;}
._3_c02481{width:1.060039px;}
._9_c02481{width:2.171900px;}
._8_c02481{width:3.178659px;}
._2_c02481{width:4.702908px;}
._0_c02481{width:5.828988px;}
._4_c02481{width:7.021241px;}
._7_c02481{width:8.279470px;}
._5_c02481{width:9.406212px;}
._6_c02481{width:10.663183px;}
._c_c02481{width:12.452988px;}
._a_c02481{width:30.888000px;}
._b_c02481{width:32.131961px;}
.fc1_c02481{color:rgb(192,80,77);}
.fc2_c02481{color:rgb(17,17,17);}
.fc0_c02481{color:rgb(0,0,0);}
.fs0_c02481{font-size:66.240000px;}
.fs1_c02481{font-size:72.000000px;}
.y0_c02481{bottom:0.000000px;}
.y3_c02481{bottom:4.680000px;}
.y2_c02481{bottom:41.796000px;}
.y1_c02481{bottom:75.456000px;}
.y2b_c02481{bottom:169.050000px;}
.y2a_c02481{bottom:200.190000px;}
.y29_c02481{bottom:231.150000px;}
.y28_c02481{bottom:262.290000px;}
.y27_c02481{bottom:293.295000px;}
.y26_c02481{bottom:324.435000px;}
.y25_c02481{bottom:355.395000px;}
.y24_c02481{bottom:386.535000px;}
.y23_c02481{bottom:407.415000px;}
.y22_c02481{bottom:438.195000px;}
.y21_c02481{bottom:458.715000px;}
.y20_c02481{bottom:477.615000px;}
.y1f_c02481{bottom:496.695000px;}
.y1e_c02481{bottom:515.595000px;}
.y1d_c02481{bottom:534.525000px;}
.y1c_c02481{bottom:553.605000px;}
.y1b_c02481{bottom:572.505000px;}
.y1a_c02481{bottom:591.585000px;}
.y19_c02481{bottom:610.485000px;}
.y18_c02481{bottom:629.385000px;}
.y17_c02481{bottom:659.085000px;}
.y16_c02481{bottom:690.045000px;}
.y15_c02481{bottom:721.185000px;}
.y14_c02481{bottom:752.145000px;}
.y13_c02481{bottom:782.025000px;}
.y12_c02481{bottom:801.150000px;}
.y11_c02481{bottom:820.050000px;}
.y10_c02481{bottom:839.130000px;}
.yf_c02481{bottom:858.030000px;}
.ye_c02481{bottom:877.110000px;}
.yd_c02481{bottom:896.010000px;}
.yc_c02481{bottom:914.910000px;}
.yb_c02481{bottom:933.990000px;}
.ya_c02481{bottom:952.890000px;}
.y9_c02481{bottom:971.970000px;}
.y8_c02481{bottom:990.870000px;}
.y7_c02481{bottom:1009.770000px;}
.y6_c02481{bottom:1028.850000px;}
.y5_c02481{bottom:1047.750000px;}
.y4_c02481{bottom:1066.860000px;}
.h2_c02481{height:22.500000px;}
.h1_c02481{height:48.871406px;}
.h5_c02481{height:59.383125px;}
.h8_c02481{height:64.546875px;}
.h3_c02481{height:65.010937px;}
.h6_c02481{height:66.757500px;}
.h4_c02481{height:70.664062px;}
.h7_c02481{height:74.004654px;}
.h0_c02481{height:1188.000000px;}
.w1_c02481{width:66.636000px;}
.w0_c02481{width:918.000000px;}
.x0_c02481{left:0.000000px;}
.x3_c02481{left:16.560000px;}
.x1_c02481{left:127.656000px;}
.x7_c02481{left:131.976000px;}
.x5_c02481{left:180.750000px;}
.x6_c02481{left:187.050000px;}
.x4_c02481{left:244.650000px;}
.x2_c02481{left:820.950000px;}
@media print{
.v0_c02481{vertical-align:0.000000pt;}
.ls0_c02481{letter-spacing:0.000000pt;}
.ws0_c02481{word-spacing:-14.720000pt;}
.ws1_c02481{word-spacing:0.000000pt;}
._1_c02481{margin-left:-1.412826pt;}
._3_c02481{width:0.942257pt;}
._9_c02481{width:1.930578pt;}
._8_c02481{width:2.825475pt;}
._2_c02481{width:4.180362pt;}
._0_c02481{width:5.181322pt;}
._4_c02481{width:6.241103pt;}
._7_c02481{width:7.359529pt;}
._5_c02481{width:8.361078pt;}
._6_c02481{width:9.478385pt;}
._c_c02481{width:11.069322pt;}
._a_c02481{width:27.456000pt;}
._b_c02481{width:28.561743pt;}
.fs0_c02481{font-size:58.880000pt;}
.fs1_c02481{font-size:64.000000pt;}
.y0_c02481{bottom:0.000000pt;}
.y3_c02481{bottom:4.160000pt;}
.y2_c02481{bottom:37.152000pt;}
.y1_c02481{bottom:67.072000pt;}
.y2b_c02481{bottom:150.266667pt;}
.y2a_c02481{bottom:177.946667pt;}
.y29_c02481{bottom:205.466667pt;}
.y28_c02481{bottom:233.146667pt;}
.y27_c02481{bottom:260.706667pt;}
.y26_c02481{bottom:288.386667pt;}
.y25_c02481{bottom:315.906667pt;}
.y24_c02481{bottom:343.586667pt;}
.y23_c02481{bottom:362.146667pt;}
.y22_c02481{bottom:389.506667pt;}
.y21_c02481{bottom:407.746667pt;}
.y20_c02481{bottom:424.546667pt;}
.y1f_c02481{bottom:441.506667pt;}
.y1e_c02481{bottom:458.306667pt;}
.y1d_c02481{bottom:475.133333pt;}
.y1c_c02481{bottom:492.093333pt;}
.y1b_c02481{bottom:508.893333pt;}
.y1a_c02481{bottom:525.853333pt;}
.y19_c02481{bottom:542.653333pt;}
.y18_c02481{bottom:559.453333pt;}
.y17_c02481{bottom:585.853333pt;}
.y16_c02481{bottom:613.373333pt;}
.y15_c02481{bottom:641.053333pt;}
.y14_c02481{bottom:668.573333pt;}
.y13_c02481{bottom:695.133333pt;}
.y12_c02481{bottom:712.133333pt;}
.y11_c02481{bottom:728.933333pt;}
.y10_c02481{bottom:745.893333pt;}
.yf_c02481{bottom:762.693333pt;}
.ye_c02481{bottom:779.653333pt;}
.yd_c02481{bottom:796.453333pt;}
.yc_c02481{bottom:813.253333pt;}
.yb_c02481{bottom:830.213333pt;}
.ya_c02481{bottom:847.013333pt;}
.y9_c02481{bottom:863.973333pt;}
.y8_c02481{bottom:880.773333pt;}
.y7_c02481{bottom:897.573333pt;}
.y6_c02481{bottom:914.533333pt;}
.y5_c02481{bottom:931.333333pt;}
.y4_c02481{bottom:948.320000pt;}
.h2_c02481{height:20.000000pt;}
.h1_c02481{height:43.441250pt;}
.h5_c02481{height:52.785000pt;}
.h8_c02481{height:57.375000pt;}
.h3_c02481{height:57.787500pt;}
.h6_c02481{height:59.340000pt;}
.h4_c02481{height:62.812500pt;}
.h7_c02481{height:65.781915pt;}
.h0_c02481{height:1056.000000pt;}
.w1_c02481{width:59.232000pt;}
.w0_c02481{width:816.000000pt;}
.x0_c02481{left:0.000000pt;}
.x3_c02481{left:14.720000pt;}
.x1_c02481{left:113.472000pt;}
.x7_c02481{left:117.312000pt;}
.x5_c02481{left:160.666667pt;}
.x6_c02481{left:166.266667pt;}
.x4_c02481{left:217.466667pt;}
.x2_c02481{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02482 {
    display:none;
  }
  .loading-indicator_c02482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02482 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02482 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02482" -> "#page-container .classname_c02482")
 */
.pf_c02482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02482 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02482 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02482 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02482 {overflow:visible;}
  }
}
.c_c02482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02482 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02482:after { /* webkit #35443 */
  content: '';
}
.t_c02482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02482 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02482 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02482 { /* info for Javascript */
  display:none;
}
.l_c02482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02482:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02482 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02482.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02482;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02482{font-family:ff1_c02482;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02482;src:url('chunks/assets/font_27a2ebeeb2ec484266f5a14b.woff2')format("woff");}.ff2_c02482{font-family:ff2_c02482;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;}
.m0_c02482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02482{vertical-align:0.000000px;}
.ls0_c02482{letter-spacing:0.000000px;}
.sc__c02482{text-shadow:none;}
.sc0_c02482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02482{-webkit-text-stroke:0px transparent;}
.sc0_c02482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02482{word-spacing:0.000000px;}
._1_c02482{margin-left:-1.080000px;}
._2_c02482{width:1.800000px;}
._3_c02482{width:3.168000px;}
._7_c02482{width:4.173054px;}
._0_c02482{width:5.760000px;}
._b_c02482{width:6.966985px;}
._6_c02482{width:7.977534px;}
._c_c02482{width:9.212789px;}
._9_c02482{width:11.207140px;}
._8_c02482{width:12.283134px;}
._e_c02482{width:14.261429px;}
._d_c02482{width:15.367812px;}
._a_c02482{width:18.017412px;}
._5_c02482{width:24.768000px;}
._4_c02482{width:25.848000px;}
.fc1_c02482{color:rgb(192,80,77);}
.fc0_c02482{color:rgb(0,0,0);}
.fs0_c02482{font-size:66.240000px;}
.fs1_c02482{font-size:72.000000px;}
.y0_c02482{bottom:0.000000px;}
.y3_c02482{bottom:4.680000px;}
.y2_c02482{bottom:41.796000px;}
.y1_c02482{bottom:75.456000px;}
.y2e_c02482{bottom:112.716000px;}
.y2d_c02482{bottom:131.796000px;}
.y2c_c02482{bottom:150.690000px;}
.y2b_c02482{bottom:169.770000px;}
.y2a_c02482{bottom:188.670000px;}
.y29_c02482{bottom:207.570000px;}
.y28_c02482{bottom:226.650000px;}
.y27_c02482{bottom:256.170000px;}
.y26_c02482{bottom:287.355000px;}
.y25_c02482{bottom:318.315000px;}
.y24_c02482{bottom:349.455000px;}
.y23_c02482{bottom:380.415000px;}
.y22_c02482{bottom:411.555000px;}
.y21_c02482{bottom:442.515000px;}
.y20_c02482{bottom:463.035000px;}
.y1f_c02482{bottom:481.935000px;}
.y1e_c02482{bottom:501.015000px;}
.y1d_c02482{bottom:519.915000px;}
.y1c_c02482{bottom:538.845000px;}
.y1b_c02482{bottom:557.925000px;}
.y1a_c02482{bottom:576.825000px;}
.y19_c02482{bottom:595.905000px;}
.y18_c02482{bottom:614.805000px;}
.y17_c02482{bottom:633.705000px;}
.y16_c02482{bottom:652.785000px;}
.y15_c02482{bottom:671.685000px;}
.y14_c02482{bottom:690.765000px;}
.y13_c02482{bottom:709.665000px;}
.y12_c02482{bottom:728.565000px;}
.y11_c02482{bottom:747.645000px;}
.y10_c02482{bottom:766.545000px;}
.yf_c02482{bottom:785.625000px;}
.ye_c02482{bottom:804.570000px;}
.yd_c02482{bottom:823.470000px;}
.yc_c02482{bottom:842.550000px;}
.yb_c02482{bottom:861.450000px;}
.ya_c02482{bottom:880.530000px;}
.y9_c02482{bottom:910.050000px;}
.y8_c02482{bottom:941.190000px;}
.y7_c02482{bottom:972.150000px;}
.y6_c02482{bottom:1003.290000px;}
.y5_c02482{bottom:1034.250000px;}
.y4_c02482{bottom:1065.420000px;}
.h2_c02482{height:22.500000px;}
.h1_c02482{height:48.871406px;}
.h4_c02482{height:65.010937px;}
.h3_c02482{height:70.664062px;}
.h0_c02482{height:1188.000000px;}
.w1_c02482{width:66.636000px;}
.w0_c02482{width:918.000000px;}
.x0_c02482{left:0.000000px;}
.x3_c02482{left:16.560000px;}
.x1_c02482{left:127.656000px;}
.x4_c02482{left:181.650000px;}
.x5_c02482{left:244.650000px;}
.x2_c02482{left:820.950000px;}
@media print{
.v0_c02482{vertical-align:0.000000pt;}
.ls0_c02482{letter-spacing:0.000000pt;}
.ws0_c02482{word-spacing:0.000000pt;}
._1_c02482{margin-left:-0.960000pt;}
._2_c02482{width:1.600000pt;}
._3_c02482{width:2.816000pt;}
._7_c02482{width:3.709381pt;}
._0_c02482{width:5.120000pt;}
._b_c02482{width:6.192876pt;}
._6_c02482{width:7.091141pt;}
._c_c02482{width:8.189146pt;}
._9_c02482{width:9.961902pt;}
._8_c02482{width:10.918341pt;}
._e_c02482{width:12.676826pt;}
._d_c02482{width:13.660278pt;}
._a_c02482{width:16.015478pt;}
._5_c02482{width:22.016000pt;}
._4_c02482{width:22.976000pt;}
.fs0_c02482{font-size:58.880000pt;}
.fs1_c02482{font-size:64.000000pt;}
.y0_c02482{bottom:0.000000pt;}
.y3_c02482{bottom:4.160000pt;}
.y2_c02482{bottom:37.152000pt;}
.y1_c02482{bottom:67.072000pt;}
.y2e_c02482{bottom:100.192000pt;}
.y2d_c02482{bottom:117.152000pt;}
.y2c_c02482{bottom:133.946667pt;}
.y2b_c02482{bottom:150.906667pt;}
.y2a_c02482{bottom:167.706667pt;}
.y29_c02482{bottom:184.506667pt;}
.y28_c02482{bottom:201.466667pt;}
.y27_c02482{bottom:227.706667pt;}
.y26_c02482{bottom:255.426667pt;}
.y25_c02482{bottom:282.946667pt;}
.y24_c02482{bottom:310.626667pt;}
.y23_c02482{bottom:338.146667pt;}
.y22_c02482{bottom:365.826667pt;}
.y21_c02482{bottom:393.346667pt;}
.y20_c02482{bottom:411.586667pt;}
.y1f_c02482{bottom:428.386667pt;}
.y1e_c02482{bottom:445.346667pt;}
.y1d_c02482{bottom:462.146667pt;}
.y1c_c02482{bottom:478.973333pt;}
.y1b_c02482{bottom:495.933333pt;}
.y1a_c02482{bottom:512.733333pt;}
.y19_c02482{bottom:529.693333pt;}
.y18_c02482{bottom:546.493333pt;}
.y17_c02482{bottom:563.293333pt;}
.y16_c02482{bottom:580.253333pt;}
.y15_c02482{bottom:597.053333pt;}
.y14_c02482{bottom:614.013333pt;}
.y13_c02482{bottom:630.813333pt;}
.y12_c02482{bottom:647.613333pt;}
.y11_c02482{bottom:664.573333pt;}
.y10_c02482{bottom:681.373333pt;}
.yf_c02482{bottom:698.333333pt;}
.ye_c02482{bottom:715.173333pt;}
.yd_c02482{bottom:731.973333pt;}
.yc_c02482{bottom:748.933333pt;}
.yb_c02482{bottom:765.733333pt;}
.ya_c02482{bottom:782.693333pt;}
.y9_c02482{bottom:808.933333pt;}
.y8_c02482{bottom:836.613333pt;}
.y7_c02482{bottom:864.133333pt;}
.y6_c02482{bottom:891.813333pt;}
.y5_c02482{bottom:919.333333pt;}
.y4_c02482{bottom:947.040000pt;}
.h2_c02482{height:20.000000pt;}
.h1_c02482{height:43.441250pt;}
.h4_c02482{height:57.787500pt;}
.h3_c02482{height:62.812500pt;}
.h0_c02482{height:1056.000000pt;}
.w1_c02482{width:59.232000pt;}
.w0_c02482{width:816.000000pt;}
.x0_c02482{left:0.000000pt;}
.x3_c02482{left:14.720000pt;}
.x1_c02482{left:113.472000pt;}
.x4_c02482{left:161.466667pt;}
.x5_c02482{left:217.466667pt;}
.x2_c02482{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02483 {
    display:none;
  }
  .loading-indicator_c02483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02483 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02483 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02483" -> "#page-container .classname_c02483")
 */
.pf_c02483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02483 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02483 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02483 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02483 {overflow:visible;}
  }
}
.c_c02483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02483 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02483:after { /* webkit #35443 */
  content: '';
}
.t_c02483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02483 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02483 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02483 { /* info for Javascript */
  display:none;
}
.l_c02483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02483:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02483 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02483.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02483;src:url('chunks/assets/font_538a1ba3c430e7bf7eeb3ed3.woff2')format("woff");}.ff1_c02483{font-family:ff1_c02483;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02483;src:url('chunks/assets/font_51259a5f509351db5cc06d63.woff2')format("woff");}.ff2_c02483{font-family:ff2_c02483;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:ff3_c02483;src:url('chunks/assets/font_4123945cf1f55fc8b4bef71c.woff2')format("woff");}.ff3_c02483{font-family:ff3_c02483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02483{vertical-align:0.000000px;}
.ls0_c02483{letter-spacing:0.000000px;}
.sc__c02483{text-shadow:none;}
.sc0_c02483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02483{-webkit-text-stroke:0px transparent;}
.sc0_c02483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02483{word-spacing:-16.560000px;}
.ws1_c02483{word-spacing:0.000000px;}
._2_c02483{margin-left:-1.126279px;}
._3_c02483{width:1.324138px;}
._6_c02483{width:2.451012px;}
._5_c02483{width:3.643200px;}
._4_c02483{width:5.696441px;}
._b_c02483{width:6.743140px;}
._8_c02483{width:7.749815px;}
._7_c02483{width:8.876425px;}
._e_c02483{width:10.333175px;}
._0_c02483{width:13.248066px;}
._1_c02483{width:14.572800px;}
._f_c02483{width:17.819090px;}
._d_c02483{width:19.368000px;}
._10_c02483{width:22.896000px;}
._c_c02483{width:25.166500px;}
._a_c02483{width:26.296750px;}
._9_c02483{width:27.423625px;}
.fc1_c02483{color:rgb(192,80,77);}
.fc0_c02483{color:rgb(0,0,0);}
.fs0_c02483{font-size:66.240000px;}
.fs1_c02483{font-size:72.000000px;}
.y0_c02483{bottom:0.000000px;}
.y3_c02483{bottom:4.680000px;}
.y2_c02483{bottom:41.796000px;}
.y1_c02483{bottom:75.456000px;}
.y2b_c02483{bottom:144.216000px;}
.y2a_c02483{bottom:175.170000px;}
.y29_c02483{bottom:206.130000px;}
.y28_c02483{bottom:237.270000px;}
.y27_c02483{bottom:268.230000px;}
.y26_c02483{bottom:299.415000px;}
.y25_c02483{bottom:330.375000px;}
.y24_c02483{bottom:350.895000px;}
.y23_c02483{bottom:369.795000px;}
.y22_c02483{bottom:388.875000px;}
.y21_c02483{bottom:407.775000px;}
.y20_c02483{bottom:426.675000px;}
.y1f_c02483{bottom:445.755000px;}
.y1e_c02483{bottom:464.655000px;}
.y1d_c02483{bottom:483.735000px;}
.y1c_c02483{bottom:502.635000px;}
.y1b_c02483{bottom:521.715000px;}
.y1a_c02483{bottom:540.645000px;}
.y19_c02483{bottom:559.545000px;}
.y18_c02483{bottom:578.625000px;}
.y17_c02483{bottom:597.525000px;}
.y16_c02483{bottom:627.225000px;}
.y15_c02483{bottom:658.185000px;}
.y14_c02483{bottom:689.325000px;}
.y13_c02483{bottom:720.285000px;}
.y12_c02483{bottom:751.425000px;}
.y11_c02483{bottom:782.385000px;}
.y10_c02483{bottom:813.570000px;}
.yf_c02483{bottom:844.530000px;}
.ye_c02483{bottom:875.670000px;}
.yd_c02483{bottom:896.010000px;}
.yc_c02483{bottom:914.910000px;}
.yb_c02483{bottom:933.990000px;}
.ya_c02483{bottom:952.890000px;}
.y9_c02483{bottom:971.970000px;}
.y8_c02483{bottom:990.870000px;}
.y7_c02483{bottom:1009.770000px;}
.y6_c02483{bottom:1028.850000px;}
.y5_c02483{bottom:1047.750000px;}
.y4_c02483{bottom:1066.860000px;}
.h2_c02483{height:22.500000px;}
.h1_c02483{height:48.871406px;}
.h3_c02483{height:65.010937px;}
.h4_c02483{height:70.664062px;}
.h0_c02483{height:1188.000000px;}
.w1_c02483{width:66.636000px;}
.w0_c02483{width:918.000000px;}
.x0_c02483{left:0.000000px;}
.x3_c02483{left:16.560000px;}
.x1_c02483{left:127.656000px;}
.x5_c02483{left:180.750000px;}
.x4_c02483{left:244.650000px;}
.x2_c02483{left:820.950000px;}
@media print{
.v0_c02483{vertical-align:0.000000pt;}
.ls0_c02483{letter-spacing:0.000000pt;}
.ws0_c02483{word-spacing:-14.720000pt;}
.ws1_c02483{word-spacing:0.000000pt;}
._2_c02483{margin-left:-1.001137pt;}
._3_c02483{width:1.177011pt;}
._6_c02483{width:2.178678pt;}
._5_c02483{width:3.238400pt;}
._4_c02483{width:5.063503pt;}
._b_c02483{width:5.993902pt;}
._8_c02483{width:6.888724pt;}
._7_c02483{width:7.890156pt;}
._e_c02483{width:9.185044pt;}
._0_c02483{width:11.776059pt;}
._1_c02483{width:12.953600pt;}
._f_c02483{width:15.839191pt;}
._d_c02483{width:17.216000pt;}
._10_c02483{width:20.352000pt;}
._c_c02483{width:22.370222pt;}
._a_c02483{width:23.374889pt;}
._9_c02483{width:24.376556pt;}
.fs0_c02483{font-size:58.880000pt;}
.fs1_c02483{font-size:64.000000pt;}
.y0_c02483{bottom:0.000000pt;}
.y3_c02483{bottom:4.160000pt;}
.y2_c02483{bottom:37.152000pt;}
.y1_c02483{bottom:67.072000pt;}
.y2b_c02483{bottom:128.192000pt;}
.y2a_c02483{bottom:155.706667pt;}
.y29_c02483{bottom:183.226667pt;}
.y28_c02483{bottom:210.906667pt;}
.y27_c02483{bottom:238.426667pt;}
.y26_c02483{bottom:266.146667pt;}
.y25_c02483{bottom:293.666667pt;}
.y24_c02483{bottom:311.906667pt;}
.y23_c02483{bottom:328.706667pt;}
.y22_c02483{bottom:345.666667pt;}
.y21_c02483{bottom:362.466667pt;}
.y20_c02483{bottom:379.266667pt;}
.y1f_c02483{bottom:396.226667pt;}
.y1e_c02483{bottom:413.026667pt;}
.y1d_c02483{bottom:429.986667pt;}
.y1c_c02483{bottom:446.786667pt;}
.y1b_c02483{bottom:463.746667pt;}
.y1a_c02483{bottom:480.573333pt;}
.y19_c02483{bottom:497.373333pt;}
.y18_c02483{bottom:514.333333pt;}
.y17_c02483{bottom:531.133333pt;}
.y16_c02483{bottom:557.533333pt;}
.y15_c02483{bottom:585.053333pt;}
.y14_c02483{bottom:612.733333pt;}
.y13_c02483{bottom:640.253333pt;}
.y12_c02483{bottom:667.933333pt;}
.y11_c02483{bottom:695.453333pt;}
.y10_c02483{bottom:723.173333pt;}
.yf_c02483{bottom:750.693333pt;}
.ye_c02483{bottom:778.373333pt;}
.yd_c02483{bottom:796.453333pt;}
.yc_c02483{bottom:813.253333pt;}
.yb_c02483{bottom:830.213333pt;}
.ya_c02483{bottom:847.013333pt;}
.y9_c02483{bottom:863.973333pt;}
.y8_c02483{bottom:880.773333pt;}
.y7_c02483{bottom:897.573333pt;}
.y6_c02483{bottom:914.533333pt;}
.y5_c02483{bottom:931.333333pt;}
.y4_c02483{bottom:948.320000pt;}
.h2_c02483{height:20.000000pt;}
.h1_c02483{height:43.441250pt;}
.h3_c02483{height:57.787500pt;}
.h4_c02483{height:62.812500pt;}
.h0_c02483{height:1056.000000pt;}
.w1_c02483{width:59.232000pt;}
.w0_c02483{width:816.000000pt;}
.x0_c02483{left:0.000000pt;}
.x3_c02483{left:14.720000pt;}
.x1_c02483{left:113.472000pt;}
.x5_c02483{left:160.666667pt;}
.x4_c02483{left:217.466667pt;}
.x2_c02483{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02484 {
    display:none;
  }
  .loading-indicator_c02484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02484 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02484 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02484" -> "#page-container .classname_c02484")
 */
.pf_c02484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02484 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02484 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02484 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02484 {overflow:visible;}
  }
}
.c_c02484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02484 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02484:after { /* webkit #35443 */
  content: '';
}
.t_c02484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02484 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02484 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02484 { /* info for Javascript */
  display:none;
}
.l_c02484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02484:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02484 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02484.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02484;src:url('chunks/assets/font_48dc4d9840460d103ea74434.woff2')format("woff");}.ff1_c02484{font-family:ff1_c02484;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02484;src:url('chunks/assets/font_310082da605de86d6d814d99.woff2')format("woff");}.ff2_c02484{font-family:ff2_c02484;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:ff3_c02484;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02484{font-family:ff3_c02484;line-height:1.311035;font-style:normal;font-weight: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_c02484;src:url('chunks/assets/font_9ef2ed0b940338c634a4fe6a.woff2')format("woff");}.ff4_c02484{font-family:ff4_c02484;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02484{vertical-align:0.000000px;}
.ls1_c02484{letter-spacing:0.000000px;}
.ls2_c02484{letter-spacing:0.305400px;}
.ls0_c02484{letter-spacing:19.440000px;}
.sc__c02484{text-shadow:none;}
.sc0_c02484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02484{-webkit-text-stroke:0px transparent;}
.sc0_c02484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02484{word-spacing:-16.865400px;}
.ws1_c02484{word-spacing:0.000000px;}
._1_c02484{margin-left:-1.325264px;}
._0_c02484{width:1.921159px;}
._8_c02484{width:3.908955px;}
._d_c02484{width:5.299200px;}
._10_c02484{width:6.491388px;}
._a_c02484{width:8.611200px;}
._c_c02484{width:9.737744px;}
._b_c02484{width:10.744194px;}
._13_c02484{width:11.750380px;}
._f_c02484{width:13.314637px;}
._e_c02484{width:14.440188px;}
._12_c02484{width:15.687625px;}
._9_c02484{width:18.547266px;}
._4_c02484{width:19.795824px;}
._5_c02484{width:20.829433px;}
._15_c02484{width:25.172326px;}
._6_c02484{width:26.230775px;}
._7_c02484{width:27.292139px;}
._16_c02484{width:28.414443px;}
._14_c02484{width:32.457600px;}
._11_c02484{width:35.014643px;}
._3_c02484{width:36.697357px;}
._2_c02484{width:37.955917px;}
.fc1_c02484{color:rgb(192,80,77);}
.fc0_c02484{color:rgb(0,0,0);}
.fs0_c02484{font-size:66.240000px;}
.fs1_c02484{font-size:72.000000px;}
.y0_c02484{bottom:0.000000px;}
.y3_c02484{bottom:4.680000px;}
.y2_c02484{bottom:41.796000px;}
.y1_c02484{bottom:75.456000px;}
.y32_c02484{bottom:121.356000px;}
.y31_c02484{bottom:140.436000px;}
.y30_c02484{bottom:159.330000px;}
.y2f_c02484{bottom:178.410000px;}
.y2e_c02484{bottom:197.310000px;}
.y2d_c02484{bottom:216.210000px;}
.y2c_c02484{bottom:235.290000px;}
.y2b_c02484{bottom:254.190000px;}
.y2a_c02484{bottom:273.315000px;}
.y29_c02484{bottom:292.215000px;}
.y28_c02484{bottom:311.115000px;}
.y27_c02484{bottom:330.195000px;}
.y26_c02484{bottom:349.095000px;}
.y25_c02484{bottom:368.175000px;}
.y24_c02484{bottom:387.075000px;}
.y23_c02484{bottom:405.975000px;}
.y22_c02484{bottom:425.055000px;}
.y21_c02484{bottom:443.955000px;}
.y20_c02484{bottom:463.035000px;}
.y1f_c02484{bottom:481.935000px;}
.y1e_c02484{bottom:501.015000px;}
.y1d_c02484{bottom:519.915000px;}
.y1c_c02484{bottom:538.845000px;}
.y1b_c02484{bottom:568.545000px;}
.y1a_c02484{bottom:599.505000px;}
.y19_c02484{bottom:630.645000px;}
.y18_c02484{bottom:661.605000px;}
.y17_c02484{bottom:692.745000px;}
.y16_c02484{bottom:723.705000px;}
.y15_c02484{bottom:744.225000px;}
.y14_c02484{bottom:763.125000px;}
.y13_c02484{bottom:782.025000px;}
.y12_c02484{bottom:801.150000px;}
.y11_c02484{bottom:820.050000px;}
.y10_c02484{bottom:839.130000px;}
.yf_c02484{bottom:858.030000px;}
.ye_c02484{bottom:877.110000px;}
.yd_c02484{bottom:896.010000px;}
.yc_c02484{bottom:914.910000px;}
.yb_c02484{bottom:933.990000px;}
.ya_c02484{bottom:952.890000px;}
.y9_c02484{bottom:971.970000px;}
.y8_c02484{bottom:990.870000px;}
.y7_c02484{bottom:1009.770000px;}
.y6_c02484{bottom:1028.850000px;}
.y5_c02484{bottom:1047.750000px;}
.y4_c02484{bottom:1066.860000px;}
.h2_c02484{height:22.500000px;}
.h1_c02484{height:48.871406px;}
.h6_c02484{height:59.383125px;}
.h3_c02484{height:65.010937px;}
.h4_c02484{height:66.757500px;}
.h5_c02484{height:70.664062px;}
.h0_c02484{height:1188.000000px;}
.w1_c02484{width:66.636000px;}
.w0_c02484{width:918.000000px;}
.x0_c02484{left:0.000000px;}
.x3_c02484{left:16.560000px;}
.x1_c02484{left:127.656000px;}
.x5_c02484{left:180.750000px;}
.x4_c02484{left:244.650000px;}
.x2_c02484{left:820.950000px;}
@media print{
.v0_c02484{vertical-align:0.000000pt;}
.ls1_c02484{letter-spacing:0.000000pt;}
.ls2_c02484{letter-spacing:0.271467pt;}
.ls0_c02484{letter-spacing:17.280000pt;}
.ws0_c02484{word-spacing:-14.991467pt;}
.ws1_c02484{word-spacing:0.000000pt;}
._1_c02484{margin-left:-1.178012pt;}
._0_c02484{width:1.707697pt;}
._8_c02484{width:3.474627pt;}
._d_c02484{width:4.710400pt;}
._10_c02484{width:5.770122pt;}
._a_c02484{width:7.654400pt;}
._c_c02484{width:8.655772pt;}
._b_c02484{width:9.550395pt;}
._13_c02484{width:10.444782pt;}
._f_c02484{width:11.835233pt;}
._e_c02484{width:12.835722pt;}
._12_c02484{width:13.944556pt;}
._9_c02484{width:16.486459pt;}
._4_c02484{width:17.596288pt;}
._5_c02484{width:18.515052pt;}
._15_c02484{width:22.375401pt;}
._6_c02484{width:23.316244pt;}
._7_c02484{width:24.259679pt;}
._16_c02484{width:25.257283pt;}
._14_c02484{width:28.851200pt;}
._11_c02484{width:31.124127pt;}
._3_c02484{width:32.619873pt;}
._2_c02484{width:33.738593pt;}
.fs0_c02484{font-size:58.880000pt;}
.fs1_c02484{font-size:64.000000pt;}
.y0_c02484{bottom:0.000000pt;}
.y3_c02484{bottom:4.160000pt;}
.y2_c02484{bottom:37.152000pt;}
.y1_c02484{bottom:67.072000pt;}
.y32_c02484{bottom:107.872000pt;}
.y31_c02484{bottom:124.832000pt;}
.y30_c02484{bottom:141.626667pt;}
.y2f_c02484{bottom:158.586667pt;}
.y2e_c02484{bottom:175.386667pt;}
.y2d_c02484{bottom:192.186667pt;}
.y2c_c02484{bottom:209.146667pt;}
.y2b_c02484{bottom:225.946667pt;}
.y2a_c02484{bottom:242.946667pt;}
.y29_c02484{bottom:259.746667pt;}
.y28_c02484{bottom:276.546667pt;}
.y27_c02484{bottom:293.506667pt;}
.y26_c02484{bottom:310.306667pt;}
.y25_c02484{bottom:327.266667pt;}
.y24_c02484{bottom:344.066667pt;}
.y23_c02484{bottom:360.866667pt;}
.y22_c02484{bottom:377.826667pt;}
.y21_c02484{bottom:394.626667pt;}
.y20_c02484{bottom:411.586667pt;}
.y1f_c02484{bottom:428.386667pt;}
.y1e_c02484{bottom:445.346667pt;}
.y1d_c02484{bottom:462.146667pt;}
.y1c_c02484{bottom:478.973333pt;}
.y1b_c02484{bottom:505.373333pt;}
.y1a_c02484{bottom:532.893333pt;}
.y19_c02484{bottom:560.573333pt;}
.y18_c02484{bottom:588.093333pt;}
.y17_c02484{bottom:615.773333pt;}
.y16_c02484{bottom:643.293333pt;}
.y15_c02484{bottom:661.533333pt;}
.y14_c02484{bottom:678.333333pt;}
.y13_c02484{bottom:695.133333pt;}
.y12_c02484{bottom:712.133333pt;}
.y11_c02484{bottom:728.933333pt;}
.y10_c02484{bottom:745.893333pt;}
.yf_c02484{bottom:762.693333pt;}
.ye_c02484{bottom:779.653333pt;}
.yd_c02484{bottom:796.453333pt;}
.yc_c02484{bottom:813.253333pt;}
.yb_c02484{bottom:830.213333pt;}
.ya_c02484{bottom:847.013333pt;}
.y9_c02484{bottom:863.973333pt;}
.y8_c02484{bottom:880.773333pt;}
.y7_c02484{bottom:897.573333pt;}
.y6_c02484{bottom:914.533333pt;}
.y5_c02484{bottom:931.333333pt;}
.y4_c02484{bottom:948.320000pt;}
.h2_c02484{height:20.000000pt;}
.h1_c02484{height:43.441250pt;}
.h6_c02484{height:52.785000pt;}
.h3_c02484{height:57.787500pt;}
.h4_c02484{height:59.340000pt;}
.h5_c02484{height:62.812500pt;}
.h0_c02484{height:1056.000000pt;}
.w1_c02484{width:59.232000pt;}
.w0_c02484{width:816.000000pt;}
.x0_c02484{left:0.000000pt;}
.x3_c02484{left:14.720000pt;}
.x1_c02484{left:113.472000pt;}
.x5_c02484{left:160.666667pt;}
.x4_c02484{left:217.466667pt;}
.x2_c02484{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02485 {
    display:none;
  }
  .loading-indicator_c02485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02485 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02485 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02485" -> "#page-container .classname_c02485")
 */
.pf_c02485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02485 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02485 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02485 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02485 {overflow:visible;}
  }
}
.c_c02485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02485 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02485:after { /* webkit #35443 */
  content: '';
}
.t_c02485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02485 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02485 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02485 { /* info for Javascript */
  display:none;
}
.l_c02485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02485:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02485 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02485.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02485;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02485{font-family:ff1_c02485;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02485;src:url('chunks/assets/font_fd291530ff9656b49741e5b5.woff2')format("woff");}.ff2_c02485{font-family:ff2_c02485;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:ff3_c02485;src:url('chunks/assets/font_2449bb2678e9e7c53cf6cf7c.woff2')format("woff");}.ff3_c02485{font-family:ff3_c02485;line-height:0.783691;font-style:normal;font-weight: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_c02485;src:url('chunks/assets/font_fa32293c5631dd1ce1a88aa2.woff2')format("woff");}.ff4_c02485{font-family:ff4_c02485;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02485{vertical-align:0.000000px;}
.ls2_c02485{letter-spacing:0.000000px;}
.ls0_c02485{letter-spacing:0.288000px;}
.ls1_c02485{letter-spacing:23.904000px;}
.sc__c02485{text-shadow:none;}
.sc0_c02485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02485{-webkit-text-stroke:0px transparent;}
.sc0_c02485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02485{word-spacing:0.000000px;}
._8_c02485{margin-left:-2.124000px;}
._0_c02485{margin-left:-1.008000px;}
._3_c02485{width:1.920024px;}
._4_c02485{width:4.032000px;}
._5_c02485{width:5.135976px;}
._9_c02485{width:6.480000px;}
._a_c02485{width:8.136000px;}
._e_c02485{width:9.205986px;}
._f_c02485{width:14.904066px;}
._6_c02485{width:24.408000px;}
._7_c02485{width:25.488000px;}
._2_c02485{width:27.288000px;}
._1_c02485{width:28.512000px;}
._b_c02485{width:33.192000px;}
._c_c02485{width:34.200000px;}
._d_c02485{width:35.483976px;}
.fc1_c02485{color:rgb(192,80,77);}
.fc0_c02485{color:rgb(0,0,0);}
.fs0_c02485{font-size:66.240000px;}
.fs1_c02485{font-size:72.000000px;}
.y0_c02485{bottom:0.000000px;}
.y3_c02485{bottom:4.680000px;}
.y2_c02485{bottom:41.796000px;}
.y1_c02485{bottom:75.456000px;}
.y25_c02485{bottom:119.736000px;}
.y24_c02485{bottom:138.636000px;}
.y23_c02485{bottom:157.710000px;}
.y22_c02485{bottom:176.610000px;}
.y21_c02485{bottom:195.690000px;}
.y20_c02485{bottom:214.590000px;}
.y1f_c02485{bottom:233.490000px;}
.y1e_c02485{bottom:252.570000px;}
.y1d_c02485{bottom:271.515000px;}
.y1c_c02485{bottom:301.215000px;}
.y1b_c02485{bottom:332.175000px;}
.y1a_c02485{bottom:363.315000px;}
.y19_c02485{bottom:394.275000px;}
.y18_c02485{bottom:425.415000px;}
.y17_c02485{bottom:456.375000px;}
.y16_c02485{bottom:487.515000px;}
.y15_c02485{bottom:518.475000px;}
.y14_c02485{bottom:549.645000px;}
.y13_c02485{bottom:588.345000px;}
.y12_c02485{bottom:619.485000px;}
.y11_c02485{bottom:658.185000px;}
.y10_c02485{bottom:689.325000px;}
.yf_c02485{bottom:728.025000px;}
.ye_c02485{bottom:759.165000px;}
.yd_c02485{bottom:797.910000px;}
.yc_c02485{bottom:829.050000px;}
.yb_c02485{bottom:860.010000px;}
.ya_c02485{bottom:891.150000px;}
.y9_c02485{bottom:922.110000px;}
.y8_c02485{bottom:953.250000px;}
.y7_c02485{bottom:984.210000px;}
.y6_c02485{bottom:1015.350000px;}
.y5_c02485{bottom:1046.310000px;}
.y4_c02485{bottom:1066.860000px;}
.h2_c02485{height:22.500000px;}
.h1_c02485{height:48.871406px;}
.h3_c02485{height:65.010937px;}
.h4_c02485{height:70.664062px;}
.h5_c02485{height:74.004654px;}
.h0_c02485{height:1188.000000px;}
.w1_c02485{width:66.636000px;}
.w0_c02485{width:918.000000px;}
.x0_c02485{left:0.000000px;}
.x3_c02485{left:16.560000px;}
.x1_c02485{left:127.656000px;}
.x5_c02485{left:180.750000px;}
.x6_c02485{left:208.650000px;}
.x7_c02485{left:235.650000px;}
.x4_c02485{left:244.650000px;}
.x2_c02485{left:820.950000px;}
@media print{
.v0_c02485{vertical-align:0.000000pt;}
.ls2_c02485{letter-spacing:0.000000pt;}
.ls0_c02485{letter-spacing:0.256000pt;}
.ls1_c02485{letter-spacing:21.248000pt;}
.ws0_c02485{word-spacing:0.000000pt;}
._8_c02485{margin-left:-1.888000pt;}
._0_c02485{margin-left:-0.896000pt;}
._3_c02485{width:1.706688pt;}
._4_c02485{width:3.584000pt;}
._5_c02485{width:4.565312pt;}
._9_c02485{width:5.760000pt;}
._a_c02485{width:7.232000pt;}
._e_c02485{width:8.183099pt;}
._f_c02485{width:13.248059pt;}
._6_c02485{width:21.696000pt;}
._7_c02485{width:22.656000pt;}
._2_c02485{width:24.256000pt;}
._1_c02485{width:25.344000pt;}
._b_c02485{width:29.504000pt;}
._c_c02485{width:30.400000pt;}
._d_c02485{width:31.541312pt;}
.fs0_c02485{font-size:58.880000pt;}
.fs1_c02485{font-size:64.000000pt;}
.y0_c02485{bottom:0.000000pt;}
.y3_c02485{bottom:4.160000pt;}
.y2_c02485{bottom:37.152000pt;}
.y1_c02485{bottom:67.072000pt;}
.y25_c02485{bottom:106.432000pt;}
.y24_c02485{bottom:123.232000pt;}
.y23_c02485{bottom:140.186667pt;}
.y22_c02485{bottom:156.986667pt;}
.y21_c02485{bottom:173.946667pt;}
.y20_c02485{bottom:190.746667pt;}
.y1f_c02485{bottom:207.546667pt;}
.y1e_c02485{bottom:224.506667pt;}
.y1d_c02485{bottom:241.346667pt;}
.y1c_c02485{bottom:267.746667pt;}
.y1b_c02485{bottom:295.266667pt;}
.y1a_c02485{bottom:322.946667pt;}
.y19_c02485{bottom:350.466667pt;}
.y18_c02485{bottom:378.146667pt;}
.y17_c02485{bottom:405.666667pt;}
.y16_c02485{bottom:433.346667pt;}
.y15_c02485{bottom:460.866667pt;}
.y14_c02485{bottom:488.573333pt;}
.y13_c02485{bottom:522.973333pt;}
.y12_c02485{bottom:550.653333pt;}
.y11_c02485{bottom:585.053333pt;}
.y10_c02485{bottom:612.733333pt;}
.yf_c02485{bottom:647.133333pt;}
.ye_c02485{bottom:674.813333pt;}
.yd_c02485{bottom:709.253333pt;}
.yc_c02485{bottom:736.933333pt;}
.yb_c02485{bottom:764.453333pt;}
.ya_c02485{bottom:792.133333pt;}
.y9_c02485{bottom:819.653333pt;}
.y8_c02485{bottom:847.333333pt;}
.y7_c02485{bottom:874.853333pt;}
.y6_c02485{bottom:902.533333pt;}
.y5_c02485{bottom:930.053333pt;}
.y4_c02485{bottom:948.320000pt;}
.h2_c02485{height:20.000000pt;}
.h1_c02485{height:43.441250pt;}
.h3_c02485{height:57.787500pt;}
.h4_c02485{height:62.812500pt;}
.h5_c02485{height:65.781915pt;}
.h0_c02485{height:1056.000000pt;}
.w1_c02485{width:59.232000pt;}
.w0_c02485{width:816.000000pt;}
.x0_c02485{left:0.000000pt;}
.x3_c02485{left:14.720000pt;}
.x1_c02485{left:113.472000pt;}
.x5_c02485{left:160.666667pt;}
.x6_c02485{left:185.466667pt;}
.x7_c02485{left:209.466667pt;}
.x4_c02485{left:217.466667pt;}
.x2_c02485{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02486 {
    display:none;
  }
  .loading-indicator_c02486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02486 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02486 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02486" -> "#page-container .classname_c02486")
 */
.pf_c02486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02486 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02486 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02486 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02486 {overflow:visible;}
  }
}
.c_c02486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02486 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02486:after { /* webkit #35443 */
  content: '';
}
.t_c02486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02486 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02486 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02486 { /* info for Javascript */
  display:none;
}
.l_c02486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02486:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02486 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02486.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02486;src:url('chunks/assets/font_4551dd4e2f00730f24905c39.woff2')format("woff");}.ff1_c02486{font-family:ff1_c02486;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02486;src:url('chunks/assets/font_3272e26b13bf12909e9709e5.woff2')format("woff");}.ff2_c02486{font-family:ff2_c02486;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:ff3_c02486;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c02486{font-family:ff3_c02486;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02486{vertical-align:-127.620000px;}
.v0_c02486{vertical-align:0.000000px;}
.ls0_c02486{letter-spacing:0.000000px;}
.sc__c02486{text-shadow:none;}
.sc0_c02486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02486{-webkit-text-stroke:0px transparent;}
.sc0_c02486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02486{word-spacing:0.000000px;}
._1_c02486{margin-left:-2.119945px;}
._3_c02486{margin-left:-1.058250px;}
._2_c02486{width:1.060171px;}
._0_c02486{width:2.318466px;}
._4_c02486{width:4.176000px;}
._9_c02486{width:5.362825px;}
._8_c02486{width:13.519716px;}
._7_c02486{width:15.034625px;}
._5_c02486{width:20.304000px;}
._6_c02486{width:21.672000px;}
._a_c02486{width:444.977130px;}
.fc1_c02486{color:rgb(192,80,77);}
.fc0_c02486{color:rgb(0,0,0);}
.fs0_c02486{font-size:66.240000px;}
.fs1_c02486{font-size:72.000000px;}
.fs3_c02486{font-size:95.760000px;}
.fs2_c02486{font-size:120.240000px;}
.y0_c02486{bottom:0.000000px;}
.y3_c02486{bottom:4.680000px;}
.y2_c02486{bottom:41.796000px;}
.y1_c02486{bottom:75.456000px;}
.y1f_c02486{bottom:140.436000px;}
.y1e_c02486{bottom:176.970000px;}
.y1d_c02486{bottom:213.690000px;}
.y1c_c02486{bottom:250.230000px;}
.y1b_c02486{bottom:286.815000px;}
.y1a_c02486{bottom:323.535000px;}
.y19_c02486{bottom:360.075000px;}
.y18_c02486{bottom:396.615000px;}
.y17_c02486{bottom:433.335000px;}
.y16_c02486{bottom:469.875000px;}
.y15_c02486{bottom:506.415000px;}
.y14_c02486{bottom:542.985000px;}
.y13_c02486{bottom:579.705000px;}
.y12_c02486{bottom:616.245000px;}
.y11_c02486{bottom:654.225000px;}
.y10_c02486{bottom:697.605000px;}
.yf_c02486{bottom:741.165000px;}
.ye_c02486{bottom:816.630000px;}
.yd_c02486{bottom:835.710000px;}
.yc_c02486{bottom:854.610000px;}
.yb_c02486{bottom:873.510000px;}
.ya_c02486{bottom:903.210000px;}
.y9_c02486{bottom:934.170000px;}
.y8_c02486{bottom:965.310000px;}
.y7_c02486{bottom:996.270000px;}
.y6_c02486{bottom:1027.410000px;}
.y5_c02486{bottom:1047.750000px;}
.y4_c02486{bottom:1066.860000px;}
.h2_c02486{height:22.500000px;}
.h1_c02486{height:48.871406px;}
.h3_c02486{height:65.010937px;}
.h4_c02486{height:70.664062px;}
.h6_c02486{height:96.508125px;}
.h5_c02486{height:121.179375px;}
.h0_c02486{height:1188.000000px;}
.w1_c02486{width:66.636000px;}
.w0_c02486{width:918.000000px;}
.x0_c02486{left:0.000000px;}
.x3_c02486{left:16.560000px;}
.x1_c02486{left:127.656000px;}
.x5_c02486{left:180.750000px;}
.x4_c02486{left:244.650000px;}
.x6_c02486{left:469.695000px;}
.x2_c02486{left:820.950000px;}
@media print{
.v1_c02486{vertical-align:-113.440000pt;}
.v0_c02486{vertical-align:0.000000pt;}
.ls0_c02486{letter-spacing:0.000000pt;}
.ws0_c02486{word-spacing:0.000000pt;}
._1_c02486{margin-left:-1.884396pt;}
._3_c02486{margin-left:-0.940667pt;}
._2_c02486{width:0.942374pt;}
._0_c02486{width:2.060859pt;}
._4_c02486{width:3.712000pt;}
._9_c02486{width:4.766956pt;}
._8_c02486{width:12.017526pt;}
._7_c02486{width:13.364111pt;}
._5_c02486{width:18.048000pt;}
._6_c02486{width:19.264000pt;}
._a_c02486{width:395.535227pt;}
.fs0_c02486{font-size:58.880000pt;}
.fs1_c02486{font-size:64.000000pt;}
.fs3_c02486{font-size:85.120000pt;}
.fs2_c02486{font-size:106.880000pt;}
.y0_c02486{bottom:0.000000pt;}
.y3_c02486{bottom:4.160000pt;}
.y2_c02486{bottom:37.152000pt;}
.y1_c02486{bottom:67.072000pt;}
.y1f_c02486{bottom:124.832000pt;}
.y1e_c02486{bottom:157.306667pt;}
.y1d_c02486{bottom:189.946667pt;}
.y1c_c02486{bottom:222.426667pt;}
.y1b_c02486{bottom:254.946667pt;}
.y1a_c02486{bottom:287.586667pt;}
.y19_c02486{bottom:320.066667pt;}
.y18_c02486{bottom:352.546667pt;}
.y17_c02486{bottom:385.186667pt;}
.y16_c02486{bottom:417.666667pt;}
.y15_c02486{bottom:450.146667pt;}
.y14_c02486{bottom:482.653333pt;}
.y13_c02486{bottom:515.293333pt;}
.y12_c02486{bottom:547.773333pt;}
.y11_c02486{bottom:581.533333pt;}
.y10_c02486{bottom:620.093333pt;}
.yf_c02486{bottom:658.813333pt;}
.ye_c02486{bottom:725.893333pt;}
.yd_c02486{bottom:742.853333pt;}
.yc_c02486{bottom:759.653333pt;}
.yb_c02486{bottom:776.453333pt;}
.ya_c02486{bottom:802.853333pt;}
.y9_c02486{bottom:830.373333pt;}
.y8_c02486{bottom:858.053333pt;}
.y7_c02486{bottom:885.573333pt;}
.y6_c02486{bottom:913.253333pt;}
.y5_c02486{bottom:931.333333pt;}
.y4_c02486{bottom:948.320000pt;}
.h2_c02486{height:20.000000pt;}
.h1_c02486{height:43.441250pt;}
.h3_c02486{height:57.787500pt;}
.h4_c02486{height:62.812500pt;}
.h6_c02486{height:85.785000pt;}
.h5_c02486{height:107.715000pt;}
.h0_c02486{height:1056.000000pt;}
.w1_c02486{width:59.232000pt;}
.w0_c02486{width:816.000000pt;}
.x0_c02486{left:0.000000pt;}
.x3_c02486{left:14.720000pt;}
.x1_c02486{left:113.472000pt;}
.x5_c02486{left:160.666667pt;}
.x4_c02486{left:217.466667pt;}
.x6_c02486{left:417.506667pt;}
.x2_c02486{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02487 {
    display:none;
  }
  .loading-indicator_c02487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02487 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02487 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02487" -> "#page-container .classname_c02487")
 */
.pf_c02487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02487 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02487 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02487 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02487 {overflow:visible;}
  }
}
.c_c02487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02487 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02487:after { /* webkit #35443 */
  content: '';
}
.t_c02487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02487 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02487 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02487 { /* info for Javascript */
  display:none;
}
.l_c02487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02487:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02487 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02487.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02487;src:url('chunks/assets/font_2f02494bf375dcaea84cd5ea.woff2')format("woff");}.ff1_c02487{font-family:ff1_c02487;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02487;src:url('chunks/assets/font_3a41ee7e486254785be3e4f3.woff2')format("woff");}.ff2_c02487{font-family:ff2_c02487;line-height:1.311035;font-style:normal;font-weight: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_c02487;src:url('chunks/assets/font_7eecffef5ae37e86cea589db.woff2')format("woff");}.ff3_c02487{font-family:ff3_c02487;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;}
.m0_c02487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02487{vertical-align:0.000000px;}
.ls0_c02487{letter-spacing:0.000000px;}
.sc__c02487{text-shadow:none;}
.sc0_c02487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02487{-webkit-text-stroke:0px transparent;}
.sc0_c02487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02487{word-spacing:0.000000px;}
._6_c02487{margin-left:-2.376000px;}
._4_c02487{margin-left:-1.152000px;}
._0_c02487{width:1.245072px;}
._3_c02487{width:2.321571px;}
._c_c02487{width:3.384000px;}
._12_c02487{width:4.536000px;}
._8_c02487{width:5.544000px;}
._5_c02487{width:6.552000px;}
._7_c02487{width:8.004000px;}
._b_c02487{width:9.072000px;}
._9_c02487{width:10.584000px;}
._a_c02487{width:12.168000px;}
._d_c02487{width:14.112000px;}
._1_c02487{width:19.058928px;}
._2_c02487{width:20.418143px;}
._e_c02487{width:21.888000px;}
._f_c02487{width:23.027714px;}
._11_c02487{width:24.264000px;}
._10_c02487{width:25.344000px;}
.fc1_c02487{color:rgb(192,80,77);}
.fc0_c02487{color:rgb(0,0,0);}
.fs0_c02487{font-size:66.240000px;}
.fs3_c02487{font-size:72.000000px;}
.fs1_c02487{font-size:95.760000px;}
.fs2_c02487{font-size:120.240000px;}
.y0_c02487{bottom:0.000000px;}
.y3_c02487{bottom:4.680000px;}
.y2_c02487{bottom:41.796000px;}
.y1_c02487{bottom:75.456000px;}
.y22_c02487{bottom:115.776000px;}
.y21_c02487{bottom:146.916000px;}
.y20_c02487{bottom:177.870000px;}
.y1f_c02487{bottom:208.830000px;}
.y1e_c02487{bottom:239.970000px;}
.y1d_c02487{bottom:270.930000px;}
.y1c_c02487{bottom:302.115000px;}
.y1b_c02487{bottom:333.075000px;}
.y1a_c02487{bottom:364.215000px;}
.y19_c02487{bottom:395.175000px;}
.y18_c02487{bottom:426.315000px;}
.y17_c02487{bottom:457.275000px;}
.y16_c02487{bottom:488.415000px;}
.y15_c02487{bottom:519.375000px;}
.y14_c02487{bottom:550.545000px;}
.y13_c02487{bottom:581.505000px;}
.y12_c02487{bottom:612.645000px;}
.y11_c02487{bottom:643.605000px;}
.y10_c02487{bottom:674.745000px;}
.yf_c02487{bottom:705.705000px;}
.ye_c02487{bottom:736.845000px;}
.yd_c02487{bottom:767.805000px;}
.yc_c02487{bottom:798.990000px;}
.yb_c02487{bottom:829.950000px;}
.ya_c02487{bottom:861.090000px;}
.y9_c02487{bottom:892.050000px;}
.y8_c02487{bottom:923.190000px;}
.y7_c02487{bottom:954.150000px;}
.y6_c02487{bottom:985.290000px;}
.y5_c02487{bottom:1017.150000px;}
.y4_c02487{bottom:1059.480000px;}
.h2_c02487{height:22.500000px;}
.h1_c02487{height:48.871406px;}
.h5_c02487{height:70.664062px;}
.h3_c02487{height:96.508125px;}
.h4_c02487{height:121.179375px;}
.h0_c02487{height:1188.000000px;}
.w1_c02487{width:66.636000px;}
.w0_c02487{width:918.000000px;}
.x0_c02487{left:0.000000px;}
.x3_c02487{left:16.560000px;}
.x1_c02487{left:127.656000px;}
.x6_c02487{left:180.750000px;}
.x4_c02487{left:373.575000px;}
.x5_c02487{left:469.695000px;}
.x2_c02487{left:820.950000px;}
@media print{
.v0_c02487{vertical-align:0.000000pt;}
.ls0_c02487{letter-spacing:0.000000pt;}
.ws0_c02487{word-spacing:0.000000pt;}
._6_c02487{margin-left:-2.112000pt;}
._4_c02487{margin-left:-1.024000pt;}
._0_c02487{width:1.106730pt;}
._3_c02487{width:2.063619pt;}
._c_c02487{width:3.008000pt;}
._12_c02487{width:4.032000pt;}
._8_c02487{width:4.928000pt;}
._5_c02487{width:5.824000pt;}
._7_c02487{width:7.114667pt;}
._b_c02487{width:8.064000pt;}
._9_c02487{width:9.408000pt;}
._a_c02487{width:10.816000pt;}
._d_c02487{width:12.544000pt;}
._1_c02487{width:16.941270pt;}
._2_c02487{width:18.149460pt;}
._e_c02487{width:19.456000pt;}
._f_c02487{width:20.469079pt;}
._11_c02487{width:21.568000pt;}
._10_c02487{width:22.528000pt;}
.fs0_c02487{font-size:58.880000pt;}
.fs3_c02487{font-size:64.000000pt;}
.fs1_c02487{font-size:85.120000pt;}
.fs2_c02487{font-size:106.880000pt;}
.y0_c02487{bottom:0.000000pt;}
.y3_c02487{bottom:4.160000pt;}
.y2_c02487{bottom:37.152000pt;}
.y1_c02487{bottom:67.072000pt;}
.y22_c02487{bottom:102.912000pt;}
.y21_c02487{bottom:130.592000pt;}
.y20_c02487{bottom:158.106667pt;}
.y1f_c02487{bottom:185.626667pt;}
.y1e_c02487{bottom:213.306667pt;}
.y1d_c02487{bottom:240.826667pt;}
.y1c_c02487{bottom:268.546667pt;}
.y1b_c02487{bottom:296.066667pt;}
.y1a_c02487{bottom:323.746667pt;}
.y19_c02487{bottom:351.266667pt;}
.y18_c02487{bottom:378.946667pt;}
.y17_c02487{bottom:406.466667pt;}
.y16_c02487{bottom:434.146667pt;}
.y15_c02487{bottom:461.666667pt;}
.y14_c02487{bottom:489.373333pt;}
.y13_c02487{bottom:516.893333pt;}
.y12_c02487{bottom:544.573333pt;}
.y11_c02487{bottom:572.093333pt;}
.y10_c02487{bottom:599.773333pt;}
.yf_c02487{bottom:627.293333pt;}
.ye_c02487{bottom:654.973333pt;}
.yd_c02487{bottom:682.493333pt;}
.yc_c02487{bottom:710.213333pt;}
.yb_c02487{bottom:737.733333pt;}
.ya_c02487{bottom:765.413333pt;}
.y9_c02487{bottom:792.933333pt;}
.y8_c02487{bottom:820.613333pt;}
.y7_c02487{bottom:848.133333pt;}
.y6_c02487{bottom:875.813333pt;}
.y5_c02487{bottom:904.133333pt;}
.y4_c02487{bottom:941.760000pt;}
.h2_c02487{height:20.000000pt;}
.h1_c02487{height:43.441250pt;}
.h5_c02487{height:62.812500pt;}
.h3_c02487{height:85.785000pt;}
.h4_c02487{height:107.715000pt;}
.h0_c02487{height:1056.000000pt;}
.w1_c02487{width:59.232000pt;}
.w0_c02487{width:816.000000pt;}
.x0_c02487{left:0.000000pt;}
.x3_c02487{left:14.720000pt;}
.x1_c02487{left:113.472000pt;}
.x6_c02487{left:160.666667pt;}
.x4_c02487{left:332.066667pt;}
.x5_c02487{left:417.506667pt;}
.x2_c02487{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02488 {
    display:none;
  }
  .loading-indicator_c02488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02488 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02488 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02488" -> "#page-container .classname_c02488")
 */
.pf_c02488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02488 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02488 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02488 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02488 {overflow:visible;}
  }
}
.c_c02488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02488 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02488:after { /* webkit #35443 */
  content: '';
}
.t_c02488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02488 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02488 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02488 { /* info for Javascript */
  display:none;
}
.l_c02488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02488:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02488 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02488.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02488;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02488{font-family:ff1_c02488;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02488;src:url('chunks/assets/font_96e8deab293c1bb68df6215a.woff2')format("woff");}.ff2_c02488{font-family:ff2_c02488;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:ff3_c02488;src:url('chunks/assets/font_3642690341176e071c92b326.woff2')format("woff");}.ff3_c02488{font-family:ff3_c02488;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02488{vertical-align:0.000000px;}
.ls0_c02488{letter-spacing:0.000000px;}
.sc__c02488{text-shadow:none;}
.sc0_c02488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02488{-webkit-text-stroke:0px transparent;}
.sc0_c02488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02488{word-spacing:0.000000px;}
._b_c02488{margin-left:-2.592000px;}
._2_c02488{margin-left:-1.368000px;}
._3_c02488{width:1.584000px;}
._c_c02488{width:2.808000px;}
._9_c02488{width:3.888000px;}
._a_c02488{width:5.016000px;}
._e_c02488{width:6.120000px;}
._13_c02488{width:7.416000px;}
._f_c02488{width:8.424000px;}
._10_c02488{width:9.576000px;}
._d_c02488{width:12.600000px;}
._15_c02488{width:13.968000px;}
._7_c02488{width:16.716000px;}
._14_c02488{width:19.800000px;}
._1_c02488{width:22.032000px;}
._0_c02488{width:23.040000px;}
._4_c02488{width:24.480000px;}
._8_c02488{width:26.352000px;}
._11_c02488{width:28.152000px;}
._12_c02488{width:29.232000px;}
._5_c02488{width:34.992000px;}
._6_c02488{width:36.432000px;}
.fc1_c02488{color:rgb(192,80,77);}
.fc0_c02488{color:rgb(0,0,0);}
.fs0_c02488{font-size:66.240000px;}
.fs1_c02488{font-size:72.000000px;}
.y0_c02488{bottom:0.000000px;}
.y3_c02488{bottom:4.680000px;}
.y2_c02488{bottom:41.796000px;}
.y1_c02488{bottom:75.456000px;}
.y22_c02488{bottom:133.776000px;}
.y21_c02488{bottom:164.910000px;}
.y20_c02488{bottom:195.870000px;}
.y1f_c02488{bottom:226.830000px;}
.y1e_c02488{bottom:257.970000px;}
.y1d_c02488{bottom:288.975000px;}
.y1c_c02488{bottom:320.115000px;}
.y1b_c02488{bottom:351.075000px;}
.y1a_c02488{bottom:382.215000px;}
.y19_c02488{bottom:413.175000px;}
.y18_c02488{bottom:444.315000px;}
.y17_c02488{bottom:475.275000px;}
.y16_c02488{bottom:506.415000px;}
.y15_c02488{bottom:537.405000px;}
.y14_c02488{bottom:568.545000px;}
.y13_c02488{bottom:599.505000px;}
.y12_c02488{bottom:630.645000px;}
.y11_c02488{bottom:661.605000px;}
.y10_c02488{bottom:692.745000px;}
.yf_c02488{bottom:723.705000px;}
.ye_c02488{bottom:754.845000px;}
.yd_c02488{bottom:785.805000px;}
.yc_c02488{bottom:816.990000px;}
.yb_c02488{bottom:847.950000px;}
.ya_c02488{bottom:879.090000px;}
.y9_c02488{bottom:910.050000px;}
.y8_c02488{bottom:941.190000px;}
.y7_c02488{bottom:972.150000px;}
.y6_c02488{bottom:1003.290000px;}
.y5_c02488{bottom:1034.250000px;}
.y4_c02488{bottom:1065.420000px;}
.h2_c02488{height:22.500000px;}
.h1_c02488{height:48.871406px;}
.h4_c02488{height:64.546875px;}
.h3_c02488{height:70.664062px;}
.h0_c02488{height:1188.000000px;}
.w1_c02488{width:66.636000px;}
.w0_c02488{width:918.000000px;}
.x0_c02488{left:0.000000px;}
.x3_c02488{left:16.560000px;}
.x1_c02488{left:127.656000px;}
.x4_c02488{left:180.750000px;}
.x2_c02488{left:820.950000px;}
@media print{
.v0_c02488{vertical-align:0.000000pt;}
.ls0_c02488{letter-spacing:0.000000pt;}
.ws0_c02488{word-spacing:0.000000pt;}
._b_c02488{margin-left:-2.304000pt;}
._2_c02488{margin-left:-1.216000pt;}
._3_c02488{width:1.408000pt;}
._c_c02488{width:2.496000pt;}
._9_c02488{width:3.456000pt;}
._a_c02488{width:4.458667pt;}
._e_c02488{width:5.440000pt;}
._13_c02488{width:6.592000pt;}
._f_c02488{width:7.488000pt;}
._10_c02488{width:8.512000pt;}
._d_c02488{width:11.200000pt;}
._15_c02488{width:12.416000pt;}
._7_c02488{width:14.858667pt;}
._14_c02488{width:17.600000pt;}
._1_c02488{width:19.584000pt;}
._0_c02488{width:20.480000pt;}
._4_c02488{width:21.760000pt;}
._8_c02488{width:23.424000pt;}
._11_c02488{width:25.024000pt;}
._12_c02488{width:25.984000pt;}
._5_c02488{width:31.104000pt;}
._6_c02488{width:32.384000pt;}
.fs0_c02488{font-size:58.880000pt;}
.fs1_c02488{font-size:64.000000pt;}
.y0_c02488{bottom:0.000000pt;}
.y3_c02488{bottom:4.160000pt;}
.y2_c02488{bottom:37.152000pt;}
.y1_c02488{bottom:67.072000pt;}
.y22_c02488{bottom:118.912000pt;}
.y21_c02488{bottom:146.586667pt;}
.y20_c02488{bottom:174.106667pt;}
.y1f_c02488{bottom:201.626667pt;}
.y1e_c02488{bottom:229.306667pt;}
.y1d_c02488{bottom:256.866667pt;}
.y1c_c02488{bottom:284.546667pt;}
.y1b_c02488{bottom:312.066667pt;}
.y1a_c02488{bottom:339.746667pt;}
.y19_c02488{bottom:367.266667pt;}
.y18_c02488{bottom:394.946667pt;}
.y17_c02488{bottom:422.466667pt;}
.y16_c02488{bottom:450.146667pt;}
.y15_c02488{bottom:477.693333pt;}
.y14_c02488{bottom:505.373333pt;}
.y13_c02488{bottom:532.893333pt;}
.y12_c02488{bottom:560.573333pt;}
.y11_c02488{bottom:588.093333pt;}
.y10_c02488{bottom:615.773333pt;}
.yf_c02488{bottom:643.293333pt;}
.ye_c02488{bottom:670.973333pt;}
.yd_c02488{bottom:698.493333pt;}
.yc_c02488{bottom:726.213333pt;}
.yb_c02488{bottom:753.733333pt;}
.ya_c02488{bottom:781.413333pt;}
.y9_c02488{bottom:808.933333pt;}
.y8_c02488{bottom:836.613333pt;}
.y7_c02488{bottom:864.133333pt;}
.y6_c02488{bottom:891.813333pt;}
.y5_c02488{bottom:919.333333pt;}
.y4_c02488{bottom:947.040000pt;}
.h2_c02488{height:20.000000pt;}
.h1_c02488{height:43.441250pt;}
.h4_c02488{height:57.375000pt;}
.h3_c02488{height:62.812500pt;}
.h0_c02488{height:1056.000000pt;}
.w1_c02488{width:59.232000pt;}
.w0_c02488{width:816.000000pt;}
.x0_c02488{left:0.000000pt;}
.x3_c02488{left:14.720000pt;}
.x1_c02488{left:113.472000pt;}
.x4_c02488{left:160.666667pt;}
.x2_c02488{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02489 {
    display:none;
  }
  .loading-indicator_c02489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02489 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02489 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02489" -> "#page-container .classname_c02489")
 */
.pf_c02489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02489 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02489 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02489 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02489 {overflow:visible;}
  }
}
.c_c02489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02489 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02489:after { /* webkit #35443 */
  content: '';
}
.t_c02489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02489 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02489 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02489 { /* info for Javascript */
  display:none;
}
.l_c02489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02489:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02489 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02489.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02489;src:url('chunks/assets/font_3e66985b9dca52e18559e39e.woff2')format("woff");}.ff1_c02489{font-family:ff1_c02489;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02489;src:url('chunks/assets/font_eb86977be1635d5394fe4e33.woff2')format("woff");}.ff2_c02489{font-family:ff2_c02489;line-height:1.112305;font-style:normal;font-weight: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_c02489;src:url('chunks/assets/font_e590517a1d4d4b33f01eccf8.woff2')format("woff");}.ff3_c02489{font-family:ff3_c02489;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;}
.m0_c02489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02489{vertical-align:0.000000px;}
.ls0_c02489{letter-spacing:0.000000px;}
.sc__c02489{text-shadow:none;}
.sc0_c02489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02489{-webkit-text-stroke:0px transparent;}
.sc0_c02489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02489{word-spacing:-18.000000px;}
.ws1_c02489{word-spacing:0.000000px;}
._3_c02489{margin-left:-1.152000px;}
._4_c02489{width:1.008000px;}
._0_c02489{width:2.232000px;}
._1_c02489{width:3.312000px;}
._8_c02489{width:4.608000px;}
._9_c02489{width:5.880000px;}
._a_c02489{width:6.888000px;}
._7_c02489{width:8.136000px;}
._2_c02489{width:9.216000px;}
._5_c02489{width:10.512000px;}
._d_c02489{width:11.928000px;}
._f_c02489{width:13.896000px;}
._12_c02489{width:15.696000px;}
._6_c02489{width:16.992000px;}
._e_c02489{width:19.440000px;}
._10_c02489{width:20.736000px;}
._11_c02489{width:22.032000px;}
._b_c02489{width:24.912000px;}
._c_c02489{width:29.304000px;}
.fc1_c02489{color:rgb(192,80,77);}
.fc0_c02489{color:rgb(0,0,0);}
.fs0_c02489{font-size:66.240000px;}
.fs1_c02489{font-size:72.000000px;}
.y0_c02489{bottom:0.000000px;}
.y3_c02489{bottom:4.680000px;}
.y2_c02489{bottom:41.796000px;}
.y1_c02489{bottom:75.456000px;}
.y22_c02489{bottom:133.776000px;}
.y21_c02489{bottom:164.910000px;}
.y20_c02489{bottom:195.870000px;}
.y1f_c02489{bottom:226.830000px;}
.y1e_c02489{bottom:257.970000px;}
.y1d_c02489{bottom:288.975000px;}
.y1c_c02489{bottom:320.115000px;}
.y1b_c02489{bottom:351.075000px;}
.y1a_c02489{bottom:382.215000px;}
.y19_c02489{bottom:413.175000px;}
.y18_c02489{bottom:444.315000px;}
.y17_c02489{bottom:475.275000px;}
.y16_c02489{bottom:506.415000px;}
.y15_c02489{bottom:537.405000px;}
.y14_c02489{bottom:568.545000px;}
.y13_c02489{bottom:599.505000px;}
.y12_c02489{bottom:630.645000px;}
.y11_c02489{bottom:661.605000px;}
.y10_c02489{bottom:692.745000px;}
.yf_c02489{bottom:723.705000px;}
.ye_c02489{bottom:754.845000px;}
.yd_c02489{bottom:785.805000px;}
.yc_c02489{bottom:816.990000px;}
.yb_c02489{bottom:847.950000px;}
.ya_c02489{bottom:879.090000px;}
.y9_c02489{bottom:910.050000px;}
.y8_c02489{bottom:941.190000px;}
.y7_c02489{bottom:972.150000px;}
.y6_c02489{bottom:1003.290000px;}
.y5_c02489{bottom:1034.250000px;}
.y4_c02489{bottom:1065.420000px;}
.h2_c02489{height:22.500000px;}
.h1_c02489{height:48.871406px;}
.h3_c02489{height:64.546875px;}
.h4_c02489{height:70.664062px;}
.h0_c02489{height:1188.000000px;}
.w1_c02489{width:66.636000px;}
.w0_c02489{width:918.000000px;}
.x0_c02489{left:0.000000px;}
.x3_c02489{left:16.560000px;}
.x1_c02489{left:127.656000px;}
.x4_c02489{left:180.750000px;}
.x2_c02489{left:820.950000px;}
@media print{
.v0_c02489{vertical-align:0.000000pt;}
.ls0_c02489{letter-spacing:0.000000pt;}
.ws0_c02489{word-spacing:-16.000000pt;}
.ws1_c02489{word-spacing:0.000000pt;}
._3_c02489{margin-left:-1.024000pt;}
._4_c02489{width:0.896000pt;}
._0_c02489{width:1.984000pt;}
._1_c02489{width:2.944000pt;}
._8_c02489{width:4.096000pt;}
._9_c02489{width:5.226667pt;}
._a_c02489{width:6.122667pt;}
._7_c02489{width:7.232000pt;}
._2_c02489{width:8.192000pt;}
._5_c02489{width:9.344000pt;}
._d_c02489{width:10.602667pt;}
._f_c02489{width:12.352000pt;}
._12_c02489{width:13.952000pt;}
._6_c02489{width:15.104000pt;}
._e_c02489{width:17.280000pt;}
._10_c02489{width:18.432000pt;}
._11_c02489{width:19.584000pt;}
._b_c02489{width:22.144000pt;}
._c_c02489{width:26.048000pt;}
.fs0_c02489{font-size:58.880000pt;}
.fs1_c02489{font-size:64.000000pt;}
.y0_c02489{bottom:0.000000pt;}
.y3_c02489{bottom:4.160000pt;}
.y2_c02489{bottom:37.152000pt;}
.y1_c02489{bottom:67.072000pt;}
.y22_c02489{bottom:118.912000pt;}
.y21_c02489{bottom:146.586667pt;}
.y20_c02489{bottom:174.106667pt;}
.y1f_c02489{bottom:201.626667pt;}
.y1e_c02489{bottom:229.306667pt;}
.y1d_c02489{bottom:256.866667pt;}
.y1c_c02489{bottom:284.546667pt;}
.y1b_c02489{bottom:312.066667pt;}
.y1a_c02489{bottom:339.746667pt;}
.y19_c02489{bottom:367.266667pt;}
.y18_c02489{bottom:394.946667pt;}
.y17_c02489{bottom:422.466667pt;}
.y16_c02489{bottom:450.146667pt;}
.y15_c02489{bottom:477.693333pt;}
.y14_c02489{bottom:505.373333pt;}
.y13_c02489{bottom:532.893333pt;}
.y12_c02489{bottom:560.573333pt;}
.y11_c02489{bottom:588.093333pt;}
.y10_c02489{bottom:615.773333pt;}
.yf_c02489{bottom:643.293333pt;}
.ye_c02489{bottom:670.973333pt;}
.yd_c02489{bottom:698.493333pt;}
.yc_c02489{bottom:726.213333pt;}
.yb_c02489{bottom:753.733333pt;}
.ya_c02489{bottom:781.413333pt;}
.y9_c02489{bottom:808.933333pt;}
.y8_c02489{bottom:836.613333pt;}
.y7_c02489{bottom:864.133333pt;}
.y6_c02489{bottom:891.813333pt;}
.y5_c02489{bottom:919.333333pt;}
.y4_c02489{bottom:947.040000pt;}
.h2_c02489{height:20.000000pt;}
.h1_c02489{height:43.441250pt;}
.h3_c02489{height:57.375000pt;}
.h4_c02489{height:62.812500pt;}
.h0_c02489{height:1056.000000pt;}
.w1_c02489{width:59.232000pt;}
.w0_c02489{width:816.000000pt;}
.x0_c02489{left:0.000000pt;}
.x3_c02489{left:14.720000pt;}
.x1_c02489{left:113.472000pt;}
.x4_c02489{left:160.666667pt;}
.x2_c02489{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02490 {
    display:none;
  }
  .loading-indicator_c02490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02490 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02490 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02490" -> "#page-container .classname_c02490")
 */
.pf_c02490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02490 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02490 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02490 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02490 {overflow:visible;}
  }
}
.c_c02490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02490 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02490:after { /* webkit #35443 */
  content: '';
}
.t_c02490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02490 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02490 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02490 { /* info for Javascript */
  display:none;
}
.l_c02490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02490:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02490 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02490.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02490;src:url('chunks/assets/font_4b94b5bb97badc282be8e203.woff2')format("woff");}.ff1_c02490{font-family:ff1_c02490;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02490;src:url('chunks/assets/font_6db519d0a9b934492f524c6a.woff2')format("woff");}.ff2_c02490{font-family:ff2_c02490;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:ff3_c02490;src:url('chunks/assets/font_d4fc6ca9fdfad144039fb0f6.woff2')format("woff");}.ff3_c02490{font-family:ff3_c02490;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02490{vertical-align:0.000000px;}
.ls0_c02490{letter-spacing:0.000000px;}
.sc__c02490{text-shadow:none;}
.sc0_c02490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02490{-webkit-text-stroke:0px transparent;}
.sc0_c02490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02490{word-spacing:-18.000000px;}
.ws1_c02490{word-spacing:0.000000px;}
._11_c02490{margin-left:-2.160000px;}
._1_c02490{margin-left:-1.080000px;}
._0_c02490{width:1.512000px;}
._2_c02490{width:2.736000px;}
._3_c02490{width:3.888000px;}
._4_c02490{width:4.968000px;}
._9_c02490{width:6.336000px;}
._b_c02490{width:7.464000px;}
._7_c02490{width:8.568000px;}
._c_c02490{width:10.440000px;}
._a_c02490{width:11.952000px;}
._5_c02490{width:13.320000px;}
._6_c02490{width:14.328000px;}
._d_c02490{width:16.344000px;}
._8_c02490{width:25.632000px;}
._f_c02490{width:32.112000px;}
._e_c02490{width:33.120000px;}
._10_c02490{width:34.428000px;}
.fc1_c02490{color:rgb(192,80,77);}
.fc0_c02490{color:rgb(0,0,0);}
.fs0_c02490{font-size:66.240000px;}
.fs1_c02490{font-size:72.000000px;}
.y0_c02490{bottom:0.000000px;}
.y3_c02490{bottom:4.680000px;}
.y2_c02490{bottom:41.796000px;}
.y1_c02490{bottom:75.456000px;}
.y22_c02490{bottom:133.776000px;}
.y21_c02490{bottom:164.910000px;}
.y20_c02490{bottom:195.870000px;}
.y1f_c02490{bottom:226.830000px;}
.y1e_c02490{bottom:257.970000px;}
.y1d_c02490{bottom:288.975000px;}
.y1c_c02490{bottom:320.115000px;}
.y1b_c02490{bottom:351.075000px;}
.y1a_c02490{bottom:382.215000px;}
.y19_c02490{bottom:413.175000px;}
.y18_c02490{bottom:444.315000px;}
.y17_c02490{bottom:475.275000px;}
.y16_c02490{bottom:506.415000px;}
.y15_c02490{bottom:537.405000px;}
.y14_c02490{bottom:568.545000px;}
.y13_c02490{bottom:599.505000px;}
.y12_c02490{bottom:630.645000px;}
.y11_c02490{bottom:661.605000px;}
.y10_c02490{bottom:692.745000px;}
.yf_c02490{bottom:723.705000px;}
.ye_c02490{bottom:754.845000px;}
.yd_c02490{bottom:785.805000px;}
.yc_c02490{bottom:816.990000px;}
.yb_c02490{bottom:847.950000px;}
.ya_c02490{bottom:879.090000px;}
.y9_c02490{bottom:910.050000px;}
.y8_c02490{bottom:941.190000px;}
.y7_c02490{bottom:972.150000px;}
.y6_c02490{bottom:1003.290000px;}
.y5_c02490{bottom:1034.250000px;}
.y4_c02490{bottom:1065.420000px;}
.h2_c02490{height:22.500000px;}
.h1_c02490{height:48.871406px;}
.h4_c02490{height:64.546875px;}
.h3_c02490{height:70.664062px;}
.h0_c02490{height:1188.000000px;}
.w1_c02490{width:66.636000px;}
.w0_c02490{width:918.000000px;}
.x0_c02490{left:0.000000px;}
.x3_c02490{left:16.560000px;}
.x1_c02490{left:127.656000px;}
.x4_c02490{left:180.750000px;}
.x2_c02490{left:820.950000px;}
@media print{
.v0_c02490{vertical-align:0.000000pt;}
.ls0_c02490{letter-spacing:0.000000pt;}
.ws0_c02490{word-spacing:-16.000000pt;}
.ws1_c02490{word-spacing:0.000000pt;}
._11_c02490{margin-left:-1.920000pt;}
._1_c02490{margin-left:-0.960000pt;}
._0_c02490{width:1.344000pt;}
._2_c02490{width:2.432000pt;}
._3_c02490{width:3.456000pt;}
._4_c02490{width:4.416000pt;}
._9_c02490{width:5.632000pt;}
._b_c02490{width:6.634667pt;}
._7_c02490{width:7.616000pt;}
._c_c02490{width:9.280000pt;}
._a_c02490{width:10.624000pt;}
._5_c02490{width:11.840000pt;}
._6_c02490{width:12.736000pt;}
._d_c02490{width:14.528000pt;}
._8_c02490{width:22.784000pt;}
._f_c02490{width:28.544000pt;}
._e_c02490{width:29.440000pt;}
._10_c02490{width:30.602667pt;}
.fs0_c02490{font-size:58.880000pt;}
.fs1_c02490{font-size:64.000000pt;}
.y0_c02490{bottom:0.000000pt;}
.y3_c02490{bottom:4.160000pt;}
.y2_c02490{bottom:37.152000pt;}
.y1_c02490{bottom:67.072000pt;}
.y22_c02490{bottom:118.912000pt;}
.y21_c02490{bottom:146.586667pt;}
.y20_c02490{bottom:174.106667pt;}
.y1f_c02490{bottom:201.626667pt;}
.y1e_c02490{bottom:229.306667pt;}
.y1d_c02490{bottom:256.866667pt;}
.y1c_c02490{bottom:284.546667pt;}
.y1b_c02490{bottom:312.066667pt;}
.y1a_c02490{bottom:339.746667pt;}
.y19_c02490{bottom:367.266667pt;}
.y18_c02490{bottom:394.946667pt;}
.y17_c02490{bottom:422.466667pt;}
.y16_c02490{bottom:450.146667pt;}
.y15_c02490{bottom:477.693333pt;}
.y14_c02490{bottom:505.373333pt;}
.y13_c02490{bottom:532.893333pt;}
.y12_c02490{bottom:560.573333pt;}
.y11_c02490{bottom:588.093333pt;}
.y10_c02490{bottom:615.773333pt;}
.yf_c02490{bottom:643.293333pt;}
.ye_c02490{bottom:670.973333pt;}
.yd_c02490{bottom:698.493333pt;}
.yc_c02490{bottom:726.213333pt;}
.yb_c02490{bottom:753.733333pt;}
.ya_c02490{bottom:781.413333pt;}
.y9_c02490{bottom:808.933333pt;}
.y8_c02490{bottom:836.613333pt;}
.y7_c02490{bottom:864.133333pt;}
.y6_c02490{bottom:891.813333pt;}
.y5_c02490{bottom:919.333333pt;}
.y4_c02490{bottom:947.040000pt;}
.h2_c02490{height:20.000000pt;}
.h1_c02490{height:43.441250pt;}
.h4_c02490{height:57.375000pt;}
.h3_c02490{height:62.812500pt;}
.h0_c02490{height:1056.000000pt;}
.w1_c02490{width:59.232000pt;}
.w0_c02490{width:816.000000pt;}
.x0_c02490{left:0.000000pt;}
.x3_c02490{left:14.720000pt;}
.x1_c02490{left:113.472000pt;}
.x4_c02490{left:160.666667pt;}
.x2_c02490{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02491 {
    display:none;
  }
  .loading-indicator_c02491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02491 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02491 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02491" -> "#page-container .classname_c02491")
 */
.pf_c02491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02491 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02491 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02491 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02491 {overflow:visible;}
  }
}
.c_c02491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02491 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02491:after { /* webkit #35443 */
  content: '';
}
.t_c02491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02491 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02491 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02491 { /* info for Javascript */
  display:none;
}
.l_c02491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02491:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02491 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02491.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02491;src:url('chunks/assets/font_b35a82bd378e84fea9b87b31.woff2')format("woff");}.ff1_c02491{font-family:ff1_c02491;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02491;src:url('chunks/assets/font_4d48d7b81cbaf351d8eff38c.woff2')format("woff");}.ff2_c02491{font-family:ff2_c02491;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:ff3_c02491;src:url('chunks/assets/font_b2cf53008a966fa631392987.woff2')format("woff");}.ff3_c02491{font-family:ff3_c02491;line-height:1.112305;font-style:normal;font-weight: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_c02491;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c02491{font-family:ff4_c02491;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02491{vertical-align:0.000000px;}
.ls1_c02491{letter-spacing:-0.288000px;}
.ls2_c02491{letter-spacing:-0.216000px;}
.ls0_c02491{letter-spacing:0.000000px;}
.sc__c02491{text-shadow:none;}
.sc0_c02491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02491{-webkit-text-stroke:0px transparent;}
.sc0_c02491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02491{word-spacing:-17.784000px;}
.ws0_c02491{word-spacing:-17.712000px;}
.ws2_c02491{word-spacing:0.000000px;}
._2_c02491{margin-left:-1.008000px;}
._3_c02491{width:1.080000px;}
._7_c02491{width:2.532024px;}
._6_c02491{width:3.816000px;}
._4_c02491{width:5.328000px;}
._5_c02491{width:6.336000px;}
._0_c02491{width:8.136000px;}
._1_c02491{width:9.792000px;}
._d_c02491{width:11.340000px;}
._9_c02491{width:12.636000px;}
._8_c02491{width:14.112000px;}
._c_c02491{width:15.552000px;}
._e_c02491{width:16.560000px;}
._13_c02491{width:19.944000px;}
._14_c02491{width:21.000024px;}
._f_c02491{width:22.104000px;}
._12_c02491{width:23.616000px;}
._10_c02491{width:24.768000px;}
._11_c02491{width:26.556000px;}
._a_c02491{width:34.416000px;}
._b_c02491{width:35.556000px;}
.fc1_c02491{color:rgb(192,80,77);}
.fc0_c02491{color:rgb(0,0,0);}
.fs0_c02491{font-size:66.240000px;}
.fs1_c02491{font-size:72.000000px;}
.y0_c02491{bottom:0.000000px;}
.y3_c02491{bottom:4.680000px;}
.y2_c02491{bottom:41.796000px;}
.y1_c02491{bottom:75.456000px;}
.y22_c02491{bottom:133.776000px;}
.y21_c02491{bottom:164.910000px;}
.y20_c02491{bottom:195.870000px;}
.y1f_c02491{bottom:226.830000px;}
.y1e_c02491{bottom:257.970000px;}
.y1d_c02491{bottom:288.975000px;}
.y1c_c02491{bottom:320.115000px;}
.y1b_c02491{bottom:351.075000px;}
.y1a_c02491{bottom:382.215000px;}
.y19_c02491{bottom:413.175000px;}
.y18_c02491{bottom:444.315000px;}
.y17_c02491{bottom:475.275000px;}
.y16_c02491{bottom:506.415000px;}
.y15_c02491{bottom:537.405000px;}
.y14_c02491{bottom:568.545000px;}
.y13_c02491{bottom:599.505000px;}
.y12_c02491{bottom:630.645000px;}
.y11_c02491{bottom:661.605000px;}
.y10_c02491{bottom:692.745000px;}
.yf_c02491{bottom:723.705000px;}
.ye_c02491{bottom:754.845000px;}
.yd_c02491{bottom:785.805000px;}
.yc_c02491{bottom:816.990000px;}
.yb_c02491{bottom:847.950000px;}
.ya_c02491{bottom:879.090000px;}
.y9_c02491{bottom:910.050000px;}
.y8_c02491{bottom:941.190000px;}
.y7_c02491{bottom:972.150000px;}
.y6_c02491{bottom:1003.290000px;}
.y5_c02491{bottom:1034.250000px;}
.y4_c02491{bottom:1065.420000px;}
.h2_c02491{height:22.500000px;}
.h1_c02491{height:48.871406px;}
.h5_c02491{height:64.546875px;}
.h3_c02491{height:70.664062px;}
.h4_c02491{height:72.562500px;}
.h0_c02491{height:1188.000000px;}
.w1_c02491{width:66.636000px;}
.w0_c02491{width:918.000000px;}
.x0_c02491{left:0.000000px;}
.x3_c02491{left:16.560000px;}
.x1_c02491{left:127.656000px;}
.x4_c02491{left:180.750000px;}
.x2_c02491{left:820.950000px;}
@media print{
.v0_c02491{vertical-align:0.000000pt;}
.ls1_c02491{letter-spacing:-0.256000pt;}
.ls2_c02491{letter-spacing:-0.192000pt;}
.ls0_c02491{letter-spacing:0.000000pt;}
.ws1_c02491{word-spacing:-15.808000pt;}
.ws0_c02491{word-spacing:-15.744000pt;}
.ws2_c02491{word-spacing:0.000000pt;}
._2_c02491{margin-left:-0.896000pt;}
._3_c02491{width:0.960000pt;}
._7_c02491{width:2.250688pt;}
._6_c02491{width:3.392000pt;}
._4_c02491{width:4.736000pt;}
._5_c02491{width:5.632000pt;}
._0_c02491{width:7.232000pt;}
._1_c02491{width:8.704000pt;}
._d_c02491{width:10.080000pt;}
._9_c02491{width:11.232000pt;}
._8_c02491{width:12.544000pt;}
._c_c02491{width:13.824000pt;}
._e_c02491{width:14.720000pt;}
._13_c02491{width:17.728000pt;}
._14_c02491{width:18.666688pt;}
._f_c02491{width:19.648000pt;}
._12_c02491{width:20.992000pt;}
._10_c02491{width:22.016000pt;}
._11_c02491{width:23.605333pt;}
._a_c02491{width:30.592000pt;}
._b_c02491{width:31.605333pt;}
.fs0_c02491{font-size:58.880000pt;}
.fs1_c02491{font-size:64.000000pt;}
.y0_c02491{bottom:0.000000pt;}
.y3_c02491{bottom:4.160000pt;}
.y2_c02491{bottom:37.152000pt;}
.y1_c02491{bottom:67.072000pt;}
.y22_c02491{bottom:118.912000pt;}
.y21_c02491{bottom:146.586667pt;}
.y20_c02491{bottom:174.106667pt;}
.y1f_c02491{bottom:201.626667pt;}
.y1e_c02491{bottom:229.306667pt;}
.y1d_c02491{bottom:256.866667pt;}
.y1c_c02491{bottom:284.546667pt;}
.y1b_c02491{bottom:312.066667pt;}
.y1a_c02491{bottom:339.746667pt;}
.y19_c02491{bottom:367.266667pt;}
.y18_c02491{bottom:394.946667pt;}
.y17_c02491{bottom:422.466667pt;}
.y16_c02491{bottom:450.146667pt;}
.y15_c02491{bottom:477.693333pt;}
.y14_c02491{bottom:505.373333pt;}
.y13_c02491{bottom:532.893333pt;}
.y12_c02491{bottom:560.573333pt;}
.y11_c02491{bottom:588.093333pt;}
.y10_c02491{bottom:615.773333pt;}
.yf_c02491{bottom:643.293333pt;}
.ye_c02491{bottom:670.973333pt;}
.yd_c02491{bottom:698.493333pt;}
.yc_c02491{bottom:726.213333pt;}
.yb_c02491{bottom:753.733333pt;}
.ya_c02491{bottom:781.413333pt;}
.y9_c02491{bottom:808.933333pt;}
.y8_c02491{bottom:836.613333pt;}
.y7_c02491{bottom:864.133333pt;}
.y6_c02491{bottom:891.813333pt;}
.y5_c02491{bottom:919.333333pt;}
.y4_c02491{bottom:947.040000pt;}
.h2_c02491{height:20.000000pt;}
.h1_c02491{height:43.441250pt;}
.h5_c02491{height:57.375000pt;}
.h3_c02491{height:62.812500pt;}
.h4_c02491{height:64.500000pt;}
.h0_c02491{height:1056.000000pt;}
.w1_c02491{width:59.232000pt;}
.w0_c02491{width:816.000000pt;}
.x0_c02491{left:0.000000pt;}
.x3_c02491{left:14.720000pt;}
.x1_c02491{left:113.472000pt;}
.x4_c02491{left:160.666667pt;}
.x2_c02491{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02492 {
    display:none;
  }
  .loading-indicator_c02492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02492 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02492 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02492" -> "#page-container .classname_c02492")
 */
.pf_c02492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02492 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02492 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02492 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02492 {overflow:visible;}
  }
}
.c_c02492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02492 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02492:after { /* webkit #35443 */
  content: '';
}
.t_c02492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02492 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02492 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02492 { /* info for Javascript */
  display:none;
}
.l_c02492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02492:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02492 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02492.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02492;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02492{font-family:ff1_c02492;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02492;src:url('chunks/assets/font_4d2d0472942ba8620c8e7d9a.woff2')format("woff");}.ff2_c02492{font-family:ff2_c02492;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:ff3_c02492;src:url('chunks/assets/font_c5a0d0379b9bdac38464c7f0.woff2')format("woff");}.ff3_c02492{font-family:ff3_c02492;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02492{vertical-align:0.000000px;}
.ls2_c02492{letter-spacing:-0.216000px;}
.ls0_c02492{letter-spacing:0.000000px;}
.ls1_c02492{letter-spacing:0.072000px;}
.sc__c02492{text-shadow:none;}
.sc0_c02492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02492{-webkit-text-stroke:0px transparent;}
.sc0_c02492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02492{word-spacing:-18.000000px;}
.ws1_c02492{word-spacing:-17.784000px;}
.ws2_c02492{word-spacing:0.000000px;}
._e_c02492{margin-left:-2.160000px;}
._2_c02492{margin-left:-1.080000px;}
._3_c02492{width:1.008000px;}
._7_c02492{width:2.232000px;}
._a_c02492{width:3.276000px;}
._b_c02492{width:4.680000px;}
._c_c02492{width:6.132000px;}
._5_c02492{width:7.200000px;}
._6_c02492{width:8.424000px;}
._8_c02492{width:10.944000px;}
._9_c02492{width:12.312000px;}
._0_c02492{width:14.040000px;}
._1_c02492{width:15.204000px;}
._4_c02492{width:16.356000px;}
._f_c02492{width:23.976000px;}
._10_c02492{width:25.068000px;}
._d_c02492{width:26.640000px;}
.fc1_c02492{color:rgb(192,80,77);}
.fc0_c02492{color:rgb(0,0,0);}
.fs0_c02492{font-size:66.240000px;}
.fs1_c02492{font-size:72.000000px;}
.y0_c02492{bottom:0.000000px;}
.y3_c02492{bottom:4.680000px;}
.y2_c02492{bottom:41.796000px;}
.y1_c02492{bottom:75.456000px;}
.y22_c02492{bottom:133.776000px;}
.y21_c02492{bottom:164.910000px;}
.y20_c02492{bottom:195.870000px;}
.y1f_c02492{bottom:226.830000px;}
.y1e_c02492{bottom:257.970000px;}
.y1d_c02492{bottom:288.975000px;}
.y1c_c02492{bottom:320.115000px;}
.y1b_c02492{bottom:351.075000px;}
.y1a_c02492{bottom:382.215000px;}
.y19_c02492{bottom:413.175000px;}
.y18_c02492{bottom:444.315000px;}
.y17_c02492{bottom:475.275000px;}
.y16_c02492{bottom:506.415000px;}
.y15_c02492{bottom:537.405000px;}
.y14_c02492{bottom:568.545000px;}
.y13_c02492{bottom:599.505000px;}
.y12_c02492{bottom:630.645000px;}
.y11_c02492{bottom:661.605000px;}
.y10_c02492{bottom:692.745000px;}
.yf_c02492{bottom:723.705000px;}
.ye_c02492{bottom:754.845000px;}
.yd_c02492{bottom:785.805000px;}
.yc_c02492{bottom:816.990000px;}
.yb_c02492{bottom:847.950000px;}
.ya_c02492{bottom:879.090000px;}
.y9_c02492{bottom:910.050000px;}
.y8_c02492{bottom:941.190000px;}
.y7_c02492{bottom:972.150000px;}
.y6_c02492{bottom:1003.290000px;}
.y5_c02492{bottom:1034.250000px;}
.y4_c02492{bottom:1065.420000px;}
.h2_c02492{height:22.500000px;}
.h1_c02492{height:48.871406px;}
.h3_c02492{height:70.664062px;}
.h0_c02492{height:1188.000000px;}
.w1_c02492{width:66.636000px;}
.w0_c02492{width:918.000000px;}
.x0_c02492{left:0.000000px;}
.x3_c02492{left:16.560000px;}
.x1_c02492{left:127.656000px;}
.x4_c02492{left:180.750000px;}
.x2_c02492{left:820.950000px;}
@media print{
.v0_c02492{vertical-align:0.000000pt;}
.ls2_c02492{letter-spacing:-0.192000pt;}
.ls0_c02492{letter-spacing:0.000000pt;}
.ls1_c02492{letter-spacing:0.064000pt;}
.ws0_c02492{word-spacing:-16.000000pt;}
.ws1_c02492{word-spacing:-15.808000pt;}
.ws2_c02492{word-spacing:0.000000pt;}
._e_c02492{margin-left:-1.920000pt;}
._2_c02492{margin-left:-0.960000pt;}
._3_c02492{width:0.896000pt;}
._7_c02492{width:1.984000pt;}
._a_c02492{width:2.912000pt;}
._b_c02492{width:4.160000pt;}
._c_c02492{width:5.450667pt;}
._5_c02492{width:6.400000pt;}
._6_c02492{width:7.488000pt;}
._8_c02492{width:9.728000pt;}
._9_c02492{width:10.944000pt;}
._0_c02492{width:12.480000pt;}
._1_c02492{width:13.514667pt;}
._4_c02492{width:14.538667pt;}
._f_c02492{width:21.312000pt;}
._10_c02492{width:22.282667pt;}
._d_c02492{width:23.680000pt;}
.fs0_c02492{font-size:58.880000pt;}
.fs1_c02492{font-size:64.000000pt;}
.y0_c02492{bottom:0.000000pt;}
.y3_c02492{bottom:4.160000pt;}
.y2_c02492{bottom:37.152000pt;}
.y1_c02492{bottom:67.072000pt;}
.y22_c02492{bottom:118.912000pt;}
.y21_c02492{bottom:146.586667pt;}
.y20_c02492{bottom:174.106667pt;}
.y1f_c02492{bottom:201.626667pt;}
.y1e_c02492{bottom:229.306667pt;}
.y1d_c02492{bottom:256.866667pt;}
.y1c_c02492{bottom:284.546667pt;}
.y1b_c02492{bottom:312.066667pt;}
.y1a_c02492{bottom:339.746667pt;}
.y19_c02492{bottom:367.266667pt;}
.y18_c02492{bottom:394.946667pt;}
.y17_c02492{bottom:422.466667pt;}
.y16_c02492{bottom:450.146667pt;}
.y15_c02492{bottom:477.693333pt;}
.y14_c02492{bottom:505.373333pt;}
.y13_c02492{bottom:532.893333pt;}
.y12_c02492{bottom:560.573333pt;}
.y11_c02492{bottom:588.093333pt;}
.y10_c02492{bottom:615.773333pt;}
.yf_c02492{bottom:643.293333pt;}
.ye_c02492{bottom:670.973333pt;}
.yd_c02492{bottom:698.493333pt;}
.yc_c02492{bottom:726.213333pt;}
.yb_c02492{bottom:753.733333pt;}
.ya_c02492{bottom:781.413333pt;}
.y9_c02492{bottom:808.933333pt;}
.y8_c02492{bottom:836.613333pt;}
.y7_c02492{bottom:864.133333pt;}
.y6_c02492{bottom:891.813333pt;}
.y5_c02492{bottom:919.333333pt;}
.y4_c02492{bottom:947.040000pt;}
.h2_c02492{height:20.000000pt;}
.h1_c02492{height:43.441250pt;}
.h3_c02492{height:62.812500pt;}
.h0_c02492{height:1056.000000pt;}
.w1_c02492{width:59.232000pt;}
.w0_c02492{width:816.000000pt;}
.x0_c02492{left:0.000000pt;}
.x3_c02492{left:14.720000pt;}
.x1_c02492{left:113.472000pt;}
.x4_c02492{left:160.666667pt;}
.x2_c02492{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02493 {
    display:none;
  }
  .loading-indicator_c02493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02493 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02493 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02493" -> "#page-container .classname_c02493")
 */
.pf_c02493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02493 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02493 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02493 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02493 {overflow:visible;}
  }
}
.c_c02493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02493 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02493:after { /* webkit #35443 */
  content: '';
}
.t_c02493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02493 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02493 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02493 { /* info for Javascript */
  display:none;
}
.l_c02493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02493:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02493 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02493.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02493;src:url('chunks/assets/font_aeb564776e7d0627e05a8ec8.woff2')format("woff");}.ff1_c02493{font-family:ff1_c02493;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02493;src:url('chunks/assets/font_8064a4021b1c4ebe04945eda.woff2')format("woff");}.ff2_c02493{font-family:ff2_c02493;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:ff3_c02493;src:url('chunks/assets/font_46e8f2dfd167d33ac25f6505.woff2')format("woff");}.ff3_c02493{font-family:ff3_c02493;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02493{vertical-align:0.000000px;}
.ls2_c02493{letter-spacing:-1.008000px;}
.ls1_c02493{letter-spacing:-0.144000px;}
.ls0_c02493{letter-spacing:0.000000px;}
.sc__c02493{text-shadow:none;}
.sc0_c02493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02493{-webkit-text-stroke:0px transparent;}
.sc0_c02493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02493{word-spacing:-18.000000px;}
.ws0_c02493{word-spacing:-17.856000px;}
.ws2_c02493{word-spacing:0.000000px;}
._4_c02493{margin-left:-1.440000px;}
._2_c02493{width:1.008000px;}
._3_c02493{width:2.220000px;}
._e_c02493{width:3.408000px;}
._9_c02493{width:4.896000px;}
._8_c02493{width:6.192000px;}
._7_c02493{width:7.344000px;}
._11_c02493{width:8.904000px;}
._12_c02493{width:10.392000px;}
._c_c02493{width:13.032000px;}
._d_c02493{width:14.328000px;}
._5_c02493{width:16.992000px;}
._a_c02493{width:19.944000px;}
._b_c02493{width:21.096000px;}
._10_c02493{width:22.248000px;}
._f_c02493{width:23.472000px;}
._0_c02493{width:31.296000px;}
._1_c02493{width:32.340000px;}
._6_c02493{width:34.404000px;}
._14_c02493{width:41.412000px;}
._13_c02493{width:42.600000px;}
.fc1_c02493{color:rgb(192,80,77);}
.fc0_c02493{color:rgb(0,0,0);}
.fs0_c02493{font-size:66.240000px;}
.fs1_c02493{font-size:72.000000px;}
.y0_c02493{bottom:0.000000px;}
.y3_c02493{bottom:4.680000px;}
.y2_c02493{bottom:41.796000px;}
.y1_c02493{bottom:75.456000px;}
.y22_c02493{bottom:133.776000px;}
.y21_c02493{bottom:164.910000px;}
.y20_c02493{bottom:195.870000px;}
.y1f_c02493{bottom:226.830000px;}
.y1e_c02493{bottom:257.970000px;}
.y1d_c02493{bottom:288.975000px;}
.y1c_c02493{bottom:320.115000px;}
.y1b_c02493{bottom:351.075000px;}
.y1a_c02493{bottom:382.215000px;}
.y19_c02493{bottom:413.175000px;}
.y18_c02493{bottom:444.315000px;}
.y17_c02493{bottom:475.275000px;}
.y16_c02493{bottom:506.415000px;}
.y15_c02493{bottom:537.405000px;}
.y14_c02493{bottom:568.545000px;}
.y13_c02493{bottom:599.505000px;}
.y12_c02493{bottom:630.645000px;}
.y11_c02493{bottom:661.605000px;}
.y10_c02493{bottom:692.745000px;}
.yf_c02493{bottom:723.705000px;}
.ye_c02493{bottom:754.845000px;}
.yd_c02493{bottom:785.805000px;}
.yc_c02493{bottom:816.990000px;}
.yb_c02493{bottom:847.950000px;}
.ya_c02493{bottom:879.090000px;}
.y9_c02493{bottom:910.050000px;}
.y8_c02493{bottom:941.190000px;}
.y7_c02493{bottom:972.150000px;}
.y6_c02493{bottom:1003.290000px;}
.y5_c02493{bottom:1034.250000px;}
.y4_c02493{bottom:1065.420000px;}
.h2_c02493{height:22.500000px;}
.h1_c02493{height:48.871406px;}
.h3_c02493{height:70.664062px;}
.h0_c02493{height:1188.000000px;}
.w1_c02493{width:66.636000px;}
.w0_c02493{width:918.000000px;}
.x0_c02493{left:0.000000px;}
.x3_c02493{left:16.560000px;}
.x1_c02493{left:127.656000px;}
.x4_c02493{left:180.750000px;}
.x2_c02493{left:820.950000px;}
@media print{
.v0_c02493{vertical-align:0.000000pt;}
.ls2_c02493{letter-spacing:-0.896000pt;}
.ls1_c02493{letter-spacing:-0.128000pt;}
.ls0_c02493{letter-spacing:0.000000pt;}
.ws1_c02493{word-spacing:-16.000000pt;}
.ws0_c02493{word-spacing:-15.872000pt;}
.ws2_c02493{word-spacing:0.000000pt;}
._4_c02493{margin-left:-1.280000pt;}
._2_c02493{width:0.896000pt;}
._3_c02493{width:1.973333pt;}
._e_c02493{width:3.029333pt;}
._9_c02493{width:4.352000pt;}
._8_c02493{width:5.504000pt;}
._7_c02493{width:6.528000pt;}
._11_c02493{width:7.914667pt;}
._12_c02493{width:9.237333pt;}
._c_c02493{width:11.584000pt;}
._d_c02493{width:12.736000pt;}
._5_c02493{width:15.104000pt;}
._a_c02493{width:17.728000pt;}
._b_c02493{width:18.752000pt;}
._10_c02493{width:19.776000pt;}
._f_c02493{width:20.864000pt;}
._0_c02493{width:27.818667pt;}
._1_c02493{width:28.746667pt;}
._6_c02493{width:30.581333pt;}
._14_c02493{width:36.810667pt;}
._13_c02493{width:37.866667pt;}
.fs0_c02493{font-size:58.880000pt;}
.fs1_c02493{font-size:64.000000pt;}
.y0_c02493{bottom:0.000000pt;}
.y3_c02493{bottom:4.160000pt;}
.y2_c02493{bottom:37.152000pt;}
.y1_c02493{bottom:67.072000pt;}
.y22_c02493{bottom:118.912000pt;}
.y21_c02493{bottom:146.586667pt;}
.y20_c02493{bottom:174.106667pt;}
.y1f_c02493{bottom:201.626667pt;}
.y1e_c02493{bottom:229.306667pt;}
.y1d_c02493{bottom:256.866667pt;}
.y1c_c02493{bottom:284.546667pt;}
.y1b_c02493{bottom:312.066667pt;}
.y1a_c02493{bottom:339.746667pt;}
.y19_c02493{bottom:367.266667pt;}
.y18_c02493{bottom:394.946667pt;}
.y17_c02493{bottom:422.466667pt;}
.y16_c02493{bottom:450.146667pt;}
.y15_c02493{bottom:477.693333pt;}
.y14_c02493{bottom:505.373333pt;}
.y13_c02493{bottom:532.893333pt;}
.y12_c02493{bottom:560.573333pt;}
.y11_c02493{bottom:588.093333pt;}
.y10_c02493{bottom:615.773333pt;}
.yf_c02493{bottom:643.293333pt;}
.ye_c02493{bottom:670.973333pt;}
.yd_c02493{bottom:698.493333pt;}
.yc_c02493{bottom:726.213333pt;}
.yb_c02493{bottom:753.733333pt;}
.ya_c02493{bottom:781.413333pt;}
.y9_c02493{bottom:808.933333pt;}
.y8_c02493{bottom:836.613333pt;}
.y7_c02493{bottom:864.133333pt;}
.y6_c02493{bottom:891.813333pt;}
.y5_c02493{bottom:919.333333pt;}
.y4_c02493{bottom:947.040000pt;}
.h2_c02493{height:20.000000pt;}
.h1_c02493{height:43.441250pt;}
.h3_c02493{height:62.812500pt;}
.h0_c02493{height:1056.000000pt;}
.w1_c02493{width:59.232000pt;}
.w0_c02493{width:816.000000pt;}
.x0_c02493{left:0.000000pt;}
.x3_c02493{left:14.720000pt;}
.x1_c02493{left:113.472000pt;}
.x4_c02493{left:160.666667pt;}
.x2_c02493{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02494 {
    display:none;
  }
  .loading-indicator_c02494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02494 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02494 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02494" -> "#page-container .classname_c02494")
 */
.pf_c02494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02494 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02494 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02494 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02494 {overflow:visible;}
  }
}
.c_c02494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02494 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02494:after { /* webkit #35443 */
  content: '';
}
.t_c02494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02494 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02494 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02494 { /* info for Javascript */
  display:none;
}
.l_c02494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02494:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02494 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02494.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02494;src:url('chunks/assets/font_4d93ce469372740a9bf543cf.woff2')format("woff");}.ff1_c02494{font-family:ff1_c02494;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02494;src:url('chunks/assets/font_a56f0d31aacccf5bc77481c2.woff2')format("woff");}.ff2_c02494{font-family:ff2_c02494;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:ff3_c02494;src:url('chunks/assets/font_ea018982c842da400a32f896.woff2')format("woff");}.ff3_c02494{font-family:ff3_c02494;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02494{vertical-align:0.000000px;}
.ls2_c02494{letter-spacing:-1.440000px;}
.ls3_c02494{letter-spacing:-0.288000px;}
.ls1_c02494{letter-spacing:0.000000px;}
.ls4_c02494{letter-spacing:0.504000px;}
.ls0_c02494{letter-spacing:0.720000px;}
.sc__c02494{text-shadow:none;}
.sc0_c02494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02494{-webkit-text-stroke:0px transparent;}
.sc0_c02494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02494{word-spacing:-18.504000px;}
.ws0_c02494{word-spacing:-18.000000px;}
.ws1_c02494{word-spacing:-17.712000px;}
.ws3_c02494{word-spacing:0.000000px;}
._0_c02494{margin-left:-1.080000px;}
._3_c02494{width:1.128024px;}
._e_c02494{width:2.135616px;}
._2_c02494{width:3.168000px;}
._b_c02494{width:4.524000px;}
._1_c02494{width:5.544000px;}
._4_c02494{width:6.912000px;}
._5_c02494{width:7.932000px;}
._12_c02494{width:10.224000px;}
._7_c02494{width:12.024000px;}
._6_c02494{width:13.440000px;}
._8_c02494{width:14.652000px;}
._f_c02494{width:16.200000px;}
._10_c02494{width:19.800000px;}
._11_c02494{width:20.808000px;}
._14_c02494{width:21.888000px;}
._13_c02494{width:22.932000px;}
._15_c02494{width:27.000000px;}
._c_c02494{width:28.440000px;}
._d_c02494{width:29.639904px;}
._9_c02494{width:45.864000px;}
._a_c02494{width:47.232000px;}
.fc1_c02494{color:rgb(192,80,77);}
.fc0_c02494{color:rgb(0,0,0);}
.fs0_c02494{font-size:66.240000px;}
.fs1_c02494{font-size:72.000000px;}
.y0_c02494{bottom:0.000000px;}
.y3_c02494{bottom:4.680000px;}
.y2_c02494{bottom:41.796000px;}
.y1_c02494{bottom:75.456000px;}
.y21_c02494{bottom:164.910000px;}
.y20_c02494{bottom:195.870000px;}
.y1f_c02494{bottom:226.830000px;}
.y1e_c02494{bottom:257.970000px;}
.y1d_c02494{bottom:288.975000px;}
.y1c_c02494{bottom:320.115000px;}
.y1b_c02494{bottom:351.075000px;}
.y1a_c02494{bottom:382.215000px;}
.y19_c02494{bottom:413.175000px;}
.y18_c02494{bottom:444.315000px;}
.y17_c02494{bottom:475.275000px;}
.y16_c02494{bottom:506.415000px;}
.y15_c02494{bottom:537.405000px;}
.y14_c02494{bottom:568.545000px;}
.y13_c02494{bottom:599.505000px;}
.y12_c02494{bottom:630.645000px;}
.y11_c02494{bottom:661.605000px;}
.y10_c02494{bottom:692.745000px;}
.yf_c02494{bottom:723.705000px;}
.ye_c02494{bottom:754.845000px;}
.yd_c02494{bottom:785.805000px;}
.yc_c02494{bottom:816.990000px;}
.yb_c02494{bottom:847.950000px;}
.ya_c02494{bottom:879.090000px;}
.y9_c02494{bottom:910.050000px;}
.y8_c02494{bottom:941.190000px;}
.y7_c02494{bottom:972.150000px;}
.y6_c02494{bottom:1003.290000px;}
.y5_c02494{bottom:1034.250000px;}
.y4_c02494{bottom:1065.420000px;}
.h2_c02494{height:22.500000px;}
.h1_c02494{height:48.871406px;}
.h3_c02494{height:70.664062px;}
.h0_c02494{height:1188.000000px;}
.w1_c02494{width:66.636000px;}
.w0_c02494{width:918.000000px;}
.x0_c02494{left:0.000000px;}
.x3_c02494{left:16.560000px;}
.x1_c02494{left:127.656000px;}
.x4_c02494{left:180.750000px;}
.x2_c02494{left:820.950000px;}
@media print{
.v0_c02494{vertical-align:0.000000pt;}
.ls2_c02494{letter-spacing:-1.280000pt;}
.ls3_c02494{letter-spacing:-0.256000pt;}
.ls1_c02494{letter-spacing:0.000000pt;}
.ls4_c02494{letter-spacing:0.448000pt;}
.ls0_c02494{letter-spacing:0.640000pt;}
.ws2_c02494{word-spacing:-16.448000pt;}
.ws0_c02494{word-spacing:-16.000000pt;}
.ws1_c02494{word-spacing:-15.744000pt;}
.ws3_c02494{word-spacing:0.000000pt;}
._0_c02494{margin-left:-0.960000pt;}
._3_c02494{width:1.002688pt;}
._e_c02494{width:1.898325pt;}
._2_c02494{width:2.816000pt;}
._b_c02494{width:4.021333pt;}
._1_c02494{width:4.928000pt;}
._4_c02494{width:6.144000pt;}
._5_c02494{width:7.050667pt;}
._12_c02494{width:9.088000pt;}
._7_c02494{width:10.688000pt;}
._6_c02494{width:11.946667pt;}
._8_c02494{width:13.024000pt;}
._f_c02494{width:14.400000pt;}
._10_c02494{width:17.600000pt;}
._11_c02494{width:18.496000pt;}
._14_c02494{width:19.456000pt;}
._13_c02494{width:20.384000pt;}
._15_c02494{width:24.000000pt;}
._c_c02494{width:25.280000pt;}
._d_c02494{width:26.346581pt;}
._9_c02494{width:40.768000pt;}
._a_c02494{width:41.984000pt;}
.fs0_c02494{font-size:58.880000pt;}
.fs1_c02494{font-size:64.000000pt;}
.y0_c02494{bottom:0.000000pt;}
.y3_c02494{bottom:4.160000pt;}
.y2_c02494{bottom:37.152000pt;}
.y1_c02494{bottom:67.072000pt;}
.y21_c02494{bottom:146.586667pt;}
.y20_c02494{bottom:174.106667pt;}
.y1f_c02494{bottom:201.626667pt;}
.y1e_c02494{bottom:229.306667pt;}
.y1d_c02494{bottom:256.866667pt;}
.y1c_c02494{bottom:284.546667pt;}
.y1b_c02494{bottom:312.066667pt;}
.y1a_c02494{bottom:339.746667pt;}
.y19_c02494{bottom:367.266667pt;}
.y18_c02494{bottom:394.946667pt;}
.y17_c02494{bottom:422.466667pt;}
.y16_c02494{bottom:450.146667pt;}
.y15_c02494{bottom:477.693333pt;}
.y14_c02494{bottom:505.373333pt;}
.y13_c02494{bottom:532.893333pt;}
.y12_c02494{bottom:560.573333pt;}
.y11_c02494{bottom:588.093333pt;}
.y10_c02494{bottom:615.773333pt;}
.yf_c02494{bottom:643.293333pt;}
.ye_c02494{bottom:670.973333pt;}
.yd_c02494{bottom:698.493333pt;}
.yc_c02494{bottom:726.213333pt;}
.yb_c02494{bottom:753.733333pt;}
.ya_c02494{bottom:781.413333pt;}
.y9_c02494{bottom:808.933333pt;}
.y8_c02494{bottom:836.613333pt;}
.y7_c02494{bottom:864.133333pt;}
.y6_c02494{bottom:891.813333pt;}
.y5_c02494{bottom:919.333333pt;}
.y4_c02494{bottom:947.040000pt;}
.h2_c02494{height:20.000000pt;}
.h1_c02494{height:43.441250pt;}
.h3_c02494{height:62.812500pt;}
.h0_c02494{height:1056.000000pt;}
.w1_c02494{width:59.232000pt;}
.w0_c02494{width:816.000000pt;}
.x0_c02494{left:0.000000pt;}
.x3_c02494{left:14.720000pt;}
.x1_c02494{left:113.472000pt;}
.x4_c02494{left:160.666667pt;}
.x2_c02494{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02495 {
    display:none;
  }
  .loading-indicator_c02495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02495 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02495 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02495" -> "#page-container .classname_c02495")
 */
.pf_c02495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02495 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02495 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02495 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02495 {overflow:visible;}
  }
}
.c_c02495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02495 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02495:after { /* webkit #35443 */
  content: '';
}
.t_c02495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02495 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02495 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02495 { /* info for Javascript */
  display:none;
}
.l_c02495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02495:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02495 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02495.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02495;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff1_c02495{font-family:ff1_c02495;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02495;src:url('chunks/assets/font_6873a164b9541a857e573bde.woff2')format("woff");}.ff2_c02495{font-family:ff2_c02495;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:ff3_c02495;src:url('chunks/assets/font_908f3810dd5a11bcd5521892.woff2')format("woff");}.ff3_c02495{font-family:ff3_c02495;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02495{vertical-align:0.000000px;}
.ls2_c02495{letter-spacing:-1.440000px;}
.ls1_c02495{letter-spacing:0.000000px;}
.ls0_c02495{letter-spacing:5.040000px;}
.sc__c02495{text-shadow:none;}
.sc0_c02495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02495{-webkit-text-stroke:0px transparent;}
.sc0_c02495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02495{word-spacing:-18.000000px;}
.ws1_c02495{word-spacing:0.000000px;}
._11_c02495{margin-left:-2.160000px;}
._1_c02495{margin-left:-1.080000px;}
._2_c02495{width:1.152000px;}
._4_c02495{width:2.160000px;}
._7_c02495{width:3.816000px;}
._8_c02495{width:5.472000px;}
._9_c02495{width:6.984000px;}
._a_c02495{width:8.220000px;}
._5_c02495{width:10.584000px;}
._6_c02495{width:11.676000px;}
._d_c02495{width:13.176024px;}
._b_c02495{width:14.256000px;}
._c_c02495{width:15.480000px;}
._12_c02495{width:19.944000px;}
._13_c02495{width:21.024000px;}
._14_c02495{width:22.032000px;}
._3_c02495{width:23.592000px;}
._0_c02495{width:25.056000px;}
._e_c02495{width:27.120000px;}
._f_c02495{width:30.168000px;}
._10_c02495{width:31.680000px;}
.fc1_c02495{color:rgb(192,80,77);}
.fc0_c02495{color:rgb(0,0,0);}
.fs0_c02495{font-size:66.240000px;}
.fs1_c02495{font-size:72.000000px;}
.y0_c02495{bottom:0.000000px;}
.y3_c02495{bottom:4.680000px;}
.y2_c02495{bottom:41.796000px;}
.y1_c02495{bottom:75.456000px;}
.y22_c02495{bottom:133.776000px;}
.y21_c02495{bottom:164.910000px;}
.y20_c02495{bottom:195.870000px;}
.y1f_c02495{bottom:226.830000px;}
.y1e_c02495{bottom:257.970000px;}
.y1d_c02495{bottom:288.975000px;}
.y1c_c02495{bottom:320.115000px;}
.y1b_c02495{bottom:351.075000px;}
.y1a_c02495{bottom:382.215000px;}
.y19_c02495{bottom:413.175000px;}
.y18_c02495{bottom:444.315000px;}
.y17_c02495{bottom:475.275000px;}
.y16_c02495{bottom:506.415000px;}
.y15_c02495{bottom:537.405000px;}
.y14_c02495{bottom:568.545000px;}
.y13_c02495{bottom:599.505000px;}
.y12_c02495{bottom:630.645000px;}
.y11_c02495{bottom:661.605000px;}
.y10_c02495{bottom:692.745000px;}
.yf_c02495{bottom:723.705000px;}
.ye_c02495{bottom:754.845000px;}
.yd_c02495{bottom:785.805000px;}
.yc_c02495{bottom:816.990000px;}
.yb_c02495{bottom:847.950000px;}
.ya_c02495{bottom:879.090000px;}
.y9_c02495{bottom:910.050000px;}
.y8_c02495{bottom:941.190000px;}
.y7_c02495{bottom:972.150000px;}
.y6_c02495{bottom:1003.290000px;}
.y5_c02495{bottom:1034.250000px;}
.y4_c02495{bottom:1065.420000px;}
.h2_c02495{height:22.500000px;}
.h1_c02495{height:48.871406px;}
.h4_c02495{height:64.546875px;}
.h3_c02495{height:70.664062px;}
.h0_c02495{height:1188.000000px;}
.w1_c02495{width:66.636000px;}
.w0_c02495{width:918.000000px;}
.x0_c02495{left:0.000000px;}
.x3_c02495{left:16.560000px;}
.x1_c02495{left:127.656000px;}
.x4_c02495{left:180.750000px;}
.x2_c02495{left:820.950000px;}
@media print{
.v0_c02495{vertical-align:0.000000pt;}
.ls2_c02495{letter-spacing:-1.280000pt;}
.ls1_c02495{letter-spacing:0.000000pt;}
.ls0_c02495{letter-spacing:4.480000pt;}
.ws0_c02495{word-spacing:-16.000000pt;}
.ws1_c02495{word-spacing:0.000000pt;}
._11_c02495{margin-left:-1.920000pt;}
._1_c02495{margin-left:-0.960000pt;}
._2_c02495{width:1.024000pt;}
._4_c02495{width:1.920000pt;}
._7_c02495{width:3.392000pt;}
._8_c02495{width:4.864000pt;}
._9_c02495{width:6.208000pt;}
._a_c02495{width:7.306667pt;}
._5_c02495{width:9.408000pt;}
._6_c02495{width:10.378667pt;}
._d_c02495{width:11.712021pt;}
._b_c02495{width:12.672000pt;}
._c_c02495{width:13.760000pt;}
._12_c02495{width:17.728000pt;}
._13_c02495{width:18.688000pt;}
._14_c02495{width:19.584000pt;}
._3_c02495{width:20.970667pt;}
._0_c02495{width:22.272000pt;}
._e_c02495{width:24.106667pt;}
._f_c02495{width:26.816000pt;}
._10_c02495{width:28.160000pt;}
.fs0_c02495{font-size:58.880000pt;}
.fs1_c02495{font-size:64.000000pt;}
.y0_c02495{bottom:0.000000pt;}
.y3_c02495{bottom:4.160000pt;}
.y2_c02495{bottom:37.152000pt;}
.y1_c02495{bottom:67.072000pt;}
.y22_c02495{bottom:118.912000pt;}
.y21_c02495{bottom:146.586667pt;}
.y20_c02495{bottom:174.106667pt;}
.y1f_c02495{bottom:201.626667pt;}
.y1e_c02495{bottom:229.306667pt;}
.y1d_c02495{bottom:256.866667pt;}
.y1c_c02495{bottom:284.546667pt;}
.y1b_c02495{bottom:312.066667pt;}
.y1a_c02495{bottom:339.746667pt;}
.y19_c02495{bottom:367.266667pt;}
.y18_c02495{bottom:394.946667pt;}
.y17_c02495{bottom:422.466667pt;}
.y16_c02495{bottom:450.146667pt;}
.y15_c02495{bottom:477.693333pt;}
.y14_c02495{bottom:505.373333pt;}
.y13_c02495{bottom:532.893333pt;}
.y12_c02495{bottom:560.573333pt;}
.y11_c02495{bottom:588.093333pt;}
.y10_c02495{bottom:615.773333pt;}
.yf_c02495{bottom:643.293333pt;}
.ye_c02495{bottom:670.973333pt;}
.yd_c02495{bottom:698.493333pt;}
.yc_c02495{bottom:726.213333pt;}
.yb_c02495{bottom:753.733333pt;}
.ya_c02495{bottom:781.413333pt;}
.y9_c02495{bottom:808.933333pt;}
.y8_c02495{bottom:836.613333pt;}
.y7_c02495{bottom:864.133333pt;}
.y6_c02495{bottom:891.813333pt;}
.y5_c02495{bottom:919.333333pt;}
.y4_c02495{bottom:947.040000pt;}
.h2_c02495{height:20.000000pt;}
.h1_c02495{height:43.441250pt;}
.h4_c02495{height:57.375000pt;}
.h3_c02495{height:62.812500pt;}
.h0_c02495{height:1056.000000pt;}
.w1_c02495{width:59.232000pt;}
.w0_c02495{width:816.000000pt;}
.x0_c02495{left:0.000000pt;}
.x3_c02495{left:14.720000pt;}
.x1_c02495{left:113.472000pt;}
.x4_c02495{left:160.666667pt;}
.x2_c02495{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02496 {
    display:none;
  }
  .loading-indicator_c02496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02496 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02496 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02496" -> "#page-container .classname_c02496")
 */
.pf_c02496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02496 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02496 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02496 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02496 {overflow:visible;}
  }
}
.c_c02496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02496 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02496:after { /* webkit #35443 */
  content: '';
}
.t_c02496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02496 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02496 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02496 { /* info for Javascript */
  display:none;
}
.l_c02496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02496:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02496 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02496.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02496;src:url('chunks/assets/font_102189ec2932551816d6596c.woff2')format("woff");}.ff1_c02496{font-family:ff1_c02496;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02496;src:url('chunks/assets/font_d58c2c4072598ec184886baa.woff2')format("woff");}.ff2_c02496{font-family:ff2_c02496;line-height:1.112305;font-style:normal;font-weight: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_c02496;src:url('chunks/assets/font_ddfdbbd2106d0127cde4e6b6.woff2')format("woff");}.ff3_c02496{font-family:ff3_c02496;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;}
.m0_c02496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02496{vertical-align:0.000000px;}
.ls1_c02496{letter-spacing:-1.440000px;}
.ls0_c02496{letter-spacing:0.000000px;}
.sc__c02496{text-shadow:none;}
.sc0_c02496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02496{-webkit-text-stroke:0px transparent;}
.sc0_c02496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02496{word-spacing:-18.000000px;}
.ws1_c02496{word-spacing:0.000000px;}
._16_c02496{margin-left:-2.088144px;}
._1_c02496{margin-left:-1.080000px;}
._0_c02496{width:1.368000px;}
._2_c02496{width:2.460024px;}
._f_c02496{width:3.563976px;}
._15_c02496{width:4.788024px;}
._17_c02496{width:6.228120px;}
._8_c02496{width:7.272000px;}
._9_c02496{width:8.280000px;}
._d_c02496{width:10.080000px;}
._5_c02496{width:11.976000px;}
._3_c02496{width:13.152000px;}
._4_c02496{width:14.400000px;}
._c_c02496{width:15.504000px;}
._10_c02496{width:16.944000px;}
._e_c02496{width:19.080000px;}
._6_c02496{width:20.376000px;}
._7_c02496{width:21.528000px;}
._11_c02496{width:25.200000px;}
._a_c02496{width:26.640000px;}
._b_c02496{width:28.296000px;}
._13_c02496{width:34.560000px;}
._14_c02496{width:35.868000px;}
._12_c02496{width:50.256000px;}
.fc1_c02496{color:rgb(192,80,77);}
.fc0_c02496{color:rgb(0,0,0);}
.fs0_c02496{font-size:66.240000px;}
.fs1_c02496{font-size:72.000000px;}
.y0_c02496{bottom:0.000000px;}
.y3_c02496{bottom:4.680000px;}
.y2_c02496{bottom:41.796000px;}
.y1_c02496{bottom:75.456000px;}
.y21_c02496{bottom:164.910000px;}
.y20_c02496{bottom:195.870000px;}
.y1f_c02496{bottom:226.830000px;}
.y1e_c02496{bottom:257.970000px;}
.y1d_c02496{bottom:288.975000px;}
.y1c_c02496{bottom:320.115000px;}
.y1b_c02496{bottom:351.075000px;}
.y1a_c02496{bottom:382.215000px;}
.y19_c02496{bottom:413.175000px;}
.y18_c02496{bottom:444.315000px;}
.y17_c02496{bottom:475.275000px;}
.y16_c02496{bottom:506.415000px;}
.y15_c02496{bottom:537.405000px;}
.y14_c02496{bottom:568.545000px;}
.y13_c02496{bottom:599.505000px;}
.y12_c02496{bottom:630.645000px;}
.y11_c02496{bottom:661.605000px;}
.y10_c02496{bottom:692.745000px;}
.yf_c02496{bottom:723.705000px;}
.ye_c02496{bottom:754.845000px;}
.yd_c02496{bottom:785.805000px;}
.yc_c02496{bottom:816.990000px;}
.yb_c02496{bottom:847.950000px;}
.ya_c02496{bottom:879.090000px;}
.y9_c02496{bottom:910.050000px;}
.y8_c02496{bottom:941.190000px;}
.y7_c02496{bottom:972.150000px;}
.y6_c02496{bottom:1003.290000px;}
.y5_c02496{bottom:1034.250000px;}
.y4_c02496{bottom:1065.420000px;}
.h2_c02496{height:22.500000px;}
.h1_c02496{height:48.871406px;}
.h3_c02496{height:70.664062px;}
.h0_c02496{height:1188.000000px;}
.w1_c02496{width:66.636000px;}
.w0_c02496{width:918.000000px;}
.x0_c02496{left:0.000000px;}
.x3_c02496{left:16.560000px;}
.x1_c02496{left:127.656000px;}
.x4_c02496{left:180.750000px;}
.x2_c02496{left:820.950000px;}
@media print{
.v0_c02496{vertical-align:0.000000pt;}
.ls1_c02496{letter-spacing:-1.280000pt;}
.ls0_c02496{letter-spacing:0.000000pt;}
.ws0_c02496{word-spacing:-16.000000pt;}
.ws1_c02496{word-spacing:0.000000pt;}
._16_c02496{margin-left:-1.856128pt;}
._1_c02496{margin-left:-0.960000pt;}
._0_c02496{width:1.216000pt;}
._2_c02496{width:2.186688pt;}
._f_c02496{width:3.167979pt;}
._15_c02496{width:4.256021pt;}
._17_c02496{width:5.536107pt;}
._8_c02496{width:6.464000pt;}
._9_c02496{width:7.360000pt;}
._d_c02496{width:8.960000pt;}
._5_c02496{width:10.645333pt;}
._3_c02496{width:11.690667pt;}
._4_c02496{width:12.800000pt;}
._c_c02496{width:13.781333pt;}
._10_c02496{width:15.061333pt;}
._e_c02496{width:16.960000pt;}
._6_c02496{width:18.112000pt;}
._7_c02496{width:19.136000pt;}
._11_c02496{width:22.400000pt;}
._a_c02496{width:23.680000pt;}
._b_c02496{width:25.152000pt;}
._13_c02496{width:30.720000pt;}
._14_c02496{width:31.882667pt;}
._12_c02496{width:44.672000pt;}
.fs0_c02496{font-size:58.880000pt;}
.fs1_c02496{font-size:64.000000pt;}
.y0_c02496{bottom:0.000000pt;}
.y3_c02496{bottom:4.160000pt;}
.y2_c02496{bottom:37.152000pt;}
.y1_c02496{bottom:67.072000pt;}
.y21_c02496{bottom:146.586667pt;}
.y20_c02496{bottom:174.106667pt;}
.y1f_c02496{bottom:201.626667pt;}
.y1e_c02496{bottom:229.306667pt;}
.y1d_c02496{bottom:256.866667pt;}
.y1c_c02496{bottom:284.546667pt;}
.y1b_c02496{bottom:312.066667pt;}
.y1a_c02496{bottom:339.746667pt;}
.y19_c02496{bottom:367.266667pt;}
.y18_c02496{bottom:394.946667pt;}
.y17_c02496{bottom:422.466667pt;}
.y16_c02496{bottom:450.146667pt;}
.y15_c02496{bottom:477.693333pt;}
.y14_c02496{bottom:505.373333pt;}
.y13_c02496{bottom:532.893333pt;}
.y12_c02496{bottom:560.573333pt;}
.y11_c02496{bottom:588.093333pt;}
.y10_c02496{bottom:615.773333pt;}
.yf_c02496{bottom:643.293333pt;}
.ye_c02496{bottom:670.973333pt;}
.yd_c02496{bottom:698.493333pt;}
.yc_c02496{bottom:726.213333pt;}
.yb_c02496{bottom:753.733333pt;}
.ya_c02496{bottom:781.413333pt;}
.y9_c02496{bottom:808.933333pt;}
.y8_c02496{bottom:836.613333pt;}
.y7_c02496{bottom:864.133333pt;}
.y6_c02496{bottom:891.813333pt;}
.y5_c02496{bottom:919.333333pt;}
.y4_c02496{bottom:947.040000pt;}
.h2_c02496{height:20.000000pt;}
.h1_c02496{height:43.441250pt;}
.h3_c02496{height:62.812500pt;}
.h0_c02496{height:1056.000000pt;}
.w1_c02496{width:59.232000pt;}
.w0_c02496{width:816.000000pt;}
.x0_c02496{left:0.000000pt;}
.x3_c02496{left:14.720000pt;}
.x1_c02496{left:113.472000pt;}
.x4_c02496{left:160.666667pt;}
.x2_c02496{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02497 {
    display:none;
  }
  .loading-indicator_c02497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02497 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02497 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02497" -> "#page-container .classname_c02497")
 */
.pf_c02497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02497 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02497 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02497 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02497 {overflow:visible;}
  }
}
.c_c02497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02497 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02497:after { /* webkit #35443 */
  content: '';
}
.t_c02497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02497 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02497 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02497 { /* info for Javascript */
  display:none;
}
.l_c02497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02497:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02497 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02497.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02497;src:url('chunks/assets/font_371e75858281c911a8ed40c9.woff2')format("woff");}.ff1_c02497{font-family:ff1_c02497;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02497;src:url('chunks/assets/font_7138d8824bb66d5ae7d0529f.woff2')format("woff");}.ff2_c02497{font-family:ff2_c02497;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;}
.m0_c02497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02497{vertical-align:0.000000px;}
.ls0_c02497{letter-spacing:0.000000px;}
.sc__c02497{text-shadow:none;}
.sc0_c02497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02497{-webkit-text-stroke:0px transparent;}
.sc0_c02497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02497{word-spacing:0.000000px;}
._a_c02497{margin-left:-2.160000px;}
._0_c02497{margin-left:-1.116000px;}
._5_c02497{width:1.032000px;}
._1_c02497{width:2.088000px;}
._2_c02497{width:3.168000px;}
._c_c02497{width:4.464000px;}
._6_c02497{width:6.048000px;}
._7_c02497{width:7.572000px;}
._8_c02497{width:8.664000px;}
._b_c02497{width:9.996000px;}
._10_c02497{width:11.520000px;}
._4_c02497{width:13.068000px;}
._3_c02497{width:14.112000px;}
._9_c02497{width:16.020000px;}
._e_c02497{width:19.668024px;}
._d_c02497{width:20.700000px;}
._11_c02497{width:21.924000px;}
._f_c02497{width:40.032000px;}
.fc1_c02497{color:rgb(192,80,77);}
.fc2_c02497{color:rgb(17,17,17);}
.fc0_c02497{color:rgb(0,0,0);}
.fs0_c02497{font-size:66.240000px;}
.fs1_c02497{font-size:72.000000px;}
.y0_c02497{bottom:0.000000px;}
.y3_c02497{bottom:4.680000px;}
.y2_c02497{bottom:41.796000px;}
.y1_c02497{bottom:75.456000px;}
.y22_c02497{bottom:133.776000px;}
.y21_c02497{bottom:164.910000px;}
.y20_c02497{bottom:195.870000px;}
.y1f_c02497{bottom:226.830000px;}
.y1e_c02497{bottom:257.970000px;}
.y1d_c02497{bottom:288.975000px;}
.y1c_c02497{bottom:320.115000px;}
.y1b_c02497{bottom:351.075000px;}
.y1a_c02497{bottom:382.215000px;}
.y19_c02497{bottom:413.175000px;}
.y18_c02497{bottom:444.315000px;}
.y17_c02497{bottom:475.275000px;}
.y16_c02497{bottom:506.415000px;}
.y15_c02497{bottom:537.405000px;}
.y14_c02497{bottom:568.545000px;}
.y13_c02497{bottom:599.505000px;}
.y12_c02497{bottom:630.645000px;}
.y11_c02497{bottom:661.605000px;}
.y10_c02497{bottom:692.745000px;}
.yf_c02497{bottom:723.705000px;}
.ye_c02497{bottom:754.845000px;}
.yd_c02497{bottom:785.805000px;}
.yc_c02497{bottom:816.990000px;}
.yb_c02497{bottom:847.950000px;}
.ya_c02497{bottom:879.090000px;}
.y9_c02497{bottom:910.050000px;}
.y8_c02497{bottom:941.190000px;}
.y7_c02497{bottom:972.150000px;}
.y6_c02497{bottom:1003.290000px;}
.y5_c02497{bottom:1034.250000px;}
.y4_c02497{bottom:1065.420000px;}
.h2_c02497{height:22.500000px;}
.h1_c02497{height:48.871406px;}
.h3_c02497{height:70.664062px;}
.h0_c02497{height:1188.000000px;}
.w1_c02497{width:66.636000px;}
.w0_c02497{width:918.000000px;}
.x0_c02497{left:0.000000px;}
.x3_c02497{left:16.560000px;}
.x1_c02497{left:127.656000px;}
.x4_c02497{left:180.750000px;}
.x2_c02497{left:820.950000px;}
@media print{
.v0_c02497{vertical-align:0.000000pt;}
.ls0_c02497{letter-spacing:0.000000pt;}
.ws0_c02497{word-spacing:0.000000pt;}
._a_c02497{margin-left:-1.920000pt;}
._0_c02497{margin-left:-0.992000pt;}
._5_c02497{width:0.917333pt;}
._1_c02497{width:1.856000pt;}
._2_c02497{width:2.816000pt;}
._c_c02497{width:3.968000pt;}
._6_c02497{width:5.376000pt;}
._7_c02497{width:6.730667pt;}
._8_c02497{width:7.701333pt;}
._b_c02497{width:8.885333pt;}
._10_c02497{width:10.240000pt;}
._4_c02497{width:11.616000pt;}
._3_c02497{width:12.544000pt;}
._9_c02497{width:14.240000pt;}
._e_c02497{width:17.482688pt;}
._d_c02497{width:18.400000pt;}
._11_c02497{width:19.488000pt;}
._f_c02497{width:35.584000pt;}
.fs0_c02497{font-size:58.880000pt;}
.fs1_c02497{font-size:64.000000pt;}
.y0_c02497{bottom:0.000000pt;}
.y3_c02497{bottom:4.160000pt;}
.y2_c02497{bottom:37.152000pt;}
.y1_c02497{bottom:67.072000pt;}
.y22_c02497{bottom:118.912000pt;}
.y21_c02497{bottom:146.586667pt;}
.y20_c02497{bottom:174.106667pt;}
.y1f_c02497{bottom:201.626667pt;}
.y1e_c02497{bottom:229.306667pt;}
.y1d_c02497{bottom:256.866667pt;}
.y1c_c02497{bottom:284.546667pt;}
.y1b_c02497{bottom:312.066667pt;}
.y1a_c02497{bottom:339.746667pt;}
.y19_c02497{bottom:367.266667pt;}
.y18_c02497{bottom:394.946667pt;}
.y17_c02497{bottom:422.466667pt;}
.y16_c02497{bottom:450.146667pt;}
.y15_c02497{bottom:477.693333pt;}
.y14_c02497{bottom:505.373333pt;}
.y13_c02497{bottom:532.893333pt;}
.y12_c02497{bottom:560.573333pt;}
.y11_c02497{bottom:588.093333pt;}
.y10_c02497{bottom:615.773333pt;}
.yf_c02497{bottom:643.293333pt;}
.ye_c02497{bottom:670.973333pt;}
.yd_c02497{bottom:698.493333pt;}
.yc_c02497{bottom:726.213333pt;}
.yb_c02497{bottom:753.733333pt;}
.ya_c02497{bottom:781.413333pt;}
.y9_c02497{bottom:808.933333pt;}
.y8_c02497{bottom:836.613333pt;}
.y7_c02497{bottom:864.133333pt;}
.y6_c02497{bottom:891.813333pt;}
.y5_c02497{bottom:919.333333pt;}
.y4_c02497{bottom:947.040000pt;}
.h2_c02497{height:20.000000pt;}
.h1_c02497{height:43.441250pt;}
.h3_c02497{height:62.812500pt;}
.h0_c02497{height:1056.000000pt;}
.w1_c02497{width:59.232000pt;}
.w0_c02497{width:816.000000pt;}
.x0_c02497{left:0.000000pt;}
.x3_c02497{left:14.720000pt;}
.x1_c02497{left:113.472000pt;}
.x4_c02497{left:160.666667pt;}
.x2_c02497{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02498 {
    display:none;
  }
  .loading-indicator_c02498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02498 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02498 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02498" -> "#page-container .classname_c02498")
 */
.pf_c02498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02498 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02498 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02498 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02498 {overflow:visible;}
  }
}
.c_c02498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02498 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02498:after { /* webkit #35443 */
  content: '';
}
.t_c02498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02498 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02498 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02498 { /* info for Javascript */
  display:none;
}
.l_c02498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02498:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02498 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02498.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02498;src:url('chunks/assets/font_dbdc698c74187e9828b14ba0.woff2')format("woff");}.ff1_c02498{font-family:ff1_c02498;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02498;src:url('chunks/assets/font_15b7d4b44275d4be4c1e8454.woff2')format("woff");}.ff2_c02498{font-family:ff2_c02498;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:ff3_c02498;src:url('chunks/assets/font_16dce44c64e099e8ae945360.woff2')format("woff");}.ff3_c02498{font-family:ff3_c02498;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02498{vertical-align:0.000000px;}
.ls0_c02498{letter-spacing:0.000000px;}
.sc__c02498{text-shadow:none;}
.sc0_c02498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02498{-webkit-text-stroke:0px transparent;}
.sc0_c02498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02498{word-spacing:0.000000px;}
._d_c02498{margin-left:-2.831976px;}
._1_c02498{margin-left:-1.080000px;}
._3_c02498{width:1.092024px;}
._13_c02498{width:2.183904px;}
._2_c02498{width:3.240000px;}
._7_c02498{width:4.248000px;}
._8_c02498{width:5.328000px;}
._10_c02498{width:7.427976px;}
._4_c02498{width:8.928000px;}
._c_c02498{width:10.008000px;}
._e_c02498{width:11.016000px;}
._0_c02498{width:12.024000px;}
._f_c02498{width:13.032000px;}
._5_c02498{width:14.112000px;}
._6_c02498{width:15.264000px;}
._11_c02498{width:20.664000px;}
._b_c02498{width:21.672000px;}
._12_c02498{width:22.680000px;}
._9_c02498{width:24.336000px;}
._a_c02498{width:27.864000px;}
.fc1_c02498{color:rgb(192,80,77);}
.fc0_c02498{color:rgb(0,0,0);}
.fs0_c02498{font-size:66.240000px;}
.fs1_c02498{font-size:72.000000px;}
.y0_c02498{bottom:0.000000px;}
.y3_c02498{bottom:4.680000px;}
.y2_c02498{bottom:41.796000px;}
.y1_c02498{bottom:75.456000px;}
.y22_c02498{bottom:133.776000px;}
.y21_c02498{bottom:164.910000px;}
.y20_c02498{bottom:195.870000px;}
.y1f_c02498{bottom:226.830000px;}
.y1e_c02498{bottom:257.970000px;}
.y1d_c02498{bottom:288.975000px;}
.y1c_c02498{bottom:320.115000px;}
.y1b_c02498{bottom:351.075000px;}
.y1a_c02498{bottom:382.215000px;}
.y19_c02498{bottom:413.175000px;}
.y18_c02498{bottom:444.315000px;}
.y17_c02498{bottom:475.275000px;}
.y16_c02498{bottom:506.415000px;}
.y15_c02498{bottom:537.405000px;}
.y14_c02498{bottom:568.545000px;}
.y13_c02498{bottom:599.505000px;}
.y12_c02498{bottom:630.645000px;}
.y11_c02498{bottom:661.605000px;}
.y10_c02498{bottom:692.745000px;}
.yf_c02498{bottom:723.705000px;}
.ye_c02498{bottom:754.845000px;}
.yd_c02498{bottom:785.805000px;}
.yc_c02498{bottom:816.990000px;}
.yb_c02498{bottom:847.950000px;}
.ya_c02498{bottom:879.090000px;}
.y9_c02498{bottom:910.050000px;}
.y8_c02498{bottom:941.190000px;}
.y7_c02498{bottom:972.150000px;}
.y6_c02498{bottom:1003.290000px;}
.y5_c02498{bottom:1034.250000px;}
.y4_c02498{bottom:1065.420000px;}
.h2_c02498{height:22.500000px;}
.h1_c02498{height:48.871406px;}
.h4_c02498{height:64.546875px;}
.h3_c02498{height:70.664062px;}
.h0_c02498{height:1188.000000px;}
.w1_c02498{width:66.636000px;}
.w0_c02498{width:918.000000px;}
.x0_c02498{left:0.000000px;}
.x3_c02498{left:16.560000px;}
.x1_c02498{left:127.656000px;}
.x4_c02498{left:180.750000px;}
.x2_c02498{left:820.950000px;}
@media print{
.v0_c02498{vertical-align:0.000000pt;}
.ls0_c02498{letter-spacing:0.000000pt;}
.ws0_c02498{word-spacing:0.000000pt;}
._d_c02498{margin-left:-2.517312pt;}
._1_c02498{margin-left:-0.960000pt;}
._3_c02498{width:0.970688pt;}
._13_c02498{width:1.941248pt;}
._2_c02498{width:2.880000pt;}
._7_c02498{width:3.776000pt;}
._8_c02498{width:4.736000pt;}
._10_c02498{width:6.602645pt;}
._4_c02498{width:7.936000pt;}
._c_c02498{width:8.896000pt;}
._e_c02498{width:9.792000pt;}
._0_c02498{width:10.688000pt;}
._f_c02498{width:11.584000pt;}
._5_c02498{width:12.544000pt;}
._6_c02498{width:13.568000pt;}
._11_c02498{width:18.368000pt;}
._b_c02498{width:19.264000pt;}
._12_c02498{width:20.160000pt;}
._9_c02498{width:21.632000pt;}
._a_c02498{width:24.768000pt;}
.fs0_c02498{font-size:58.880000pt;}
.fs1_c02498{font-size:64.000000pt;}
.y0_c02498{bottom:0.000000pt;}
.y3_c02498{bottom:4.160000pt;}
.y2_c02498{bottom:37.152000pt;}
.y1_c02498{bottom:67.072000pt;}
.y22_c02498{bottom:118.912000pt;}
.y21_c02498{bottom:146.586667pt;}
.y20_c02498{bottom:174.106667pt;}
.y1f_c02498{bottom:201.626667pt;}
.y1e_c02498{bottom:229.306667pt;}
.y1d_c02498{bottom:256.866667pt;}
.y1c_c02498{bottom:284.546667pt;}
.y1b_c02498{bottom:312.066667pt;}
.y1a_c02498{bottom:339.746667pt;}
.y19_c02498{bottom:367.266667pt;}
.y18_c02498{bottom:394.946667pt;}
.y17_c02498{bottom:422.466667pt;}
.y16_c02498{bottom:450.146667pt;}
.y15_c02498{bottom:477.693333pt;}
.y14_c02498{bottom:505.373333pt;}
.y13_c02498{bottom:532.893333pt;}
.y12_c02498{bottom:560.573333pt;}
.y11_c02498{bottom:588.093333pt;}
.y10_c02498{bottom:615.773333pt;}
.yf_c02498{bottom:643.293333pt;}
.ye_c02498{bottom:670.973333pt;}
.yd_c02498{bottom:698.493333pt;}
.yc_c02498{bottom:726.213333pt;}
.yb_c02498{bottom:753.733333pt;}
.ya_c02498{bottom:781.413333pt;}
.y9_c02498{bottom:808.933333pt;}
.y8_c02498{bottom:836.613333pt;}
.y7_c02498{bottom:864.133333pt;}
.y6_c02498{bottom:891.813333pt;}
.y5_c02498{bottom:919.333333pt;}
.y4_c02498{bottom:947.040000pt;}
.h2_c02498{height:20.000000pt;}
.h1_c02498{height:43.441250pt;}
.h4_c02498{height:57.375000pt;}
.h3_c02498{height:62.812500pt;}
.h0_c02498{height:1056.000000pt;}
.w1_c02498{width:59.232000pt;}
.w0_c02498{width:816.000000pt;}
.x0_c02498{left:0.000000pt;}
.x3_c02498{left:14.720000pt;}
.x1_c02498{left:113.472000pt;}
.x4_c02498{left:160.666667pt;}
.x2_c02498{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c02499 {
    display:none;
  }
  .loading-indicator_c02499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02499 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02499 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02499" -> "#page-container .classname_c02499")
 */
.pf_c02499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02499 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02499 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02499 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02499 {overflow:visible;}
  }
}
.c_c02499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02499 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02499:after { /* webkit #35443 */
  content: '';
}
.t_c02499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02499 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02499 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02499 { /* info for Javascript */
  display:none;
}
.l_c02499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02499:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c02499 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c02499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c02499.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c02499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c02499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02499;src:url('chunks/assets/font_5c7ec1e893e7e0be227520ed.woff2')format("woff");}.ff1_c02499{font-family:ff1_c02499;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02499;src:url('chunks/assets/font_f595cf7ee53ddc54b80db532.woff2')format("woff");}.ff2_c02499{font-family:ff2_c02499;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;}
.m0_c02499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02499{vertical-align:0.000000px;}
.ls0_c02499{letter-spacing:0.000000px;}
.sc__c02499{text-shadow:none;}
.sc0_c02499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02499{-webkit-text-stroke:0px transparent;}
.sc0_c02499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02499{word-spacing:0.000000px;}
._11_c02499{margin-left:-2.304000px;}
._2_c02499{margin-left:-1.152000px;}
._3_c02499{width:1.008000px;}
._4_c02499{width:2.064000px;}
._10_c02499{width:3.491976px;}
._b_c02499{width:5.256000px;}
._a_c02499{width:6.264000px;}
._c_c02499{width:7.560000px;}
._9_c02499{width:8.640000px;}
._d_c02499{width:9.864000px;}
._0_c02499{width:10.872000px;}
._1_c02499{width:11.952000px;}
._16_c02499{width:13.548024px;}
._7_c02499{width:14.616000px;}
._6_c02499{width:15.768000px;}
._12_c02499{width:16.848000px;}
._5_c02499{width:19.920000px;}
._8_c02499{width:21.744000px;}
._17_c02499{width:27.720000px;}
._18_c02499{width:29.160000px;}
._13_c02499{width:30.888000px;}
._e_c02499{width:32.472000px;}
._f_c02499{width:33.924000px;}
._14_c02499{width:37.872000px;}
._15_c02499{width:39.672000px;}
.fc1_c02499{color:rgb(192,80,77);}
.fc2_c02499{color:rgb(17,17,17);}
.fc0_c02499{color:rgb(0,0,0);}
.fs0_c02499{font-size:66.240000px;}
.fs1_c02499{font-size:72.000000px;}
.y0_c02499{bottom:0.000000px;}
.y3_c02499{bottom:4.680000px;}
.y2_c02499{bottom:41.796000px;}
.y1_c02499{bottom:75.456000px;}
.y22_c02499{bottom:133.776000px;}
.y21_c02499{bottom:164.910000px;}
.y20_c02499{bottom:195.870000px;}
.y1f_c02499{bottom:226.830000px;}
.y1e_c02499{bottom:257.970000px;}
.y1d_c02499{bottom:288.975000px;}
.y1c_c02499{bottom:320.115000px;}
.y1b_c02499{bottom:351.075000px;}
.y1a_c02499{bottom:382.215000px;}
.y19_c02499{bottom:413.175000px;}
.y18_c02499{bottom:444.315000px;}
.y17_c02499{bottom:475.275000px;}
.y16_c02499{bottom:506.415000px;}
.y15_c02499{bottom:537.405000px;}
.y14_c02499{bottom:568.545000px;}
.y13_c02499{bottom:599.505000px;}
.y12_c02499{bottom:630.645000px;}
.y11_c02499{bottom:661.605000px;}
.y10_c02499{bottom:692.745000px;}
.yf_c02499{bottom:723.705000px;}
.ye_c02499{bottom:754.845000px;}
.yd_c02499{bottom:785.805000px;}
.yc_c02499{bottom:816.990000px;}
.yb_c02499{bottom:847.950000px;}
.ya_c02499{bottom:879.090000px;}
.y9_c02499{bottom:910.050000px;}
.y8_c02499{bottom:941.190000px;}
.y7_c02499{bottom:972.150000px;}
.y6_c02499{bottom:1003.290000px;}
.y5_c02499{bottom:1034.250000px;}
.y4_c02499{bottom:1065.420000px;}
.h2_c02499{height:22.500000px;}
.h1_c02499{height:48.871406px;}
.h3_c02499{height:70.664062px;}
.h0_c02499{height:1188.000000px;}
.w1_c02499{width:66.636000px;}
.w0_c02499{width:918.000000px;}
.x0_c02499{left:0.000000px;}
.x3_c02499{left:16.560000px;}
.x1_c02499{left:127.656000px;}
.x4_c02499{left:180.750000px;}
.x2_c02499{left:820.950000px;}
@media print{
.v0_c02499{vertical-align:0.000000pt;}
.ls0_c02499{letter-spacing:0.000000pt;}
.ws0_c02499{word-spacing:0.000000pt;}
._11_c02499{margin-left:-2.048000pt;}
._2_c02499{margin-left:-1.024000pt;}
._3_c02499{width:0.896000pt;}
._4_c02499{width:1.834667pt;}
._10_c02499{width:3.103979pt;}
._b_c02499{width:4.672000pt;}
._a_c02499{width:5.568000pt;}
._c_c02499{width:6.720000pt;}
._9_c02499{width:7.680000pt;}
._d_c02499{width:8.768000pt;}
._0_c02499{width:9.664000pt;}
._1_c02499{width:10.624000pt;}
._16_c02499{width:12.042688pt;}
._7_c02499{width:12.992000pt;}
._6_c02499{width:14.016000pt;}
._12_c02499{width:14.976000pt;}
._5_c02499{width:17.706667pt;}
._8_c02499{width:19.328000pt;}
._17_c02499{width:24.640000pt;}
._18_c02499{width:25.920000pt;}
._13_c02499{width:27.456000pt;}
._e_c02499{width:28.864000pt;}
._f_c02499{width:30.154667pt;}
._14_c02499{width:33.664000pt;}
._15_c02499{width:35.264000pt;}
.fs0_c02499{font-size:58.880000pt;}
.fs1_c02499{font-size:64.000000pt;}
.y0_c02499{bottom:0.000000pt;}
.y3_c02499{bottom:4.160000pt;}
.y2_c02499{bottom:37.152000pt;}
.y1_c02499{bottom:67.072000pt;}
.y22_c02499{bottom:118.912000pt;}
.y21_c02499{bottom:146.586667pt;}
.y20_c02499{bottom:174.106667pt;}
.y1f_c02499{bottom:201.626667pt;}
.y1e_c02499{bottom:229.306667pt;}
.y1d_c02499{bottom:256.866667pt;}
.y1c_c02499{bottom:284.546667pt;}
.y1b_c02499{bottom:312.066667pt;}
.y1a_c02499{bottom:339.746667pt;}
.y19_c02499{bottom:367.266667pt;}
.y18_c02499{bottom:394.946667pt;}
.y17_c02499{bottom:422.466667pt;}
.y16_c02499{bottom:450.146667pt;}
.y15_c02499{bottom:477.693333pt;}
.y14_c02499{bottom:505.373333pt;}
.y13_c02499{bottom:532.893333pt;}
.y12_c02499{bottom:560.573333pt;}
.y11_c02499{bottom:588.093333pt;}
.y10_c02499{bottom:615.773333pt;}
.yf_c02499{bottom:643.293333pt;}
.ye_c02499{bottom:670.973333pt;}
.yd_c02499{bottom:698.493333pt;}
.yc_c02499{bottom:726.213333pt;}
.yb_c02499{bottom:753.733333pt;}
.ya_c02499{bottom:781.413333pt;}
.y9_c02499{bottom:808.933333pt;}
.y8_c02499{bottom:836.613333pt;}
.y7_c02499{bottom:864.133333pt;}
.y6_c02499{bottom:891.813333pt;}
.y5_c02499{bottom:919.333333pt;}
.y4_c02499{bottom:947.040000pt;}
.h2_c02499{height:20.000000pt;}
.h1_c02499{height:43.441250pt;}
.h3_c02499{height:62.812500pt;}
.h0_c02499{height:1056.000000pt;}
.w1_c02499{width:59.232000pt;}
.w0_c02499{width:816.000000pt;}
.x0_c02499{left:0.000000pt;}
.x3_c02499{left:14.720000pt;}
.x1_c02499{left:113.472000pt;}
.x4_c02499{left:160.666667pt;}
.x2_c02499{left:729.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00003 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00003 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00003 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00003 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_090173ebc81f9dbce01a08f0.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_35afe52fe436b7bc5e73f51d.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;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:ff3_c00003;src:url('chunks/assets/font_47d616fe7b3ae6cd39d43dd8.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.112305;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_5c95b43ae63bb3f3c0d85c9f.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.284180;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_bc4b8e54e6e8fdb00d980ae4.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.402354;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_06ed06d6fc9f0df745bed06f.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:1.311035;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_efa5e70453ba901d76fae66c.woff2')format("woff");}.ff7_c00003{font-family:ff7_c00003;line-height:1.099121;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_5e34775f3da93ff9e8006263.woff2')format("woff");}.ff8_c00003{font-family:ff8_c00003;line-height:1.401855;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff9_c00003{font-family:ff9_c00003;line-height:0.691406;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_a747e6012b91110a4ce0c0d8.woff2')format("woff");}.ffa_c00003{font-family:ffa_c00003;line-height:1.311035;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_330b68dc57671a40e8fa7207.woff2')format("woff");}.ffb_c00003{font-family:ffb_c00003;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:ffc_c00003;src:url('chunks/assets/font_a9940280662856cad2338c65.woff2')format("woff");}.ffc_c00003{font-family:ffc_c00003;line-height:1.112305;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_6af464211a1cdb1c7ee3b351.woff2')format("woff");}.ffd_c00003{font-family:ffd_c00003;line-height:1.284180;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_7f369727e2d85afa0e4cd8d9.woff2')format("woff");}.ffe_c00003{font-family:ffe_c00003;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00003;src:url('chunks/assets/font_e5ad8618e20516757e8ad0a4.woff2')format("woff");}.fff_c00003{font-family:fff_c00003;line-height:1.402354;font-style:normal;font-weight: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_c00003;src:url('chunks/assets/font_c6a10c17b2c11136138d2e1d.woff2')format("woff");}.ff10_c00003{font-family:ff10_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00003;src:url('chunks/assets/font_800f8fcdeacfaf8868accf8d.woff2')format("woff");}.ff11_c00003{font-family:ff11_c00003;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00003;src:url('chunks/assets/font_b80da0693300b1322144b7c3.woff2')format("woff");}.ff12_c00003{font-family:ff12_c00003;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00003{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00003{vertical-align:-179.460000px;}
.v5_c00003{vertical-align:-138.240000px;}
.v3_c00003{vertical-align:-103.680000px;}
.v4_c00003{vertical-align:-95.760000px;}
.v7_c00003{vertical-align:-84.360000px;}
.v6_c00003{vertical-align:-82.980000px;}
.v8_c00003{vertical-align:-72.000000px;}
.v0_c00003{vertical-align:0.000000px;}
.v1_c00003{vertical-align:33.120000px;}
.ls8_c00003{letter-spacing:-1.440000px;}
.ls5a_c00003{letter-spacing:-1.272000px;}
.ls30_c00003{letter-spacing:-1.008000px;}
.ls29_c00003{letter-spacing:-0.936000px;}
.ls5b_c00003{letter-spacing:-0.774000px;}
.ls4_c00003{letter-spacing:-0.720000px;}
.ls1b_c00003{letter-spacing:-0.648000px;}
.ls39_c00003{letter-spacing:-0.576000px;}
.ls58_c00003{letter-spacing:-0.553200px;}
.lsd_c00003{letter-spacing:-0.504000px;}
.ls3e_c00003{letter-spacing:-0.432000px;}
.ls5c_c00003{letter-spacing:-0.385800px;}
.ls35_c00003{letter-spacing:-0.341400px;}
.ls4f_c00003{letter-spacing:-0.334200px;}
.ls2_c00003{letter-spacing:-0.288000px;}
.ls5f_c00003{letter-spacing:-0.219000px;}
.ls14_c00003{letter-spacing:-0.216000px;}
.ls51_c00003{letter-spacing:-0.166800px;}
.lsb_c00003{letter-spacing:-0.144000px;}
.lsa_c00003{letter-spacing:-0.072000px;}
.ls50_c00003{letter-spacing:-0.051600px;}
.ls2d_c00003{letter-spacing:-0.045600px;}
.ls41_c00003{letter-spacing:-0.028200px;}
.ls32_c00003{letter-spacing:-0.018600px;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls55_c00003{letter-spacing:0.051600px;}
.ls7_c00003{letter-spacing:0.072000px;}
.ls1a_c00003{letter-spacing:0.120000px;}
.ls0_c00003{letter-spacing:0.144000px;}
.ls3c_c00003{letter-spacing:0.150000px;}
.ls57_c00003{letter-spacing:0.166800px;}
.ls5e_c00003{letter-spacing:0.167040px;}
.ls15_c00003{letter-spacing:0.180000px;}
.ls11_c00003{letter-spacing:0.216000px;}
.ls4c_c00003{letter-spacing:0.219000px;}
.lse_c00003{letter-spacing:0.256200px;}
.ls1e_c00003{letter-spacing:0.269400px;}
.ls17_c00003{letter-spacing:0.288000px;}
.ls42_c00003{letter-spacing:0.306526px;}
.ls4d_c00003{letter-spacing:0.334200px;}
.ls33_c00003{letter-spacing:0.360000px;}
.ls22_c00003{letter-spacing:0.432000px;}
.ls59_c00003{letter-spacing:0.478080px;}
.ls13_c00003{letter-spacing:0.504000px;}
.ls56_c00003{letter-spacing:0.553200px;}
.ls20_c00003{letter-spacing:0.576000px;}
.ls6_c00003{letter-spacing:0.720000px;}
.ls53_c00003{letter-spacing:0.774000px;}
.ls40_c00003{letter-spacing:0.792000px;}
.ls1c_c00003{letter-spacing:0.864000px;}
.ls9_c00003{letter-spacing:0.900000px;}
.ls2c_c00003{letter-spacing:0.936000px;}
.ls2b_c00003{letter-spacing:1.152000px;}
.ls23_c00003{letter-spacing:1.728000px;}
.ls16_c00003{letter-spacing:2.160000px;}
.ls27_c00003{letter-spacing:2.880000px;}
.ls1f_c00003{letter-spacing:3.600000px;}
.ls2a_c00003{letter-spacing:4.320000px;}
.ls28_c00003{letter-spacing:5.040000px;}
.ls2e_c00003{letter-spacing:5.760000px;}
.ls19_c00003{letter-spacing:6.456000px;}
.lsf_c00003{letter-spacing:6.480000px;}
.lsc_c00003{letter-spacing:7.200000px;}
.ls5d_c00003{letter-spacing:7.920000px;}
.ls37_c00003{letter-spacing:8.640000px;}
.ls4b_c00003{letter-spacing:9.360000px;}
.ls12_c00003{letter-spacing:10.800000px;}
.ls10_c00003{letter-spacing:11.520000px;}
.ls5_c00003{letter-spacing:13.680000px;}
.ls1d_c00003{letter-spacing:14.400000px;}
.ls21_c00003{letter-spacing:15.120000px;}
.ls49_c00003{letter-spacing:16.560000px;}
.ls3b_c00003{letter-spacing:18.000000px;}
.ls3f_c00003{letter-spacing:18.720000px;}
.ls26_c00003{letter-spacing:21.600000px;}
.ls45_c00003{letter-spacing:22.464000px;}
.ls3a_c00003{letter-spacing:25.200000px;}
.ls44_c00003{letter-spacing:26.784000px;}
.ls4a_c00003{letter-spacing:29.520000px;}
.ls2f_c00003{letter-spacing:30.384000px;}
.ls46_c00003{letter-spacing:31.104000px;}
.ls43_c00003{letter-spacing:32.400000px;}
.ls24_c00003{letter-spacing:33.120000px;}
.ls36_c00003{letter-spacing:33.960000px;}
.ls48_c00003{letter-spacing:33.984000px;}
.ls47_c00003{letter-spacing:39.024000px;}
.ls25_c00003{letter-spacing:43.920000px;}
.ls3_c00003{letter-spacing:60.624000px;}
.ls54_c00003{letter-spacing:84.384000px;}
.ls3d_c00003{letter-spacing:89.976000px;}
.ls52_c00003{letter-spacing:92.304000px;}
.ls18_c00003{letter-spacing:103.680000px;}
.ls4e_c00003{letter-spacing:108.144000px;}
.ls31_c00003{letter-spacing:1286.616000px;}
.ls34_c00003{letter-spacing:1295.616000px;}
.ls38_c00003{letter-spacing:1307.676000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16_c00003{word-spacing:-21.420000px;}
.ws1a_c00003{word-spacing:-21.031800px;}
.ws18_c00003{word-spacing:-20.718600px;}
.ws12_c00003{word-spacing:-19.152000px;}
.ws13_c00003{word-spacing:-18.936000px;}
.wsd_c00003{word-spacing:-18.864000px;}
.ws19_c00003{word-spacing:-18.792000px;}
.ws6_c00003{word-spacing:-18.720000px;}
.wsf_c00003{word-spacing:-18.576000px;}
.ws15_c00003{word-spacing:-18.504000px;}
.ws10_c00003{word-spacing:-18.432000px;}
.wsb_c00003{word-spacing:-18.288000px;}
.ws9_c00003{word-spacing:-18.216000px;}
.ws4_c00003{word-spacing:-18.144000px;}
.ws3_c00003{word-spacing:-18.072000px;}
.ws1_c00003{word-spacing:-18.000000px;}
.ws5_c00003{word-spacing:-17.928000px;}
.wsc_c00003{word-spacing:-17.856000px;}
.wsa_c00003{word-spacing:-17.784000px;}
.ws2_c00003{word-spacing:-17.712000px;}
.ws7_c00003{word-spacing:-17.496000px;}
.ws17_c00003{word-spacing:-17.424000px;}
.ws11_c00003{word-spacing:-17.064000px;}
.ws1b_c00003{word-spacing:-16.992000px;}
.ws22_c00003{word-spacing:-16.614000px;}
.ws25_c00003{word-spacing:-16.393200px;}
.ws1d_c00003{word-spacing:-16.174200px;}
.ws1c_c00003{word-spacing:-16.059000px;}
.ws26_c00003{word-spacing:-16.006800px;}
.ws24_c00003{word-spacing:-15.891600px;}
.ws1e_c00003{word-spacing:-15.840000px;}
.ws21_c00003{word-spacing:-15.788400px;}
.ws20_c00003{word-spacing:-15.673200px;}
.ws2b_c00003{word-spacing:-15.621000px;}
.ws1f_c00003{word-spacing:-15.505800px;}
.ws2a_c00003{word-spacing:-15.454200px;}
.ws27_c00003{word-spacing:-15.286800px;}
.ws8_c00003{word-spacing:-15.226440px;}
.ws29_c00003{word-spacing:-15.066000px;}
.ws23_c00003{word-spacing:-14.904000px;}
.ws28_c00003{word-spacing:-14.568000px;}
.wse_c00003{word-spacing:-12.329400px;}
.ws14_c00003{word-spacing:-12.014400px;}
.ws0_c00003{word-spacing:0.000000px;}
._11_c00003{margin-left:-2.208024px;}
._1_c00003{margin-left:-1.008000px;}
._4_c00003{width:1.008000px;}
._a_c00003{width:2.148000px;}
._8_c00003{width:3.816000px;}
._0_c00003{width:4.968000px;}
._5_c00003{width:6.552000px;}
._7_c00003{width:7.704000px;}
._6_c00003{width:9.000000px;}
._12_c00003{width:10.512000px;}
._9_c00003{width:11.952000px;}
._14_c00003{width:13.608000px;}
._15_c00003{width:15.264000px;}
._13_c00003{width:16.488000px;}
._d_c00003{width:19.224000px;}
._c_c00003{width:20.520000px;}
._10_c00003{width:21.792024px;}
._16_c00003{width:23.088024px;}
._2_c00003{width:24.120000px;}
._3_c00003{width:25.248024px;}
._b_c00003{width:27.144000px;}
._1d_c00003{width:28.224000px;}
._19_c00003{width:29.232000px;}
._e_c00003{width:30.312000px;}
._f_c00003{width:31.536000px;}
._59_c00003{width:32.544000px;}
._1a_c00003{width:33.552000px;}
._1b_c00003{width:34.560000px;}
._1e_c00003{width:36.120024px;}
._18_c00003{width:38.088000px;}
._1c_c00003{width:39.312000px;}
._22_c00003{width:41.124024px;}
._71_c00003{width:42.167952px;}
._2e_c00003{width:43.200000px;}
._2f_c00003{width:44.568000px;}
._2d_c00003{width:46.308000px;}
._2c_c00003{width:47.448000px;}
._17_c00003{width:48.744000px;}
._31_c00003{width:49.968000px;}
._3e_c00003{width:51.048000px;}
._25_c00003{width:52.488000px;}
._26_c00003{width:53.508024px;}
._2a_c00003{width:54.792000px;}
._29_c00003{width:56.052072px;}
._28_c00003{width:57.564000px;}
._40_c00003{width:59.220000px;}
._23_c00003{width:60.984000px;}
._24_c00003{width:62.172000px;}
._53_c00003{width:63.216000px;}
._5a_c00003{width:64.308024px;}
._4b_c00003{width:65.448000px;}
._4c_c00003{width:66.576024px;}
._38_c00003{width:69.048000px;}
._3f_c00003{width:70.992000px;}
._56_c00003{width:72.648000px;}
._49_c00003{width:73.944000px;}
._4a_c00003{width:75.456000px;}
._30_c00003{width:77.040000px;}
._41_c00003{width:78.840000px;}
._3a_c00003{width:79.932024px;}
._39_c00003{width:81.180000px;}
._5b_c00003{width:85.752000px;}
._45_c00003{width:87.624000px;}
._5c_c00003{width:95.688000px;}
._44_c00003{width:99.720000px;}
._43_c00003{width:100.800000px;}
._4e_c00003{width:102.636000px;}
._4d_c00003{width:103.680000px;}
._27_c00003{width:108.576000px;}
._65_c00003{width:110.160000px;}
._62_c00003{width:111.564000px;}
._67_c00003{width:112.716000px;}
._5f_c00003{width:117.216000px;}
._6e_c00003{width:120.096000px;}
._6b_c00003{width:126.432000px;}
._46_c00003{width:130.968000px;}
._47_c00003{width:132.336000px;}
._32_c00003{width:133.848000px;}
._55_c00003{width:138.360024px;}
._54_c00003{width:139.392000px;}
._63_c00003{width:142.992000px;}
._6f_c00003{width:145.152000px;}
._70_c00003{width:146.304000px;}
._3b_c00003{width:165.672000px;}
._3c_c00003{width:166.752000px;}
._68_c00003{width:169.272000px;}
._69_c00003{width:170.352000px;}
._6a_c00003{width:172.380024px;}
._6c_c00003{width:180.792000px;}
._6d_c00003{width:181.872000px;}
._57_c00003{width:183.672000px;}
._58_c00003{width:184.752000px;}
._60_c00003{width:187.992000px;}
._61_c00003{width:189.072000px;}
._66_c00003{width:190.584000px;}
._34_c00003{width:191.592000px;}
._35_c00003{width:192.672000px;}
._1f_c00003{width:194.472000px;}
._20_c00003{width:195.552000px;}
._4f_c00003{width:271.944000px;}
._48_c00003{width:281.448000px;}
._2b_c00003{width:282.744000px;}
._3d_c00003{width:346.248000px;}
._5e_c00003{width:467.064000px;}
._36_c00003{width:593.496000px;}
._52_c00003{width:626.544000px;}
._21_c00003{width:635.832000px;}
._33_c00003{width:646.848000px;}
._50_c00003{width:651.312000px;}
._51_c00003{width:652.464000px;}
._5d_c00003{width:920.592000px;}
._37_c00003{width:1052.424000px;}
._42_c00003{width:1931.052000px;}
._64_c00003{width:2191.320000px;}
.fc4_c00003{color:rgb(20,20,19);}
.fc3_c00003{color:rgb(0,0,255);}
.fc1_c00003{color:rgb(192,80,77);}
.fc9_c00003{color:rgb(2,2,2);}
.fc8_c00003{color:rgb(37,37,37);}
.fc7_c00003{color:rgb(34,30,31);}
.fc6_c00003{color:rgb(51,51,51);}
.fc5_c00003{color:rgb(35,31,32);}
.fc2_c00003{color:rgb(17,17,17);}
.fc0_c00003{color:rgb(0,0,0);}
.fs8_c00003{font-size:38.880000px;}
.fs3_c00003{font-size:48.240000px;}
.fs9_c00003{font-size:59.760000px;}
.fsa_c00003{font-size:63.360000px;}
.fs0_c00003{font-size:66.240000px;}
.fs1_c00003{font-size:72.000000px;}
.fs2_c00003{font-size:84.240000px;}
.fs4_c00003{font-size:95.760000px;}
.fs5_c00003{font-size:120.240000px;}
.fs7_c00003{font-size:144.000000px;}
.fs6_c00003{font-size:156.240000px;}
.y0_c00003{bottom:0.000000px;}
.y492_c00003{bottom:3.765000px;}
.y441_c00003{bottom:3.772500px;}
.y422_c00003{bottom:3.780000px;}
.y479_c00003{bottom:3.945000px;}
.y47b_c00003{bottom:3.952500px;}
.y456_c00003{bottom:3.960000px;}
.y2b_c00003{bottom:4.500000px;}
.ydb_c00003{bottom:4.672500px;}
.y3_c00003{bottom:4.680000px;}
.y41c_c00003{bottom:4.852500px;}
.y478_c00003{bottom:21.945000px;}
.y440_c00003{bottom:21.946500px;}
.y455_c00003{bottom:21.960000px;}
.y473_c00003{bottom:21.990000px;}
.y4d7_c00003{bottom:22.005000px;}
.y503_c00003{bottom:22.125000px;}
.y49b_c00003{bottom:22.126500px;}
.y49f_c00003{bottom:22.140000px;}
.y2f_c00003{bottom:25.194000px;}
.y2a_c00003{bottom:25.200000px;}
.y31_c00003{bottom:25.230000px;}
.y491_c00003{bottom:39.945000px;}
.y46d_c00003{bottom:39.946500px;}
.y4a7_c00003{bottom:39.960000px;}
.y50f_c00003{bottom:39.990000px;}
.y477_c00003{bottom:40.125000px;}
.y43f_c00003{bottom:40.126500px;}
.y454_c00003{bottom:40.140000px;}
.y472_c00003{bottom:40.170000px;}
.y4d6_c00003{bottom:40.185000px;}
.y2_c00003{bottom:41.796000px;}
.yda_c00003{bottom:41.803500px;}
.y2d_c00003{bottom:45.900000px;}
.y29_c00003{bottom:45.945000px;}
.y41b_c00003{bottom:52.423500px;}
.y490_c00003{bottom:58.125000px;}
.y43e_c00003{bottom:58.126500px;}
.y46a_c00003{bottom:58.140000px;}
.y471_c00003{bottom:58.170000px;}
.y496_c00003{bottom:58.185000px;}
.y476_c00003{bottom:58.305000px;}
.y49a_c00003{bottom:58.306500px;}
.y453_c00003{bottom:58.320000px;}
.y4da_c00003{bottom:58.350000px;}
.y4ea_c00003{bottom:58.365000px;}
.y34_c00003{bottom:66.600000px;}
.y28_c00003{bottom:66.645000px;}
.y1_c00003{bottom:75.456000px;}
.y43d_c00003{bottom:76.306500px;}
.y452_c00003{bottom:76.320000px;}
.y470_c00003{bottom:76.350000px;}
.y462_c00003{bottom:76.365000px;}
.y4bd_c00003{bottom:76.500000px;}
.y502_c00003{bottom:76.530000px;}
.y27_c00003{bottom:87.345000px;}
.y469_c00003{bottom:94.320000px;}
.y48f_c00003{bottom:94.350000px;}
.y458_c00003{bottom:94.351500px;}
.y495_c00003{bottom:94.365000px;}
.y451_c00003{bottom:94.500000px;}
.y46f_c00003{bottom:94.530000px;}
.y43c_c00003{bottom:94.531500px;}
.y461_c00003{bottom:94.545000px;}
.y24a_c00003{bottom:109.836000px;}
.y3a0_c00003{bottom:110.736000px;}
.y468_c00003{bottom:112.500000px;}
.y450_c00003{bottom:112.530000px;}
.y43b_c00003{bottom:112.531500px;}
.y37e_c00003{bottom:112.536000px;}
.y460_c00003{bottom:112.545000px;}
.y4c6_c00003{bottom:112.680000px;}
.y4d9_c00003{bottom:112.710000px;}
.y499_c00003{bottom:112.711500px;}
.y2da_c00003{bottom:112.716000px;}
.y49e_c00003{bottom:112.725000px;}
.y269_c00003{bottom:112.896000px;}
.y2b3_c00003{bottom:113.076000px;}
.y133_c00003{bottom:113.256000px;}
.y3ba_c00003{bottom:115.416000px;}
.y25b_c00003{bottom:115.776000px;}
.y249_c00003{bottom:116.676000px;}
.y1d2_c00003{bottom:117.216000px;}
.y1f5_c00003{bottom:117.576000px;}
.y1fb_c00003{bottom:118.296000px;}
.y4e_c00003{bottom:119.736000px;}
.y308_c00003{bottom:120.636000px;}
.y1f2_c00003{bottom:120.816000px;}
.ya4_c00003{bottom:123.516000px;}
.y15e_c00003{bottom:123.696000px;}
.y32e_c00003{bottom:124.236000px;}
.y2f2_c00003{bottom:124.416000px;}
.y3f0_c00003{bottom:124.776000px;}
.y206_c00003{bottom:125.496000px;}
.y36d_c00003{bottom:125.856000px;}
.yb6_c00003{bottom:126.036000px;}
.y2aa_c00003{bottom:126.936000px;}
.y2e_c00003{bottom:127.296000px;}
.y248_c00003{bottom:128.016000px;}
.y1a5_c00003{bottom:128.196000px;}
.y228_c00003{bottom:128.376000px;}
.y7c_c00003{bottom:128.556000px;}
.y5d_c00003{bottom:130.176000px;}
.y555_c00003{bottom:130.500000px;}
.y48e_c00003{bottom:130.530000px;}
.y46c_c00003{bottom:130.531500px;}
.y52a_c00003{bottom:130.545000px;}
.y467_c00003{bottom:130.680000px;}
.y44f_c00003{bottom:130.710000px;}
.y43a_c00003{bottom:130.711500px;}
.y45f_c00003{bottom:130.725000px;}
.y39f_c00003{bottom:131.076000px;}
.ybd_c00003{bottom:131.256000px;}
.y184_c00003{bottom:132.696000px;}
.y1de_c00003{bottom:133.416000px;}
.y266_c00003{bottom:133.596000px;}
.y22_c00003{bottom:133.776000px;}
.y504_c00003{bottom:133.783500px;}
.y132_c00003{bottom:133.956000px;}
.y107_c00003{bottom:134.136000px;}
.y4d0_c00003{bottom:134.503500px;}
.y47a_c00003{bottom:135.223500px;}
.y3b9_c00003{bottom:135.756000px;}
.y3a8_c00003{bottom:136.116000px;}
.y46b_c00003{bottom:136.123500px;}
.y25a_c00003{bottom:136.476000px;}
.y457_c00003{bottom:136.843500px;}
.y51c_c00003{bottom:137.563500px;}
.y289_c00003{bottom:138.816000px;}
.y405_c00003{bottom:139.176000px;}
.yf3_c00003{bottom:139.536000px;}
.y210_c00003{bottom:140.976000px;}
.y4e5_c00003{bottom:141.163500px;}
.y307_c00003{bottom:141.336000px;}
.y542_c00003{bottom:143.143500px;}
.y538_c00003{bottom:143.863500px;}
.y15d_c00003{bottom:144.396000px;}
.y423_c00003{bottom:144.583500px;}
.y32d_c00003{bottom:144.936000px;}
.y3ef_c00003{bottom:145.476000px;}
.y197_c00003{bottom:146.196000px;}
.y36c_c00003{bottom:146.556000px;}
.y2a9_c00003{bottom:147.636000px;}
.y4b9_c00003{bottom:148.680000px;}
.y466_c00003{bottom:148.710000px;}
.y439_c00003{bottom:148.711500px;}
.y494_c00003{bottom:148.725000px;}
.y4c8_c00003{bottom:148.860000px;}
.y44e_c00003{bottom:148.890000px;}
.y498_c00003{bottom:148.891500px;}
.y37d_c00003{bottom:148.896000px;}
.y45e_c00003{bottom:148.905000px;}
.y227_c00003{bottom:149.076000px;}
.y2bf_c00003{bottom:149.436000px;}
.y4d_c00003{bottom:150.690000px;}
.y39e_c00003{bottom:151.770000px;}
.y3f7_c00003{bottom:151.950000px;}
.y1d1_c00003{bottom:153.390000px;}
.y4cf_c00003{bottom:153.405000px;}
.y34b_c00003{bottom:153.750000px;}
.y2d9_c00003{bottom:154.110000px;}
.y474_c00003{bottom:154.125000px;}
.y247_c00003{bottom:154.290000px;}
.ya3_c00003{bottom:154.470000px;}
.y131_c00003{bottom:154.650000px;}
.y508_c00003{bottom:154.845000px;}
.y47c_c00003{bottom:155.745000px;}
.y1f4_c00003{bottom:155.910000px;}
.y3b8_c00003{bottom:156.450000px;}
.y85_c00003{bottom:156.630000px;}
.y3c7_c00003{bottom:156.810000px;}
.yb5_c00003{bottom:156.990000px;}
.y1f1_c00003{bottom:157.170000px;}
.y106_c00003{bottom:158.250000px;}
.yd7_c00003{bottom:158.790000px;}
.y1a4_c00003{bottom:159.330000px;}
.y288_c00003{bottom:159.510000px;}
.y7b_c00003{bottom:159.690000px;}
.y404_c00003{bottom:159.870000px;}
.y2f1_c00003{bottom:160.590000px;}
.y205_c00003{bottom:161.670000px;}
.y306_c00003{bottom:162.030000px;}
.y1dd_c00003{bottom:164.550000px;}
.y21_c00003{bottom:164.910000px;}
.y15c_c00003{bottom:165.090000px;}
.y32c_c00003{bottom:165.630000px;}
.y5c_c00003{bottom:166.350000px;}
.y3ee_c00003{bottom:166.530000px;}
.y4b8_c00003{bottom:166.860000px;}
.y44d_c00003{bottom:166.890000px;}
.y438_c00003{bottom:166.891500px;}
.y45d_c00003{bottom:166.905000px;}
.y4d4_c00003{bottom:167.040000px;}
.y183_c00003{bottom:167.070000px;}
.y4a9_c00003{bottom:167.071500px;}
.y4bc_c00003{bottom:167.085000px;}
.y36b_c00003{bottom:167.250000px;}
.ybc_c00003{bottom:168.150000px;}
.y2a8_c00003{bottom:168.330000px;}
.y2c_c00003{bottom:169.410000px;}
.y226_c00003{bottom:169.770000px;}
.y2be_c00003{bottom:170.130000px;}
.y28b_c00003{bottom:170.490000px;}
.y501_c00003{bottom:170.685000px;}
.y2ad_c00003{bottom:171.930000px;}
.y52f_c00003{bottom:172.305000px;}
.y39d_c00003{bottom:172.470000px;}
.y26d_c00003{bottom:172.650000px;}
.y530_c00003{bottom:173.025000px;}
.y536_c00003{bottom:173.370000px;}
.yf2_c00003{bottom:173.910000px;}
.y2d8_c00003{bottom:174.810000px;}
.y246_c00003{bottom:174.990000px;}
.y130_c00003{bottom:175.350000px;}
.y20f_c00003{bottom:177.150000px;}
.y259_c00003{bottom:177.870000px;}
.y418_c00003{bottom:180.030000px;}
.y287_c00003{bottom:180.210000px;}
.y403_c00003{bottom:180.570000px;}
.y4c_c00003{bottom:181.830000px;}
.y105_c00003{bottom:182.370000px;}
.y305_c00003{bottom:182.730000px;}
.y52c_c00003{bottom:184.860000px;}
.y465_c00003{bottom:184.890000px;}
.y4a2_c00003{bottom:184.891500px;}
.y493_c00003{bottom:184.905000px;}
.y4b7_c00003{bottom:185.040000px;}
.y37c_c00003{bottom:185.070000px;}
.y437_c00003{bottom:185.071500px;}
.y45c_c00003{bottom:185.085000px;}
.ya2_c00003{bottom:185.430000px;}
.y15b_c00003{bottom:185.610000px;}
.y32b_c00003{bottom:185.970000px;}
.y3ed_c00003{bottom:187.230000px;}
.yb4_c00003{bottom:188.130000px;}
.y36a_c00003{bottom:188.310000px;}
.y2a7_c00003{bottom:189.030000px;}
.y1d0_c00003{bottom:189.570000px;}
.y519_c00003{bottom:189.585000px;}
.yd6_c00003{bottom:189.930000px;}
.y1a3_c00003{bottom:190.290000px;}
.y52d_c00003{bottom:190.305000px;}
.y225_c00003{bottom:190.470000px;}
.y7a_c00003{bottom:190.650000px;}
.y1fa_c00003{bottom:190.830000px;}
.y50e_c00003{bottom:191.205000px;}
.y34a_c00003{bottom:191.910000px;}
.y4ee_c00003{bottom:191.925000px;}
.y39c_c00003{bottom:193.170000px;}
.y84_c00003{bottom:193.350000px;}
.y7d_c00003{bottom:195.510000px;}
.y245_c00003{bottom:195.690000px;}
.y20_c00003{bottom:195.870000px;}
.y12f_c00003{bottom:196.050000px;}
.y2f0_c00003{bottom:196.770000px;}
.y204_c00003{bottom:197.850000px;}
.y258_c00003{bottom:198.210000px;}
.y314_c00003{bottom:198.570000px;}
.y286_c00003{bottom:200.910000px;}
.y402_c00003{bottom:201.270000px;}
.y182_c00003{bottom:201.630000px;}
.y5b_c00003{bottom:202.530000px;}
.y44c_c00003{bottom:203.070000px;}
.y436_c00003{bottom:203.071500px;}
.y45b_c00003{bottom:203.085000px;}
.y475_c00003{bottom:203.250000px;}
.y4a8_c00003{bottom:203.251500px;}
.y4bb_c00003{bottom:203.265000px;}
.y304_c00003{bottom:203.790000px;}
.ybb_c00003{bottom:204.870000px;}
.y28a_c00003{bottom:205.050000px;}
.y174_c00003{bottom:205.950000px;}
.y15a_c00003{bottom:206.310000px;}
.y104_c00003{bottom:206.670000px;}
.y53d_c00003{bottom:207.765000px;}
.y3ec_c00003{bottom:207.930000px;}
.yf1_c00003{bottom:208.470000px;}
.y4ac_c00003{bottom:208.485000px;}
.y26c_c00003{bottom:208.830000px;}
.y369_c00003{bottom:209.010000px;}
.y517_c00003{bottom:209.205000px;}
.y2a6_c00003{bottom:209.730000px;}
.y224_c00003{bottom:211.170000px;}
.y2bd_c00003{bottom:211.530000px;}
.y4b_c00003{bottom:212.790000px;}
.y20e_c00003{bottom:213.510000px;}
.y39b_c00003{bottom:213.870000px;}
.y417_c00003{bottom:214.590000px;}
.y349_c00003{bottom:215.670000px;}
.y2d7_c00003{bottom:216.210000px;}
.y244_c00003{bottom:216.390000px;}
.ya1_c00003{bottom:216.570000px;}
.y12e_c00003{bottom:216.750000px;}
.y196_c00003{bottom:218.730000px;}
.y257_c00003{bottom:218.910000px;}
.yb3_c00003{bottom:219.090000px;}
.y3a7_c00003{bottom:219.270000px;}
.yd5_c00003{bottom:220.890000px;}
.y37b_c00003{bottom:221.250000px;}
.y435_c00003{bottom:221.251500px;}
.y45a_c00003{bottom:221.265000px;}
.y4b2_c00003{bottom:221.280000px;}
.y557_c00003{bottom:221.295000px;}
.y1a2_c00003{bottom:221.430000px;}
.y285_c00003{bottom:221.610000px;}
.y79_c00003{bottom:221.790000px;}
.y401_c00003{bottom:221.970000px;}
.y3f6_c00003{bottom:224.310000px;}
.y303_c00003{bottom:224.490000px;}
.y551_c00003{bottom:225.795000px;}
.y1cf_c00003{bottom:225.930000px;}
.y1dc_c00003{bottom:226.470000px;}
.y516_c00003{bottom:226.695000px;}
.y1f_c00003{bottom:226.830000px;}
.y159_c00003{bottom:227.010000px;}
.y173_c00003{bottom:227.370000px;}
.y4b6_c00003{bottom:227.415000px;}
.y547_c00003{bottom:228.135000px;}
.y3eb_c00003{bottom:228.630000px;}
.y1f0_c00003{bottom:229.530000px;}
.y368_c00003{bottom:229.710000px;}
.y83_c00003{bottom:230.250000px;}
.y2a5_c00003{bottom:230.430000px;}
.y103_c00003{bottom:230.790000px;}
.y223_c00003{bottom:231.870000px;}
.y26_c00003{bottom:232.230000px;}
.y2ef_c00003{bottom:232.950000px;}
.y203_c00003{bottom:234.210000px;}
.y39a_c00003{bottom:234.570000px;}
.y181_c00003{bottom:236.010000px;}
.y2d6_c00003{bottom:236.910000px;}
.y264_c00003{bottom:237.090000px;}
.y12d_c00003{bottom:237.450000px;}
.y5a_c00003{bottom:238.710000px;}
.y464_c00003{bottom:239.250000px;}
.y434_c00003{bottom:239.251500px;}
.y4b5_c00003{bottom:239.265000px;}
.y4f4_c00003{bottom:239.280000px;}
.y553_c00003{bottom:239.295000px;}
.y44b_c00003{bottom:239.430000px;}
.y4e6_c00003{bottom:239.431500px;}
.y4a5_c00003{bottom:239.445000px;}
.y4b1_c00003{bottom:239.460000px;}
.y4e4_c00003{bottom:239.475000px;}
.y256_c00003{bottom:239.610000px;}
.y3c6_c00003{bottom:239.970000px;}
.y2ac_c00003{bottom:241.590000px;}
.yba_c00003{bottom:241.770000px;}
.y284_c00003{bottom:242.310000px;}
.y400_c00003{bottom:242.670000px;}
.yf0_c00003{bottom:243.030000px;}
.y4a_c00003{bottom:243.930000px;}
.y4c7_c00003{bottom:244.695000px;}
.y26b_c00003{bottom:245.010000px;}
.y302_c00003{bottom:245.190000px;}
.y4d3_c00003{bottom:245.415000px;}
.y4f5_c00003{bottom:246.315000px;}
.ya0_c00003{bottom:247.530000px;}
.y158_c00003{bottom:247.710000px;}
.y32a_c00003{bottom:248.070000px;}
.y3ea_c00003{bottom:248.970000px;}
.y20d_c00003{bottom:249.690000px;}
.yb2_c00003{bottom:250.230000px;}
.y367_c00003{bottom:250.410000px;}
.y2b2_c00003{bottom:250.770000px;}
.y2a4_c00003{bottom:251.130000px;}
.y172_c00003{bottom:251.310000px;}
.yd4_c00003{bottom:252.030000px;}
.y1a1_c00003{bottom:252.390000px;}
.y222_c00003{bottom:252.570000px;}
.y78_c00003{bottom:252.750000px;}
.y2bc_c00003{bottom:252.930000px;}
.y348_c00003{bottom:254.550000px;}
.y102_c00003{bottom:254.910000px;}
.y399_c00003{bottom:255.270000px;}
.y37a_c00003{bottom:257.430000px;}
.y433_c00003{bottom:257.431500px;}
.y4b4_c00003{bottom:257.445000px;}
.y4b0_c00003{bottom:257.460000px;}
.y4e3_c00003{bottom:257.475000px;}
.y1db_c00003{bottom:257.610000px;}
.y510_c00003{bottom:257.625000px;}
.y54f_c00003{bottom:257.640000px;}
.y533_c00003{bottom:257.655000px;}
.y12c_c00003{bottom:257.790000px;}
.y1e_c00003{bottom:257.970000px;}
.y1b4_c00003{bottom:258.150000px;}
.y255_c00003{bottom:260.310000px;}
.y3c5_c00003{bottom:260.670000px;}
.y1ce_c00003{bottom:262.110000px;}
.y500_c00003{bottom:262.155000px;}
.y559_c00003{bottom:262.875000px;}
.y283_c00003{bottom:263.010000px;}
.y1f9_c00003{bottom:263.190000px;}
.y3ff_c00003{bottom:263.370000px;}
.y52e_c00003{bottom:263.595000px;}
.y4ec_c00003{bottom:264.315000px;}
.y1ef_c00003{bottom:265.710000px;}
.y301_c00003{bottom:265.890000px;}
.y82_c00003{bottom:266.970000px;}
.y157_c00003{bottom:268.410000px;}
.y329_c00003{bottom:268.770000px;}
.y2ee_c00003{bottom:269.310000px;}
.y3e9_c00003{bottom:269.670000px;}
.y202_c00003{bottom:270.390000px;}
.y180_c00003{bottom:270.570000px;}
.y366_c00003{bottom:271.110000px;}
.y2b1_c00003{bottom:271.470000px;}
.y2a3_c00003{bottom:271.830000px;}
.y171_c00003{bottom:272.010000px;}
.y221_c00003{bottom:273.270000px;}
.y2bb_c00003{bottom:273.630000px;}
.y49_c00003{bottom:274.935000px;}
.y59_c00003{bottom:275.115000px;}
.y4fa_c00003{bottom:275.430000px;}
.y4a1_c00003{bottom:275.431500px;}
.y524_c00003{bottom:275.445000px;}
.y48d_c00003{bottom:275.460000px;}
.y4ff_c00003{bottom:275.475000px;}
.y44a_c00003{bottom:275.610000px;}
.y432_c00003{bottom:275.611500px;}
.y4d2_c00003{bottom:275.625000px;}
.y4af_c00003{bottom:275.640000px;}
.y4dc_c00003{bottom:275.655000px;}
.y398_c00003{bottom:275.970000px;}
.y313_c00003{bottom:276.150000px;}
.y2ab_c00003{bottom:276.330000px;}
.yef_c00003{bottom:277.410000px;}
.y2d5_c00003{bottom:278.310000px;}
.y263_c00003{bottom:278.490000px;}
.yb9_c00003{bottom:278.535000px;}
.y9f_c00003{bottom:278.715000px;}
.y1b3_c00003{bottom:278.850000px;}
.y101_c00003{bottom:279.030000px;}
.y543_c00003{bottom:280.155000px;}
.y511_c00003{bottom:280.875000px;}
.y254_c00003{bottom:281.055000px;}
.yb1_c00003{bottom:281.235000px;}
.y2c6_c00003{bottom:281.415000px;}
.y463_c00003{bottom:281.775000px;}
.y4be_c00003{bottom:282.495000px;}
.yd3_c00003{bottom:283.035000px;}
.y1a0_c00003{bottom:283.575000px;}
.y77_c00003{bottom:283.935000px;}
.y282_c00003{bottom:284.115000px;}
.y300_c00003{bottom:286.635000px;}
.y1da_c00003{bottom:288.615000px;}
.y1d_c00003{bottom:288.975000px;}
.y156_c00003{bottom:289.155000px;}
.y328_c00003{bottom:289.515000px;}
.y3e8_c00003{bottom:290.415000px;}
.y195_c00003{bottom:291.135000px;}
.y365_c00003{bottom:291.495000px;}
.y2b0_c00003{bottom:292.215000px;}
.y2a2_c00003{bottom:292.575000px;}
.y170_c00003{bottom:292.755000px;}
.y347_c00003{bottom:293.475000px;}
.y4c4_c00003{bottom:293.610000px;}
.y514_c00003{bottom:293.625000px;}
.y48c_c00003{bottom:293.640000px;}
.y431_c00003{bottom:293.641500px;}
.y507_c00003{bottom:293.655000px;}
.y449_c00003{bottom:293.790000px;}
.y546_c00003{bottom:293.805000px;}
.y4ae_c00003{bottom:293.820000px;}
.y379_c00003{bottom:293.835000px;}
.y220_c00003{bottom:294.015000px;}
.y2ba_c00003{bottom:294.375000px;}
.y26a_c00003{bottom:296.355000px;}
.y397_c00003{bottom:296.715000px;}
.y3f5_c00003{bottom:296.895000px;}
.y1cd_c00003{bottom:298.335000px;}
.y2d4_c00003{bottom:299.055000px;}
.y268_c00003{bottom:299.235000px;}
.y1f8_c00003{bottom:299.415000px;}
.y1b2_c00003{bottom:299.595000px;}
.y535_c00003{bottom:299.775000px;}
.y20c_c00003{bottom:300.855000px;}
.y3b7_c00003{bottom:301.755000px;}
.y1ee_c00003{bottom:302.115000px;}
.y12b_c00003{bottom:303.015000px;}
.y100_c00003{bottom:303.195000px;}
.y81_c00003{bottom:303.915000px;}
.y281_c00003{bottom:304.815000px;}
.y17f_c00003{bottom:305.175000px;}
.y2ed_c00003{bottom:305.535000px;}
.y48_c00003{bottom:306.075000px;}
.y201_c00003{bottom:306.615000px;}
.y541_c00003{bottom:306.795000px;}
.y2ff_c00003{bottom:307.335000px;}
.y155_c00003{bottom:309.495000px;}
.y9e_c00003{bottom:309.675000px;}
.y1eb_c00003{bottom:309.855000px;}
.y327_c00003{bottom:310.215000px;}
.y58_c00003{bottom:311.295000px;}
.y3e7_c00003{bottom:311.475000px;}
.y4c3_c00003{bottom:311.790000px;}
.y513_c00003{bottom:311.805000px;}
.y48b_c00003{bottom:311.820000px;}
.y430_c00003{bottom:311.821500px;}
.y448_c00003{bottom:311.835000px;}
.y532_c00003{bottom:311.970000px;}
.y54e_c00003{bottom:312.000000px;}
.yee_c00003{bottom:312.015000px;}
.y364_c00003{bottom:312.195000px;}
.yb0_c00003{bottom:312.375000px;}
.y2af_c00003{bottom:312.915000px;}
.y2a1_c00003{bottom:313.275000px;}
.y16f_c00003{bottom:313.455000px;}
.yd2_c00003{bottom:314.175000px;}
.y19f_c00003{bottom:314.535000px;}
.y21f_c00003{bottom:314.715000px;}
.y76_c00003{bottom:314.895000px;}
.y2b9_c00003{bottom:315.075000px;}
.yb8_c00003{bottom:315.435000px;}
.y51b_c00003{bottom:317.235000px;}
.y396_c00003{bottom:317.415000px;}
.y2c5_c00003{bottom:317.595000px;}
.y515_c00003{bottom:317.955000px;}
.y416_c00003{bottom:318.135000px;}
.y442_c00003{bottom:318.675000px;}
.y1d9_c00003{bottom:319.755000px;}
.y243_c00003{bottom:319.935000px;}
.y1c_c00003{bottom:320.115000px;}
.y1b1_c00003{bottom:320.295000px;}
.y3b6_c00003{bottom:322.095000px;}
.y253_c00003{bottom:322.815000px;}
.y12a_c00003{bottom:323.715000px;}
.y280_c00003{bottom:325.515000px;}
.yff_c00003{bottom:327.315000px;}
.y2fe_c00003{bottom:328.035000px;}
.y4f9_c00003{bottom:329.790000px;}
.y48a_c00003{bottom:329.820000px;}
.y4a0_c00003{bottom:329.821500px;}
.y506_c00003{bottom:329.835000px;}
.y4c2_c00003{bottom:329.970000px;}
.y545_c00003{bottom:329.985000px;}
.y4ad_c00003{bottom:330.000000px;}
.y42f_c00003{bottom:330.001500px;}
.y378_c00003{bottom:330.015000px;}
.y1ea_c00003{bottom:330.555000px;}
.y154_c00003{bottom:330.915000px;}
.y346_c00003{bottom:332.175000px;}
.y363_c00003{bottom:332.895000px;}
.y3f4_c00003{bottom:333.075000px;}
.y2a0_c00003{bottom:333.975000px;}
.y16e_c00003{bottom:334.155000px;}
.y1cc_c00003{bottom:334.515000px;}
.y4eb_c00003{bottom:335.235000px;}
.y21e_c00003{bottom:335.415000px;}
.y1f7_c00003{bottom:335.595000px;}
.y2b8_c00003{bottom:335.775000px;}
.y4e7_c00003{bottom:336.135000px;}
.y505_c00003{bottom:336.855000px;}
.y47_c00003{bottom:337.035000px;}
.y395_c00003{bottom:338.115000px;}
.y1ed_c00003{bottom:338.295000px;}
.y17e_c00003{bottom:339.555000px;}
.y2d3_c00003{bottom:340.455000px;}
.y80_c00003{bottom:340.635000px;}
.y9d_c00003{bottom:340.815000px;}
.y25_c00003{bottom:340.995000px;}
.y2ec_c00003{bottom:341.715000px;}
.y20b_c00003{bottom:342.255000px;}
.y3b5_c00003{bottom:342.615000px;}
.y200_c00003{bottom:342.795000px;}
.yaf_c00003{bottom:343.335000px;}
.y252_c00003{bottom:343.515000px;}
.y129_c00003{bottom:344.415000px;}
.yd1_c00003{bottom:345.135000px;}
.y19e_c00003{bottom:345.675000px;}
.y75_c00003{bottom:346.035000px;}
.y27f_c00003{bottom:346.215000px;}
.yed_c00003{bottom:346.575000px;}
.y57_c00003{bottom:347.475000px;}
.y4cc_c00003{bottom:347.970000px;}
.y489_c00003{bottom:348.000000px;}
.y42e_c00003{bottom:348.001500px;}
.y447_c00003{bottom:348.015000px;}
.y4ed_c00003{bottom:348.150000px;}
.y50d_c00003{bottom:348.180000px;}
.y53a_c00003{bottom:348.195000px;}
.y2fd_c00003{bottom:348.735000px;}
.y1d8_c00003{bottom:350.715000px;}
.y1b_c00003{bottom:351.075000px;}
.y1e9_c00003{bottom:351.255000px;}
.yfe_c00003{bottom:351.615000px;}
.yb7_c00003{bottom:352.155000px;}
.y415_c00003{bottom:352.515000px;}
.y3e6_c00003{bottom:352.875000px;}
.y54a_c00003{bottom:353.415000px;}
.y362_c00003{bottom:353.595000px;}
.y2c4_c00003{bottom:353.775000px;}
.y4db_c00003{bottom:354.135000px;}
.y29f_c00003{bottom:354.675000px;}
.y153_c00003{bottom:354.855000px;}
.y345_c00003{bottom:355.935000px;}
.y21d_c00003{bottom:356.475000px;}
.y394_c00003{bottom:358.815000px;}
.y2d2_c00003{bottom:361.155000px;}
.y242_c00003{bottom:361.335000px;}
.y24_c00003{bottom:361.695000px;}
.y3b4_c00003{bottom:363.315000px;}
.y194_c00003{bottom:363.675000px;}
.y251_c00003{bottom:364.215000px;}
.y128_c00003{bottom:365.115000px;}
.y488_c00003{bottom:366.000000px;}
.y539_c00003{bottom:366.015000px;}
.y4cb_c00003{bottom:366.150000px;}
.y4f3_c00003{bottom:366.180000px;}
.y42d_c00003{bottom:366.181500px;}
.y377_c00003{bottom:366.195000px;}
.y27e_c00003{bottom:366.915000px;}
.y46_c00003{bottom:368.175000px;}
.y3f3_c00003{bottom:369.255000px;}
.y2fc_c00003{bottom:369.435000px;}
.y1cb_c00003{bottom:370.695000px;}
.y4a6_c00003{bottom:371.595000px;}
.y9c_c00003{bottom:371.775000px;}
.y1e8_c00003{bottom:371.955000px;}
.y326_c00003{bottom:372.315000px;}
.y525_c00003{bottom:373.035000px;}
.y3e5_c00003{bottom:373.215000px;}
.y17d_c00003{bottom:374.115000px;}
.y361_c00003{bottom:374.295000px;}
.yae_c00003{bottom:374.475000px;}
.y29e_c00003{bottom:375.375000px;}
.y152_c00003{bottom:375.555000px;}
.yfd_c00003{bottom:375.735000px;}
.yd0_c00003{bottom:376.275000px;}
.y19d_c00003{bottom:376.635000px;}
.y74_c00003{bottom:376.995000px;}
.y21c_c00003{bottom:377.175000px;}
.y7f_c00003{bottom:377.535000px;}
.y2eb_c00003{bottom:377.895000px;}
.y1ff_c00003{bottom:378.975000px;}
.y335_c00003{bottom:379.335000px;}
.y393_c00003{bottom:379.515000px;}
.y537_c00003{bottom:380.055000px;}
.yec_c00003{bottom:380.955000px;}
.y1d7_c00003{bottom:381.855000px;}
.y241_c00003{bottom:382.035000px;}
.y1a_c00003{bottom:382.215000px;}
.y23_c00003{bottom:382.395000px;}
.y56_c00003{bottom:383.655000px;}
.y3b3_c00003{bottom:384.015000px;}
.y4ca_c00003{bottom:384.150000px;}
.y487_c00003{bottom:384.180000px;}
.y42c_c00003{bottom:384.181500px;}
.y4c1_c00003{bottom:384.195000px;}
.y549_c00003{bottom:384.330000px;}
.y50c_c00003{bottom:384.360000px;}
.y446_c00003{bottom:384.375000px;}
.y250_c00003{bottom:384.915000px;}
.y127_c00003{bottom:385.815000px;}
.y414_c00003{bottom:387.075000px;}
.y27d_c00003{bottom:387.255000px;}
.y3fe_c00003{bottom:387.615000px;}
.y2c3_c00003{bottom:389.955000px;}
.y2fb_c00003{bottom:390.135000px;}
.y4d8_c00003{bottom:390.315000px;}
.y552_c00003{bottom:391.215000px;}
.y1e7_c00003{bottom:392.655000px;}
.y325_c00003{bottom:393.015000px;}
.y3e4_c00003{bottom:393.915000px;}
.y360_c00003{bottom:394.995000px;}
.y4e2_c00003{bottom:395.535000px;}
.y29d_c00003{bottom:396.075000px;}
.y151_c00003{bottom:396.255000px;}
.y344_c00003{bottom:397.515000px;}
.y21b_c00003{bottom:397.875000px;}
.y45_c00003{bottom:399.135000px;}
.yfc_c00003{bottom:399.855000px;}
.y392_c00003{bottom:400.215000px;}
.y486_c00003{bottom:402.360000px;}
.y42b_c00003{bottom:402.361500px;}
.y376_c00003{bottom:402.375000px;}
.y50b_c00003{bottom:402.540000px;}
.y2d1_c00003{bottom:402.555000px;}
.y240_c00003{bottom:402.735000px;}
.y9b_c00003{bottom:402.915000px;}
.y1b0_c00003{bottom:403.095000px;}
.y3b2_c00003{bottom:404.715000px;}
.yad_c00003{bottom:405.435000px;}
.y24f_c00003{bottom:405.615000px;}
.y126_c00003{bottom:406.515000px;}
.y1ca_c00003{bottom:407.055000px;}
.ycf_c00003{bottom:407.235000px;}
.y19c_c00003{bottom:407.775000px;}
.y27c_c00003{bottom:407.955000px;}
.y73_c00003{bottom:408.135000px;}
.y3fd_c00003{bottom:408.315000px;}
.y46e_c00003{bottom:408.495000px;}
.y17c_c00003{bottom:408.675000px;}
.y556_c00003{bottom:409.215000px;}
.y2fa_c00003{bottom:410.475000px;}
.y1ec_c00003{bottom:410.655000px;}
.y1d6_c00003{bottom:412.815000px;}
.y19_c00003{bottom:413.175000px;}
.y1e6_c00003{bottom:413.355000px;}
.y2ea_c00003{bottom:414.075000px;}
.y7e_c00003{bottom:414.255000px;}
.y3e3_c00003{bottom:414.615000px;}
.y1fe_c00003{bottom:415.335000px;}
.yeb_c00003{bottom:415.515000px;}
.y35f_c00003{bottom:416.055000px;}
.y29c_c00003{bottom:416.415000px;}
.y2ae_c00003{bottom:416.775000px;}
.y150_c00003{bottom:416.955000px;}
.y334_c00003{bottom:418.035000px;}
.y21a_c00003{bottom:418.215000px;}
.y2b7_c00003{bottom:418.575000px;}
.y55_c00003{bottom:420.015000px;}
.y485_c00003{bottom:420.360000px;}
.y528_c00003{bottom:420.361500px;}
.y4f8_c00003{bottom:420.375000px;}
.y4f2_c00003{bottom:420.540000px;}
.y42a_c00003{bottom:420.541500px;}
.y445_c00003{bottom:420.555000px;}
.y531_c00003{bottom:420.585000px;}
.y391_c00003{bottom:420.915000px;}
.y413_c00003{bottom:421.635000px;}
.y54d_c00003{bottom:422.925000px;}
.y2d0_c00003{bottom:423.255000px;}
.y23f_c00003{bottom:423.435000px;}
.y1af_c00003{bottom:423.795000px;}
.yfb_c00003{bottom:423.975000px;}
.y3b1_c00003{bottom:425.415000px;}
.y4e8_c00003{bottom:425.805000px;}
.y24e_c00003{bottom:425.955000px;}
.y2c2_c00003{bottom:426.315000px;}
.y52b_c00003{bottom:426.705000px;}
.y125_c00003{bottom:427.215000px;}
.y27b_c00003{bottom:428.655000px;}
.y3fc_c00003{bottom:429.015000px;}
.y44_c00003{bottom:430.275000px;}
.y2f9_c00003{bottom:431.175000px;}
.y312_c00003{bottom:431.355000px;}
.y9a_c00003{bottom:433.875000px;}
.y1e5_c00003{bottom:434.055000px;}
.y324_c00003{bottom:434.415000px;}
.y3e2_c00003{bottom:435.675000px;}
.y193_c00003{bottom:436.035000px;}
.yac_c00003{bottom:436.575000px;}
.y35e_c00003{bottom:436.755000px;}
.y29b_c00003{bottom:437.115000px;}
.y14f_c00003{bottom:437.655000px;}
.yce_c00003{bottom:438.375000px;}
.y484_c00003{bottom:438.540000px;}
.y429_c00003{bottom:438.541500px;}
.y444_c00003{bottom:438.555000px;}
.y4f1_c00003{bottom:438.585000px;}
.y50a_c00003{bottom:438.720000px;}
.y19b_c00003{bottom:438.735000px;}
.y219_c00003{bottom:438.915000px;}
.y72_c00003{bottom:439.095000px;}
.y2b6_c00003{bottom:439.275000px;}
.y390_c00003{bottom:441.615000px;}
.y3f2_c00003{bottom:441.795000px;}
.y17b_c00003{bottom:443.055000px;}
.y54c_c00003{bottom:443.625000px;}
.y1d5_c00003{bottom:443.955000px;}
.y23e_c00003{bottom:444.135000px;}
.y18_c00003{bottom:444.315000px;}
.y1ae_c00003{bottom:444.495000px;}
.y526_c00003{bottom:444.705000px;}
.y544_c00003{bottom:445.425000px;}
.y3b0_c00003{bottom:446.115000px;}
.y24d_c00003{bottom:446.655000px;}
.y1f6_c00003{bottom:446.835000px;}
.y3d3_c00003{bottom:447.015000px;}
.y124_c00003{bottom:447.915000px;}
.yfa_c00003{bottom:448.095000px;}
.y1c9_c00003{bottom:448.275000px;}
.y27a_c00003{bottom:449.355000px;}
.yea_c00003{bottom:450.075000px;}
.y2e9_c00003{bottom:450.435000px;}
.y2f8_c00003{bottom:451.875000px;}
.y1e4_c00003{bottom:454.755000px;}
.y323_c00003{bottom:455.115000px;}
.y412_c00003{bottom:456.015000px;}
.y54_c00003{bottom:456.195000px;}
.y3e1_c00003{bottom:456.375000px;}
.y483_c00003{bottom:456.720000px;}
.y428_c00003{bottom:456.721500px;}
.y443_c00003{bottom:456.735000px;}
.y4f0_c00003{bottom:456.765000px;}
.y333_c00003{bottom:456.915000px;}
.y35d_c00003{bottom:457.455000px;}
.y29a_c00003{bottom:457.815000px;}
.y14e_c00003{bottom:458.355000px;}
.y218_c00003{bottom:459.615000px;}
.y343_c00003{bottom:459.975000px;}
.y43_c00003{bottom:461.235000px;}
.y2c1_c00003{bottom:462.495000px;}
.y497_c00003{bottom:462.885000px;}
.y512_c00003{bottom:463.605000px;}
.y54b_c00003{bottom:464.325000px;}
.y2cf_c00003{bottom:464.655000px;}
.y262_c00003{bottom:464.835000px;}
.y99_c00003{bottom:465.015000px;}
.y1ad_c00003{bottom:465.195000px;}
.y1fd_c00003{bottom:466.455000px;}
.y3af_c00003{bottom:466.815000px;}
.y24c_c00003{bottom:467.355000px;}
.yab_c00003{bottom:467.535000px;}
.y3c4_c00003{bottom:467.715000px;}
.y123_c00003{bottom:468.615000px;}
.ycd_c00003{bottom:469.335000px;}
.y19a_c00003{bottom:469.875000px;}
.y279_c00003{bottom:470.055000px;}
.y71_c00003{bottom:470.235000px;}
.yf9_c00003{bottom:472.215000px;}
.y2f7_c00003{bottom:472.575000px;}
.y1d4_c00003{bottom:473.835000px;}
.y427_c00003{bottom:474.721500px;}
.y4c0_c00003{bottom:474.735000px;}
.y482_c00003{bottom:474.765000px;}
.y522_c00003{bottom:474.901500px;}
.y375_c00003{bottom:474.915000px;}
.y509_c00003{bottom:474.945000px;}
.y1e3_c00003{bottom:475.095000px;}
.y17_c00003{bottom:475.275000px;}
.y20a_c00003{bottom:475.455000px;}
.y322_c00003{bottom:475.815000px;}
.y3e0_c00003{bottom:477.075000px;}
.y17a_c00003{bottom:477.615000px;}
.y3f1_c00003{bottom:477.975000px;}
.y35c_c00003{bottom:478.155000px;}
.y299_c00003{bottom:478.515000px;}
.y14d_c00003{bottom:479.055000px;}
.y217_c00003{bottom:480.315000px;}
.y342_c00003{bottom:480.675000px;}
.y4c5_c00003{bottom:480.885000px;}
.y523_c00003{bottom:481.785000px;}
.y38f_c00003{bottom:483.195000px;}
.ye9_c00003{bottom:484.455000px;}
.y2ce_c00003{bottom:485.355000px;}
.y261_c00003{bottom:485.535000px;}
.y1c8_c00003{bottom:485.715000px;}
.y1ac_c00003{bottom:485.895000px;}
.y2e8_c00003{bottom:486.615000px;}
.y3ae_c00003{bottom:487.875000px;}
.y3a6_c00003{bottom:488.055000px;}
.y3c3_c00003{bottom:488.415000px;}
.y122_c00003{bottom:489.315000px;}
.y411_c00003{bottom:490.575000px;}
.y278_c00003{bottom:490.755000px;}
.y42_c00003{bottom:492.375000px;}
.y4bf_c00003{bottom:492.915000px;}
.y481_c00003{bottom:492.945000px;}
.y426_c00003{bottom:492.946500px;}
.y2f6_c00003{bottom:493.275000px;}
.y332_c00003{bottom:495.615000px;}
.y98_c00003{bottom:495.975000px;}
.y209_c00003{bottom:496.155000px;}
.yf8_c00003{bottom:496.515000px;}
.y321_c00003{bottom:496.875000px;}
.y3df_c00003{bottom:497.775000px;}
.y53c_c00003{bottom:498.345000px;}
.yaa_c00003{bottom:498.675000px;}
.y4a4_c00003{bottom:499.065000px;}
.y298_c00003{bottom:499.215000px;}
.y14c_c00003{bottom:499.755000px;}
.y4d1_c00003{bottom:499.785000px;}
.ycc_c00003{bottom:500.475000px;}
.y199_c00003{bottom:500.835000px;}
.y216_c00003{bottom:501.015000px;}
.y70_c00003{bottom:501.195000px;}
.y41a_c00003{bottom:501.735000px;}
.y1d3_c00003{bottom:502.275000px;}
.y38e_c00003{bottom:503.895000px;}
.y1e2_c00003{bottom:506.055000px;}
.y267_c00003{bottom:506.235000px;}
.y16_c00003{bottom:506.415000px;}
.y1ab_c00003{bottom:506.595000px;}
.y540_c00003{bottom:506.805000px;}
.y1fc_c00003{bottom:507.855000px;}
.y192_c00003{bottom:508.575000px;}
.y3a5_c00003{bottom:508.755000px;}
.y311_c00003{bottom:509.115000px;}
.y121_c00003{bottom:510.015000px;}
.y4f7_c00003{bottom:510.915000px;}
.y480_c00003{bottom:510.945000px;}
.y527_c00003{bottom:510.946500px;}
.y374_c00003{bottom:511.095000px;}
.y4ef_c00003{bottom:511.125000px;}
.y425_c00003{bottom:511.126500px;}
.y277_c00003{bottom:511.455000px;}
.y179_c00003{bottom:512.175000px;}
.y2f5_c00003{bottom:513.975000px;}
.y35b_c00003{bottom:516.315000px;}
.y4ce_c00003{bottom:516.525000px;}
.y208_c00003{bottom:516.855000px;}
.y550_c00003{bottom:517.245000px;}
.y320_c00003{bottom:517.575000px;}
.y4b3_c00003{bottom:517.965000px;}
.y3de_c00003{bottom:518.475000px;}
.ye8_c00003{bottom:519.015000px;}
.y3d2_c00003{bottom:519.375000px;}
.y16d_c00003{bottom:520.095000px;}
.y14b_c00003{bottom:520.455000px;}
.yf7_c00003{bottom:520.635000px;}
.y2b5_c00003{bottom:521.715000px;}
.y215_c00003{bottom:522.075000px;}
.y2e7_c00003{bottom:522.795000px;}
.y41_c00003{bottom:523.335000px;}
.y38d_c00003{bottom:524.595000px;}
.y410_c00003{bottom:525.135000px;}
.y2cd_c00003{bottom:526.395000px;}
.y260_c00003{bottom:526.935000px;}
.y97_c00003{bottom:527.115000px;}
.y1c7_c00003{bottom:527.295000px;}
.y53_c00003{bottom:528.555000px;}
.y4f6_c00003{bottom:529.095000px;}
.y47f_c00003{bottom:529.125000px;}
.y424_c00003{bottom:529.126500px;}
.y3ad_c00003{bottom:529.275000px;}
.y3a4_c00003{bottom:529.455000px;}
.ya9_c00003{bottom:529.635000px;}
.y3c2_c00003{bottom:529.815000px;}
.y120_c00003{bottom:530.715000px;}
.ycb_c00003{bottom:531.435000px;}
.y3fb_c00003{bottom:532.155000px;}
.y6f_c00003{bottom:532.335000px;}
.y276_c00003{bottom:532.515000px;}
.y331_c00003{bottom:534.495000px;}
.y2f4_c00003{bottom:534.675000px;}
.y49d_c00003{bottom:535.245000px;}
.y4ba_c00003{bottom:535.965000px;}
.y419_c00003{bottom:536.295000px;}
.y1aa_c00003{bottom:537.015000px;}
.y1e1_c00003{bottom:537.375000px;}
.y15_c00003{bottom:537.405000px;}
.y207_c00003{bottom:537.555000px;}
.y31f_c00003{bottom:538.275000px;}
.y297_c00003{bottom:539.205000px;}
.y35a_c00003{bottom:540.285000px;}
.y14a_c00003{bottom:541.005000px;}
.y16c_c00003{bottom:541.365000px;}
.y2b4_c00003{bottom:542.445000px;}
.y214_c00003{bottom:542.805000px;}
.y178_c00003{bottom:544.605000px;}
.yf6_c00003{bottom:544.785000px;}
.y38c_c00003{bottom:545.325000px;}
.y2cc_c00003{bottom:547.125000px;}
.y548_c00003{bottom:547.275000px;}
.y373_c00003{bottom:547.305000px;}
.y4fc_c00003{bottom:547.306500px;}
.y2c0_c00003{bottom:547.485000px;}
.y23d_c00003{bottom:547.665000px;}
.y310_c00003{bottom:547.845000px;}
.y1c6_c00003{bottom:548.025000px;}
.y3ac_c00003{bottom:550.005000px;}
.y3a3_c00003{bottom:550.185000px;}
.y11f_c00003{bottom:551.085000px;}
.y3fa_c00003{bottom:552.885000px;}
.y275_c00003{bottom:553.245000px;}
.y4ab_c00003{bottom:553.425000px;}
.y459_c00003{bottom:554.145000px;}
.y40_c00003{bottom:554.325000px;}
.ye7_c00003{bottom:554.865000px;}
.y2f3_c00003{bottom:555.405000px;}
.y3d1_c00003{bottom:555.585000px;}
.y96_c00003{bottom:558.105000px;}
.y2e6_c00003{bottom:559.005000px;}
.y40f_c00003{bottom:559.545000px;}
.ya8_c00003{bottom:560.805000px;}
.y149_c00003{bottom:561.705000px;}
.yca_c00003{bottom:562.425000px;}
.y6e_c00003{bottom:563.325000px;}
.y213_c00003{bottom:563.505000px;}
.y359_c00003{bottom:564.045000px;}
.y52_c00003{bottom:564.765000px;}
.y16b_c00003{bottom:565.305000px;}
.y534_c00003{bottom:565.306500px;}
.y521_c00003{bottom:565.486500px;}
.y38b_c00003{bottom:566.025000px;}
.y2cb_c00003{bottom:567.645000px;}
.y1f3_c00003{bottom:568.185000px;}
.y23c_c00003{bottom:568.365000px;}
.y14_c00003{bottom:568.545000px;}
.y1c5_c00003{bottom:568.725000px;}
.yf5_c00003{bottom:570.705000px;}
.y3a2_c00003{bottom:570.885000px;}
.y529_c00003{bottom:571.605000px;}
.y11e_c00003{bottom:572.325000px;}
.y330_c00003{bottom:573.405000px;}
.y3f9_c00003{bottom:573.585000px;}
.y274_c00003{bottom:573.945000px;}
.y296_c00003{bottom:579.165000px;}
.y31e_c00003{bottom:579.705000px;}
.y148_c00003{bottom:582.405000px;}
.y372_c00003{bottom:583.485000px;}
.y520_c00003{bottom:583.486500px;}
.y341_c00003{bottom:583.845000px;}
.y358_c00003{bottom:584.925000px;}
.y3f_c00003{bottom:585.465000px;}
.y16a_c00003{bottom:586.005000px;}
.y30f_c00003{bottom:586.725000px;}
.y2ca_c00003{bottom:588.345000px;}
.y23b_c00003{bottom:589.065000px;}
.y95_c00003{bottom:589.245000px;}
.y1c4_c00003{bottom:589.425000px;}
.y4e9_c00003{bottom:589.605000px;}
.y4fd_c00003{bottom:590.325000px;}
.ya7_c00003{bottom:591.765000px;}
.y3c1_c00003{bottom:591.945000px;}
.yc9_c00003{bottom:593.565000px;}
.y212_c00003{bottom:594.105000px;}
.y3f8_c00003{bottom:594.285000px;}
.y6d_c00003{bottom:594.465000px;}
.y273_c00003{bottom:594.645000px;}
.y2e5_c00003{bottom:595.365000px;}
.y11d_c00003{bottom:596.265000px;}
.y38a_c00003{bottom:596.625000px;}
.ye6_c00003{bottom:596.805000px;}
.y1a9_c00003{bottom:599.145000px;}
.y13_c00003{bottom:599.505000px;}
.y51_c00003{bottom:601.125000px;}
.y47e_c00003{bottom:601.485000px;}
.y51f_c00003{bottom:601.666500px;}
.y147_c00003{bottom:603.105000px;}
.y340_c00003{bottom:604.905000px;}
.yf4_c00003{bottom:605.265000px;}
.y357_c00003{bottom:605.625000px;}
.y169_c00003{bottom:606.705000px;}
.y518_c00003{bottom:607.785000px;}
.y4d5_c00003{bottom:608.505000px;}
.y3ab_c00003{bottom:609.045000px;}
.y3a1_c00003{bottom:609.585000px;}
.y23a_c00003{bottom:609.765000px;}
.y1c3_c00003{bottom:610.125000px;}
.y32f_c00003{bottom:612.105000px;}
.y3c0_c00003{bottom:612.645000px;}
.y272_c00003{bottom:614.985000px;}
.y3e_c00003{bottom:616.425000px;}
.y11c_c00003{bottom:616.965000px;}
.y295_c00003{bottom:619.485000px;}
.y47d_c00003{bottom:619.665000px;}
.y51e_c00003{bottom:619.666500px;}
.y371_c00003{bottom:619.845000px;}
.y94_c00003{bottom:620.205000px;}
.ya6_c00003{bottom:622.905000px;}
.y146_c00003{bottom:623.445000px;}
.yc8_c00003{bottom:624.525000px;}
.y211_c00003{bottom:625.065000px;}
.y31d_c00003{bottom:625.245000px;}
.y6c_c00003{bottom:625.425000px;}
.y33f_c00003{bottom:625.605000px;}
.y4cd_c00003{bottom:625.830000px;}
.y356_c00003{bottom:626.325000px;}
.y2c9_c00003{bottom:626.505000px;}
.y554_c00003{bottom:626.730000px;}
.y168_c00003{bottom:627.405000px;}
.y389_c00003{bottom:627.585000px;}
.y3d0_c00003{bottom:628.125000px;}
.y40e_c00003{bottom:628.665000px;}
.y239_c00003{bottom:630.465000px;}
.y12_c00003{bottom:630.645000px;}
.y1c2_c00003{bottom:630.825000px;}
.y2e4_c00003{bottom:631.545000px;}
.y3aa_c00003{bottom:632.805000px;}
.y3bf_c00003{bottom:633.345000px;}
.y271_c00003{bottom:635.685000px;}
.y11b_c00003{bottom:637.665000px;}
.y51d_c00003{bottom:637.846500px;}
.y191_c00003{bottom:639.825000px;}
.y3dd_c00003{bottom:641.445000px;}
.ye5_c00003{bottom:641.625000px;}
.yc7_c00003{bottom:641.805000px;}
.y50_c00003{bottom:641.985000px;}
.y53b_c00003{bottom:644.010000px;}
.y4fb_c00003{bottom:644.730000px;}
.y145_c00003{bottom:644.865000px;}
.y33e_c00003{bottom:646.305000px;}
.y355_c00003{bottom:647.385000px;}
.y3d_c00003{bottom:647.565000px;}
.y167_c00003{bottom:648.105000px;}
.y237_c00003{bottom:651.165000px;}
.y93_c00003{bottom:651.345000px;}
.y1c1_c00003{bottom:651.525000px;}
.ya5_c00003{bottom:653.865000px;}
.y3be_c00003{bottom:654.045000px;}
.y370_c00003{bottom:656.025000px;}
.y2c8_c00003{bottom:656.205000px;}
.y6b_c00003{bottom:656.565000px;}
.y270_c00003{bottom:656.745000px;}
.y388_c00003{bottom:658.005000px;}
.y11a_c00003{bottom:658.365000px;}
.y238_c00003{bottom:659.445000px;}
.y294_c00003{bottom:659.625000px;}
.y11_c00003{bottom:661.605000px;}
.y4f_c00003{bottom:661.785000px;}
.y4fe_c00003{bottom:662.190000px;}
.y558_c00003{bottom:662.910000px;}
.y40d_c00003{bottom:663.045000px;}
.y30e_c00003{bottom:664.305000px;}
.y2e3_c00003{bottom:667.725000px;}
.y4df_c00003{bottom:667.770000px;}
.y354_c00003{bottom:668.085000px;}
.y4e1_c00003{bottom:668.130000px;}
.y144_c00003{bottom:668.805000px;}
.y31c_c00003{bottom:671.325000px;}
.y24b_c00003{bottom:671.865000px;}
.y3a9_c00003{bottom:672.045000px;}
.y1c0_c00003{bottom:672.225000px;}
.y3dc_c00003{bottom:672.585000px;}
.y190_c00003{bottom:674.205000px;}
.y3bd_c00003{bottom:674.745000px;}
.y3c_c00003{bottom:678.525000px;}
.y119_c00003{bottom:679.065000px;}
.y4c9_c00003{bottom:680.910000px;}
.y53e_c00003{bottom:682.170000px;}
.y92_c00003{bottom:682.305000px;}
.yc6_c00003{bottom:683.925000px;}
.y33d_c00003{bottom:684.645000px;}
.ye4_c00003{bottom:686.445000px;}
.y26f_c00003{bottom:687.165000px;}
.y6a_c00003{bottom:687.525000px;}
.y353_c00003{bottom:688.785000px;}
.y421_c00003{bottom:688.830000px;}
.y143_c00003{bottom:689.505000px;}
.y4e0_c00003{bottom:691.350000px;}
.y36f_c00003{bottom:692.205000px;}
.y236_c00003{bottom:692.565000px;}
.y10_c00003{bottom:692.745000px;}
.y1bf_c00003{bottom:692.925000px;}
.y3bc_c00003{bottom:695.085000px;}
.y40c_c00003{bottom:697.605000px;}
.y49c_c00003{bottom:699.090000px;}
.y293_c00003{bottom:699.585000px;}
.y118_c00003{bottom:699.765000px;}
.y4de_c00003{bottom:700.170000px;}
.y3cf_c00003{bottom:700.485000px;}
.y30d_c00003{bottom:703.005000px;}
.y3db_c00003{bottom:703.545000px;}
.y2e2_c00003{bottom:703.905000px;}
.y18f_c00003{bottom:708.765000px;}
.y352_c00003{bottom:709.485000px;}
.y3b_c00003{bottom:709.665000px;}
.y142_c00003{bottom:710.205000px;}
.y31b_c00003{bottom:711.645000px;}
.y420_c00003{bottom:711.690000px;}
.y53f_c00003{bottom:712.050000px;}
.y235_c00003{bottom:713.265000px;}
.y91_c00003{bottom:713.445000px;}
.y1be_c00003{bottom:713.625000px;}
.y387_c00003{bottom:714.885000px;}
.y4dd_c00003{bottom:717.270000px;}
.y26e_c00003{bottom:718.125000px;}
.y69_c00003{bottom:718.485000px;}
.y117_c00003{bottom:720.465000px;}
.y33c_c00003{bottom:723.345000px;}
.yf_c00003{bottom:723.705000px;}
.y141_c00003{bottom:730.905000px;}
.ye3_c00003{bottom:731.445000px;}
.y40b_c00003{bottom:731.985000px;}
.y41f_c00003{bottom:732.390000px;}
.y351_c00003{bottom:732.705000px;}
.y3bb_c00003{bottom:733.785000px;}
.y234_c00003{bottom:733.965000px;}
.y36e_c00003{bottom:734.145000px;}
.y1bd_c00003{bottom:734.325000px;}
.y3da_c00003{bottom:734.685000px;}
.y51a_c00003{bottom:735.270000px;}
.y3ce_c00003{bottom:736.665000px;}
.y292_c00003{bottom:739.725000px;}
.y2e1_c00003{bottom:740.265000px;}
.y3a_c00003{bottom:740.625000px;}
.y116_c00003{bottom:741.345000px;}
.y30c_c00003{bottom:741.885000px;}
.y18e_c00003{bottom:743.325000px;}
.y90_c00003{bottom:744.405000px;}
.y33b_c00003{bottom:744.585000px;}
.y68_c00003{bottom:749.625000px;}
.y140_c00003{bottom:751.605000px;}
.y31a_c00003{bottom:751.785000px;}
.y41e_c00003{bottom:753.090000px;}
.y4a3_c00003{bottom:753.450000px;}
.y233_c00003{bottom:754.665000px;}
.ye_c00003{bottom:754.845000px;}
.y1bc_c00003{bottom:755.025000px;}
.y350_c00003{bottom:756.465000px;}
.y33a_c00003{bottom:765.285000px;}
.y115_c00003{bottom:765.465000px;}
.y3d9_c00003{bottom:765.645000px;}
.y40a_c00003{bottom:766.545000px;}
.yc5_c00003{bottom:767.445000px;}
.y4aa_c00003{bottom:771.450000px;}
.y39_c00003{bottom:771.765000px;}
.y13f_c00003{bottom:772.305000px;}
.y3cd_c00003{bottom:773.025000px;}
.y41d_c00003{bottom:773.790000px;}
.y232_c00003{bottom:775.365000px;}
.y8f_c00003{bottom:775.545000px;}
.y1bb_c00003{bottom:775.725000px;}
.ye2_c00003{bottom:776.265000px;}
.y2e0_c00003{bottom:776.445000px;}
.y18d_c00003{bottom:777.705000px;}
.y291_c00003{bottom:779.685000px;}
.y34f_c00003{bottom:780.225000px;}
.y67_c00003{bottom:780.585000px;}
.y30b_c00003{bottom:780.765000px;}
.yd_c00003{bottom:785.805000px;}
.y339_c00003{bottom:785.985000px;}
.y114_c00003{bottom:789.405000px;}
.y319_c00003{bottom:791.745000px;}
.y13e_c00003{bottom:793.005000px;}
.y231_c00003{bottom:796.065000px;}
.y1ba_c00003{bottom:796.425000px;}
.y3d8_c00003{bottom:796.785000px;}
.y386_c00003{bottom:800.250000px;}
.y409_c00003{bottom:801.150000px;}
.y38_c00003{bottom:802.770000px;}
.y34e_c00003{bottom:804.210000px;}
.y8e_c00003{bottom:806.550000px;}
.y3cc_c00003{bottom:809.250000px;}
.yc4_c00003{bottom:809.610000px;}
.y113_c00003{bottom:810.150000px;}
.y66_c00003{bottom:811.770000px;}
.y18c_c00003{bottom:812.310000px;}
.y2df_c00003{bottom:812.670000px;}
.y13d_c00003{bottom:813.750000px;}
.y230_c00003{bottom:816.810000px;}
.yc_c00003{bottom:816.990000px;}
.y1b9_c00003{bottom:817.170000px;}
.y30a_c00003{bottom:819.510000px;}
.y290_c00003{bottom:819.870000px;}
.ye1_c00003{bottom:821.130000px;}
.y338_c00003{bottom:824.370000px;}
.y3d7_c00003{bottom:827.790000px;}
.y34d_c00003{bottom:827.970000px;}
.y385_c00003{bottom:828.690000px;}
.yd9_c00003{bottom:830.670000px;}
.y112_c00003{bottom:830.850000px;}
.y318_c00003{bottom:831.930000px;}
.y37_c00003{bottom:833.910000px;}
.y13c_c00003{bottom:834.450000px;}
.y408_c00003{bottom:835.530000px;}
.y22f_c00003{bottom:837.510000px;}
.y8d_c00003{bottom:837.690000px;}
.y1b8_c00003{bottom:837.870000px;}
.y65_c00003{bottom:842.730000px;}
.y3cb_c00003{bottom:845.430000px;}
.y18b_c00003{bottom:846.870000px;}
.yb_c00003{bottom:847.950000px;}
.y2de_c00003{bottom:848.850000px;}
.y111_c00003{bottom:851.550000px;}
.yc3_c00003{bottom:851.730000px;}
.y36_c00003{bottom:854.790000px;}
.y13b_c00003{bottom:855.150000px;}
.y384_c00003{bottom:857.130000px;}
.y22e_c00003{bottom:858.210000px;}
.y309_c00003{bottom:858.390000px;}
.y1b7_c00003{bottom:858.570000px;}
.y3d6_c00003{bottom:858.930000px;}
.y28f_c00003{bottom:859.830000px;}
.y337_c00003{bottom:863.070000px;}
.ye0_c00003{bottom:865.950000px;}
.y8c_c00003{bottom:868.650000px;}
.y407_c00003{bottom:870.090000px;}
.y35_c00003{bottom:871.710000px;}
.y317_c00003{bottom:871.890000px;}
.y110_c00003{bottom:872.250000px;}
.y64_c00003{bottom:873.870000px;}
.y177_c00003{bottom:875.490000px;}
.y13a_c00003{bottom:875.850000px;}
.y22d_c00003{bottom:878.910000px;}
.ya_c00003{bottom:879.090000px;}
.y1b6_c00003{bottom:879.270000px;}
.yd8_c00003{bottom:880.170000px;}
.y18a_c00003{bottom:881.250000px;}
.y3ca_c00003{bottom:881.610000px;}
.y2dd_c00003{bottom:885.210000px;}
.y383_c00003{bottom:885.570000px;}
.y3d5_c00003{bottom:889.890000px;}
.y10f_c00003{bottom:892.950000px;}
.yc2_c00003{bottom:893.850000px;}
.y139_c00003{bottom:896.010000px;}
.y166_c00003{bottom:896.370000px;}
.y176_c00003{bottom:896.730000px;}
.y34c_c00003{bottom:899.430000px;}
.y25f_c00003{bottom:899.610000px;}
.y8b_c00003{bottom:899.790000px;}
.y1b5_c00003{bottom:899.970000px;}
.y336_c00003{bottom:901.950000px;}
.y63_c00003{bottom:904.830000px;}
.y9_c00003{bottom:910.050000px;}
.ydf_c00003{bottom:910.770000px;}
.y316_c00003{bottom:912.030000px;}
.y10e_c00003{bottom:913.650000px;}
.y33_c00003{bottom:913.830000px;}
.y382_c00003{bottom:914.190000px;}
.y189_c00003{bottom:915.810000px;}
.y165_c00003{bottom:917.070000px;}
.y138_c00003{bottom:917.430000px;}
.y3c9_c00003{bottom:917.970000px;}
.y25e_c00003{bottom:920.310000px;}
.y406_c00003{bottom:920.490000px;}
.y175_c00003{bottom:920.670000px;}
.y3d4_c00003{bottom:921.030000px;}
.y2dc_c00003{bottom:926.070000px;}
.y8a_c00003{bottom:930.750000px;}
.y10d_c00003{bottom:934.350000px;}
.y62_c00003{bottom:935.970000px;}
.y164_c00003{bottom:937.770000px;}
.y28e_c00003{bottom:939.570000px;}
.y1e0_c00003{bottom:940.830000px;}
.y265_c00003{bottom:941.010000px;}
.y8_c00003{bottom:941.190000px;}
.y137_c00003{bottom:941.370000px;}
.y381_c00003{bottom:942.630000px;}
.y188_c00003{bottom:950.370000px;}
.y315_c00003{bottom:951.990000px;}
.y3c8_c00003{bottom:954.150000px;}
.y10c_c00003{bottom:955.050000px;}
.yde_c00003{bottom:955.590000px;}
.y163_c00003{bottom:958.470000px;}
.y25d_c00003{bottom:961.710000px;}
.y89_c00003{bottom:961.890000px;}
.y136_c00003{bottom:962.070000px;}
.y2db_c00003{bottom:963.330000px;}
.y2c7_c00003{bottom:966.570000px;}
.y61_c00003{bottom:966.930000px;}
.y380_c00003{bottom:971.070000px;}
.y1df_c00003{bottom:971.790000px;}
.y7_c00003{bottom:972.150000px;}
.y10b_c00003{bottom:975.750000px;}
.y162_c00003{bottom:979.170000px;}
.y28d_c00003{bottom:979.710000px;}
.y25c_c00003{bottom:982.410000px;}
.y135_c00003{bottom:982.770000px;}
.y187_c00003{bottom:984.750000px;}
.y88_c00003{bottom:992.850000px;}
.y10a_c00003{bottom:996.450000px;}
.y32_c00003{bottom:997.350000px;}
.y198_c00003{bottom:997.710000px;}
.y60_c00003{bottom:998.070000px;}
.y37f_c00003{bottom:999.510000px;}
.y161_c00003{bottom:999.870000px;}
.ydd_c00003{bottom:1000.410000px;}
.y1a8_c00003{bottom:1002.930000px;}
.y22c_c00003{bottom:1003.110000px;}
.y6_c00003{bottom:1003.290000px;}
.y134_c00003{bottom:1003.470000px;}
.y109_c00003{bottom:1017.150000px;}
.y186_c00003{bottom:1019.310000px;}
.y28c_c00003{bottom:1019.670000px;}
.y160_c00003{bottom:1020.570000px;}
.y22b_c00003{bottom:1023.810000px;}
.y87_c00003{bottom:1023.990000px;}
.yc1_c00003{bottom:1024.170000px;}
.y5f_c00003{bottom:1028.670000px;}
.ybe_c00003{bottom:1029.030000px;}
.y1a7_c00003{bottom:1033.890000px;}
.y5_c00003{bottom:1034.250000px;}
.y108_c00003{bottom:1038.030000px;}
.y30_c00003{bottom:1039.470000px;}
.y15f_c00003{bottom:1040.910000px;}
.y22a_c00003{bottom:1044.510000px;}
.yc0_c00003{bottom:1044.870000px;}
.ydc_c00003{bottom:1045.410000px;}
.y185_c00003{bottom:1053.870000px;}
.y86_c00003{bottom:1059.660000px;}
.y5e_c00003{bottom:1062.360000px;}
.y1a6_c00003{bottom:1065.060000px;}
.y229_c00003{bottom:1065.240000px;}
.y4_c00003{bottom:1065.420000px;}
.ybf_c00003{bottom:1065.600000px;}
.h21_c00003{height:17.985000px;}
.h2e_c00003{height:17.992500px;}
.h39_c00003{height:18.165000px;}
.h2c_c00003{height:18.172500px;}
.h14_c00003{height:22.492500px;}
.h2_c00003{height:22.500000px;}
.h20_c00003{height:22.672500px;}
.h35_c00003{height:36.165000px;}
.h5f_c00003{height:36.172500px;}
.h7a_c00003{height:36.352500px;}
.h1b_c00003{height:38.158594px;}
.h7_c00003{height:41.400000px;}
.h8_c00003{height:41.436000px;}
.h13_c00003{height:45.184219px;}
.h19_c00003{height:48.616875px;}
.h1_c00003{height:48.871406px;}
.h1e_c00003{height:49.992188px;}
.h63_c00003{height:54.172500px;}
.h6c_c00003{height:54.345000px;}
.h59_c00003{height:54.352500px;}
.h29_c00003{height:56.801250px;}
.h1c_c00003{height:58.651172px;}
.h6_c00003{height:62.100000px;}
.h22_c00003{height:62.184375px;}
.h1a_c00003{height:63.949219px;}
.h4_c00003{height:64.546875px;}
.h17_c00003{height:65.010937px;}
.hc_c00003{height:66.757500px;}
.he_c00003{height:70.628906px;}
.h3_c00003{height:70.664062px;}
.h4a_c00003{height:72.345000px;}
.h68_c00003{height:72.352500px;}
.h3b_c00003{height:72.532500px;}
.hb_c00003{height:72.562500px;}
.ha_c00003{height:74.004654px;}
.h1d_c00003{height:74.953125px;}
.hf_c00003{height:80.441367px;}
.h11_c00003{height:80.464922px;}
.h9_c00003{height:82.800000px;}
.hd_c00003{height:84.898125px;}
.h33_c00003{height:90.525000px;}
.h78_c00003{height:90.540000px;}
.h73_c00003{height:90.561000px;}
.h3d_c00003{height:90.562500px;}
.h5e_c00003{height:90.741000px;}
.h10_c00003{height:96.508125px;}
.h5_c00003{height:103.536000px;}
.h5c_c00003{height:108.525000px;}
.h45_c00003{height:108.562500px;}
.h65_c00003{height:108.570000px;}
.h42_c00003{height:108.705000px;}
.h30_c00003{height:108.720000px;}
.h6a_c00003{height:108.741000px;}
.h41_c00003{height:108.742500px;}
.h70_c00003{height:108.750000px;}
.h12_c00003{height:121.179375px;}
.h98_c00003{height:126.705000px;}
.h90_c00003{height:126.741000px;}
.h55_c00003{height:126.742500px;}
.h37_c00003{height:126.750000px;}
.h71_c00003{height:126.885000px;}
.h74_c00003{height:126.900000px;}
.h8a_c00003{height:126.921000px;}
.h99_c00003{height:126.922500px;}
.h28_c00003{height:144.742500px;}
.h8f_c00003{height:144.750000px;}
.h44_c00003{height:144.885000px;}
.h50_c00003{height:144.900000px;}
.h67_c00003{height:144.921000px;}
.h3f_c00003{height:144.922500px;}
.h2a_c00003{height:144.930000px;}
.h16_c00003{height:145.125000px;}
.h15_c00003{height:157.460625px;}
.h95_c00003{height:162.885000px;}
.h87_c00003{height:162.915000px;}
.h32_c00003{height:163.102500px;}
.h31_c00003{height:163.110000px;}
.h84_c00003{height:181.080000px;}
.h89_c00003{height:181.095000px;}
.h25_c00003{height:181.102500px;}
.h43_c00003{height:181.110000px;}
.h8d_c00003{height:181.260000px;}
.h6d_c00003{height:181.282500px;}
.h4f_c00003{height:181.290000px;}
.h53_c00003{height:199.095000px;}
.h52_c00003{height:199.110000px;}
.h92_c00003{height:199.275000px;}
.h56_c00003{height:199.282500px;}
.h54_c00003{height:199.290000px;}
.h49_c00003{height:217.275000px;}
.h2f_c00003{height:217.290000px;}
.h40_c00003{height:217.470000px;}
.h38_c00003{height:235.462500px;}
.h26_c00003{height:235.470000px;}
.h79_c00003{height:235.500000px;}
.h47_c00003{height:253.462500px;}
.h2b_c00003{height:253.635000px;}
.h4c_c00003{height:253.642500px;}
.h36_c00003{height:253.650000px;}
.h7e_c00003{height:253.680000px;}
.h7c_c00003{height:271.642500px;}
.h27_c00003{height:271.650000px;}
.h4b_c00003{height:271.680000px;}
.h64_c00003{height:271.830000px;}
.h5d_c00003{height:289.680000px;}
.h85_c00003{height:289.687500px;}
.h3c_c00003{height:289.830000px;}
.h8c_c00003{height:289.860000px;}
.h72_c00003{height:307.830000px;}
.h81_c00003{height:307.860000px;}
.h75_c00003{height:307.867500px;}
.h69_c00003{height:308.010000px;}
.h82_c00003{height:308.040000px;}
.h66_c00003{height:326.010000px;}
.h51_c00003{height:326.040000px;}
.h93_c00003{height:326.047500px;}
.h97_c00003{height:344.040000px;}
.h7f_c00003{height:344.190000px;}
.h3a_c00003{height:344.220000px;}
.h46_c00003{height:362.220000px;}
.h4e_c00003{height:362.227500px;}
.h83_c00003{height:362.400000px;}
.h62_c00003{height:380.400000px;}
.h6f_c00003{height:380.407500px;}
.h94_c00003{height:398.400000px;}
.h34_c00003{height:398.407500px;}
.h48_c00003{height:398.580000px;}
.h6b_c00003{height:416.580000px;}
.h76_c00003{height:416.587500px;}
.h8e_c00003{height:434.760000px;}
.h8b_c00003{height:434.767500px;}
.h7b_c00003{height:434.790000px;}
.h60_c00003{height:452.760000px;}
.h88_c00003{height:452.767500px;}
.h96_c00003{height:452.790000px;}
.h86_c00003{height:452.940000px;}
.h24_c00003{height:470.940000px;}
.h4d_c00003{height:470.947500px;}
.h61_c00003{height:489.150000px;}
.h3e_c00003{height:507.120000px;}
.h7d_c00003{height:507.150000px;}
.h77_c00003{height:525.150000px;}
.h57_c00003{height:525.300000px;}
.h80_c00003{height:525.330000px;}
.h5a_c00003{height:543.300000px;}
.h23_c00003{height:543.330000px;}
.h91_c00003{height:561.480000px;}
.h5b_c00003{height:561.510000px;}
.h58_c00003{height:597.690000px;}
.h2d_c00003{height:633.870000px;}
.h6e_c00003{height:652.050000px;}
.h1f_c00003{height:918.000000px;}
.h18_c00003{height:1187.998500px;}
.h0_c00003{height:1188.000000px;}
.w1_c00003{width:66.636000px;}
.w4_c00003{width:66.765000px;}
.w1c_c00003{width:71.134500px;}
.w23_c00003{width:91.294500px;}
.we_c00003{width:117.934500px;}
.w7_c00003{width:121.354500px;}
.w15_c00003{width:122.614500px;}
.w12_c00003{width:131.025000px;}
.wb_c00003{width:133.005000px;}
.w20_c00003{width:133.905000px;}
.w21_c00003{width:133.941000px;}
.w19_c00003{width:134.085000px;}
.w27_c00003{width:134.445000px;}
.w14_c00003{width:138.225000px;}
.wf_c00003{width:139.485000px;}
.w11_c00003{width:140.976000px;}
.wd_c00003{width:141.105000px;}
.w8_c00003{width:142.185000px;}
.w1b_c00003{width:142.545000px;}
.w22_c00003{width:143.445000px;}
.w1a_c00003{width:143.481000px;}
.w16_c00003{width:143.625000px;}
.w26_c00003{width:143.676000px;}
.w18_c00003{width:143.856000px;}
.w28_c00003{width:144.381000px;}
.wa_c00003{width:144.396000px;}
.w1f_c00003{width:144.576000px;}
.wc_c00003{width:149.421000px;}
.w9_c00003{width:154.995000px;}
.w25_c00003{width:155.715000px;}
.w17_c00003{width:156.255000px;}
.w10_c00003{width:156.615000px;}
.w13_c00003{width:162.375000px;}
.w1e_c00003{width:163.455000px;}
.w24_c00003{width:174.405000px;}
.w1d_c00003{width:196.005000px;}
.w2_c00003{width:318.090000px;}
.w3_c00003{width:350.175000px;}
.w5_c00003{width:917.998500px;}
.w0_c00003{width:918.000000px;}
.w6_c00003{width:1188.000000px;}
.x0_c00003{left:0.000000px;}
.x7_c00003{left:4.860000px;}
.x37_c00003{left:7.725000px;}
.x50_c00003{left:12.238500px;}
.x56_c00003{left:13.498500px;}
.x3_c00003{left:16.560000px;}
.x5e_c00003{left:19.258500px;}
.x58_c00003{left:22.318500px;}
.x46_c00003{left:28.618500px;}
.x45_c00003{left:32.614500px;}
.x38_c00003{left:34.594500px;}
.x3c_c00003{left:35.674500px;}
.x2a_c00003{left:37.294500px;}
.x36_c00003{left:38.554500px;}
.x5d_c00003{left:45.574500px;}
.x41_c00003{left:47.505000px;}
.x31_c00003{left:48.585000px;}
.x3d_c00003{left:50.925000px;}
.x2c_c00003{left:52.365000px;}
.x4d_c00003{left:53.805000px;}
.x33_c00003{left:56.685000px;}
.x2e_c00003{left:58.170000px;}
.x35_c00003{left:60.508500px;}
.x3a_c00003{left:61.725000px;}
.x43_c00003{left:63.165000px;}
.x5a_c00003{left:68.385000px;}
.x52_c00003{left:79.185000px;}
.x39_c00003{left:86.968500px;}
.x29_c00003{left:98.641500px;}
.x24_c00003{left:106.200000px;}
.x1_c00003{left:127.656000px;}
.x1d_c00003{left:132.516000px;}
.x1a_c00003{left:151.770000px;}
.x9_c00003{left:154.650000px;}
.x22_c00003{left:156.810000px;}
.x51_c00003{left:170.505000px;}
.x4_c00003{left:180.750000px;}
.x59_c00003{left:190.845000px;}
.x21_c00003{left:194.250000px;}
.x6_c00003{left:206.850000px;}
.x1f_c00003{left:208.650000px;}
.x15_c00003{left:217.470000px;}
.x2b_c00003{left:220.725000px;}
.x48_c00003{left:221.985000px;}
.x11_c00003{left:223.950000px;}
.xe_c00003{left:226.110000px;}
.x20_c00003{left:235.650000px;}
.x12_c00003{left:238.530000px;}
.x23_c00003{left:252.210000px;}
.x18_c00003{left:273.810000px;}
.xb_c00003{left:288.930000px;}
.x10_c00003{left:294.510000px;}
.x19_c00003{left:297.210000px;}
.x1e_c00003{left:307.695000px;}
.x17_c00003{left:315.975000px;}
.x14_c00003{left:319.035000px;}
.x27_c00003{left:335.730000px;}
.x1b_c00003{left:341.713500px;}
.x1c_c00003{left:343.695000px;}
.x13_c00003{left:348.015000px;}
.x3e_c00003{left:357.525000px;}
.x16_c00003{left:359.535000px;}
.x2d_c00003{left:363.645000px;}
.x49_c00003{left:366.345000px;}
.xd_c00003{left:382.035000px;}
.x47_c00003{left:392.115000px;}
.xc_c00003{left:394.995000px;}
.xf_c00003{left:398.415000px;}
.x3b_c00003{left:405.435000px;}
.x5_c00003{left:410.475000px;}
.x4f_c00003{left:439.455000px;}
.x8_c00003{left:447.015000px;}
.xa_c00003{left:459.075000px;}
.x26_c00003{left:478.695000px;}
.x57_c00003{left:481.395000px;}
.x28_c00003{left:485.895000px;}
.x3f_c00003{left:514.875000px;}
.x2f_c00003{left:519.375000px;}
.x5b_c00003{left:522.435000px;}
.x4a_c00003{left:523.515000px;}
.x53_c00003{left:531.615000px;}
.x40_c00003{left:656.580000px;}
.x30_c00003{left:664.500000px;}
.x5c_c00003{left:667.020000px;}
.x4b_c00003{left:668.100000px;}
.x54_c00003{left:676.920000px;}
.x42_c00003{left:788.340000px;}
.x32_c00003{left:798.420000px;}
.x4c_c00003{left:802.920000px;}
.x55_c00003{left:811.560000px;}
.x2_c00003{left:820.950000px;}
.x4e_c00003{left:947.130000px;}
.x34_c00003{left:948.570000px;}
.x44_c00003{left:951.450000px;}
.x25_c00003{left:1101.570000px;}
@media print{
.v2_c00003{vertical-align:-159.520000pt;}
.v5_c00003{vertical-align:-122.880000pt;}
.v3_c00003{vertical-align:-92.160000pt;}
.v4_c00003{vertical-align:-85.120000pt;}
.v7_c00003{vertical-align:-74.986667pt;}
.v6_c00003{vertical-align:-73.760000pt;}
.v8_c00003{vertical-align:-64.000000pt;}
.v0_c00003{vertical-align:0.000000pt;}
.v1_c00003{vertical-align:29.440000pt;}
.ls8_c00003{letter-spacing:-1.280000pt;}
.ls5a_c00003{letter-spacing:-1.130667pt;}
.ls30_c00003{letter-spacing:-0.896000pt;}
.ls29_c00003{letter-spacing:-0.832000pt;}
.ls5b_c00003{letter-spacing:-0.688000pt;}
.ls4_c00003{letter-spacing:-0.640000pt;}
.ls1b_c00003{letter-spacing:-0.576000pt;}
.ls39_c00003{letter-spacing:-0.512000pt;}
.ls58_c00003{letter-spacing:-0.491733pt;}
.lsd_c00003{letter-spacing:-0.448000pt;}
.ls3e_c00003{letter-spacing:-0.384000pt;}
.ls5c_c00003{letter-spacing:-0.342933pt;}
.ls35_c00003{letter-spacing:-0.303467pt;}
.ls4f_c00003{letter-spacing:-0.297067pt;}
.ls2_c00003{letter-spacing:-0.256000pt;}
.ls5f_c00003{letter-spacing:-0.194667pt;}
.ls14_c00003{letter-spacing:-0.192000pt;}
.ls51_c00003{letter-spacing:-0.148267pt;}
.lsb_c00003{letter-spacing:-0.128000pt;}
.lsa_c00003{letter-spacing:-0.064000pt;}
.ls50_c00003{letter-spacing:-0.045867pt;}
.ls2d_c00003{letter-spacing:-0.040533pt;}
.ls41_c00003{letter-spacing:-0.025067pt;}
.ls32_c00003{letter-spacing:-0.016533pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls55_c00003{letter-spacing:0.045867pt;}
.ls7_c00003{letter-spacing:0.064000pt;}
.ls1a_c00003{letter-spacing:0.106667pt;}
.ls0_c00003{letter-spacing:0.128000pt;}
.ls3c_c00003{letter-spacing:0.133333pt;}
.ls57_c00003{letter-spacing:0.148267pt;}
.ls5e_c00003{letter-spacing:0.148480pt;}
.ls15_c00003{letter-spacing:0.160000pt;}
.ls11_c00003{letter-spacing:0.192000pt;}
.ls4c_c00003{letter-spacing:0.194667pt;}
.lse_c00003{letter-spacing:0.227733pt;}
.ls1e_c00003{letter-spacing:0.239467pt;}
.ls17_c00003{letter-spacing:0.256000pt;}
.ls42_c00003{letter-spacing:0.272468pt;}
.ls4d_c00003{letter-spacing:0.297067pt;}
.ls33_c00003{letter-spacing:0.320000pt;}
.ls22_c00003{letter-spacing:0.384000pt;}
.ls59_c00003{letter-spacing:0.424960pt;}
.ls13_c00003{letter-spacing:0.448000pt;}
.ls56_c00003{letter-spacing:0.491733pt;}
.ls20_c00003{letter-spacing:0.512000pt;}
.ls6_c00003{letter-spacing:0.640000pt;}
.ls53_c00003{letter-spacing:0.688000pt;}
.ls40_c00003{letter-spacing:0.704000pt;}
.ls1c_c00003{letter-spacing:0.768000pt;}
.ls9_c00003{letter-spacing:0.800000pt;}
.ls2c_c00003{letter-spacing:0.832000pt;}
.ls2b_c00003{letter-spacing:1.024000pt;}
.ls23_c00003{letter-spacing:1.536000pt;}
.ls16_c00003{letter-spacing:1.920000pt;}
.ls27_c00003{letter-spacing:2.560000pt;}
.ls1f_c00003{letter-spacing:3.200000pt;}
.ls2a_c00003{letter-spacing:3.840000pt;}
.ls28_c00003{letter-spacing:4.480000pt;}
.ls2e_c00003{letter-spacing:5.120000pt;}
.ls19_c00003{letter-spacing:5.738667pt;}
.lsf_c00003{letter-spacing:5.760000pt;}
.lsc_c00003{letter-spacing:6.400000pt;}
.ls5d_c00003{letter-spacing:7.040000pt;}
.ls37_c00003{letter-spacing:7.680000pt;}
.ls4b_c00003{letter-spacing:8.320000pt;}
.ls12_c00003{letter-spacing:9.600000pt;}
.ls10_c00003{letter-spacing:10.240000pt;}
.ls5_c00003{letter-spacing:12.160000pt;}
.ls1d_c00003{letter-spacing:12.800000pt;}
.ls21_c00003{letter-spacing:13.440000pt;}
.ls49_c00003{letter-spacing:14.720000pt;}
.ls3b_c00003{letter-spacing:16.000000pt;}
.ls3f_c00003{letter-spacing:16.640000pt;}
.ls26_c00003{letter-spacing:19.200000pt;}
.ls45_c00003{letter-spacing:19.968000pt;}
.ls3a_c00003{letter-spacing:22.400000pt;}
.ls44_c00003{letter-spacing:23.808000pt;}
.ls4a_c00003{letter-spacing:26.240000pt;}
.ls2f_c00003{letter-spacing:27.008000pt;}
.ls46_c00003{letter-spacing:27.648000pt;}
.ls43_c00003{letter-spacing:28.800000pt;}
.ls24_c00003{letter-spacing:29.440000pt;}
.ls36_c00003{letter-spacing:30.186667pt;}
.ls48_c00003{letter-spacing:30.208000pt;}
.ls47_c00003{letter-spacing:34.688000pt;}
.ls25_c00003{letter-spacing:39.040000pt;}
.ls3_c00003{letter-spacing:53.888000pt;}
.ls54_c00003{letter-spacing:75.008000pt;}
.ls3d_c00003{letter-spacing:79.978667pt;}
.ls52_c00003{letter-spacing:82.048000pt;}
.ls18_c00003{letter-spacing:92.160000pt;}
.ls4e_c00003{letter-spacing:96.128000pt;}
.ls31_c00003{letter-spacing:1143.658667pt;}
.ls34_c00003{letter-spacing:1151.658667pt;}
.ls38_c00003{letter-spacing:1162.378667pt;}
.ws16_c00003{word-spacing:-19.040000pt;}
.ws1a_c00003{word-spacing:-18.694933pt;}
.ws18_c00003{word-spacing:-18.416533pt;}
.ws12_c00003{word-spacing:-17.024000pt;}
.ws13_c00003{word-spacing:-16.832000pt;}
.wsd_c00003{word-spacing:-16.768000pt;}
.ws19_c00003{word-spacing:-16.704000pt;}
.ws6_c00003{word-spacing:-16.640000pt;}
.wsf_c00003{word-spacing:-16.512000pt;}
.ws15_c00003{word-spacing:-16.448000pt;}
.ws10_c00003{word-spacing:-16.384000pt;}
.wsb_c00003{word-spacing:-16.256000pt;}
.ws9_c00003{word-spacing:-16.192000pt;}
.ws4_c00003{word-spacing:-16.128000pt;}
.ws3_c00003{word-spacing:-16.064000pt;}
.ws1_c00003{word-spacing:-16.000000pt;}
.ws5_c00003{word-spacing:-15.936000pt;}
.wsc_c00003{word-spacing:-15.872000pt;}
.wsa_c00003{word-spacing:-15.808000pt;}
.ws2_c00003{word-spacing:-15.744000pt;}
.ws7_c00003{word-spacing:-15.552000pt;}
.ws17_c00003{word-spacing:-15.488000pt;}
.ws11_c00003{word-spacing:-15.168000pt;}
.ws1b_c00003{word-spacing:-15.104000pt;}
.ws22_c00003{word-spacing:-14.768000pt;}
.ws25_c00003{word-spacing:-14.571733pt;}
.ws1d_c00003{word-spacing:-14.377067pt;}
.ws1c_c00003{word-spacing:-14.274667pt;}
.ws26_c00003{word-spacing:-14.228267pt;}
.ws24_c00003{word-spacing:-14.125867pt;}
.ws1e_c00003{word-spacing:-14.080000pt;}
.ws21_c00003{word-spacing:-14.034133pt;}
.ws20_c00003{word-spacing:-13.931733pt;}
.ws2b_c00003{word-spacing:-13.885333pt;}
.ws1f_c00003{word-spacing:-13.782933pt;}
.ws2a_c00003{word-spacing:-13.737067pt;}
.ws27_c00003{word-spacing:-13.588267pt;}
.ws8_c00003{word-spacing:-13.534613pt;}
.ws29_c00003{word-spacing:-13.392000pt;}
.ws23_c00003{word-spacing:-13.248000pt;}
.ws28_c00003{word-spacing:-12.949333pt;}
.wse_c00003{word-spacing:-10.959467pt;}
.ws14_c00003{word-spacing:-10.679467pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._11_c00003{margin-left:-1.962688pt;}
._1_c00003{margin-left:-0.896000pt;}
._4_c00003{width:0.896000pt;}
._a_c00003{width:1.909333pt;}
._8_c00003{width:3.392000pt;}
._0_c00003{width:4.416000pt;}
._5_c00003{width:5.824000pt;}
._7_c00003{width:6.848000pt;}
._6_c00003{width:8.000000pt;}
._12_c00003{width:9.344000pt;}
._9_c00003{width:10.624000pt;}
._14_c00003{width:12.096000pt;}
._15_c00003{width:13.568000pt;}
._13_c00003{width:14.656000pt;}
._d_c00003{width:17.088000pt;}
._c_c00003{width:18.240000pt;}
._10_c00003{width:19.370688pt;}
._16_c00003{width:20.522688pt;}
._2_c00003{width:21.440000pt;}
._3_c00003{width:22.442688pt;}
._b_c00003{width:24.128000pt;}
._1d_c00003{width:25.088000pt;}
._19_c00003{width:25.984000pt;}
._e_c00003{width:26.944000pt;}
._f_c00003{width:28.032000pt;}
._59_c00003{width:28.928000pt;}
._1a_c00003{width:29.824000pt;}
._1b_c00003{width:30.720000pt;}
._1e_c00003{width:32.106688pt;}
._18_c00003{width:33.856000pt;}
._1c_c00003{width:34.944000pt;}
._22_c00003{width:36.554688pt;}
._71_c00003{width:37.482624pt;}
._2e_c00003{width:38.400000pt;}
._2f_c00003{width:39.616000pt;}
._2d_c00003{width:41.162667pt;}
._2c_c00003{width:42.176000pt;}
._17_c00003{width:43.328000pt;}
._31_c00003{width:44.416000pt;}
._3e_c00003{width:45.376000pt;}
._25_c00003{width:46.656000pt;}
._26_c00003{width:47.562688pt;}
._2a_c00003{width:48.704000pt;}
._29_c00003{width:49.824064pt;}
._28_c00003{width:51.168000pt;}
._40_c00003{width:52.640000pt;}
._23_c00003{width:54.208000pt;}
._24_c00003{width:55.264000pt;}
._53_c00003{width:56.192000pt;}
._5a_c00003{width:57.162688pt;}
._4b_c00003{width:58.176000pt;}
._4c_c00003{width:59.178688pt;}
._38_c00003{width:61.376000pt;}
._3f_c00003{width:63.104000pt;}
._56_c00003{width:64.576000pt;}
._49_c00003{width:65.728000pt;}
._4a_c00003{width:67.072000pt;}
._30_c00003{width:68.480000pt;}
._41_c00003{width:70.080000pt;}
._3a_c00003{width:71.050688pt;}
._39_c00003{width:72.160000pt;}
._5b_c00003{width:76.224000pt;}
._45_c00003{width:77.888000pt;}
._5c_c00003{width:85.056000pt;}
._44_c00003{width:88.640000pt;}
._43_c00003{width:89.600000pt;}
._4e_c00003{width:91.232000pt;}
._4d_c00003{width:92.160000pt;}
._27_c00003{width:96.512000pt;}
._65_c00003{width:97.920000pt;}
._62_c00003{width:99.168000pt;}
._67_c00003{width:100.192000pt;}
._5f_c00003{width:104.192000pt;}
._6e_c00003{width:106.752000pt;}
._6b_c00003{width:112.384000pt;}
._46_c00003{width:116.416000pt;}
._47_c00003{width:117.632000pt;}
._32_c00003{width:118.976000pt;}
._55_c00003{width:122.986688pt;}
._54_c00003{width:123.904000pt;}
._63_c00003{width:127.104000pt;}
._6f_c00003{width:129.024000pt;}
._70_c00003{width:130.048000pt;}
._3b_c00003{width:147.264000pt;}
._3c_c00003{width:148.224000pt;}
._68_c00003{width:150.464000pt;}
._69_c00003{width:151.424000pt;}
._6a_c00003{width:153.226688pt;}
._6c_c00003{width:160.704000pt;}
._6d_c00003{width:161.664000pt;}
._57_c00003{width:163.264000pt;}
._58_c00003{width:164.224000pt;}
._60_c00003{width:167.104000pt;}
._61_c00003{width:168.064000pt;}
._66_c00003{width:169.408000pt;}
._34_c00003{width:170.304000pt;}
._35_c00003{width:171.264000pt;}
._1f_c00003{width:172.864000pt;}
._20_c00003{width:173.824000pt;}
._4f_c00003{width:241.728000pt;}
._48_c00003{width:250.176000pt;}
._2b_c00003{width:251.328000pt;}
._3d_c00003{width:307.776000pt;}
._5e_c00003{width:415.168000pt;}
._36_c00003{width:527.552000pt;}
._52_c00003{width:556.928000pt;}
._21_c00003{width:565.184000pt;}
._33_c00003{width:574.976000pt;}
._50_c00003{width:578.944000pt;}
._51_c00003{width:579.968000pt;}
._5d_c00003{width:818.304000pt;}
._37_c00003{width:935.488000pt;}
._42_c00003{width:1716.490667pt;}
._64_c00003{width:1947.840000pt;}
.fs8_c00003{font-size:34.560000pt;}
.fs3_c00003{font-size:42.880000pt;}
.fs9_c00003{font-size:53.120000pt;}
.fsa_c00003{font-size:56.320000pt;}
.fs0_c00003{font-size:58.880000pt;}
.fs1_c00003{font-size:64.000000pt;}
.fs2_c00003{font-size:74.880000pt;}
.fs4_c00003{font-size:85.120000pt;}
.fs5_c00003{font-size:106.880000pt;}
.fs7_c00003{font-size:128.000000pt;}
.fs6_c00003{font-size:138.880000pt;}
.y0_c00003{bottom:0.000000pt;}
.y492_c00003{bottom:3.346667pt;}
.y441_c00003{bottom:3.353333pt;}
.y422_c00003{bottom:3.360000pt;}
.y479_c00003{bottom:3.506667pt;}
.y47b_c00003{bottom:3.513333pt;}
.y456_c00003{bottom:3.520000pt;}
.y2b_c00003{bottom:4.000000pt;}
.ydb_c00003{bottom:4.153333pt;}
.y3_c00003{bottom:4.160000pt;}
.y41c_c00003{bottom:4.313333pt;}
.y478_c00003{bottom:19.506667pt;}
.y440_c00003{bottom:19.508000pt;}
.y455_c00003{bottom:19.520000pt;}
.y473_c00003{bottom:19.546667pt;}
.y4d7_c00003{bottom:19.560000pt;}
.y503_c00003{bottom:19.666667pt;}
.y49b_c00003{bottom:19.668000pt;}
.y49f_c00003{bottom:19.680000pt;}
.y2f_c00003{bottom:22.394667pt;}
.y2a_c00003{bottom:22.400000pt;}
.y31_c00003{bottom:22.426667pt;}
.y491_c00003{bottom:35.506667pt;}
.y46d_c00003{bottom:35.508000pt;}
.y4a7_c00003{bottom:35.520000pt;}
.y50f_c00003{bottom:35.546667pt;}
.y477_c00003{bottom:35.666667pt;}
.y43f_c00003{bottom:35.668000pt;}
.y454_c00003{bottom:35.680000pt;}
.y472_c00003{bottom:35.706667pt;}
.y4d6_c00003{bottom:35.720000pt;}
.y2_c00003{bottom:37.152000pt;}
.yda_c00003{bottom:37.158667pt;}
.y2d_c00003{bottom:40.800000pt;}
.y29_c00003{bottom:40.840000pt;}
.y41b_c00003{bottom:46.598667pt;}
.y490_c00003{bottom:51.666667pt;}
.y43e_c00003{bottom:51.668000pt;}
.y46a_c00003{bottom:51.680000pt;}
.y471_c00003{bottom:51.706667pt;}
.y496_c00003{bottom:51.720000pt;}
.y476_c00003{bottom:51.826667pt;}
.y49a_c00003{bottom:51.828000pt;}
.y453_c00003{bottom:51.840000pt;}
.y4da_c00003{bottom:51.866667pt;}
.y4ea_c00003{bottom:51.880000pt;}
.y34_c00003{bottom:59.200000pt;}
.y28_c00003{bottom:59.240000pt;}
.y1_c00003{bottom:67.072000pt;}
.y43d_c00003{bottom:67.828000pt;}
.y452_c00003{bottom:67.840000pt;}
.y470_c00003{bottom:67.866667pt;}
.y462_c00003{bottom:67.880000pt;}
.y4bd_c00003{bottom:68.000000pt;}
.y502_c00003{bottom:68.026667pt;}
.y27_c00003{bottom:77.640000pt;}
.y469_c00003{bottom:83.840000pt;}
.y48f_c00003{bottom:83.866667pt;}
.y458_c00003{bottom:83.868000pt;}
.y495_c00003{bottom:83.880000pt;}
.y451_c00003{bottom:84.000000pt;}
.y46f_c00003{bottom:84.026667pt;}
.y43c_c00003{bottom:84.028000pt;}
.y461_c00003{bottom:84.040000pt;}
.y24a_c00003{bottom:97.632000pt;}
.y3a0_c00003{bottom:98.432000pt;}
.y468_c00003{bottom:100.000000pt;}
.y450_c00003{bottom:100.026667pt;}
.y43b_c00003{bottom:100.028000pt;}
.y37e_c00003{bottom:100.032000pt;}
.y460_c00003{bottom:100.040000pt;}
.y4c6_c00003{bottom:100.160000pt;}
.y4d9_c00003{bottom:100.186667pt;}
.y499_c00003{bottom:100.188000pt;}
.y2da_c00003{bottom:100.192000pt;}
.y49e_c00003{bottom:100.200000pt;}
.y269_c00003{bottom:100.352000pt;}
.y2b3_c00003{bottom:100.512000pt;}
.y133_c00003{bottom:100.672000pt;}
.y3ba_c00003{bottom:102.592000pt;}
.y25b_c00003{bottom:102.912000pt;}
.y249_c00003{bottom:103.712000pt;}
.y1d2_c00003{bottom:104.192000pt;}
.y1f5_c00003{bottom:104.512000pt;}
.y1fb_c00003{bottom:105.152000pt;}
.y4e_c00003{bottom:106.432000pt;}
.y308_c00003{bottom:107.232000pt;}
.y1f2_c00003{bottom:107.392000pt;}
.ya4_c00003{bottom:109.792000pt;}
.y15e_c00003{bottom:109.952000pt;}
.y32e_c00003{bottom:110.432000pt;}
.y2f2_c00003{bottom:110.592000pt;}
.y3f0_c00003{bottom:110.912000pt;}
.y206_c00003{bottom:111.552000pt;}
.y36d_c00003{bottom:111.872000pt;}
.yb6_c00003{bottom:112.032000pt;}
.y2aa_c00003{bottom:112.832000pt;}
.y2e_c00003{bottom:113.152000pt;}
.y248_c00003{bottom:113.792000pt;}
.y1a5_c00003{bottom:113.952000pt;}
.y228_c00003{bottom:114.112000pt;}
.y7c_c00003{bottom:114.272000pt;}
.y5d_c00003{bottom:115.712000pt;}
.y555_c00003{bottom:116.000000pt;}
.y48e_c00003{bottom:116.026667pt;}
.y46c_c00003{bottom:116.028000pt;}
.y52a_c00003{bottom:116.040000pt;}
.y467_c00003{bottom:116.160000pt;}
.y44f_c00003{bottom:116.186667pt;}
.y43a_c00003{bottom:116.188000pt;}
.y45f_c00003{bottom:116.200000pt;}
.y39f_c00003{bottom:116.512000pt;}
.ybd_c00003{bottom:116.672000pt;}
.y184_c00003{bottom:117.952000pt;}
.y1de_c00003{bottom:118.592000pt;}
.y266_c00003{bottom:118.752000pt;}
.y22_c00003{bottom:118.912000pt;}
.y504_c00003{bottom:118.918667pt;}
.y132_c00003{bottom:119.072000pt;}
.y107_c00003{bottom:119.232000pt;}
.y4d0_c00003{bottom:119.558667pt;}
.y47a_c00003{bottom:120.198667pt;}
.y3b9_c00003{bottom:120.672000pt;}
.y3a8_c00003{bottom:120.992000pt;}
.y46b_c00003{bottom:120.998667pt;}
.y25a_c00003{bottom:121.312000pt;}
.y457_c00003{bottom:121.638667pt;}
.y51c_c00003{bottom:122.278667pt;}
.y289_c00003{bottom:123.392000pt;}
.y405_c00003{bottom:123.712000pt;}
.yf3_c00003{bottom:124.032000pt;}
.y210_c00003{bottom:125.312000pt;}
.y4e5_c00003{bottom:125.478667pt;}
.y307_c00003{bottom:125.632000pt;}
.y542_c00003{bottom:127.238667pt;}
.y538_c00003{bottom:127.878667pt;}
.y15d_c00003{bottom:128.352000pt;}
.y423_c00003{bottom:128.518667pt;}
.y32d_c00003{bottom:128.832000pt;}
.y3ef_c00003{bottom:129.312000pt;}
.y197_c00003{bottom:129.952000pt;}
.y36c_c00003{bottom:130.272000pt;}
.y2a9_c00003{bottom:131.232000pt;}
.y4b9_c00003{bottom:132.160000pt;}
.y466_c00003{bottom:132.186667pt;}
.y439_c00003{bottom:132.188000pt;}
.y494_c00003{bottom:132.200000pt;}
.y4c8_c00003{bottom:132.320000pt;}
.y44e_c00003{bottom:132.346667pt;}
.y498_c00003{bottom:132.348000pt;}
.y37d_c00003{bottom:132.352000pt;}
.y45e_c00003{bottom:132.360000pt;}
.y227_c00003{bottom:132.512000pt;}
.y2bf_c00003{bottom:132.832000pt;}
.y4d_c00003{bottom:133.946667pt;}
.y39e_c00003{bottom:134.906667pt;}
.y3f7_c00003{bottom:135.066667pt;}
.y1d1_c00003{bottom:136.346667pt;}
.y4cf_c00003{bottom:136.360000pt;}
.y34b_c00003{bottom:136.666667pt;}
.y2d9_c00003{bottom:136.986667pt;}
.y474_c00003{bottom:137.000000pt;}
.y247_c00003{bottom:137.146667pt;}
.ya3_c00003{bottom:137.306667pt;}
.y131_c00003{bottom:137.466667pt;}
.y508_c00003{bottom:137.640000pt;}
.y47c_c00003{bottom:138.440000pt;}
.y1f4_c00003{bottom:138.586667pt;}
.y3b8_c00003{bottom:139.066667pt;}
.y85_c00003{bottom:139.226667pt;}
.y3c7_c00003{bottom:139.386667pt;}
.yb5_c00003{bottom:139.546667pt;}
.y1f1_c00003{bottom:139.706667pt;}
.y106_c00003{bottom:140.666667pt;}
.yd7_c00003{bottom:141.146667pt;}
.y1a4_c00003{bottom:141.626667pt;}
.y288_c00003{bottom:141.786667pt;}
.y7b_c00003{bottom:141.946667pt;}
.y404_c00003{bottom:142.106667pt;}
.y2f1_c00003{bottom:142.746667pt;}
.y205_c00003{bottom:143.706667pt;}
.y306_c00003{bottom:144.026667pt;}
.y1dd_c00003{bottom:146.266667pt;}
.y21_c00003{bottom:146.586667pt;}
.y15c_c00003{bottom:146.746667pt;}
.y32c_c00003{bottom:147.226667pt;}
.y5c_c00003{bottom:147.866667pt;}
.y3ee_c00003{bottom:148.026667pt;}
.y4b8_c00003{bottom:148.320000pt;}
.y44d_c00003{bottom:148.346667pt;}
.y438_c00003{bottom:148.348000pt;}
.y45d_c00003{bottom:148.360000pt;}
.y4d4_c00003{bottom:148.480000pt;}
.y183_c00003{bottom:148.506667pt;}
.y4a9_c00003{bottom:148.508000pt;}
.y4bc_c00003{bottom:148.520000pt;}
.y36b_c00003{bottom:148.666667pt;}
.ybc_c00003{bottom:149.466667pt;}
.y2a8_c00003{bottom:149.626667pt;}
.y2c_c00003{bottom:150.586667pt;}
.y226_c00003{bottom:150.906667pt;}
.y2be_c00003{bottom:151.226667pt;}
.y28b_c00003{bottom:151.546667pt;}
.y501_c00003{bottom:151.720000pt;}
.y2ad_c00003{bottom:152.826667pt;}
.y52f_c00003{bottom:153.160000pt;}
.y39d_c00003{bottom:153.306667pt;}
.y26d_c00003{bottom:153.466667pt;}
.y530_c00003{bottom:153.800000pt;}
.y536_c00003{bottom:154.106667pt;}
.yf2_c00003{bottom:154.586667pt;}
.y2d8_c00003{bottom:155.386667pt;}
.y246_c00003{bottom:155.546667pt;}
.y130_c00003{bottom:155.866667pt;}
.y20f_c00003{bottom:157.466667pt;}
.y259_c00003{bottom:158.106667pt;}
.y418_c00003{bottom:160.026667pt;}
.y287_c00003{bottom:160.186667pt;}
.y403_c00003{bottom:160.506667pt;}
.y4c_c00003{bottom:161.626667pt;}
.y105_c00003{bottom:162.106667pt;}
.y305_c00003{bottom:162.426667pt;}
.y52c_c00003{bottom:164.320000pt;}
.y465_c00003{bottom:164.346667pt;}
.y4a2_c00003{bottom:164.348000pt;}
.y493_c00003{bottom:164.360000pt;}
.y4b7_c00003{bottom:164.480000pt;}
.y37c_c00003{bottom:164.506667pt;}
.y437_c00003{bottom:164.508000pt;}
.y45c_c00003{bottom:164.520000pt;}
.ya2_c00003{bottom:164.826667pt;}
.y15b_c00003{bottom:164.986667pt;}
.y32b_c00003{bottom:165.306667pt;}
.y3ed_c00003{bottom:166.426667pt;}
.yb4_c00003{bottom:167.226667pt;}
.y36a_c00003{bottom:167.386667pt;}
.y2a7_c00003{bottom:168.026667pt;}
.y1d0_c00003{bottom:168.506667pt;}
.y519_c00003{bottom:168.520000pt;}
.yd6_c00003{bottom:168.826667pt;}
.y1a3_c00003{bottom:169.146667pt;}
.y52d_c00003{bottom:169.160000pt;}
.y225_c00003{bottom:169.306667pt;}
.y7a_c00003{bottom:169.466667pt;}
.y1fa_c00003{bottom:169.626667pt;}
.y50e_c00003{bottom:169.960000pt;}
.y34a_c00003{bottom:170.586667pt;}
.y4ee_c00003{bottom:170.600000pt;}
.y39c_c00003{bottom:171.706667pt;}
.y84_c00003{bottom:171.866667pt;}
.y7d_c00003{bottom:173.786667pt;}
.y245_c00003{bottom:173.946667pt;}
.y20_c00003{bottom:174.106667pt;}
.y12f_c00003{bottom:174.266667pt;}
.y2f0_c00003{bottom:174.906667pt;}
.y204_c00003{bottom:175.866667pt;}
.y258_c00003{bottom:176.186667pt;}
.y314_c00003{bottom:176.506667pt;}
.y286_c00003{bottom:178.586667pt;}
.y402_c00003{bottom:178.906667pt;}
.y182_c00003{bottom:179.226667pt;}
.y5b_c00003{bottom:180.026667pt;}
.y44c_c00003{bottom:180.506667pt;}
.y436_c00003{bottom:180.508000pt;}
.y45b_c00003{bottom:180.520000pt;}
.y475_c00003{bottom:180.666667pt;}
.y4a8_c00003{bottom:180.668000pt;}
.y4bb_c00003{bottom:180.680000pt;}
.y304_c00003{bottom:181.146667pt;}
.ybb_c00003{bottom:182.106667pt;}
.y28a_c00003{bottom:182.266667pt;}
.y174_c00003{bottom:183.066667pt;}
.y15a_c00003{bottom:183.386667pt;}
.y104_c00003{bottom:183.706667pt;}
.y53d_c00003{bottom:184.680000pt;}
.y3ec_c00003{bottom:184.826667pt;}
.yf1_c00003{bottom:185.306667pt;}
.y4ac_c00003{bottom:185.320000pt;}
.y26c_c00003{bottom:185.626667pt;}
.y369_c00003{bottom:185.786667pt;}
.y517_c00003{bottom:185.960000pt;}
.y2a6_c00003{bottom:186.426667pt;}
.y224_c00003{bottom:187.706667pt;}
.y2bd_c00003{bottom:188.026667pt;}
.y4b_c00003{bottom:189.146667pt;}
.y20e_c00003{bottom:189.786667pt;}
.y39b_c00003{bottom:190.106667pt;}
.y417_c00003{bottom:190.746667pt;}
.y349_c00003{bottom:191.706667pt;}
.y2d7_c00003{bottom:192.186667pt;}
.y244_c00003{bottom:192.346667pt;}
.ya1_c00003{bottom:192.506667pt;}
.y12e_c00003{bottom:192.666667pt;}
.y196_c00003{bottom:194.426667pt;}
.y257_c00003{bottom:194.586667pt;}
.yb3_c00003{bottom:194.746667pt;}
.y3a7_c00003{bottom:194.906667pt;}
.yd5_c00003{bottom:196.346667pt;}
.y37b_c00003{bottom:196.666667pt;}
.y435_c00003{bottom:196.668000pt;}
.y45a_c00003{bottom:196.680000pt;}
.y4b2_c00003{bottom:196.693333pt;}
.y557_c00003{bottom:196.706667pt;}
.y1a2_c00003{bottom:196.826667pt;}
.y285_c00003{bottom:196.986667pt;}
.y79_c00003{bottom:197.146667pt;}
.y401_c00003{bottom:197.306667pt;}
.y3f6_c00003{bottom:199.386667pt;}
.y303_c00003{bottom:199.546667pt;}
.y551_c00003{bottom:200.706667pt;}
.y1cf_c00003{bottom:200.826667pt;}
.y1dc_c00003{bottom:201.306667pt;}
.y516_c00003{bottom:201.506667pt;}
.y1f_c00003{bottom:201.626667pt;}
.y159_c00003{bottom:201.786667pt;}
.y173_c00003{bottom:202.106667pt;}
.y4b6_c00003{bottom:202.146667pt;}
.y547_c00003{bottom:202.786667pt;}
.y3eb_c00003{bottom:203.226667pt;}
.y1f0_c00003{bottom:204.026667pt;}
.y368_c00003{bottom:204.186667pt;}
.y83_c00003{bottom:204.666667pt;}
.y2a5_c00003{bottom:204.826667pt;}
.y103_c00003{bottom:205.146667pt;}
.y223_c00003{bottom:206.106667pt;}
.y26_c00003{bottom:206.426667pt;}
.y2ef_c00003{bottom:207.066667pt;}
.y203_c00003{bottom:208.186667pt;}
.y39a_c00003{bottom:208.506667pt;}
.y181_c00003{bottom:209.786667pt;}
.y2d6_c00003{bottom:210.586667pt;}
.y264_c00003{bottom:210.746667pt;}
.y12d_c00003{bottom:211.066667pt;}
.y5a_c00003{bottom:212.186667pt;}
.y464_c00003{bottom:212.666667pt;}
.y434_c00003{bottom:212.668000pt;}
.y4b5_c00003{bottom:212.680000pt;}
.y4f4_c00003{bottom:212.693333pt;}
.y553_c00003{bottom:212.706667pt;}
.y44b_c00003{bottom:212.826667pt;}
.y4e6_c00003{bottom:212.828000pt;}
.y4a5_c00003{bottom:212.840000pt;}
.y4b1_c00003{bottom:212.853333pt;}
.y4e4_c00003{bottom:212.866667pt;}
.y256_c00003{bottom:212.986667pt;}
.y3c6_c00003{bottom:213.306667pt;}
.y2ac_c00003{bottom:214.746667pt;}
.yba_c00003{bottom:214.906667pt;}
.y284_c00003{bottom:215.386667pt;}
.y400_c00003{bottom:215.706667pt;}
.yf0_c00003{bottom:216.026667pt;}
.y4a_c00003{bottom:216.826667pt;}
.y4c7_c00003{bottom:217.506667pt;}
.y26b_c00003{bottom:217.786667pt;}
.y302_c00003{bottom:217.946667pt;}
.y4d3_c00003{bottom:218.146667pt;}
.y4f5_c00003{bottom:218.946667pt;}
.ya0_c00003{bottom:220.026667pt;}
.y158_c00003{bottom:220.186667pt;}
.y32a_c00003{bottom:220.506667pt;}
.y3ea_c00003{bottom:221.306667pt;}
.y20d_c00003{bottom:221.946667pt;}
.yb2_c00003{bottom:222.426667pt;}
.y367_c00003{bottom:222.586667pt;}
.y2b2_c00003{bottom:222.906667pt;}
.y2a4_c00003{bottom:223.226667pt;}
.y172_c00003{bottom:223.386667pt;}
.yd4_c00003{bottom:224.026667pt;}
.y1a1_c00003{bottom:224.346667pt;}
.y222_c00003{bottom:224.506667pt;}
.y78_c00003{bottom:224.666667pt;}
.y2bc_c00003{bottom:224.826667pt;}
.y348_c00003{bottom:226.266667pt;}
.y102_c00003{bottom:226.586667pt;}
.y399_c00003{bottom:226.906667pt;}
.y37a_c00003{bottom:228.826667pt;}
.y433_c00003{bottom:228.828000pt;}
.y4b4_c00003{bottom:228.840000pt;}
.y4b0_c00003{bottom:228.853333pt;}
.y4e3_c00003{bottom:228.866667pt;}
.y1db_c00003{bottom:228.986667pt;}
.y510_c00003{bottom:229.000000pt;}
.y54f_c00003{bottom:229.013333pt;}
.y533_c00003{bottom:229.026667pt;}
.y12c_c00003{bottom:229.146667pt;}
.y1e_c00003{bottom:229.306667pt;}
.y1b4_c00003{bottom:229.466667pt;}
.y255_c00003{bottom:231.386667pt;}
.y3c5_c00003{bottom:231.706667pt;}
.y1ce_c00003{bottom:232.986667pt;}
.y500_c00003{bottom:233.026667pt;}
.y559_c00003{bottom:233.666667pt;}
.y283_c00003{bottom:233.786667pt;}
.y1f9_c00003{bottom:233.946667pt;}
.y3ff_c00003{bottom:234.106667pt;}
.y52e_c00003{bottom:234.306667pt;}
.y4ec_c00003{bottom:234.946667pt;}
.y1ef_c00003{bottom:236.186667pt;}
.y301_c00003{bottom:236.346667pt;}
.y82_c00003{bottom:237.306667pt;}
.y157_c00003{bottom:238.586667pt;}
.y329_c00003{bottom:238.906667pt;}
.y2ee_c00003{bottom:239.386667pt;}
.y3e9_c00003{bottom:239.706667pt;}
.y202_c00003{bottom:240.346667pt;}
.y180_c00003{bottom:240.506667pt;}
.y366_c00003{bottom:240.986667pt;}
.y2b1_c00003{bottom:241.306667pt;}
.y2a3_c00003{bottom:241.626667pt;}
.y171_c00003{bottom:241.786667pt;}
.y221_c00003{bottom:242.906667pt;}
.y2bb_c00003{bottom:243.226667pt;}
.y49_c00003{bottom:244.386667pt;}
.y59_c00003{bottom:244.546667pt;}
.y4fa_c00003{bottom:244.826667pt;}
.y4a1_c00003{bottom:244.828000pt;}
.y524_c00003{bottom:244.840000pt;}
.y48d_c00003{bottom:244.853333pt;}
.y4ff_c00003{bottom:244.866667pt;}
.y44a_c00003{bottom:244.986667pt;}
.y432_c00003{bottom:244.988000pt;}
.y4d2_c00003{bottom:245.000000pt;}
.y4af_c00003{bottom:245.013333pt;}
.y4dc_c00003{bottom:245.026667pt;}
.y398_c00003{bottom:245.306667pt;}
.y313_c00003{bottom:245.466667pt;}
.y2ab_c00003{bottom:245.626667pt;}
.yef_c00003{bottom:246.586667pt;}
.y2d5_c00003{bottom:247.386667pt;}
.y263_c00003{bottom:247.546667pt;}
.yb9_c00003{bottom:247.586667pt;}
.y9f_c00003{bottom:247.746667pt;}
.y1b3_c00003{bottom:247.866667pt;}
.y101_c00003{bottom:248.026667pt;}
.y543_c00003{bottom:249.026667pt;}
.y511_c00003{bottom:249.666667pt;}
.y254_c00003{bottom:249.826667pt;}
.yb1_c00003{bottom:249.986667pt;}
.y2c6_c00003{bottom:250.146667pt;}
.y463_c00003{bottom:250.466667pt;}
.y4be_c00003{bottom:251.106667pt;}
.yd3_c00003{bottom:251.586667pt;}
.y1a0_c00003{bottom:252.066667pt;}
.y77_c00003{bottom:252.386667pt;}
.y282_c00003{bottom:252.546667pt;}
.y300_c00003{bottom:254.786667pt;}
.y1da_c00003{bottom:256.546667pt;}
.y1d_c00003{bottom:256.866667pt;}
.y156_c00003{bottom:257.026667pt;}
.y328_c00003{bottom:257.346667pt;}
.y3e8_c00003{bottom:258.146667pt;}
.y195_c00003{bottom:258.786667pt;}
.y365_c00003{bottom:259.106667pt;}
.y2b0_c00003{bottom:259.746667pt;}
.y2a2_c00003{bottom:260.066667pt;}
.y170_c00003{bottom:260.226667pt;}
.y347_c00003{bottom:260.866667pt;}
.y4c4_c00003{bottom:260.986667pt;}
.y514_c00003{bottom:261.000000pt;}
.y48c_c00003{bottom:261.013333pt;}
.y431_c00003{bottom:261.014667pt;}
.y507_c00003{bottom:261.026667pt;}
.y449_c00003{bottom:261.146667pt;}
.y546_c00003{bottom:261.160000pt;}
.y4ae_c00003{bottom:261.173333pt;}
.y379_c00003{bottom:261.186667pt;}
.y220_c00003{bottom:261.346667pt;}
.y2ba_c00003{bottom:261.666667pt;}
.y26a_c00003{bottom:263.426667pt;}
.y397_c00003{bottom:263.746667pt;}
.y3f5_c00003{bottom:263.906667pt;}
.y1cd_c00003{bottom:265.186667pt;}
.y2d4_c00003{bottom:265.826667pt;}
.y268_c00003{bottom:265.986667pt;}
.y1f8_c00003{bottom:266.146667pt;}
.y1b2_c00003{bottom:266.306667pt;}
.y535_c00003{bottom:266.466667pt;}
.y20c_c00003{bottom:267.426667pt;}
.y3b7_c00003{bottom:268.226667pt;}
.y1ee_c00003{bottom:268.546667pt;}
.y12b_c00003{bottom:269.346667pt;}
.y100_c00003{bottom:269.506667pt;}
.y81_c00003{bottom:270.146667pt;}
.y281_c00003{bottom:270.946667pt;}
.y17f_c00003{bottom:271.266667pt;}
.y2ed_c00003{bottom:271.586667pt;}
.y48_c00003{bottom:272.066667pt;}
.y201_c00003{bottom:272.546667pt;}
.y541_c00003{bottom:272.706667pt;}
.y2ff_c00003{bottom:273.186667pt;}
.y155_c00003{bottom:275.106667pt;}
.y9e_c00003{bottom:275.266667pt;}
.y1eb_c00003{bottom:275.426667pt;}
.y327_c00003{bottom:275.746667pt;}
.y58_c00003{bottom:276.706667pt;}
.y3e7_c00003{bottom:276.866667pt;}
.y4c3_c00003{bottom:277.146667pt;}
.y513_c00003{bottom:277.160000pt;}
.y48b_c00003{bottom:277.173333pt;}
.y430_c00003{bottom:277.174667pt;}
.y448_c00003{bottom:277.186667pt;}
.y532_c00003{bottom:277.306667pt;}
.y54e_c00003{bottom:277.333333pt;}
.yee_c00003{bottom:277.346667pt;}
.y364_c00003{bottom:277.506667pt;}
.yb0_c00003{bottom:277.666667pt;}
.y2af_c00003{bottom:278.146667pt;}
.y2a1_c00003{bottom:278.466667pt;}
.y16f_c00003{bottom:278.626667pt;}
.yd2_c00003{bottom:279.266667pt;}
.y19f_c00003{bottom:279.586667pt;}
.y21f_c00003{bottom:279.746667pt;}
.y76_c00003{bottom:279.906667pt;}
.y2b9_c00003{bottom:280.066667pt;}
.yb8_c00003{bottom:280.386667pt;}
.y51b_c00003{bottom:281.986667pt;}
.y396_c00003{bottom:282.146667pt;}
.y2c5_c00003{bottom:282.306667pt;}
.y515_c00003{bottom:282.626667pt;}
.y416_c00003{bottom:282.786667pt;}
.y442_c00003{bottom:283.266667pt;}
.y1d9_c00003{bottom:284.226667pt;}
.y243_c00003{bottom:284.386667pt;}
.y1c_c00003{bottom:284.546667pt;}
.y1b1_c00003{bottom:284.706667pt;}
.y3b6_c00003{bottom:286.306667pt;}
.y253_c00003{bottom:286.946667pt;}
.y12a_c00003{bottom:287.746667pt;}
.y280_c00003{bottom:289.346667pt;}
.yff_c00003{bottom:290.946667pt;}
.y2fe_c00003{bottom:291.586667pt;}
.y4f9_c00003{bottom:293.146667pt;}
.y48a_c00003{bottom:293.173333pt;}
.y4a0_c00003{bottom:293.174667pt;}
.y506_c00003{bottom:293.186667pt;}
.y4c2_c00003{bottom:293.306667pt;}
.y545_c00003{bottom:293.320000pt;}
.y4ad_c00003{bottom:293.333333pt;}
.y42f_c00003{bottom:293.334667pt;}
.y378_c00003{bottom:293.346667pt;}
.y1ea_c00003{bottom:293.826667pt;}
.y154_c00003{bottom:294.146667pt;}
.y346_c00003{bottom:295.266667pt;}
.y363_c00003{bottom:295.906667pt;}
.y3f4_c00003{bottom:296.066667pt;}
.y2a0_c00003{bottom:296.866667pt;}
.y16e_c00003{bottom:297.026667pt;}
.y1cc_c00003{bottom:297.346667pt;}
.y4eb_c00003{bottom:297.986667pt;}
.y21e_c00003{bottom:298.146667pt;}
.y1f7_c00003{bottom:298.306667pt;}
.y2b8_c00003{bottom:298.466667pt;}
.y4e7_c00003{bottom:298.786667pt;}
.y505_c00003{bottom:299.426667pt;}
.y47_c00003{bottom:299.586667pt;}
.y395_c00003{bottom:300.546667pt;}
.y1ed_c00003{bottom:300.706667pt;}
.y17e_c00003{bottom:301.826667pt;}
.y2d3_c00003{bottom:302.626667pt;}
.y80_c00003{bottom:302.786667pt;}
.y9d_c00003{bottom:302.946667pt;}
.y25_c00003{bottom:303.106667pt;}
.y2ec_c00003{bottom:303.746667pt;}
.y20b_c00003{bottom:304.226667pt;}
.y3b5_c00003{bottom:304.546667pt;}
.y200_c00003{bottom:304.706667pt;}
.yaf_c00003{bottom:305.186667pt;}
.y252_c00003{bottom:305.346667pt;}
.y129_c00003{bottom:306.146667pt;}
.yd1_c00003{bottom:306.786667pt;}
.y19e_c00003{bottom:307.266667pt;}
.y75_c00003{bottom:307.586667pt;}
.y27f_c00003{bottom:307.746667pt;}
.yed_c00003{bottom:308.066667pt;}
.y57_c00003{bottom:308.866667pt;}
.y4cc_c00003{bottom:309.306667pt;}
.y489_c00003{bottom:309.333333pt;}
.y42e_c00003{bottom:309.334667pt;}
.y447_c00003{bottom:309.346667pt;}
.y4ed_c00003{bottom:309.466667pt;}
.y50d_c00003{bottom:309.493333pt;}
.y53a_c00003{bottom:309.506667pt;}
.y2fd_c00003{bottom:309.986667pt;}
.y1d8_c00003{bottom:311.746667pt;}
.y1b_c00003{bottom:312.066667pt;}
.y1e9_c00003{bottom:312.226667pt;}
.yfe_c00003{bottom:312.546667pt;}
.yb7_c00003{bottom:313.026667pt;}
.y415_c00003{bottom:313.346667pt;}
.y3e6_c00003{bottom:313.666667pt;}
.y54a_c00003{bottom:314.146667pt;}
.y362_c00003{bottom:314.306667pt;}
.y2c4_c00003{bottom:314.466667pt;}
.y4db_c00003{bottom:314.786667pt;}
.y29f_c00003{bottom:315.266667pt;}
.y153_c00003{bottom:315.426667pt;}
.y345_c00003{bottom:316.386667pt;}
.y21d_c00003{bottom:316.866667pt;}
.y394_c00003{bottom:318.946667pt;}
.y2d2_c00003{bottom:321.026667pt;}
.y242_c00003{bottom:321.186667pt;}
.y24_c00003{bottom:321.506667pt;}
.y3b4_c00003{bottom:322.946667pt;}
.y194_c00003{bottom:323.266667pt;}
.y251_c00003{bottom:323.746667pt;}
.y128_c00003{bottom:324.546667pt;}
.y488_c00003{bottom:325.333333pt;}
.y539_c00003{bottom:325.346667pt;}
.y4cb_c00003{bottom:325.466667pt;}
.y4f3_c00003{bottom:325.493333pt;}
.y42d_c00003{bottom:325.494667pt;}
.y377_c00003{bottom:325.506667pt;}
.y27e_c00003{bottom:326.146667pt;}
.y46_c00003{bottom:327.266667pt;}
.y3f3_c00003{bottom:328.226667pt;}
.y2fc_c00003{bottom:328.386667pt;}
.y1cb_c00003{bottom:329.506667pt;}
.y4a6_c00003{bottom:330.306667pt;}
.y9c_c00003{bottom:330.466667pt;}
.y1e8_c00003{bottom:330.626667pt;}
.y326_c00003{bottom:330.946667pt;}
.y525_c00003{bottom:331.586667pt;}
.y3e5_c00003{bottom:331.746667pt;}
.y17d_c00003{bottom:332.546667pt;}
.y361_c00003{bottom:332.706667pt;}
.yae_c00003{bottom:332.866667pt;}
.y29e_c00003{bottom:333.666667pt;}
.y152_c00003{bottom:333.826667pt;}
.yfd_c00003{bottom:333.986667pt;}
.yd0_c00003{bottom:334.466667pt;}
.y19d_c00003{bottom:334.786667pt;}
.y74_c00003{bottom:335.106667pt;}
.y21c_c00003{bottom:335.266667pt;}
.y7f_c00003{bottom:335.586667pt;}
.y2eb_c00003{bottom:335.906667pt;}
.y1ff_c00003{bottom:336.866667pt;}
.y335_c00003{bottom:337.186667pt;}
.y393_c00003{bottom:337.346667pt;}
.y537_c00003{bottom:337.826667pt;}
.yec_c00003{bottom:338.626667pt;}
.y1d7_c00003{bottom:339.426667pt;}
.y241_c00003{bottom:339.586667pt;}
.y1a_c00003{bottom:339.746667pt;}
.y23_c00003{bottom:339.906667pt;}
.y56_c00003{bottom:341.026667pt;}
.y3b3_c00003{bottom:341.346667pt;}
.y4ca_c00003{bottom:341.466667pt;}
.y487_c00003{bottom:341.493333pt;}
.y42c_c00003{bottom:341.494667pt;}
.y4c1_c00003{bottom:341.506667pt;}
.y549_c00003{bottom:341.626667pt;}
.y50c_c00003{bottom:341.653333pt;}
.y446_c00003{bottom:341.666667pt;}
.y250_c00003{bottom:342.146667pt;}
.y127_c00003{bottom:342.946667pt;}
.y414_c00003{bottom:344.066667pt;}
.y27d_c00003{bottom:344.226667pt;}
.y3fe_c00003{bottom:344.546667pt;}
.y2c3_c00003{bottom:346.626667pt;}
.y2fb_c00003{bottom:346.786667pt;}
.y4d8_c00003{bottom:346.946667pt;}
.y552_c00003{bottom:347.746667pt;}
.y1e7_c00003{bottom:349.026667pt;}
.y325_c00003{bottom:349.346667pt;}
.y3e4_c00003{bottom:350.146667pt;}
.y360_c00003{bottom:351.106667pt;}
.y4e2_c00003{bottom:351.586667pt;}
.y29d_c00003{bottom:352.066667pt;}
.y151_c00003{bottom:352.226667pt;}
.y344_c00003{bottom:353.346667pt;}
.y21b_c00003{bottom:353.666667pt;}
.y45_c00003{bottom:354.786667pt;}
.yfc_c00003{bottom:355.426667pt;}
.y392_c00003{bottom:355.746667pt;}
.y486_c00003{bottom:357.653333pt;}
.y42b_c00003{bottom:357.654667pt;}
.y376_c00003{bottom:357.666667pt;}
.y50b_c00003{bottom:357.813333pt;}
.y2d1_c00003{bottom:357.826667pt;}
.y240_c00003{bottom:357.986667pt;}
.y9b_c00003{bottom:358.146667pt;}
.y1b0_c00003{bottom:358.306667pt;}
.y3b2_c00003{bottom:359.746667pt;}
.yad_c00003{bottom:360.386667pt;}
.y24f_c00003{bottom:360.546667pt;}
.y126_c00003{bottom:361.346667pt;}
.y1ca_c00003{bottom:361.826667pt;}
.ycf_c00003{bottom:361.986667pt;}
.y19c_c00003{bottom:362.466667pt;}
.y27c_c00003{bottom:362.626667pt;}
.y73_c00003{bottom:362.786667pt;}
.y3fd_c00003{bottom:362.946667pt;}
.y46e_c00003{bottom:363.106667pt;}
.y17c_c00003{bottom:363.266667pt;}
.y556_c00003{bottom:363.746667pt;}
.y2fa_c00003{bottom:364.866667pt;}
.y1ec_c00003{bottom:365.026667pt;}
.y1d6_c00003{bottom:366.946667pt;}
.y19_c00003{bottom:367.266667pt;}
.y1e6_c00003{bottom:367.426667pt;}
.y2ea_c00003{bottom:368.066667pt;}
.y7e_c00003{bottom:368.226667pt;}
.y3e3_c00003{bottom:368.546667pt;}
.y1fe_c00003{bottom:369.186667pt;}
.yeb_c00003{bottom:369.346667pt;}
.y35f_c00003{bottom:369.826667pt;}
.y29c_c00003{bottom:370.146667pt;}
.y2ae_c00003{bottom:370.466667pt;}
.y150_c00003{bottom:370.626667pt;}
.y334_c00003{bottom:371.586667pt;}
.y21a_c00003{bottom:371.746667pt;}
.y2b7_c00003{bottom:372.066667pt;}
.y55_c00003{bottom:373.346667pt;}
.y485_c00003{bottom:373.653333pt;}
.y528_c00003{bottom:373.654667pt;}
.y4f8_c00003{bottom:373.666667pt;}
.y4f2_c00003{bottom:373.813333pt;}
.y42a_c00003{bottom:373.814667pt;}
.y445_c00003{bottom:373.826667pt;}
.y531_c00003{bottom:373.853333pt;}
.y391_c00003{bottom:374.146667pt;}
.y413_c00003{bottom:374.786667pt;}
.y54d_c00003{bottom:375.933333pt;}
.y2d0_c00003{bottom:376.226667pt;}
.y23f_c00003{bottom:376.386667pt;}
.y1af_c00003{bottom:376.706667pt;}
.yfb_c00003{bottom:376.866667pt;}
.y3b1_c00003{bottom:378.146667pt;}
.y4e8_c00003{bottom:378.493333pt;}
.y24e_c00003{bottom:378.626667pt;}
.y2c2_c00003{bottom:378.946667pt;}
.y52b_c00003{bottom:379.293333pt;}
.y125_c00003{bottom:379.746667pt;}
.y27b_c00003{bottom:381.026667pt;}
.y3fc_c00003{bottom:381.346667pt;}
.y44_c00003{bottom:382.466667pt;}
.y2f9_c00003{bottom:383.266667pt;}
.y312_c00003{bottom:383.426667pt;}
.y9a_c00003{bottom:385.666667pt;}
.y1e5_c00003{bottom:385.826667pt;}
.y324_c00003{bottom:386.146667pt;}
.y3e2_c00003{bottom:387.266667pt;}
.y193_c00003{bottom:387.586667pt;}
.yac_c00003{bottom:388.066667pt;}
.y35e_c00003{bottom:388.226667pt;}
.y29b_c00003{bottom:388.546667pt;}
.y14f_c00003{bottom:389.026667pt;}
.yce_c00003{bottom:389.666667pt;}
.y484_c00003{bottom:389.813333pt;}
.y429_c00003{bottom:389.814667pt;}
.y444_c00003{bottom:389.826667pt;}
.y4f1_c00003{bottom:389.853333pt;}
.y50a_c00003{bottom:389.973333pt;}
.y19b_c00003{bottom:389.986667pt;}
.y219_c00003{bottom:390.146667pt;}
.y72_c00003{bottom:390.306667pt;}
.y2b6_c00003{bottom:390.466667pt;}
.y390_c00003{bottom:392.546667pt;}
.y3f2_c00003{bottom:392.706667pt;}
.y17b_c00003{bottom:393.826667pt;}
.y54c_c00003{bottom:394.333333pt;}
.y1d5_c00003{bottom:394.626667pt;}
.y23e_c00003{bottom:394.786667pt;}
.y18_c00003{bottom:394.946667pt;}
.y1ae_c00003{bottom:395.106667pt;}
.y526_c00003{bottom:395.293333pt;}
.y544_c00003{bottom:395.933333pt;}
.y3b0_c00003{bottom:396.546667pt;}
.y24d_c00003{bottom:397.026667pt;}
.y1f6_c00003{bottom:397.186667pt;}
.y3d3_c00003{bottom:397.346667pt;}
.y124_c00003{bottom:398.146667pt;}
.yfa_c00003{bottom:398.306667pt;}
.y1c9_c00003{bottom:398.466667pt;}
.y27a_c00003{bottom:399.426667pt;}
.yea_c00003{bottom:400.066667pt;}
.y2e9_c00003{bottom:400.386667pt;}
.y2f8_c00003{bottom:401.666667pt;}
.y1e4_c00003{bottom:404.226667pt;}
.y323_c00003{bottom:404.546667pt;}
.y412_c00003{bottom:405.346667pt;}
.y54_c00003{bottom:405.506667pt;}
.y3e1_c00003{bottom:405.666667pt;}
.y483_c00003{bottom:405.973333pt;}
.y428_c00003{bottom:405.974667pt;}
.y443_c00003{bottom:405.986667pt;}
.y4f0_c00003{bottom:406.013333pt;}
.y333_c00003{bottom:406.146667pt;}
.y35d_c00003{bottom:406.626667pt;}
.y29a_c00003{bottom:406.946667pt;}
.y14e_c00003{bottom:407.426667pt;}
.y218_c00003{bottom:408.546667pt;}
.y343_c00003{bottom:408.866667pt;}
.y43_c00003{bottom:409.986667pt;}
.y2c1_c00003{bottom:411.106667pt;}
.y497_c00003{bottom:411.453333pt;}
.y512_c00003{bottom:412.093333pt;}
.y54b_c00003{bottom:412.733333pt;}
.y2cf_c00003{bottom:413.026667pt;}
.y262_c00003{bottom:413.186667pt;}
.y99_c00003{bottom:413.346667pt;}
.y1ad_c00003{bottom:413.506667pt;}
.y1fd_c00003{bottom:414.626667pt;}
.y3af_c00003{bottom:414.946667pt;}
.y24c_c00003{bottom:415.426667pt;}
.yab_c00003{bottom:415.586667pt;}
.y3c4_c00003{bottom:415.746667pt;}
.y123_c00003{bottom:416.546667pt;}
.ycd_c00003{bottom:417.186667pt;}
.y19a_c00003{bottom:417.666667pt;}
.y279_c00003{bottom:417.826667pt;}
.y71_c00003{bottom:417.986667pt;}
.yf9_c00003{bottom:419.746667pt;}
.y2f7_c00003{bottom:420.066667pt;}
.y1d4_c00003{bottom:421.186667pt;}
.y427_c00003{bottom:421.974667pt;}
.y4c0_c00003{bottom:421.986667pt;}
.y482_c00003{bottom:422.013333pt;}
.y522_c00003{bottom:422.134667pt;}
.y375_c00003{bottom:422.146667pt;}
.y509_c00003{bottom:422.173333pt;}
.y1e3_c00003{bottom:422.306667pt;}
.y17_c00003{bottom:422.466667pt;}
.y20a_c00003{bottom:422.626667pt;}
.y322_c00003{bottom:422.946667pt;}
.y3e0_c00003{bottom:424.066667pt;}
.y17a_c00003{bottom:424.546667pt;}
.y3f1_c00003{bottom:424.866667pt;}
.y35c_c00003{bottom:425.026667pt;}
.y299_c00003{bottom:425.346667pt;}
.y14d_c00003{bottom:425.826667pt;}
.y217_c00003{bottom:426.946667pt;}
.y342_c00003{bottom:427.266667pt;}
.y4c5_c00003{bottom:427.453333pt;}
.y523_c00003{bottom:428.253333pt;}
.y38f_c00003{bottom:429.506667pt;}
.ye9_c00003{bottom:430.626667pt;}
.y2ce_c00003{bottom:431.426667pt;}
.y261_c00003{bottom:431.586667pt;}
.y1c8_c00003{bottom:431.746667pt;}
.y1ac_c00003{bottom:431.906667pt;}
.y2e8_c00003{bottom:432.546667pt;}
.y3ae_c00003{bottom:433.666667pt;}
.y3a6_c00003{bottom:433.826667pt;}
.y3c3_c00003{bottom:434.146667pt;}
.y122_c00003{bottom:434.946667pt;}
.y411_c00003{bottom:436.066667pt;}
.y278_c00003{bottom:436.226667pt;}
.y42_c00003{bottom:437.666667pt;}
.y4bf_c00003{bottom:438.146667pt;}
.y481_c00003{bottom:438.173333pt;}
.y426_c00003{bottom:438.174667pt;}
.y2f6_c00003{bottom:438.466667pt;}
.y332_c00003{bottom:440.546667pt;}
.y98_c00003{bottom:440.866667pt;}
.y209_c00003{bottom:441.026667pt;}
.yf8_c00003{bottom:441.346667pt;}
.y321_c00003{bottom:441.666667pt;}
.y3df_c00003{bottom:442.466667pt;}
.y53c_c00003{bottom:442.973333pt;}
.yaa_c00003{bottom:443.266667pt;}
.y4a4_c00003{bottom:443.613333pt;}
.y298_c00003{bottom:443.746667pt;}
.y14c_c00003{bottom:444.226667pt;}
.y4d1_c00003{bottom:444.253333pt;}
.ycc_c00003{bottom:444.866667pt;}
.y199_c00003{bottom:445.186667pt;}
.y216_c00003{bottom:445.346667pt;}
.y70_c00003{bottom:445.506667pt;}
.y41a_c00003{bottom:445.986667pt;}
.y1d3_c00003{bottom:446.466667pt;}
.y38e_c00003{bottom:447.906667pt;}
.y1e2_c00003{bottom:449.826667pt;}
.y267_c00003{bottom:449.986667pt;}
.y16_c00003{bottom:450.146667pt;}
.y1ab_c00003{bottom:450.306667pt;}
.y540_c00003{bottom:450.493333pt;}
.y1fc_c00003{bottom:451.426667pt;}
.y192_c00003{bottom:452.066667pt;}
.y3a5_c00003{bottom:452.226667pt;}
.y311_c00003{bottom:452.546667pt;}
.y121_c00003{bottom:453.346667pt;}
.y4f7_c00003{bottom:454.146667pt;}
.y480_c00003{bottom:454.173333pt;}
.y527_c00003{bottom:454.174667pt;}
.y374_c00003{bottom:454.306667pt;}
.y4ef_c00003{bottom:454.333333pt;}
.y425_c00003{bottom:454.334667pt;}
.y277_c00003{bottom:454.626667pt;}
.y179_c00003{bottom:455.266667pt;}
.y2f5_c00003{bottom:456.866667pt;}
.y35b_c00003{bottom:458.946667pt;}
.y4ce_c00003{bottom:459.133333pt;}
.y208_c00003{bottom:459.426667pt;}
.y550_c00003{bottom:459.773333pt;}
.y320_c00003{bottom:460.066667pt;}
.y4b3_c00003{bottom:460.413333pt;}
.y3de_c00003{bottom:460.866667pt;}
.ye8_c00003{bottom:461.346667pt;}
.y3d2_c00003{bottom:461.666667pt;}
.y16d_c00003{bottom:462.306667pt;}
.y14b_c00003{bottom:462.626667pt;}
.yf7_c00003{bottom:462.786667pt;}
.y2b5_c00003{bottom:463.746667pt;}
.y215_c00003{bottom:464.066667pt;}
.y2e7_c00003{bottom:464.706667pt;}
.y41_c00003{bottom:465.186667pt;}
.y38d_c00003{bottom:466.306667pt;}
.y410_c00003{bottom:466.786667pt;}
.y2cd_c00003{bottom:467.906667pt;}
.y260_c00003{bottom:468.386667pt;}
.y97_c00003{bottom:468.546667pt;}
.y1c7_c00003{bottom:468.706667pt;}
.y53_c00003{bottom:469.826667pt;}
.y4f6_c00003{bottom:470.306667pt;}
.y47f_c00003{bottom:470.333333pt;}
.y424_c00003{bottom:470.334667pt;}
.y3ad_c00003{bottom:470.466667pt;}
.y3a4_c00003{bottom:470.626667pt;}
.ya9_c00003{bottom:470.786667pt;}
.y3c2_c00003{bottom:470.946667pt;}
.y120_c00003{bottom:471.746667pt;}
.ycb_c00003{bottom:472.386667pt;}
.y3fb_c00003{bottom:473.026667pt;}
.y6f_c00003{bottom:473.186667pt;}
.y276_c00003{bottom:473.346667pt;}
.y331_c00003{bottom:475.106667pt;}
.y2f4_c00003{bottom:475.266667pt;}
.y49d_c00003{bottom:475.773333pt;}
.y4ba_c00003{bottom:476.413333pt;}
.y419_c00003{bottom:476.706667pt;}
.y1aa_c00003{bottom:477.346667pt;}
.y1e1_c00003{bottom:477.666667pt;}
.y15_c00003{bottom:477.693333pt;}
.y207_c00003{bottom:477.826667pt;}
.y31f_c00003{bottom:478.466667pt;}
.y297_c00003{bottom:479.293333pt;}
.y35a_c00003{bottom:480.253333pt;}
.y14a_c00003{bottom:480.893333pt;}
.y16c_c00003{bottom:481.213333pt;}
.y2b4_c00003{bottom:482.173333pt;}
.y214_c00003{bottom:482.493333pt;}
.y178_c00003{bottom:484.093333pt;}
.yf6_c00003{bottom:484.253333pt;}
.y38c_c00003{bottom:484.733333pt;}
.y2cc_c00003{bottom:486.333333pt;}
.y548_c00003{bottom:486.466667pt;}
.y373_c00003{bottom:486.493333pt;}
.y4fc_c00003{bottom:486.494667pt;}
.y2c0_c00003{bottom:486.653333pt;}
.y23d_c00003{bottom:486.813333pt;}
.y310_c00003{bottom:486.973333pt;}
.y1c6_c00003{bottom:487.133333pt;}
.y3ac_c00003{bottom:488.893333pt;}
.y3a3_c00003{bottom:489.053333pt;}
.y11f_c00003{bottom:489.853333pt;}
.y3fa_c00003{bottom:491.453333pt;}
.y275_c00003{bottom:491.773333pt;}
.y4ab_c00003{bottom:491.933333pt;}
.y459_c00003{bottom:492.573333pt;}
.y40_c00003{bottom:492.733333pt;}
.ye7_c00003{bottom:493.213333pt;}
.y2f3_c00003{bottom:493.693333pt;}
.y3d1_c00003{bottom:493.853333pt;}
.y96_c00003{bottom:496.093333pt;}
.y2e6_c00003{bottom:496.893333pt;}
.y40f_c00003{bottom:497.373333pt;}
.ya8_c00003{bottom:498.493333pt;}
.y149_c00003{bottom:499.293333pt;}
.yca_c00003{bottom:499.933333pt;}
.y6e_c00003{bottom:500.733333pt;}
.y213_c00003{bottom:500.893333pt;}
.y359_c00003{bottom:501.373333pt;}
.y52_c00003{bottom:502.013333pt;}
.y16b_c00003{bottom:502.493333pt;}
.y534_c00003{bottom:502.494667pt;}
.y521_c00003{bottom:502.654667pt;}
.y38b_c00003{bottom:503.133333pt;}
.y2cb_c00003{bottom:504.573333pt;}
.y1f3_c00003{bottom:505.053333pt;}
.y23c_c00003{bottom:505.213333pt;}
.y14_c00003{bottom:505.373333pt;}
.y1c5_c00003{bottom:505.533333pt;}
.yf5_c00003{bottom:507.293333pt;}
.y3a2_c00003{bottom:507.453333pt;}
.y529_c00003{bottom:508.093333pt;}
.y11e_c00003{bottom:508.733333pt;}
.y330_c00003{bottom:509.693333pt;}
.y3f9_c00003{bottom:509.853333pt;}
.y274_c00003{bottom:510.173333pt;}
.y296_c00003{bottom:514.813333pt;}
.y31e_c00003{bottom:515.293333pt;}
.y148_c00003{bottom:517.693333pt;}
.y372_c00003{bottom:518.653333pt;}
.y520_c00003{bottom:518.654667pt;}
.y341_c00003{bottom:518.973333pt;}
.y358_c00003{bottom:519.933333pt;}
.y3f_c00003{bottom:520.413333pt;}
.y16a_c00003{bottom:520.893333pt;}
.y30f_c00003{bottom:521.533333pt;}
.y2ca_c00003{bottom:522.973333pt;}
.y23b_c00003{bottom:523.613333pt;}
.y95_c00003{bottom:523.773333pt;}
.y1c4_c00003{bottom:523.933333pt;}
.y4e9_c00003{bottom:524.093333pt;}
.y4fd_c00003{bottom:524.733333pt;}
.ya7_c00003{bottom:526.013333pt;}
.y3c1_c00003{bottom:526.173333pt;}
.yc9_c00003{bottom:527.613333pt;}
.y212_c00003{bottom:528.093333pt;}
.y3f8_c00003{bottom:528.253333pt;}
.y6d_c00003{bottom:528.413333pt;}
.y273_c00003{bottom:528.573333pt;}
.y2e5_c00003{bottom:529.213333pt;}
.y11d_c00003{bottom:530.013333pt;}
.y38a_c00003{bottom:530.333333pt;}
.ye6_c00003{bottom:530.493333pt;}
.y1a9_c00003{bottom:532.573333pt;}
.y13_c00003{bottom:532.893333pt;}
.y51_c00003{bottom:534.333333pt;}
.y47e_c00003{bottom:534.653333pt;}
.y51f_c00003{bottom:534.814667pt;}
.y147_c00003{bottom:536.093333pt;}
.y340_c00003{bottom:537.693333pt;}
.yf4_c00003{bottom:538.013333pt;}
.y357_c00003{bottom:538.333333pt;}
.y169_c00003{bottom:539.293333pt;}
.y518_c00003{bottom:540.253333pt;}
.y4d5_c00003{bottom:540.893333pt;}
.y3ab_c00003{bottom:541.373333pt;}
.y3a1_c00003{bottom:541.853333pt;}
.y23a_c00003{bottom:542.013333pt;}
.y1c3_c00003{bottom:542.333333pt;}
.y32f_c00003{bottom:544.093333pt;}
.y3c0_c00003{bottom:544.573333pt;}
.y272_c00003{bottom:546.653333pt;}
.y3e_c00003{bottom:547.933333pt;}
.y11c_c00003{bottom:548.413333pt;}
.y295_c00003{bottom:550.653333pt;}
.y47d_c00003{bottom:550.813333pt;}
.y51e_c00003{bottom:550.814667pt;}
.y371_c00003{bottom:550.973333pt;}
.y94_c00003{bottom:551.293333pt;}
.ya6_c00003{bottom:553.693333pt;}
.y146_c00003{bottom:554.173333pt;}
.yc8_c00003{bottom:555.133333pt;}
.y211_c00003{bottom:555.613333pt;}
.y31d_c00003{bottom:555.773333pt;}
.y6c_c00003{bottom:555.933333pt;}
.y33f_c00003{bottom:556.093333pt;}
.y4cd_c00003{bottom:556.293333pt;}
.y356_c00003{bottom:556.733333pt;}
.y2c9_c00003{bottom:556.893333pt;}
.y554_c00003{bottom:557.093333pt;}
.y168_c00003{bottom:557.693333pt;}
.y389_c00003{bottom:557.853333pt;}
.y3d0_c00003{bottom:558.333333pt;}
.y40e_c00003{bottom:558.813333pt;}
.y239_c00003{bottom:560.413333pt;}
.y12_c00003{bottom:560.573333pt;}
.y1c2_c00003{bottom:560.733333pt;}
.y2e4_c00003{bottom:561.373333pt;}
.y3aa_c00003{bottom:562.493333pt;}
.y3bf_c00003{bottom:562.973333pt;}
.y271_c00003{bottom:565.053333pt;}
.y11b_c00003{bottom:566.813333pt;}
.y51d_c00003{bottom:566.974667pt;}
.y191_c00003{bottom:568.733333pt;}
.y3dd_c00003{bottom:570.173333pt;}
.ye5_c00003{bottom:570.333333pt;}
.yc7_c00003{bottom:570.493333pt;}
.y50_c00003{bottom:570.653333pt;}
.y53b_c00003{bottom:572.453333pt;}
.y4fb_c00003{bottom:573.093333pt;}
.y145_c00003{bottom:573.213333pt;}
.y33e_c00003{bottom:574.493333pt;}
.y355_c00003{bottom:575.453333pt;}
.y3d_c00003{bottom:575.613333pt;}
.y167_c00003{bottom:576.093333pt;}
.y237_c00003{bottom:578.813333pt;}
.y93_c00003{bottom:578.973333pt;}
.y1c1_c00003{bottom:579.133333pt;}
.ya5_c00003{bottom:581.213333pt;}
.y3be_c00003{bottom:581.373333pt;}
.y370_c00003{bottom:583.133333pt;}
.y2c8_c00003{bottom:583.293333pt;}
.y6b_c00003{bottom:583.613333pt;}
.y270_c00003{bottom:583.773333pt;}
.y388_c00003{bottom:584.893333pt;}
.y11a_c00003{bottom:585.213333pt;}
.y238_c00003{bottom:586.173333pt;}
.y294_c00003{bottom:586.333333pt;}
.y11_c00003{bottom:588.093333pt;}
.y4f_c00003{bottom:588.253333pt;}
.y4fe_c00003{bottom:588.613333pt;}
.y558_c00003{bottom:589.253333pt;}
.y40d_c00003{bottom:589.373333pt;}
.y30e_c00003{bottom:590.493333pt;}
.y2e3_c00003{bottom:593.533333pt;}
.y4df_c00003{bottom:593.573333pt;}
.y354_c00003{bottom:593.853333pt;}
.y4e1_c00003{bottom:593.893333pt;}
.y144_c00003{bottom:594.493333pt;}
.y31c_c00003{bottom:596.733333pt;}
.y24b_c00003{bottom:597.213333pt;}
.y3a9_c00003{bottom:597.373333pt;}
.y1c0_c00003{bottom:597.533333pt;}
.y3dc_c00003{bottom:597.853333pt;}
.y190_c00003{bottom:599.293333pt;}
.y3bd_c00003{bottom:599.773333pt;}
.y3c_c00003{bottom:603.133333pt;}
.y119_c00003{bottom:603.613333pt;}
.y4c9_c00003{bottom:605.253333pt;}
.y53e_c00003{bottom:606.373333pt;}
.y92_c00003{bottom:606.493333pt;}
.yc6_c00003{bottom:607.933333pt;}
.y33d_c00003{bottom:608.573333pt;}
.ye4_c00003{bottom:610.173333pt;}
.y26f_c00003{bottom:610.813333pt;}
.y6a_c00003{bottom:611.133333pt;}
.y353_c00003{bottom:612.253333pt;}
.y421_c00003{bottom:612.293333pt;}
.y143_c00003{bottom:612.893333pt;}
.y4e0_c00003{bottom:614.533333pt;}
.y36f_c00003{bottom:615.293333pt;}
.y236_c00003{bottom:615.613333pt;}
.y10_c00003{bottom:615.773333pt;}
.y1bf_c00003{bottom:615.933333pt;}
.y3bc_c00003{bottom:617.853333pt;}
.y40c_c00003{bottom:620.093333pt;}
.y49c_c00003{bottom:621.413333pt;}
.y293_c00003{bottom:621.853333pt;}
.y118_c00003{bottom:622.013333pt;}
.y4de_c00003{bottom:622.373333pt;}
.y3cf_c00003{bottom:622.653333pt;}
.y30d_c00003{bottom:624.893333pt;}
.y3db_c00003{bottom:625.373333pt;}
.y2e2_c00003{bottom:625.693333pt;}
.y18f_c00003{bottom:630.013333pt;}
.y352_c00003{bottom:630.653333pt;}
.y3b_c00003{bottom:630.813333pt;}
.y142_c00003{bottom:631.293333pt;}
.y31b_c00003{bottom:632.573333pt;}
.y420_c00003{bottom:632.613333pt;}
.y53f_c00003{bottom:632.933333pt;}
.y235_c00003{bottom:634.013333pt;}
.y91_c00003{bottom:634.173333pt;}
.y1be_c00003{bottom:634.333333pt;}
.y387_c00003{bottom:635.453333pt;}
.y4dd_c00003{bottom:637.573333pt;}
.y26e_c00003{bottom:638.333333pt;}
.y69_c00003{bottom:638.653333pt;}
.y117_c00003{bottom:640.413333pt;}
.y33c_c00003{bottom:642.973333pt;}
.yf_c00003{bottom:643.293333pt;}
.y141_c00003{bottom:649.693333pt;}
.ye3_c00003{bottom:650.173333pt;}
.y40b_c00003{bottom:650.653333pt;}
.y41f_c00003{bottom:651.013333pt;}
.y351_c00003{bottom:651.293333pt;}
.y3bb_c00003{bottom:652.253333pt;}
.y234_c00003{bottom:652.413333pt;}
.y36e_c00003{bottom:652.573333pt;}
.y1bd_c00003{bottom:652.733333pt;}
.y3da_c00003{bottom:653.053333pt;}
.y51a_c00003{bottom:653.573333pt;}
.y3ce_c00003{bottom:654.813333pt;}
.y292_c00003{bottom:657.533333pt;}
.y2e1_c00003{bottom:658.013333pt;}
.y3a_c00003{bottom:658.333333pt;}
.y116_c00003{bottom:658.973333pt;}
.y30c_c00003{bottom:659.453333pt;}
.y18e_c00003{bottom:660.733333pt;}
.y90_c00003{bottom:661.693333pt;}
.y33b_c00003{bottom:661.853333pt;}
.y68_c00003{bottom:666.333333pt;}
.y140_c00003{bottom:668.093333pt;}
.y31a_c00003{bottom:668.253333pt;}
.y41e_c00003{bottom:669.413333pt;}
.y4a3_c00003{bottom:669.733333pt;}
.y233_c00003{bottom:670.813333pt;}
.ye_c00003{bottom:670.973333pt;}
.y1bc_c00003{bottom:671.133333pt;}
.y350_c00003{bottom:672.413333pt;}
.y33a_c00003{bottom:680.253333pt;}
.y115_c00003{bottom:680.413333pt;}
.y3d9_c00003{bottom:680.573333pt;}
.y40a_c00003{bottom:681.373333pt;}
.yc5_c00003{bottom:682.173333pt;}
.y4aa_c00003{bottom:685.733333pt;}
.y39_c00003{bottom:686.013333pt;}
.y13f_c00003{bottom:686.493333pt;}
.y3cd_c00003{bottom:687.133333pt;}
.y41d_c00003{bottom:687.813333pt;}
.y232_c00003{bottom:689.213333pt;}
.y8f_c00003{bottom:689.373333pt;}
.y1bb_c00003{bottom:689.533333pt;}
.ye2_c00003{bottom:690.013333pt;}
.y2e0_c00003{bottom:690.173333pt;}
.y18d_c00003{bottom:691.293333pt;}
.y291_c00003{bottom:693.053333pt;}
.y34f_c00003{bottom:693.533333pt;}
.y67_c00003{bottom:693.853333pt;}
.y30b_c00003{bottom:694.013333pt;}
.yd_c00003{bottom:698.493333pt;}
.y339_c00003{bottom:698.653333pt;}
.y114_c00003{bottom:701.693333pt;}
.y319_c00003{bottom:703.773333pt;}
.y13e_c00003{bottom:704.893333pt;}
.y231_c00003{bottom:707.613333pt;}
.y1ba_c00003{bottom:707.933333pt;}
.y3d8_c00003{bottom:708.253333pt;}
.y386_c00003{bottom:711.333333pt;}
.y409_c00003{bottom:712.133333pt;}
.y38_c00003{bottom:713.573333pt;}
.y34e_c00003{bottom:714.853333pt;}
.y8e_c00003{bottom:716.933333pt;}
.y3cc_c00003{bottom:719.333333pt;}
.yc4_c00003{bottom:719.653333pt;}
.y113_c00003{bottom:720.133333pt;}
.y66_c00003{bottom:721.573333pt;}
.y18c_c00003{bottom:722.053333pt;}
.y2df_c00003{bottom:722.373333pt;}
.y13d_c00003{bottom:723.333333pt;}
.y230_c00003{bottom:726.053333pt;}
.yc_c00003{bottom:726.213333pt;}
.y1b9_c00003{bottom:726.373333pt;}
.y30a_c00003{bottom:728.453333pt;}
.y290_c00003{bottom:728.773333pt;}
.ye1_c00003{bottom:729.893333pt;}
.y338_c00003{bottom:732.773333pt;}
.y3d7_c00003{bottom:735.813333pt;}
.y34d_c00003{bottom:735.973333pt;}
.y385_c00003{bottom:736.613333pt;}
.yd9_c00003{bottom:738.373333pt;}
.y112_c00003{bottom:738.533333pt;}
.y318_c00003{bottom:739.493333pt;}
.y37_c00003{bottom:741.253333pt;}
.y13c_c00003{bottom:741.733333pt;}
.y408_c00003{bottom:742.693333pt;}
.y22f_c00003{bottom:744.453333pt;}
.y8d_c00003{bottom:744.613333pt;}
.y1b8_c00003{bottom:744.773333pt;}
.y65_c00003{bottom:749.093333pt;}
.y3cb_c00003{bottom:751.493333pt;}
.y18b_c00003{bottom:752.773333pt;}
.yb_c00003{bottom:753.733333pt;}
.y2de_c00003{bottom:754.533333pt;}
.y111_c00003{bottom:756.933333pt;}
.yc3_c00003{bottom:757.093333pt;}
.y36_c00003{bottom:759.813333pt;}
.y13b_c00003{bottom:760.133333pt;}
.y384_c00003{bottom:761.893333pt;}
.y22e_c00003{bottom:762.853333pt;}
.y309_c00003{bottom:763.013333pt;}
.y1b7_c00003{bottom:763.173333pt;}
.y3d6_c00003{bottom:763.493333pt;}
.y28f_c00003{bottom:764.293333pt;}
.y337_c00003{bottom:767.173333pt;}
.ye0_c00003{bottom:769.733333pt;}
.y8c_c00003{bottom:772.133333pt;}
.y407_c00003{bottom:773.413333pt;}
.y35_c00003{bottom:774.853333pt;}
.y317_c00003{bottom:775.013333pt;}
.y110_c00003{bottom:775.333333pt;}
.y64_c00003{bottom:776.773333pt;}
.y177_c00003{bottom:778.213333pt;}
.y13a_c00003{bottom:778.533333pt;}
.y22d_c00003{bottom:781.253333pt;}
.ya_c00003{bottom:781.413333pt;}
.y1b6_c00003{bottom:781.573333pt;}
.yd8_c00003{bottom:782.373333pt;}
.y18a_c00003{bottom:783.333333pt;}
.y3ca_c00003{bottom:783.653333pt;}
.y2dd_c00003{bottom:786.853333pt;}
.y383_c00003{bottom:787.173333pt;}
.y3d5_c00003{bottom:791.013333pt;}
.y10f_c00003{bottom:793.733333pt;}
.yc2_c00003{bottom:794.533333pt;}
.y139_c00003{bottom:796.453333pt;}
.y166_c00003{bottom:796.773333pt;}
.y176_c00003{bottom:797.093333pt;}
.y34c_c00003{bottom:799.493333pt;}
.y25f_c00003{bottom:799.653333pt;}
.y8b_c00003{bottom:799.813333pt;}
.y1b5_c00003{bottom:799.973333pt;}
.y336_c00003{bottom:801.733333pt;}
.y63_c00003{bottom:804.293333pt;}
.y9_c00003{bottom:808.933333pt;}
.ydf_c00003{bottom:809.573333pt;}
.y316_c00003{bottom:810.693333pt;}
.y10e_c00003{bottom:812.133333pt;}
.y33_c00003{bottom:812.293333pt;}
.y382_c00003{bottom:812.613333pt;}
.y189_c00003{bottom:814.053333pt;}
.y165_c00003{bottom:815.173333pt;}
.y138_c00003{bottom:815.493333pt;}
.y3c9_c00003{bottom:815.973333pt;}
.y25e_c00003{bottom:818.053333pt;}
.y406_c00003{bottom:818.213333pt;}
.y175_c00003{bottom:818.373333pt;}
.y3d4_c00003{bottom:818.693333pt;}
.y2dc_c00003{bottom:823.173333pt;}
.y8a_c00003{bottom:827.333333pt;}
.y10d_c00003{bottom:830.533333pt;}
.y62_c00003{bottom:831.973333pt;}
.y164_c00003{bottom:833.573333pt;}
.y28e_c00003{bottom:835.173333pt;}
.y1e0_c00003{bottom:836.293333pt;}
.y265_c00003{bottom:836.453333pt;}
.y8_c00003{bottom:836.613333pt;}
.y137_c00003{bottom:836.773333pt;}
.y381_c00003{bottom:837.893333pt;}
.y188_c00003{bottom:844.773333pt;}
.y315_c00003{bottom:846.213333pt;}
.y3c8_c00003{bottom:848.133333pt;}
.y10c_c00003{bottom:848.933333pt;}
.yde_c00003{bottom:849.413333pt;}
.y163_c00003{bottom:851.973333pt;}
.y25d_c00003{bottom:854.853333pt;}
.y89_c00003{bottom:855.013333pt;}
.y136_c00003{bottom:855.173333pt;}
.y2db_c00003{bottom:856.293333pt;}
.y2c7_c00003{bottom:859.173333pt;}
.y61_c00003{bottom:859.493333pt;}
.y380_c00003{bottom:863.173333pt;}
.y1df_c00003{bottom:863.813333pt;}
.y7_c00003{bottom:864.133333pt;}
.y10b_c00003{bottom:867.333333pt;}
.y162_c00003{bottom:870.373333pt;}
.y28d_c00003{bottom:870.853333pt;}
.y25c_c00003{bottom:873.253333pt;}
.y135_c00003{bottom:873.573333pt;}
.y187_c00003{bottom:875.333333pt;}
.y88_c00003{bottom:882.533333pt;}
.y10a_c00003{bottom:885.733333pt;}
.y32_c00003{bottom:886.533333pt;}
.y198_c00003{bottom:886.853333pt;}
.y60_c00003{bottom:887.173333pt;}
.y37f_c00003{bottom:888.453333pt;}
.y161_c00003{bottom:888.773333pt;}
.ydd_c00003{bottom:889.253333pt;}
.y1a8_c00003{bottom:891.493333pt;}
.y22c_c00003{bottom:891.653333pt;}
.y6_c00003{bottom:891.813333pt;}
.y134_c00003{bottom:891.973333pt;}
.y109_c00003{bottom:904.133333pt;}
.y186_c00003{bottom:906.053333pt;}
.y28c_c00003{bottom:906.373333pt;}
.y160_c00003{bottom:907.173333pt;}
.y22b_c00003{bottom:910.053333pt;}
.y87_c00003{bottom:910.213333pt;}
.yc1_c00003{bottom:910.373333pt;}
.y5f_c00003{bottom:914.373333pt;}
.ybe_c00003{bottom:914.693333pt;}
.y1a7_c00003{bottom:919.013333pt;}
.y5_c00003{bottom:919.333333pt;}
.y108_c00003{bottom:922.693333pt;}
.y30_c00003{bottom:923.973333pt;}
.y15f_c00003{bottom:925.253333pt;}
.y22a_c00003{bottom:928.453333pt;}
.yc0_c00003{bottom:928.773333pt;}
.ydc_c00003{bottom:929.253333pt;}
.y185_c00003{bottom:936.773333pt;}
.y86_c00003{bottom:941.920000pt;}
.y5e_c00003{bottom:944.320000pt;}
.y1a6_c00003{bottom:946.720000pt;}
.y229_c00003{bottom:946.880000pt;}
.y4_c00003{bottom:947.040000pt;}
.ybf_c00003{bottom:947.200000pt;}
.h21_c00003{height:15.986667pt;}
.h2e_c00003{height:15.993333pt;}
.h39_c00003{height:16.146667pt;}
.h2c_c00003{height:16.153333pt;}
.h14_c00003{height:19.993333pt;}
.h2_c00003{height:20.000000pt;}
.h20_c00003{height:20.153333pt;}
.h35_c00003{height:32.146667pt;}
.h5f_c00003{height:32.153333pt;}
.h7a_c00003{height:32.313333pt;}
.h1b_c00003{height:33.918750pt;}
.h7_c00003{height:36.800000pt;}
.h8_c00003{height:36.832000pt;}
.h13_c00003{height:40.163750pt;}
.h19_c00003{height:43.215000pt;}
.h1_c00003{height:43.441250pt;}
.h1e_c00003{height:44.437500pt;}
.h63_c00003{height:48.153333pt;}
.h6c_c00003{height:48.306667pt;}
.h59_c00003{height:48.313333pt;}
.h29_c00003{height:50.490000pt;}
.h1c_c00003{height:52.134375pt;}
.h6_c00003{height:55.200000pt;}
.h22_c00003{height:55.275000pt;}
.h1a_c00003{height:56.843750pt;}
.h4_c00003{height:57.375000pt;}
.h17_c00003{height:57.787500pt;}
.hc_c00003{height:59.340000pt;}
.he_c00003{height:62.781250pt;}
.h3_c00003{height:62.812500pt;}
.h4a_c00003{height:64.306667pt;}
.h68_c00003{height:64.313333pt;}
.h3b_c00003{height:64.473333pt;}
.hb_c00003{height:64.500000pt;}
.ha_c00003{height:65.781915pt;}
.h1d_c00003{height:66.625000pt;}
.hf_c00003{height:71.503437pt;}
.h11_c00003{height:71.524375pt;}
.h9_c00003{height:73.600000pt;}
.hd_c00003{height:75.465000pt;}
.h33_c00003{height:80.466667pt;}
.h78_c00003{height:80.480000pt;}
.h73_c00003{height:80.498667pt;}
.h3d_c00003{height:80.500000pt;}
.h5e_c00003{height:80.658667pt;}
.h10_c00003{height:85.785000pt;}
.h5_c00003{height:92.032000pt;}
.h5c_c00003{height:96.466667pt;}
.h45_c00003{height:96.500000pt;}
.h65_c00003{height:96.506667pt;}
.h42_c00003{height:96.626667pt;}
.h30_c00003{height:96.640000pt;}
.h6a_c00003{height:96.658667pt;}
.h41_c00003{height:96.660000pt;}
.h70_c00003{height:96.666667pt;}
.h12_c00003{height:107.715000pt;}
.h98_c00003{height:112.626667pt;}
.h90_c00003{height:112.658667pt;}
.h55_c00003{height:112.660000pt;}
.h37_c00003{height:112.666667pt;}
.h71_c00003{height:112.786667pt;}
.h74_c00003{height:112.800000pt;}
.h8a_c00003{height:112.818667pt;}
.h99_c00003{height:112.820000pt;}
.h28_c00003{height:128.660000pt;}
.h8f_c00003{height:128.666667pt;}
.h44_c00003{height:128.786667pt;}
.h50_c00003{height:128.800000pt;}
.h67_c00003{height:128.818667pt;}
.h3f_c00003{height:128.820000pt;}
.h2a_c00003{height:128.826667pt;}
.h16_c00003{height:129.000000pt;}
.h15_c00003{height:139.965000pt;}
.h95_c00003{height:144.786667pt;}
.h87_c00003{height:144.813333pt;}
.h32_c00003{height:144.980000pt;}
.h31_c00003{height:144.986667pt;}
.h84_c00003{height:160.960000pt;}
.h89_c00003{height:160.973333pt;}
.h25_c00003{height:160.980000pt;}
.h43_c00003{height:160.986667pt;}
.h8d_c00003{height:161.120000pt;}
.h6d_c00003{height:161.140000pt;}
.h4f_c00003{height:161.146667pt;}
.h53_c00003{height:176.973333pt;}
.h52_c00003{height:176.986667pt;}
.h92_c00003{height:177.133333pt;}
.h56_c00003{height:177.140000pt;}
.h54_c00003{height:177.146667pt;}
.h49_c00003{height:193.133333pt;}
.h2f_c00003{height:193.146667pt;}
.h40_c00003{height:193.306667pt;}
.h38_c00003{height:209.300000pt;}
.h26_c00003{height:209.306667pt;}
.h79_c00003{height:209.333333pt;}
.h47_c00003{height:225.300000pt;}
.h2b_c00003{height:225.453333pt;}
.h4c_c00003{height:225.460000pt;}
.h36_c00003{height:225.466667pt;}
.h7e_c00003{height:225.493333pt;}
.h7c_c00003{height:241.460000pt;}
.h27_c00003{height:241.466667pt;}
.h4b_c00003{height:241.493333pt;}
.h64_c00003{height:241.626667pt;}
.h5d_c00003{height:257.493333pt;}
.h85_c00003{height:257.500000pt;}
.h3c_c00003{height:257.626667pt;}
.h8c_c00003{height:257.653333pt;}
.h72_c00003{height:273.626667pt;}
.h81_c00003{height:273.653333pt;}
.h75_c00003{height:273.660000pt;}
.h69_c00003{height:273.786667pt;}
.h82_c00003{height:273.813333pt;}
.h66_c00003{height:289.786667pt;}
.h51_c00003{height:289.813333pt;}
.h93_c00003{height:289.820000pt;}
.h97_c00003{height:305.813333pt;}
.h7f_c00003{height:305.946667pt;}
.h3a_c00003{height:305.973333pt;}
.h46_c00003{height:321.973333pt;}
.h4e_c00003{height:321.980000pt;}
.h83_c00003{height:322.133333pt;}
.h62_c00003{height:338.133333pt;}
.h6f_c00003{height:338.140000pt;}
.h94_c00003{height:354.133333pt;}
.h34_c00003{height:354.140000pt;}
.h48_c00003{height:354.293333pt;}
.h6b_c00003{height:370.293333pt;}
.h76_c00003{height:370.300000pt;}
.h8e_c00003{height:386.453333pt;}
.h8b_c00003{height:386.460000pt;}
.h7b_c00003{height:386.480000pt;}
.h60_c00003{height:402.453333pt;}
.h88_c00003{height:402.460000pt;}
.h96_c00003{height:402.480000pt;}
.h86_c00003{height:402.613333pt;}
.h24_c00003{height:418.613333pt;}
.h4d_c00003{height:418.620000pt;}
.h61_c00003{height:434.800000pt;}
.h3e_c00003{height:450.773333pt;}
.h7d_c00003{height:450.800000pt;}
.h77_c00003{height:466.800000pt;}
.h57_c00003{height:466.933333pt;}
.h80_c00003{height:466.960000pt;}
.h5a_c00003{height:482.933333pt;}
.h23_c00003{height:482.960000pt;}
.h91_c00003{height:499.093333pt;}
.h5b_c00003{height:499.120000pt;}
.h58_c00003{height:531.280000pt;}
.h2d_c00003{height:563.440000pt;}
.h6e_c00003{height:579.600000pt;}
.h1f_c00003{height:816.000000pt;}
.h18_c00003{height:1055.998667pt;}
.h0_c00003{height:1056.000000pt;}
.w1_c00003{width:59.232000pt;}
.w4_c00003{width:59.346667pt;}
.w1c_c00003{width:63.230667pt;}
.w23_c00003{width:81.150667pt;}
.we_c00003{width:104.830667pt;}
.w7_c00003{width:107.870667pt;}
.w15_c00003{width:108.990667pt;}
.w12_c00003{width:116.466667pt;}
.wb_c00003{width:118.226667pt;}
.w20_c00003{width:119.026667pt;}
.w21_c00003{width:119.058667pt;}
.w19_c00003{width:119.186667pt;}
.w27_c00003{width:119.506667pt;}
.w14_c00003{width:122.866667pt;}
.wf_c00003{width:123.986667pt;}
.w11_c00003{width:125.312000pt;}
.wd_c00003{width:125.426667pt;}
.w8_c00003{width:126.386667pt;}
.w1b_c00003{width:126.706667pt;}
.w22_c00003{width:127.506667pt;}
.w1a_c00003{width:127.538667pt;}
.w16_c00003{width:127.666667pt;}
.w26_c00003{width:127.712000pt;}
.w18_c00003{width:127.872000pt;}
.w28_c00003{width:128.338667pt;}
.wa_c00003{width:128.352000pt;}
.w1f_c00003{width:128.512000pt;}
.wc_c00003{width:132.818667pt;}
.w9_c00003{width:137.773333pt;}
.w25_c00003{width:138.413333pt;}
.w17_c00003{width:138.893333pt;}
.w10_c00003{width:139.213333pt;}
.w13_c00003{width:144.333333pt;}
.w1e_c00003{width:145.293333pt;}
.w24_c00003{width:155.026667pt;}
.w1d_c00003{width:174.226667pt;}
.w2_c00003{width:282.746667pt;}
.w3_c00003{width:311.266667pt;}
.w5_c00003{width:815.998667pt;}
.w0_c00003{width:816.000000pt;}
.w6_c00003{width:1056.000000pt;}
.x0_c00003{left:0.000000pt;}
.x7_c00003{left:4.320000pt;}
.x37_c00003{left:6.866667pt;}
.x50_c00003{left:10.878667pt;}
.x56_c00003{left:11.998667pt;}
.x3_c00003{left:14.720000pt;}
.x5e_c00003{left:17.118667pt;}
.x58_c00003{left:19.838667pt;}
.x46_c00003{left:25.438667pt;}
.x45_c00003{left:28.990667pt;}
.x38_c00003{left:30.750667pt;}
.x3c_c00003{left:31.710667pt;}
.x2a_c00003{left:33.150667pt;}
.x36_c00003{left:34.270667pt;}
.x5d_c00003{left:40.510667pt;}
.x41_c00003{left:42.226667pt;}
.x31_c00003{left:43.186667pt;}
.x3d_c00003{left:45.266667pt;}
.x2c_c00003{left:46.546667pt;}
.x4d_c00003{left:47.826667pt;}
.x33_c00003{left:50.386667pt;}
.x2e_c00003{left:51.706667pt;}
.x35_c00003{left:53.785333pt;}
.x3a_c00003{left:54.866667pt;}
.x43_c00003{left:56.146667pt;}
.x5a_c00003{left:60.786667pt;}
.x52_c00003{left:70.386667pt;}
.x39_c00003{left:77.305333pt;}
.x29_c00003{left:87.681333pt;}
.x24_c00003{left:94.400000pt;}
.x1_c00003{left:113.472000pt;}
.x1d_c00003{left:117.792000pt;}
.x1a_c00003{left:134.906667pt;}
.x9_c00003{left:137.466667pt;}
.x22_c00003{left:139.386667pt;}
.x51_c00003{left:151.560000pt;}
.x4_c00003{left:160.666667pt;}
.x59_c00003{left:169.640000pt;}
.x21_c00003{left:172.666667pt;}
.x6_c00003{left:183.866667pt;}
.x1f_c00003{left:185.466667pt;}
.x15_c00003{left:193.306667pt;}
.x2b_c00003{left:196.200000pt;}
.x48_c00003{left:197.320000pt;}
.x11_c00003{left:199.066667pt;}
.xe_c00003{left:200.986667pt;}
.x20_c00003{left:209.466667pt;}
.x12_c00003{left:212.026667pt;}
.x23_c00003{left:224.186667pt;}
.x18_c00003{left:243.386667pt;}
.xb_c00003{left:256.826667pt;}
.x10_c00003{left:261.786667pt;}
.x19_c00003{left:264.186667pt;}
.x1e_c00003{left:273.506667pt;}
.x17_c00003{left:280.866667pt;}
.x14_c00003{left:283.586667pt;}
.x27_c00003{left:298.426667pt;}
.x1b_c00003{left:303.745333pt;}
.x1c_c00003{left:305.506667pt;}
.x13_c00003{left:309.346667pt;}
.x3e_c00003{left:317.800000pt;}
.x16_c00003{left:319.586667pt;}
.x2d_c00003{left:323.240000pt;}
.x49_c00003{left:325.640000pt;}
.xd_c00003{left:339.586667pt;}
.x47_c00003{left:348.546667pt;}
.xc_c00003{left:351.106667pt;}
.xf_c00003{left:354.146667pt;}
.x3b_c00003{left:360.386667pt;}
.x5_c00003{left:364.866667pt;}
.x4f_c00003{left:390.626667pt;}
.x8_c00003{left:397.346667pt;}
.xa_c00003{left:408.066667pt;}
.x26_c00003{left:425.506667pt;}
.x57_c00003{left:427.906667pt;}
.x28_c00003{left:431.906667pt;}
.x3f_c00003{left:457.666667pt;}
.x2f_c00003{left:461.666667pt;}
.x5b_c00003{left:464.386667pt;}
.x4a_c00003{left:465.346667pt;}
.x53_c00003{left:472.546667pt;}
.x40_c00003{left:583.626667pt;}
.x30_c00003{left:590.666667pt;}
.x5c_c00003{left:592.906667pt;}
.x4b_c00003{left:593.866667pt;}
.x54_c00003{left:601.706667pt;}
.x42_c00003{left:700.746667pt;}
.x32_c00003{left:709.706667pt;}
.x4c_c00003{left:713.706667pt;}
.x55_c00003{left:721.386667pt;}
.x2_c00003{left:729.733333pt;}
.x4e_c00003{left:841.893333pt;}
.x34_c00003{left:843.173333pt;}
.x44_c00003{left:845.733333pt;}
.x25_c00003{left:979.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c00004 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_a1f1355d5dbdfe4f4daa3c9c.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;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:ff3_c00004;src:url('chunks/assets/font_514a6a441efa0ec682562807.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.112305;font-style:normal;font-weight: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_c00004;src:url('chunks/assets/font_117a75bbf7407c5aa4378dc7.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00004{vertical-align:-72.000000px;}
.v0_c00004{vertical-align:0.000000px;}
.lsf_c00004{letter-spacing:-0.774000px;}
.ls5_c00004{letter-spacing:-0.720000px;}
.ls9_c00004{letter-spacing:-0.553200px;}
.ls1_c00004{letter-spacing:-0.385800px;}
.ls7_c00004{letter-spacing:-0.334200px;}
.lsb_c00004{letter-spacing:-0.219000px;}
.ls6_c00004{letter-spacing:-0.166800px;}
.ls2_c00004{letter-spacing:-0.051600px;}
.ls0_c00004{letter-spacing:0.000000px;}
.lsd_c00004{letter-spacing:0.097920px;}
.ls8_c00004{letter-spacing:0.166800px;}
.ls3_c00004{letter-spacing:0.167040px;}
.ls4_c00004{letter-spacing:0.219000px;}
.lsa_c00004{letter-spacing:0.334200px;}
.lsc_c00004{letter-spacing:0.774000px;}
.lse_c00004{letter-spacing:61.585920px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00004{word-spacing:-16.614000px;}
.ws8_c00004{word-spacing:-16.174200px;}
.ws3_c00004{word-spacing:-16.059000px;}
.ws6_c00004{word-spacing:-16.006800px;}
.ws1_c00004{word-spacing:-15.840000px;}
.ws5_c00004{word-spacing:-15.788400px;}
.ws9_c00004{word-spacing:-15.621000px;}
.wsb_c00004{word-spacing:-15.505800px;}
.ws2_c00004{word-spacing:-15.454200px;}
.ws7_c00004{word-spacing:-15.286800px;}
.ws4_c00004{word-spacing:-15.120000px;}
.ws0_c00004{word-spacing:0.000000px;}
._1_c00004{margin-left:-2.344193px;}
._0_c00004{margin-left:-1.129087px;}
._2_c00004{width:1.636093px;}
._3_c00004{width:25.920000px;}
._4_c00004{width:41.760000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(192,80,77);}
.fc0_c00004{color:rgb(0,0,0);}
.fs1_c00004{font-size:63.360000px;}
.fs0_c00004{font-size:66.240000px;}
.fs2_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y57_c00004{bottom:3.765000px;}
.y3c_c00004{bottom:3.772500px;}
.y30_c00004{bottom:3.780000px;}
.yca_c00004{bottom:3.945000px;}
.y28_c00004{bottom:3.952500px;}
.y68_c00004{bottom:3.960000px;}
.y3_c00004{bottom:4.852500px;}
.y56_c00004{bottom:21.945000px;}
.y27_c00004{bottom:21.946500px;}
.y2f_c00004{bottom:21.960000px;}
.yc9_c00004{bottom:21.990000px;}
.yf6_c00004{bottom:22.005000px;}
.ye2_c00004{bottom:22.125000px;}
.ya4_c00004{bottom:22.126500px;}
.y67_c00004{bottom:22.140000px;}
.yf3_c00004{bottom:22.170000px;}
.ydf_c00004{bottom:39.945000px;}
.y3b_c00004{bottom:39.946500px;}
.y8a_c00004{bottom:39.960000px;}
.y55_c00004{bottom:39.990000px;}
.ya2_c00004{bottom:40.125000px;}
.y26_c00004{bottom:40.126500px;}
.y2e_c00004{bottom:40.140000px;}
.y88_c00004{bottom:40.170000px;}
.yf5_c00004{bottom:40.185000px;}
.y2_c00004{bottom:52.423500px;}
.y25_c00004{bottom:58.126500px;}
.y2d_c00004{bottom:58.140000px;}
.y54_c00004{bottom:58.170000px;}
.ybf_c00004{bottom:58.185000px;}
.ye8_c00004{bottom:58.305000px;}
.yaf_c00004{bottom:58.306500px;}
.y66_c00004{bottom:58.320000px;}
.yaa_c00004{bottom:58.350000px;}
.y107_c00004{bottom:58.365000px;}
.y1_c00004{bottom:75.456000px;}
.y24_c00004{bottom:76.306500px;}
.y2c_c00004{bottom:76.320000px;}
.y53_c00004{bottom:76.350000px;}
.ybe_c00004{bottom:76.365000px;}
.yb8_c00004{bottom:76.500000px;}
.y2b_c00004{bottom:94.320000px;}
.y51_c00004{bottom:94.350000px;}
.y3a_c00004{bottom:94.351500px;}
.ybd_c00004{bottom:94.365000px;}
.y72_c00004{bottom:94.500000px;}
.y65_c00004{bottom:94.530000px;}
.y23_c00004{bottom:94.531500px;}
.ydb_c00004{bottom:94.545000px;}
.y2a_c00004{bottom:112.500000px;}
.y50_c00004{bottom:112.530000px;}
.y22_c00004{bottom:112.531500px;}
.y33_c00004{bottom:112.545000px;}
.y9a_c00004{bottom:112.680000px;}
.y64_c00004{bottom:112.710000px;}
.yae_c00004{bottom:112.711500px;}
.yda_c00004{bottom:112.725000px;}
.yd5_c00004{bottom:130.500000px;}
.yfe_c00004{bottom:130.530000px;}
.y39_c00004{bottom:130.531500px;}
.ybc_c00004{bottom:130.545000px;}
.y71_c00004{bottom:130.680000px;}
.y4f_c00004{bottom:130.710000px;}
.y21_c00004{bottom:130.711500px;}
.y32_c00004{bottom:130.725000px;}
.yd3_c00004{bottom:134.503500px;}
.ya3_c00004{bottom:135.223500px;}
.y34_c00004{bottom:136.123500px;}
.y69_c00004{bottom:136.843500px;}
.y4_c00004{bottom:137.563500px;}
.y9e_c00004{bottom:148.680000px;}
.y4e_c00004{bottom:148.710000px;}
.y20_c00004{bottom:148.711500px;}
.ybb_c00004{bottom:148.725000px;}
.y8e_c00004{bottom:148.860000px;}
.y63_c00004{bottom:148.890000px;}
.yad_c00004{bottom:148.891500px;}
.ya8_c00004{bottom:148.905000px;}
.yff_c00004{bottom:154.125000px;}
.ye6_c00004{bottom:154.845000px;}
.y9d_c00004{bottom:166.860000px;}
.y4d_c00004{bottom:166.890000px;}
.y1f_c00004{bottom:166.891500px;}
.ya7_c00004{bottom:166.905000px;}
.y99_c00004{bottom:167.040000px;}
.ye7_c00004{bottom:167.070000px;}
.yac_c00004{bottom:167.071500px;}
.yd9_c00004{bottom:167.085000px;}
.yde_c00004{bottom:171.585000px;}
.ya1_c00004{bottom:172.305000px;}
.y110_c00004{bottom:173.025000px;}
.y10a_c00004{bottom:173.745000px;}
.yce_c00004{bottom:184.860000px;}
.y4c_c00004{bottom:184.890000px;}
.y38_c00004{bottom:184.891500px;}
.yc2_c00004{bottom:184.905000px;}
.y9c_c00004{bottom:185.040000px;}
.y62_c00004{bottom:185.070000px;}
.y1e_c00004{bottom:185.071500px;}
.y98_c00004{bottom:185.085000px;}
.ye1_c00004{bottom:190.305000px;}
.y52_c00004{bottom:191.205000px;}
.y73_c00004{bottom:191.925000px;}
.y4b_c00004{bottom:203.070000px;}
.y1d_c00004{bottom:203.071500px;}
.yb6_c00004{bottom:203.085000px;}
.y61_c00004{bottom:203.250000px;}
.yab_c00004{bottom:203.251500px;}
.y97_c00004{bottom:203.265000px;}
.yc3_c00004{bottom:209.205000px;}
.ye9_c00004{bottom:209.925000px;}
.y11f_c00004{bottom:210.270000px;}
.y4a_c00004{bottom:221.250000px;}
.y1c_c00004{bottom:221.251500px;}
.y96_c00004{bottom:221.265000px;}
.yc8_c00004{bottom:221.280000px;}
.yf9_c00004{bottom:221.430000px;}
.y103_c00004{bottom:225.795000px;}
.y9b_c00004{bottom:227.415000px;}
.y49_c00004{bottom:239.250000px;}
.y37_c00004{bottom:239.251500px;}
.yb5_c00004{bottom:239.265000px;}
.y87_c00004{bottom:239.280000px;}
.y60_c00004{bottom:239.430000px;}
.y1b_c00004{bottom:239.431500px;}
.y95_c00004{bottom:239.445000px;}
.yc7_c00004{bottom:239.460000px;}
.yd1_c00004{bottom:239.475000px;}
.y109_c00004{bottom:243.975000px;}
.yb7_c00004{bottom:245.415000px;}
.y111_c00004{bottom:246.315000px;}
.y48_c00004{bottom:257.430000px;}
.y1a_c00004{bottom:257.431500px;}
.yb4_c00004{bottom:257.445000px;}
.y86_c00004{bottom:257.460000px;}
.ycc_c00004{bottom:257.475000px;}
.y5f_c00004{bottom:257.610000px;}
.yfb_c00004{bottom:257.611500px;}
.y94_c00004{bottom:257.625000px;}
.yf2_c00004{bottom:257.640000px;}
.yd2_c00004{bottom:262.155000px;}
.y11a_c00004{bottom:262.875000px;}
.y8b_c00004{bottom:263.595000px;}
.yfd_c00004{bottom:275.430000px;}
.y36_c00004{bottom:275.431500px;}
.y10f_c00004{bottom:275.445000px;}
.y47_c00004{bottom:275.610000px;}
.y19_c00004{bottom:275.611500px;}
.y93_c00004{bottom:275.625000px;}
.y85_c00004{bottom:275.640000px;}
.y5e_c00004{bottom:275.655000px;}
.yf7_c00004{bottom:280.875000px;}
.y116_c00004{bottom:281.775000px;}
.y6a_c00004{bottom:282.495000px;}
.y70_c00004{bottom:293.610000px;}
.yb3_c00004{bottom:293.625000px;}
.y84_c00004{bottom:293.640000px;}
.y18_c00004{bottom:293.641500px;}
.y46_c00004{bottom:293.655000px;}
.y8d_c00004{bottom:293.790000px;}
.y92_c00004{bottom:293.805000px;}
.yc6_c00004{bottom:293.820000px;}
.y5d_c00004{bottom:293.835000px;}
.ydd_c00004{bottom:299.055000px;}
.ya0_c00004{bottom:299.775000px;}
.y6f_c00004{bottom:311.790000px;}
.y91_c00004{bottom:311.805000px;}
.y83_c00004{bottom:311.820000px;}
.y17_c00004{bottom:311.821500px;}
.y45_c00004{bottom:311.835000px;}
.yf8_c00004{bottom:311.970000px;}
.ye4_c00004{bottom:317.235000px;}
.y118_c00004{bottom:317.955000px;}
.y11d_c00004{bottom:318.675000px;}
.y115_c00004{bottom:329.790000px;}
.yb2_c00004{bottom:329.805000px;}
.y82_c00004{bottom:329.820000px;}
.y35_c00004{bottom:329.821500px;}
.y44_c00004{bottom:329.835000px;}
.y6e_c00004{bottom:329.970000px;}
.y90_c00004{bottom:329.985000px;}
.yc5_c00004{bottom:330.000000px;}
.y16_c00004{bottom:330.001500px;}
.y5c_c00004{bottom:330.015000px;}
.ye0_c00004{bottom:336.135000px;}
.y3d_c00004{bottom:336.855000px;}
.y8c_c00004{bottom:347.970000px;}
.yb1_c00004{bottom:347.985000px;}
.y81_c00004{bottom:348.000000px;}
.y15_c00004{bottom:348.001500px;}
.y43_c00004{bottom:348.015000px;}
.yc4_c00004{bottom:348.180000px;}
.y5b_c00004{bottom:348.195000px;}
.y102_c00004{bottom:353.415000px;}
.yfa_c00004{bottom:354.135000px;}
.y58_c00004{bottom:354.855000px;}
.y11b_c00004{bottom:366.015000px;}
.y114_c00004{bottom:366.150000px;}
.y80_c00004{bottom:366.180000px;}
.y14_c00004{bottom:366.181500px;}
.y42_c00004{bottom:366.195000px;}
.y108_c00004{bottom:371.595000px;}
.ycb_c00004{bottom:373.035000px;}
.y11e_c00004{bottom:384.150000px;}
.y7f_c00004{bottom:384.180000px;}
.y13_c00004{bottom:384.181500px;}
.y41_c00004{bottom:384.195000px;}
.yf1_c00004{bottom:384.360000px;}
.y5a_c00004{bottom:384.375000px;}
.ya9_c00004{bottom:389.595000px;}
.y100_c00004{bottom:390.315000px;}
.y7e_c00004{bottom:402.360000px;}
.y12_c00004{bottom:402.361500px;}
.y40_c00004{bottom:402.375000px;}
.yf0_c00004{bottom:402.540000px;}
.ydc_c00004{bottom:408.495000px;}
.yc0_c00004{bottom:420.361500px;}
.y3f_c00004{bottom:420.375000px;}
.y7d_c00004{bottom:420.540000px;}
.y11_c00004{bottom:420.541500px;}
.y59_c00004{bottom:420.555000px;}
.yef_c00004{bottom:420.585000px;}
.ye5_c00004{bottom:425.805000px;}
.ycd_c00004{bottom:426.705000px;}
.yb0_c00004{bottom:427.425000px;}
.y10_c00004{bottom:438.541500px;}
.y3e_c00004{bottom:438.555000px;}
.y7c_c00004{bottom:438.585000px;}
.y10c_c00004{bottom:438.720000px;}
.yee_c00004{bottom:438.765000px;}
.y119_c00004{bottom:444.705000px;}
.y8f_c00004{bottom:445.425000px;}
.yf_c00004{bottom:456.721500px;}
.y6d_c00004{bottom:456.735000px;}
.y7b_c00004{bottom:456.765000px;}
.yd6_c00004{bottom:474.721500px;}
.y6c_c00004{bottom:474.735000px;}
.y7a_c00004{bottom:474.765000px;}
.ye_c00004{bottom:474.901500px;}
.yed_c00004{bottom:474.945000px;}
.ye3_c00004{bottom:480.885000px;}
.y10e_c00004{bottom:481.785000px;}
.y6b_c00004{bottom:492.915000px;}
.y79_c00004{bottom:492.945000px;}
.yd_c00004{bottom:492.946500px;}
.yec_c00004{bottom:493.125000px;}
.ya6_c00004{bottom:499.065000px;}
.y113_c00004{bottom:510.915000px;}
.y78_c00004{bottom:511.125000px;}
.yc_c00004{bottom:511.126500px;}
.y31_c00004{bottom:517.245000px;}
.y10d_c00004{bottom:517.965000px;}
.y112_c00004{bottom:529.095000px;}
.y77_c00004{bottom:529.125000px;}
.yb_c00004{bottom:529.126500px;}
.yeb_c00004{bottom:529.305000px;}
.y105_c00004{bottom:534.525000px;}
.yd8_c00004{bottom:535.965000px;}
.y76_c00004{bottom:547.305000px;}
.ya_c00004{bottom:547.306500px;}
.y11c_c00004{bottom:553.425000px;}
.y117_c00004{bottom:554.145000px;}
.y75_c00004{bottom:565.305000px;}
.y101_c00004{bottom:565.306500px;}
.yea_c00004{bottom:565.485000px;}
.y9_c00004{bottom:565.486500px;}
.yba_c00004{bottom:571.605000px;}
.yc1_c00004{bottom:572.325000px;}
.y74_c00004{bottom:583.485000px;}
.y8_c00004{bottom:583.486500px;}
.y106_c00004{bottom:590.325000px;}
.y10b_c00004{bottom:601.665000px;}
.y7_c00004{bottom:601.666500px;}
.yf4_c00004{bottom:607.785000px;}
.y6_c00004{bottom:619.666500px;}
.yd4_c00004{bottom:626.730000px;}
.y5_c00004{bottom:637.846500px;}
.y104_c00004{bottom:644.010000px;}
.yfc_c00004{bottom:644.730000px;}
.y29_c00004{bottom:662.910000px;}
.yd0_c00004{bottom:680.190000px;}
.ya5_c00004{bottom:680.910000px;}
.yd7_c00004{bottom:699.090000px;}
.y89_c00004{bottom:717.270000px;}
.y9f_c00004{bottom:735.270000px;}
.yb9_c00004{bottom:753.450000px;}
.ycf_c00004{bottom:771.450000px;}
.h39_c00004{height:17.992500px;}
.h29_c00004{height:18.165000px;}
.h44_c00004{height:18.172500px;}
.h2_c00004{height:22.672500px;}
.h20_c00004{height:36.165000px;}
.h32_c00004{height:36.172500px;}
.h18_c00004{height:36.352500px;}
.h1_c00004{height:45.184219px;}
.hb_c00004{height:54.172500px;}
.h16_c00004{height:54.345000px;}
.h10_c00004{height:54.352500px;}
.h9_c00004{height:56.801250px;}
.h4_c00004{height:62.184375px;}
.h64_c00004{height:65.124096px;}
.h65_c00004{height:70.664062px;}
.h11_c00004{height:72.345000px;}
.h23_c00004{height:72.352500px;}
.h2a_c00004{height:90.525000px;}
.h15_c00004{height:90.562500px;}
.h33_c00004{height:90.570000px;}
.h1f_c00004{height:108.562500px;}
.h19_c00004{height:108.705000px;}
.h4d_c00004{height:108.741000px;}
.h49_c00004{height:108.742500px;}
.h1b_c00004{height:108.750000px;}
.h5_c00004{height:126.705000px;}
.h58_c00004{height:126.720000px;}
.h17_c00004{height:126.741000px;}
.h12_c00004{height:126.742500px;}
.h31_c00004{height:126.750000px;}
.h48_c00004{height:126.885000px;}
.h5a_c00004{height:126.921000px;}
.h2c_c00004{height:126.922500px;}
.h3f_c00004{height:126.930000px;}
.h56_c00004{height:144.742500px;}
.h40_c00004{height:144.885000px;}
.h37_c00004{height:144.900000px;}
.ha_c00004{height:144.921000px;}
.h6_c00004{height:144.922500px;}
.h45_c00004{height:144.930000px;}
.h2d_c00004{height:162.885000px;}
.h35_c00004{height:162.930000px;}
.h51_c00004{height:163.102500px;}
.h43_c00004{height:181.095000px;}
.h63_c00004{height:181.102500px;}
.h1a_c00004{height:181.110000px;}
.h36_c00004{height:181.282500px;}
.h1e_c00004{height:181.290000px;}
.h5f_c00004{height:199.095000px;}
.h4b_c00004{height:199.290000px;}
.h3d_c00004{height:217.275000px;}
.hd_c00004{height:217.282500px;}
.h14_c00004{height:217.290000px;}
.h25_c00004{height:235.462500px;}
.h34_c00004{height:235.470000px;}
.h46_c00004{height:253.462500px;}
.h26_c00004{height:253.470000px;}
.h1c_c00004{height:253.642500px;}
.h30_c00004{height:253.650000px;}
.h50_c00004{height:271.650000px;}
.h4e_c00004{height:271.680000px;}
.h57_c00004{height:271.830000px;}
.h27_c00004{height:289.687500px;}
.h5d_c00004{height:289.830000px;}
.h2b_c00004{height:289.860000px;}
.h3e_c00004{height:289.867500px;}
.h52_c00004{height:307.830000px;}
.h53_c00004{height:307.860000px;}
.h5b_c00004{height:307.867500px;}
.h4a_c00004{height:308.010000px;}
.h4c_c00004{height:326.010000px;}
.h3c_c00004{height:326.040000px;}
.h3b_c00004{height:326.190000px;}
.h42_c00004{height:344.040000px;}
.h13_c00004{height:344.190000px;}
.h1d_c00004{height:362.190000px;}
.h59_c00004{height:362.220000px;}
.h22_c00004{height:362.400000px;}
.h38_c00004{height:380.400000px;}
.h7_c00004{height:380.407500px;}
.h55_c00004{height:398.400000px;}
.h24_c00004{height:416.580000px;}
.h60_c00004{height:416.587500px;}
.h21_c00004{height:434.587500px;}
.hc_c00004{height:434.760000px;}
.h28_c00004{height:434.767500px;}
.h8_c00004{height:452.760000px;}
.h62_c00004{height:470.940000px;}
.h2e_c00004{height:488.970000px;}
.he_c00004{height:507.120000px;}
.h41_c00004{height:507.150000px;}
.h5c_c00004{height:525.330000px;}
.h54_c00004{height:543.300000px;}
.h61_c00004{height:543.330000px;}
.h2f_c00004{height:561.510000px;}
.h5e_c00004{height:579.510000px;}
.h3a_c00004{height:579.690000px;}
.hf_c00004{height:597.690000px;}
.h4f_c00004{height:615.870000px;}
.h47_c00004{height:633.870000px;}
.h3_c00004{height:652.050000px;}
.h0_c00004{height:918.000000px;}
.w1_c00004{width:66.765000px;}
.w3_c00004{width:91.294500px;}
.w7_c00004{width:134.445000px;}
.w8_c00004{width:142.185000px;}
.w6_c00004{width:143.676000px;}
.w2_c00004{width:144.381000px;}
.w5_c00004{width:155.715000px;}
.w4_c00004{width:174.405000px;}
.w0_c00004{width:1188.000000px;}
.x10_c00004{left:-19.275000px;}
.x0_c00004{left:0.000000px;}
.x5_c00004{left:7.725000px;}
.xf_c00004{left:15.298500px;}
.x3_c00004{left:16.560000px;}
.x8_c00004{left:19.258500px;}
.x7_c00004{left:45.574500px;}
.xe_c00004{left:60.825000px;}
.x6_c00004{left:98.641500px;}
.x1_c00004{left:106.200000px;}
.x11_c00004{left:159.330000px;}
.x9_c00004{left:190.845000px;}
.xa_c00004{left:365.985000px;}
.xb_c00004{left:522.435000px;}
.xc_c00004{left:667.020000px;}
.x4_c00004{left:802.200000px;}
.xd_c00004{left:947.490000px;}
.x2_c00004{left:1101.570000px;}
@media print{
.v1_c00004{vertical-align:-64.000000pt;}
.v0_c00004{vertical-align:0.000000pt;}
.lsf_c00004{letter-spacing:-0.688000pt;}
.ls5_c00004{letter-spacing:-0.640000pt;}
.ls9_c00004{letter-spacing:-0.491733pt;}
.ls1_c00004{letter-spacing:-0.342933pt;}
.ls7_c00004{letter-spacing:-0.297067pt;}
.lsb_c00004{letter-spacing:-0.194667pt;}
.ls6_c00004{letter-spacing:-0.148267pt;}
.ls2_c00004{letter-spacing:-0.045867pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.lsd_c00004{letter-spacing:0.087040pt;}
.ls8_c00004{letter-spacing:0.148267pt;}
.ls3_c00004{letter-spacing:0.148480pt;}
.ls4_c00004{letter-spacing:0.194667pt;}
.lsa_c00004{letter-spacing:0.297067pt;}
.lsc_c00004{letter-spacing:0.688000pt;}
.lse_c00004{letter-spacing:54.743040pt;}
.wsa_c00004{word-spacing:-14.768000pt;}
.ws8_c00004{word-spacing:-14.377067pt;}
.ws3_c00004{word-spacing:-14.274667pt;}
.ws6_c00004{word-spacing:-14.228267pt;}
.ws1_c00004{word-spacing:-14.080000pt;}
.ws5_c00004{word-spacing:-14.034133pt;}
.ws9_c00004{word-spacing:-13.885333pt;}
.wsb_c00004{word-spacing:-13.782933pt;}
.ws2_c00004{word-spacing:-13.737067pt;}
.ws7_c00004{word-spacing:-13.588267pt;}
.ws4_c00004{word-spacing:-13.440000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._1_c00004{margin-left:-2.083727pt;}
._0_c00004{margin-left:-1.003633pt;}
._2_c00004{width:1.454305pt;}
._3_c00004{width:23.040000pt;}
._4_c00004{width:37.120000pt;}
.fs1_c00004{font-size:56.320000pt;}
.fs0_c00004{font-size:58.880000pt;}
.fs2_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y57_c00004{bottom:3.346667pt;}
.y3c_c00004{bottom:3.353333pt;}
.y30_c00004{bottom:3.360000pt;}
.yca_c00004{bottom:3.506667pt;}
.y28_c00004{bottom:3.513333pt;}
.y68_c00004{bottom:3.520000pt;}
.y3_c00004{bottom:4.313333pt;}
.y56_c00004{bottom:19.506667pt;}
.y27_c00004{bottom:19.508000pt;}
.y2f_c00004{bottom:19.520000pt;}
.yc9_c00004{bottom:19.546667pt;}
.yf6_c00004{bottom:19.560000pt;}
.ye2_c00004{bottom:19.666667pt;}
.ya4_c00004{bottom:19.668000pt;}
.y67_c00004{bottom:19.680000pt;}
.yf3_c00004{bottom:19.706667pt;}
.ydf_c00004{bottom:35.506667pt;}
.y3b_c00004{bottom:35.508000pt;}
.y8a_c00004{bottom:35.520000pt;}
.y55_c00004{bottom:35.546667pt;}
.ya2_c00004{bottom:35.666667pt;}
.y26_c00004{bottom:35.668000pt;}
.y2e_c00004{bottom:35.680000pt;}
.y88_c00004{bottom:35.706667pt;}
.yf5_c00004{bottom:35.720000pt;}
.y2_c00004{bottom:46.598667pt;}
.y25_c00004{bottom:51.668000pt;}
.y2d_c00004{bottom:51.680000pt;}
.y54_c00004{bottom:51.706667pt;}
.ybf_c00004{bottom:51.720000pt;}
.ye8_c00004{bottom:51.826667pt;}
.yaf_c00004{bottom:51.828000pt;}
.y66_c00004{bottom:51.840000pt;}
.yaa_c00004{bottom:51.866667pt;}
.y107_c00004{bottom:51.880000pt;}
.y1_c00004{bottom:67.072000pt;}
.y24_c00004{bottom:67.828000pt;}
.y2c_c00004{bottom:67.840000pt;}
.y53_c00004{bottom:67.866667pt;}
.ybe_c00004{bottom:67.880000pt;}
.yb8_c00004{bottom:68.000000pt;}
.y2b_c00004{bottom:83.840000pt;}
.y51_c00004{bottom:83.866667pt;}
.y3a_c00004{bottom:83.868000pt;}
.ybd_c00004{bottom:83.880000pt;}
.y72_c00004{bottom:84.000000pt;}
.y65_c00004{bottom:84.026667pt;}
.y23_c00004{bottom:84.028000pt;}
.ydb_c00004{bottom:84.040000pt;}
.y2a_c00004{bottom:100.000000pt;}
.y50_c00004{bottom:100.026667pt;}
.y22_c00004{bottom:100.028000pt;}
.y33_c00004{bottom:100.040000pt;}
.y9a_c00004{bottom:100.160000pt;}
.y64_c00004{bottom:100.186667pt;}
.yae_c00004{bottom:100.188000pt;}
.yda_c00004{bottom:100.200000pt;}
.yd5_c00004{bottom:116.000000pt;}
.yfe_c00004{bottom:116.026667pt;}
.y39_c00004{bottom:116.028000pt;}
.ybc_c00004{bottom:116.040000pt;}
.y71_c00004{bottom:116.160000pt;}
.y4f_c00004{bottom:116.186667pt;}
.y21_c00004{bottom:116.188000pt;}
.y32_c00004{bottom:116.200000pt;}
.yd3_c00004{bottom:119.558667pt;}
.ya3_c00004{bottom:120.198667pt;}
.y34_c00004{bottom:120.998667pt;}
.y69_c00004{bottom:121.638667pt;}
.y4_c00004{bottom:122.278667pt;}
.y9e_c00004{bottom:132.160000pt;}
.y4e_c00004{bottom:132.186667pt;}
.y20_c00004{bottom:132.188000pt;}
.ybb_c00004{bottom:132.200000pt;}
.y8e_c00004{bottom:132.320000pt;}
.y63_c00004{bottom:132.346667pt;}
.yad_c00004{bottom:132.348000pt;}
.ya8_c00004{bottom:132.360000pt;}
.yff_c00004{bottom:137.000000pt;}
.ye6_c00004{bottom:137.640000pt;}
.y9d_c00004{bottom:148.320000pt;}
.y4d_c00004{bottom:148.346667pt;}
.y1f_c00004{bottom:148.348000pt;}
.ya7_c00004{bottom:148.360000pt;}
.y99_c00004{bottom:148.480000pt;}
.ye7_c00004{bottom:148.506667pt;}
.yac_c00004{bottom:148.508000pt;}
.yd9_c00004{bottom:148.520000pt;}
.yde_c00004{bottom:152.520000pt;}
.ya1_c00004{bottom:153.160000pt;}
.y110_c00004{bottom:153.800000pt;}
.y10a_c00004{bottom:154.440000pt;}
.yce_c00004{bottom:164.320000pt;}
.y4c_c00004{bottom:164.346667pt;}
.y38_c00004{bottom:164.348000pt;}
.yc2_c00004{bottom:164.360000pt;}
.y9c_c00004{bottom:164.480000pt;}
.y62_c00004{bottom:164.506667pt;}
.y1e_c00004{bottom:164.508000pt;}
.y98_c00004{bottom:164.520000pt;}
.ye1_c00004{bottom:169.160000pt;}
.y52_c00004{bottom:169.960000pt;}
.y73_c00004{bottom:170.600000pt;}
.y4b_c00004{bottom:180.506667pt;}
.y1d_c00004{bottom:180.508000pt;}
.yb6_c00004{bottom:180.520000pt;}
.y61_c00004{bottom:180.666667pt;}
.yab_c00004{bottom:180.668000pt;}
.y97_c00004{bottom:180.680000pt;}
.yc3_c00004{bottom:185.960000pt;}
.ye9_c00004{bottom:186.600000pt;}
.y11f_c00004{bottom:186.906667pt;}
.y4a_c00004{bottom:196.666667pt;}
.y1c_c00004{bottom:196.668000pt;}
.y96_c00004{bottom:196.680000pt;}
.yc8_c00004{bottom:196.693333pt;}
.yf9_c00004{bottom:196.826667pt;}
.y103_c00004{bottom:200.706667pt;}
.y9b_c00004{bottom:202.146667pt;}
.y49_c00004{bottom:212.666667pt;}
.y37_c00004{bottom:212.668000pt;}
.yb5_c00004{bottom:212.680000pt;}
.y87_c00004{bottom:212.693333pt;}
.y60_c00004{bottom:212.826667pt;}
.y1b_c00004{bottom:212.828000pt;}
.y95_c00004{bottom:212.840000pt;}
.yc7_c00004{bottom:212.853333pt;}
.yd1_c00004{bottom:212.866667pt;}
.y109_c00004{bottom:216.866667pt;}
.yb7_c00004{bottom:218.146667pt;}
.y111_c00004{bottom:218.946667pt;}
.y48_c00004{bottom:228.826667pt;}
.y1a_c00004{bottom:228.828000pt;}
.yb4_c00004{bottom:228.840000pt;}
.y86_c00004{bottom:228.853333pt;}
.ycc_c00004{bottom:228.866667pt;}
.y5f_c00004{bottom:228.986667pt;}
.yfb_c00004{bottom:228.988000pt;}
.y94_c00004{bottom:229.000000pt;}
.yf2_c00004{bottom:229.013333pt;}
.yd2_c00004{bottom:233.026667pt;}
.y11a_c00004{bottom:233.666667pt;}
.y8b_c00004{bottom:234.306667pt;}
.yfd_c00004{bottom:244.826667pt;}
.y36_c00004{bottom:244.828000pt;}
.y10f_c00004{bottom:244.840000pt;}
.y47_c00004{bottom:244.986667pt;}
.y19_c00004{bottom:244.988000pt;}
.y93_c00004{bottom:245.000000pt;}
.y85_c00004{bottom:245.013333pt;}
.y5e_c00004{bottom:245.026667pt;}
.yf7_c00004{bottom:249.666667pt;}
.y116_c00004{bottom:250.466667pt;}
.y6a_c00004{bottom:251.106667pt;}
.y70_c00004{bottom:260.986667pt;}
.yb3_c00004{bottom:261.000000pt;}
.y84_c00004{bottom:261.013333pt;}
.y18_c00004{bottom:261.014667pt;}
.y46_c00004{bottom:261.026667pt;}
.y8d_c00004{bottom:261.146667pt;}
.y92_c00004{bottom:261.160000pt;}
.yc6_c00004{bottom:261.173333pt;}
.y5d_c00004{bottom:261.186667pt;}
.ydd_c00004{bottom:265.826667pt;}
.ya0_c00004{bottom:266.466667pt;}
.y6f_c00004{bottom:277.146667pt;}
.y91_c00004{bottom:277.160000pt;}
.y83_c00004{bottom:277.173333pt;}
.y17_c00004{bottom:277.174667pt;}
.y45_c00004{bottom:277.186667pt;}
.yf8_c00004{bottom:277.306667pt;}
.ye4_c00004{bottom:281.986667pt;}
.y118_c00004{bottom:282.626667pt;}
.y11d_c00004{bottom:283.266667pt;}
.y115_c00004{bottom:293.146667pt;}
.yb2_c00004{bottom:293.160000pt;}
.y82_c00004{bottom:293.173333pt;}
.y35_c00004{bottom:293.174667pt;}
.y44_c00004{bottom:293.186667pt;}
.y6e_c00004{bottom:293.306667pt;}
.y90_c00004{bottom:293.320000pt;}
.yc5_c00004{bottom:293.333333pt;}
.y16_c00004{bottom:293.334667pt;}
.y5c_c00004{bottom:293.346667pt;}
.ye0_c00004{bottom:298.786667pt;}
.y3d_c00004{bottom:299.426667pt;}
.y8c_c00004{bottom:309.306667pt;}
.yb1_c00004{bottom:309.320000pt;}
.y81_c00004{bottom:309.333333pt;}
.y15_c00004{bottom:309.334667pt;}
.y43_c00004{bottom:309.346667pt;}
.yc4_c00004{bottom:309.493333pt;}
.y5b_c00004{bottom:309.506667pt;}
.y102_c00004{bottom:314.146667pt;}
.yfa_c00004{bottom:314.786667pt;}
.y58_c00004{bottom:315.426667pt;}
.y11b_c00004{bottom:325.346667pt;}
.y114_c00004{bottom:325.466667pt;}
.y80_c00004{bottom:325.493333pt;}
.y14_c00004{bottom:325.494667pt;}
.y42_c00004{bottom:325.506667pt;}
.y108_c00004{bottom:330.306667pt;}
.ycb_c00004{bottom:331.586667pt;}
.y11e_c00004{bottom:341.466667pt;}
.y7f_c00004{bottom:341.493333pt;}
.y13_c00004{bottom:341.494667pt;}
.y41_c00004{bottom:341.506667pt;}
.yf1_c00004{bottom:341.653333pt;}
.y5a_c00004{bottom:341.666667pt;}
.ya9_c00004{bottom:346.306667pt;}
.y100_c00004{bottom:346.946667pt;}
.y7e_c00004{bottom:357.653333pt;}
.y12_c00004{bottom:357.654667pt;}
.y40_c00004{bottom:357.666667pt;}
.yf0_c00004{bottom:357.813333pt;}
.ydc_c00004{bottom:363.106667pt;}
.yc0_c00004{bottom:373.654667pt;}
.y3f_c00004{bottom:373.666667pt;}
.y7d_c00004{bottom:373.813333pt;}
.y11_c00004{bottom:373.814667pt;}
.y59_c00004{bottom:373.826667pt;}
.yef_c00004{bottom:373.853333pt;}
.ye5_c00004{bottom:378.493333pt;}
.ycd_c00004{bottom:379.293333pt;}
.yb0_c00004{bottom:379.933333pt;}
.y10_c00004{bottom:389.814667pt;}
.y3e_c00004{bottom:389.826667pt;}
.y7c_c00004{bottom:389.853333pt;}
.y10c_c00004{bottom:389.973333pt;}
.yee_c00004{bottom:390.013333pt;}
.y119_c00004{bottom:395.293333pt;}
.y8f_c00004{bottom:395.933333pt;}
.yf_c00004{bottom:405.974667pt;}
.y6d_c00004{bottom:405.986667pt;}
.y7b_c00004{bottom:406.013333pt;}
.yd6_c00004{bottom:421.974667pt;}
.y6c_c00004{bottom:421.986667pt;}
.y7a_c00004{bottom:422.013333pt;}
.ye_c00004{bottom:422.134667pt;}
.yed_c00004{bottom:422.173333pt;}
.ye3_c00004{bottom:427.453333pt;}
.y10e_c00004{bottom:428.253333pt;}
.y6b_c00004{bottom:438.146667pt;}
.y79_c00004{bottom:438.173333pt;}
.yd_c00004{bottom:438.174667pt;}
.yec_c00004{bottom:438.333333pt;}
.ya6_c00004{bottom:443.613333pt;}
.y113_c00004{bottom:454.146667pt;}
.y78_c00004{bottom:454.333333pt;}
.yc_c00004{bottom:454.334667pt;}
.y31_c00004{bottom:459.773333pt;}
.y10d_c00004{bottom:460.413333pt;}
.y112_c00004{bottom:470.306667pt;}
.y77_c00004{bottom:470.333333pt;}
.yb_c00004{bottom:470.334667pt;}
.yeb_c00004{bottom:470.493333pt;}
.y105_c00004{bottom:475.133333pt;}
.yd8_c00004{bottom:476.413333pt;}
.y76_c00004{bottom:486.493333pt;}
.ya_c00004{bottom:486.494667pt;}
.y11c_c00004{bottom:491.933333pt;}
.y117_c00004{bottom:492.573333pt;}
.y75_c00004{bottom:502.493333pt;}
.y101_c00004{bottom:502.494667pt;}
.yea_c00004{bottom:502.653333pt;}
.y9_c00004{bottom:502.654667pt;}
.yba_c00004{bottom:508.093333pt;}
.yc1_c00004{bottom:508.733333pt;}
.y74_c00004{bottom:518.653333pt;}
.y8_c00004{bottom:518.654667pt;}
.y106_c00004{bottom:524.733333pt;}
.y10b_c00004{bottom:534.813333pt;}
.y7_c00004{bottom:534.814667pt;}
.yf4_c00004{bottom:540.253333pt;}
.y6_c00004{bottom:550.814667pt;}
.yd4_c00004{bottom:557.093333pt;}
.y5_c00004{bottom:566.974667pt;}
.y104_c00004{bottom:572.453333pt;}
.yfc_c00004{bottom:573.093333pt;}
.y29_c00004{bottom:589.253333pt;}
.yd0_c00004{bottom:604.613333pt;}
.ya5_c00004{bottom:605.253333pt;}
.yd7_c00004{bottom:621.413333pt;}
.y89_c00004{bottom:637.573333pt;}
.y9f_c00004{bottom:653.573333pt;}
.yb9_c00004{bottom:669.733333pt;}
.ycf_c00004{bottom:685.733333pt;}
.h39_c00004{height:15.993333pt;}
.h29_c00004{height:16.146667pt;}
.h44_c00004{height:16.153333pt;}
.h2_c00004{height:20.153333pt;}
.h20_c00004{height:32.146667pt;}
.h32_c00004{height:32.153333pt;}
.h18_c00004{height:32.313333pt;}
.h1_c00004{height:40.163750pt;}
.hb_c00004{height:48.153333pt;}
.h16_c00004{height:48.306667pt;}
.h10_c00004{height:48.313333pt;}
.h9_c00004{height:50.490000pt;}
.h4_c00004{height:55.275000pt;}
.h64_c00004{height:57.888085pt;}
.h65_c00004{height:62.812500pt;}
.h11_c00004{height:64.306667pt;}
.h23_c00004{height:64.313333pt;}
.h2a_c00004{height:80.466667pt;}
.h15_c00004{height:80.500000pt;}
.h33_c00004{height:80.506667pt;}
.h1f_c00004{height:96.500000pt;}
.h19_c00004{height:96.626667pt;}
.h4d_c00004{height:96.658667pt;}
.h49_c00004{height:96.660000pt;}
.h1b_c00004{height:96.666667pt;}
.h5_c00004{height:112.626667pt;}
.h58_c00004{height:112.640000pt;}
.h17_c00004{height:112.658667pt;}
.h12_c00004{height:112.660000pt;}
.h31_c00004{height:112.666667pt;}
.h48_c00004{height:112.786667pt;}
.h5a_c00004{height:112.818667pt;}
.h2c_c00004{height:112.820000pt;}
.h3f_c00004{height:112.826667pt;}
.h56_c00004{height:128.660000pt;}
.h40_c00004{height:128.786667pt;}
.h37_c00004{height:128.800000pt;}
.ha_c00004{height:128.818667pt;}
.h6_c00004{height:128.820000pt;}
.h45_c00004{height:128.826667pt;}
.h2d_c00004{height:144.786667pt;}
.h35_c00004{height:144.826667pt;}
.h51_c00004{height:144.980000pt;}
.h43_c00004{height:160.973333pt;}
.h63_c00004{height:160.980000pt;}
.h1a_c00004{height:160.986667pt;}
.h36_c00004{height:161.140000pt;}
.h1e_c00004{height:161.146667pt;}
.h5f_c00004{height:176.973333pt;}
.h4b_c00004{height:177.146667pt;}
.h3d_c00004{height:193.133333pt;}
.hd_c00004{height:193.140000pt;}
.h14_c00004{height:193.146667pt;}
.h25_c00004{height:209.300000pt;}
.h34_c00004{height:209.306667pt;}
.h46_c00004{height:225.300000pt;}
.h26_c00004{height:225.306667pt;}
.h1c_c00004{height:225.460000pt;}
.h30_c00004{height:225.466667pt;}
.h50_c00004{height:241.466667pt;}
.h4e_c00004{height:241.493333pt;}
.h57_c00004{height:241.626667pt;}
.h27_c00004{height:257.500000pt;}
.h5d_c00004{height:257.626667pt;}
.h2b_c00004{height:257.653333pt;}
.h3e_c00004{height:257.660000pt;}
.h52_c00004{height:273.626667pt;}
.h53_c00004{height:273.653333pt;}
.h5b_c00004{height:273.660000pt;}
.h4a_c00004{height:273.786667pt;}
.h4c_c00004{height:289.786667pt;}
.h3c_c00004{height:289.813333pt;}
.h3b_c00004{height:289.946667pt;}
.h42_c00004{height:305.813333pt;}
.h13_c00004{height:305.946667pt;}
.h1d_c00004{height:321.946667pt;}
.h59_c00004{height:321.973333pt;}
.h22_c00004{height:322.133333pt;}
.h38_c00004{height:338.133333pt;}
.h7_c00004{height:338.140000pt;}
.h55_c00004{height:354.133333pt;}
.h24_c00004{height:370.293333pt;}
.h60_c00004{height:370.300000pt;}
.h21_c00004{height:386.300000pt;}
.hc_c00004{height:386.453333pt;}
.h28_c00004{height:386.460000pt;}
.h8_c00004{height:402.453333pt;}
.h62_c00004{height:418.613333pt;}
.h2e_c00004{height:434.640000pt;}
.he_c00004{height:450.773333pt;}
.h41_c00004{height:450.800000pt;}
.h5c_c00004{height:466.960000pt;}
.h54_c00004{height:482.933333pt;}
.h61_c00004{height:482.960000pt;}
.h2f_c00004{height:499.120000pt;}
.h5e_c00004{height:515.120000pt;}
.h3a_c00004{height:515.280000pt;}
.hf_c00004{height:531.280000pt;}
.h4f_c00004{height:547.440000pt;}
.h47_c00004{height:563.440000pt;}
.h3_c00004{height:579.600000pt;}
.h0_c00004{height:816.000000pt;}
.w1_c00004{width:59.346667pt;}
.w3_c00004{width:81.150667pt;}
.w7_c00004{width:119.506667pt;}
.w8_c00004{width:126.386667pt;}
.w6_c00004{width:127.712000pt;}
.w2_c00004{width:128.338667pt;}
.w5_c00004{width:138.413333pt;}
.w4_c00004{width:155.026667pt;}
.w0_c00004{width:1056.000000pt;}
.x10_c00004{left:-17.133333pt;}
.x0_c00004{left:0.000000pt;}
.x5_c00004{left:6.866667pt;}
.xf_c00004{left:13.598667pt;}
.x3_c00004{left:14.720000pt;}
.x8_c00004{left:17.118667pt;}
.x7_c00004{left:40.510667pt;}
.xe_c00004{left:54.066667pt;}
.x6_c00004{left:87.681333pt;}
.x1_c00004{left:94.400000pt;}
.x11_c00004{left:141.626667pt;}
.x9_c00004{left:169.640000pt;}
.xa_c00004{left:325.320000pt;}
.xb_c00004{left:464.386667pt;}
.xc_c00004{left:592.906667pt;}
.x4_c00004{left:713.066667pt;}
.xd_c00004{left:842.213333pt;}
.x2_c00004{left:979.173333pt;}
}




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